@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
	--bg-color: #001846;
	--bg-lgt: #0D285B;
	--bdr-primary: #0bdfa9;
}

body {
	font-family: "DM sans";
	background: var(--bg-color);
	color: white;
}
button:hover{
	background: #08DEA3 !important;
}
.txt-accnt{
	color: #08DEA3;
}
.ml-2 {
	margin-left: 1.2rem;
}
.modal-content{
	background: var(--bg-lgt);
}
.modal-body textarea{
	background: var(--bg-lgt);
	color: white;
	margin-top: 1rem;
}
.modal-body select{
	background: var(--bg-lgt);
	color: white;
	margin-top: 1rem;
}
.user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

a {
	text-decoration: none;
}

.user-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}


.inputs-container input,
textarea,
select {
	width: 100%;
	padding: 16px 10px;
	border-radius: 4px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
}

.inputs-container input::placeholder {
	color: #4b4b4b;
}

.inputs-container textarea::placeholder {
	color: #4b4b4b;
}

.act-btn {
	background-color: #08DEA3;
	/* color: white; */
	color: var(--bg-color);
	margin-bottom: 0 !important;
}

.act-btn-bdrd {
	background-color: none;
	/* color: white; */
	color: #08DEA3;
	border: 2px solid #08DEA3;
}

.mentor-img {
	width: 75px;
	height: 75px;
	border-radius: 500px;
	object-fit: cover;
}

/* Image upload Preview || STARTS  */
.avatar-upload {
	margin-left: 1rem;
}

.avatar-upload .avatar-preview {
	width: 150px;
	height: 150px;
	position: relative;
	border-radius: 100%;
	border: 2px solid #08DEA3;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}


/* Home page css */
.ml-btn {
	color: var(--bg-color) !important;
}

/* Nav CSS */
.navbar-brand img {
	width: 50px !important;
	height: 50px !important;

}

nav {
	background: #001846 !important;
	position: relative;
}

nav {
	background: #001846;
	position: relative;
}
/* .active{
	color: #08DEA3 !important;
} */

nav .username {
	margin-right: 16px;
}
nav .navbar-collapse  a:hover::after {
    content: '';
    height: 2px;
    width: 100%;
    display: block;
    transition: .2s ease-in-out;
}
nav .navbar-collapse  a::after {
    content: '';
    height: 2px;
    width: 0%;
    background: #08DEA3;
    display: block;
    transition: .2s ease-in-out;
}

.setting-links ul li {
	list-style: none;
}

.setting-links ul li a:hover {
	color: #08DEA3 !important;
}

.setting-links ul {
	padding-left: 0;
}

.setting-links {
	position: absolute;
	top: 60px;
	right: 20px;
	height: auto;
	background: #013b86;
	border-radius: 4px;
	padding: 10px;
	display: none;
}

.user-info {
	cursor: pointer;
}

/* Show setting-links when hovering over user-info */
.user-info:hover+.setting-links,
.setting-links:hover {
	display: block;
}


nav a {
	color: white !important;
}

nav ul li a {
	color: white !important;
}



/* Tags input CSS || STARTS */

.input-tags tags {
	min-width: 400px;
	max-width: 600px;
	margin: 1.5em 0;
}

.input-tags .disabled tags {
	display: none;
}

.input-tags .disabled tags+input,
.disabled tags+textarea {
	display: inline-block !important;
	width: 350px;
	padding: 0.5em;
	border: 1px inset;
}

.input-tags a {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 10%;
}

.input-tags a:hover {
	opacity: 0.8;
}

.input-tags a>img {
	width: 100%;
}


/* Homepage CSS Starts */

.sc-container {
	height: 80vh;
	background: linear-gradient(90.47deg, #08DEA3 0%, #34F3FF 99.35%);
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	/* align-items: end; */
	position: relative;
	overflow: hidden;
}

.sc-container h1 {
	color: #001846;
}

.sc-container img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.h-btn-filled {
	background: #001846;
	border: 2px solid #001846;
	color: white;
	border-radius: 500px;
}

.h-btn-stroked {
	background: none;
	border: 2px solid #001846;
	color: #001846;
	border-radius: 500px;

}

@media screen and (max-width: 768px) {
	.sc-container img {
		display: none;
	}
	.mentor-dashboard-container{
		flex-direction: column-reverse;
	}
	.login-container{
		width: 95%;
	}
	.requests-container button{
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	.student-message-container{
		margin-top: 1rem;

	}
	.eng-login-btn{
		margin-top: 1rem;
	}
	#forgetPasswordLink{
		margin-top: 1rem;
	}
	.msg-box{
		width: 100% !important;
	}
}


.mc-container {
	height: 80vh;
	background: #013b86;
	border: 2px solid #08DEA3;
	border-radius: 8px;
	padding: 2rem;
	background: url('Assets/mentor-hero.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: end;
}

.mc-content {
	background: rgba(0, 0, 0, 0.5);
	padding: 16px;
	border-radius: 8px;
}

.mc-container h1 {
	color: #08DEA3;
	font-weight: 600;
}


.grad-btn {
	background: linear-gradient(90.47deg, #08DEA3 0%, #34F3FF 99.35%);
	color: white;
	border-radius: 500px;
}


/* Projects Page  CSS */
.projects-search {
	padding: 5rem 3rem;
	background: #00285B;
	color: white;
	border-radius: 8px;
	margin-top: 3rem;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
}

.projects-search h1 {
	padding-left: 0px !important;
}

.projects-search input {
	max-width: 450px;
}

.project-card {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 1rem;
	background: #00285B;
	border: 1px solid var(--bdr-primary);
	height: 100%;

}

.project-card .easy {
	background: #a1ffc8;
	color: #001846;
	border-radius: 50px;
	font-size: .9rem;
	padding: 5px 15px;
}

.project-card .medium {
	background: #ffdc4f;
	color: rgb(79, 79, 0);
	border-radius: 50px;
	font-size: .9rem;
	padding: 5px 15px;
}

.project-card .hard {
	background: #3498db;
	color: white;
	border-radius: 50px;
	font-size: .9rem;
	padding: 5px 15px;
}


/* Students Dashboard Request  */

.progress-container{
	background: #00285B;
	border-radius: 10px;
	padding: 2rem;
}
.badge {
	background: #08DEA3;
	color: #001846;
	border-radius: 4px;
	padding: 15px 20px;
	font-size: 1rem;
}
#s-requests{
	background: var(--bg-color);
	/* border-radius: 10px; */
	padding: 10px 5px;
	color: white;
	border: none !important;
	outline: none !important;
	/* outline-:  1px solid #08DEA3 !important; */

	border-bottom: 1px solid #08DEA3 !important;
}
/* .current{
	background: #08DEA3;
	color: #001846;
	border-radius: 4px;
	padding: 15px 20px;
	font-size: 1rem;
} */

.progress-card {
	background: #00285B;
	border: 1px solid #08DEA3;
	border-radius: 8px;
	padding: 1rem;
	width: 250px;
	/* margin-bottom: 2rem; */
}
.requests-container .request {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 1rem;
	margin-bottom: 24px;
	background: var(--bg-lgt);

}


/* My own Style Paging */
.s-img-container img,
.m-container img {
	width: 50px;
}



/***********  Mentors Project  ****************************/
.project-m-page {
	background: var(--bg-lgt);
	border: 2px solid var(--bdr-primary);
	padding: 2rem;
	border-radius: 5px;
}

.mpp-container {
	display: flex;
	flex-direction: column;
}

.m-details {
	margin-left: 16px;
}

.m-desc {
	margin-top: 16px;
}



/***************** Chat Page CSS  ******************/

.msg-box {
	width: 50vw;
	border: 2px solid #08DEA3;
	border-radius: 4px;
	padding: 2rem;
	background: #00285B;
}

.chat-box-container {
	width: 100%;
	max-height: 80vh;
	overflow-y: scroll;
	overflow-x: hidden;
	position: relative;
}

.chat-box-container::-webkit-scrollbar {
	background: var(--bg-lgt);
	border-radius: 2px;
}

.chat-box-container::-webkit-scrollbar-track {
	background: var(--bg-lgt);
	border-radius: 400px;
}

.chat-box-container::-webkit-scrollbar-thumb {
	background: #013170;
	border-radius: 400px;
}

.s-container {
	/* border: 1px solid red; */
	background: linear-gradient(90.47deg, #08DEA3 0%, #34F3FF 99.35%);
	padding: 16px;
	border-radius: 6px;
	position: sticky !important;
	top: 20px !important;
	left: 0px !important;
}

.s-container .s-name {
	font-size: 1.2rem;
	margin-bottom: 0;
	margin-left: 12px;
	color: #001846;
}


.msg-type-box {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--bg-lgt);
	border: 1px solid #ccc;
	border-radius: 2px;
	padding-right: 1rem;
}

.msg-type-box input {
	color: white;
	height: 100%;
	border: none;
	padding: 16px;
}

.msg-box #send-btn {
	background-color: #08DEA3;
	color: var(--bg-color);
}

.msg-box .received {
	background: #08DEA3;
	width: fit-content;
	max-width: 50%;
	border-radius: 6px;
	padding: 4px 16px;
	color: #001846;
	position: relative;
	right: 0px;
	left: 0;
}

.msg-box .received p {
	/* font-size: 12px; */
	margin-bottom: 6px;
}

.msg-box .received span {
	font-size: 12px;
}

.msg-box .sent {
	background: #013b86;
	width: fit-content;
	max-width: 50%;
	border-radius: 6px;
	padding: 4px 16px;
	color: white;
	position: relative;
	right: 0px;
	left: 0;
}

.msg-box .sent p {
	/* font-size: 12px; */
	margin-bottom: 6px;
}

.msg-box .sent span {
	font-size: 12px;
}


.msg-container {
	display: flex;
	margin-top: 16px;
	margin-bottom: 16px;
}



/* Mentor Dashbaord CSS */


/************************* Login & Signup Container  ***********************/

/* Sign up Container */
.signup-container {
	background: url('Assets/signup-bg.svg');
	background-size: contain;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}
.verify-container{
	display: none;
}
.signup-quote {
	color: white;
	/* font-size: 1.2rem;	 */
	align-self: baseline;
	margin-top: 5rem;
}


.login-container {
	background-color: var(--bg-lgt);
	padding: 2rem;
	border-radius: 6px;
	border: 1px solid #08DEA3;
	max-width: 550px;
	/* margin-top: 5rem; */
}
#forgetPasswordLink{
	cursor: pointer;
}
.forget-password-container, .verify-otp-container, .reset-password-container{
	width: 100%;
}

.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.login-wrapper {
	background: url('Assets/login-bg.svg');
	background-size: contain;
	height: 90vh;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}


.login-container input {
	background-color: var(--bg-lgt);
	border-radius: 6px;
	border: 1px solid #08DEA3;
	color: white;
}

.login-container input::placeholder {
	color: #939393;
}




/* Notification bar CSS  */


header {
	-moz-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
	height: 110px;
	vertical-align: middle;
}

.icons {
	display: inline;
	float: right
}

.notification {
	/* padding-top: 30px; */
	position: relative;
	display: inline-block;
}

.number {
	height: 22px;
	width: 22px;
	background-color: #d63031;
	border-radius: 20px;
	color: white;
	text-align: center;
	position: absolute;
	top: 23px;
	left: 60px;
	padding: 3px;
	border-style: solid;
	border-width: 2px;
}

.number:empty {
	display: none;
}

.notBtn {
	transition: 0.5s;
	cursor: pointer
}

.fas {
	font-size: 25pt;
	padding-bottom: 10px;
	color: black;
	margin-right: 40px;
	margin-left: 40px;
}

.box {
	width: 400px;
	height: 0px;
	border-radius: 10px;
	transition: 0.5s;
	position: absolute;
	overflow-y: scroll;
	padding: 0px;
	left: -300px;
	margin-top: 5px;
	background-color: #00285B;
	-webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
	cursor: context-menu;
	z-index: 10;
	/* border: 1px solid #ccc; */
}

.fas:hover {
	color: #d63031;
}

.notBtn:hover>.box {
	height: 60vh
}

.content {
	padding: 20px;
	color: black;
	vertical-align: middle;
	text-align: left;
}

.gry {
	background-color: #F4F4F4;
}

.top {
	color: black;
	padding: 10px
}

.display {
	position: relative;
}

.cont {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #013b86;
}

.cont:empty {
	display: none;
}

.stick {
	text-align: center;
	display: block;
	font-size: 50pt;
	padding-top: 70px;
	padding-left: 80px
}

.stick:hover {
	color: black;
}

.cent {
	text-align: center;
	display: block;
}

.sec {
	padding: 25px 10px;
	background-color: #013b86;
	transition: 0.5s;
}

.profCont {
	padding-left: 15px;
}

.profile {
	-webkit-clip-path: circle(50% at 50% 50%);
	clip-path: circle(50% at 50% 50%);
	width: 75px;
	float: left;
}

.txt {
	vertical-align: top;
	font-size: 1.25rem;
	padding: 5px 10px 0px 115px;
	color: white;
	text-decoration: none;
}

.sub {
	font-size: 1rem;
	color: grey;
}

.new {
	border-style: none none solid none;
	border-color: 1px solid #34F3FF;
}

.sec:hover {
	background-color: #BFBFBF;
}


/* Admin CSS  */

table th{
	background: #00285B !important;
	color: white !important;
}
table.table.dataTable>:not(caption)>*>* {
    background-color: var(--bg-lgt) !important;
	color: white !important;

}
.w-reasons{
	background: #00285B;
	color: white;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 2rem;
}

.data-card {
	background: #00285B;
	border: 1px solid #08DEA3;
	border-radius: 8px;
	padding: 1rem;
	/* margin-bottom: 2rem; */
}

.top-information,
.bottom-information {
	padding: 0 20px;
}

.td-img>img {
	width: 50px;
	border-radius: 50%;
	object-fit: cover;
}

#gen-pass {
	color: #0D285B;
	cursor: pointer;
	text-decoration: underline;
}

/* Available Button Toggle */
 
.toggle-container span{
	margin-right:1rem;
}
input[type="checkbox"] {
    position: relative;
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(255, 0, 0, 0.2);
    transition: 0.7s;
	cursor: pointer;
}

input:checked[type="checkbox"] {
  background: #03a9f4;
}

input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: .5s;
}

input:checked[type="checkbox"]:before {
  left: 20px;
}



/* Calender Scheduling CSS  */

.sch-btn-bdrd {
	background-color: none;
	/* color: white; */
	color: #08DEA3;
	border: 2px solid #08DEA3;
	width: 150px;
	margin-bottom: 1rem;
	display: block;
	border-radius: 4px;
	padding: 0.375rem 0.75rem;
	cursor: pointer;
	text-align: center;
}
.sch-btn-bdrd.disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}
.scheduled-slot {
    margin-top: 15px;
    padding: 10px;
    background-color: none;
    border-radius: 5px;
}

.scheduled-slot h5 {
    color: #08DEA3;
    margin-bottom: 10px;
}

.scheduled-slot p {
    margin-bottom: 5px;
    color: #fff;
}

.scheduled-slot .text-muted {
    color: #999;
    font-style: italic;
}
.no-slots-message{
	position: relative;
    top: 30%;
    text-align: center;
	color: #08DEA3;
}


/* .sch-btn-bdrd.available-slot {
    background-color: #e8f5e9;
    color: #2e7d32;
    cursor: pointer;
} */
 .success-msg{
	color: #08DEA3;
	display: none;
 }

.disabled-date {
    color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}
.send-request-modal{
	min-width: 700px;
}
.sch-btn-bdrd.available {
    background-color: none;
    cursor: pointer;
    opacity: 1;
}

.sch-btn-bdrd.unavailable {
    background-color: none;
    cursor: not-allowed;
    opacity: 0.5;
	display: none;
}

.sch-btn-bdrd.selected {
    background-color: #08DEA3;
    color: var(--bg-color);
}
.sch-btn-bdrd.slot-booked {
    background-color: #ffebee;
    color: #d32f2f;
    cursor: not-allowed;
    opacity: 0.7;
}
/* .disabled-date {
    color: #ccc !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
} */

/* .sch-btn-bdrd:hover{
	color: #08DEA3;
	border: 2px solid #08DEA3;
} */

.selc-time{
	background-color: #08DEA3;
	color: var(--bg-color);
	/* transition: all linear .2s; */
}
.already-selected{
	background-color: #08DEA3;
	color: var(--bg-color);
}
.sch-timings{
	height: 440px;
	overflow-y: scroll;
	padding-right: 2rem;
}
.sch-timings::-webkit-scrollbar {
	background: var(--bg-lgt);
	border-radius: 2px;
}

.sch-timings::-webkit-scrollbar-track {
	background: var(--bg-lgt);
	border-radius: 400px;
}

.sch-timings::-webkit-scrollbar-thumb {
	background: #013170;
	border-radius: 400px;
}

.calendar {
	width: 350px;
	margin-right: 2rem;
	/* margin: 50px auto 0; */
}
.calendar__month {
	font-size: 20px;
	font-weight: 800;
	padding: 10px 0;
	width: 100%;
	position: relative;
}
.cal-month__previous, .cal-month__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	width: 30px;
	height: 30px;
	text-align: center;
}
.cal-month__previous:hover, .cal-month__next:hover {
	background-color: #42a5f5;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.75);
	border-radius: 50%;
	font-weight: 800;
	color: #111;
}
.cal-month__next {
	right: 0;
}
.cal-month__current {
	text-align: center;
	color: #e1e1e1;
}
.cal-head__day, .cal-body__day {
	display: inline-block;
	width: 50px;
	height: 50px;
	float: left;
}
.cal-body__week, .calendar__head {
	display: block;
	height: 50px;
	width: 350px;
}
.calendar__head {
	line-height: 50px;
	position: relative;
}
.calendar__head:after {
	content: ' ';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #90caf9;
}
.cal-body__day {
	color: #777;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}
.cal-day__month--current {
	color: #e1e1e1;
}
.cal-day__day--today {
	font-weight: 800;
	color: #2196f3;
}
.cal-day__day--selected {
	background-color: #2196f3;
	box-shadow: 0 5px 10px -5px rgba(0, 0, 0, .75);
	border-radius: 50%;
	color: #111;
}