*{
	margin:0;
	padding:0;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

body{
	font-family: 'Nunito Sans', sans-serif;
	overflow-x: hidden;
  scroll-behavior: smooth;
	
}

.login-element .card{
	border:none;
	border-radius:30px;
}
.login-element.card-body{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border:none;
	border-radius:30px;
	padding:50px;
}
.bg-color{
	background-image: url("/static/img/login-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height:100vh;
}

.login-img img{
 width: 100%;
 height:100%;
 border-radius:20px;
}

.loginbutton{
	background-color: #1E757B;
	font-weight:bold;
	border-radius: 20px;
	padding:10px;
	color:#fff;
	width:21vw;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;	
}

.loginbutton:hover{
	background-color:#1c8188e8;
	border:none;
	color:#fff;
}

.login-text.input-label{
	font-size: 14px;font-weight:bold;
}

.login-text .forget-pass{
	float:right; margin-top:10px;font-size:12px;color:#1E757B;font-weight:bold;
}

.login-card{
	margin: 80px;
	height: auto;
}
@media only screen and (max-width: 600px) {
	.login-card{
		margin:30px;
		top: 50%;
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.login-text .form-control{
		width: 100%!important;
		padding:9px;
	}
	.login-img img{
		width: 100%;
		height:100%;
		border-radius:20px;
		display:none;
	 }
	 .login-text{
		padding:0rem;
	}
	 .bg-color{
		background-color: #fff;
		background-image: url("/static/img/mobile-login.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		height:100vh;

		
	}
}

.login-container{
  position:relative;
  width:50vw;
  height: 52vh;
  margin: auto;
	
}

.login-element{
  position:absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  width: 30vw; height: 30vh;
}

@media only screen and (max-width: 600px) {

	.login-element{
		position:absolute;
		top: 20rem; bottom: 0; left:-60px; right: 0;
		margin: auto;
		width: 80vw; 
		height: 50vh;
	}
}


.login-text{
	padding:1rem;
}



.login-text h3{
	font-weight: bold;
	color:#1E757B;
	text-align: center;
 }
 
 .login-text p{
	 font-weight: bold;
	 color:#A7A8A8;
	 font-size:12px;
	 text-align: center;
 }


 /*--------------------------------------------------------------------------------*/
 /*COURSE LIST PAGE*/

 .side-bar {
  background: #FAFAFA;
  backdrop-filter: blur(15px);
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 1;
}
.side-bar .menu {
  width: 100%;
}

.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}

.side-bar .menu .item a {
  color: #9A9C9D;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 0px 30px;
  line-height: 60px;
}

.side-bar .menu .item a:hover {
  background: #FAFAFA;
	color: #1E757B;
	font-weight:bold;
  transition: 0.3s ease;
}
.side-bar .menu .item i {
  margin-right: 15px;
}

.close-btn {
  position: absolute;
  color: #fff;
  font-size: 20px;
  right: 0;
  margin: 25px;
  cursor: pointer;
  display: none;
}

.menu-btn {
  position: absolute;
  color: #000;
  font-size: 20px;
  margin: 25px;
  cursor: pointer;
}


.main-content {
	width: 100%;
	margin-left: 0px;
}

.main-content .header h5 {
	margin: 20px;
	font-weight: normal;
}

attendence .col-md-12 {
	width: 115%;
	margin-left: 0px;
}

attendence .bottom-spacing {
	margin-bottom: 20px;
}
/*profile page*/
profile .col-md-12 {
	width: 97%;
	margin-left: 6px;
}

.side-bar .user-profile img{
	width:4vw; margin:9px;
}

/*responsive pages*/
@media only screen and (max-width: 768px) {
 
  .dashboard-desktop {
    display: none;
  }
  .header-desktop {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  
  .dashboard-mobile {
    display: none;
  }
  .header-mobile {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .side-bar {
    background: #FAFAFA;
    backdrop-filter: blur(15px);
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;	
    transition: 0.6s ease-in-out;
    transition-property: left;
  }

  .side-bar.active {
    left: 0;
  }
  .side-bar .menu {
    width: 100%;
  }

  .side-bar .menu .item {
    position: relative;
    cursor: pointer;
  }

  .side-bar .menu .item a {
    color: #9A9C9D;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
  }

  .side-bar .menu .item a:hover {
		background: #FAFAFA;
		color: #1E757B;
    transition: 0.3s ease;
  }

  .side-bar .menu .item i {
    margin-right: 15px;
  }

  .close-btn {
    position: absolute;
    color: #000;
    font-size: 20px;
    right: 0;
    margin: 25px;
    cursor: pointer;
    display: block;
   
  }

  .menu-btn {
    position: absolute;
    color: #000;
    font-size: 20px;
    margin: 15px;
    cursor: pointer;
  }

  .main-content {
    width: 100%;
    margin-left: 0px;
  }

  .main-content .header h5 {
    margin: 20px;
    font-weight: normal;
  }

  attendence .col-md-12 {
    width: 94%;
    margin-left: 11px;
  }

  attendence .bottom-spacing {
    margin-bottom: 20px;
  }
  /*profile page*/
  profile .col-md-12 {
    width: 97%;
    margin-left: 6px;
  }

	.side-bar .user-profile img{
		width:16vw; 
		margin:11px;
	}

}

.accordion-button:not(.collapsed) {
  color: #8885e3 !important;
  background-color: #fff !important;
}


.side-bar .logo{
	text-align: center;
	margin: 30px;
	font-weight:bold;
	color:#1E757B;
	font-size:23px;
}

.side-bar .user-profile{
	background-color: #fff;
	height:11vh;
	margin-bottom: 20px;
}

.side-bar .user-text {
	margin-top:17px;
	text-align: left;
}
.side-bar .user-text h6 {
	margin-bottom: 0px;
}


.course-list{
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.ellipse{
	background-color: #1e757b1e;
	border-radius:50px;
	width:70px;
	height:70px;
	margin:20px;

}
.ellipse i{
	padding:35px 20px 20px 20px;
	color:#1E757B;
}

.card-footer{
	background-color:#1e757b0c;
	border-top:none;
	padding:20px;
}
.course-button{
	background-color: #1E757B;
	font-weight:bold;
	border-radius: 5px;
	padding:6px;
	color:#fff;
	width:9vw;
	
}

.mobile-course-button{
	width:100%;
	background-color: #1E757B;
	font-weight:bold;
	border-radius: 5px;
	padding:6px;
	color:#fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cancel-button{
	border:1px solid #1E757B;
}
.course-button:hover{
	color:#fff;
}
.total-enquiry,.send ,.enquiry-list{
	margin-top:30px;
}

.filter-section{
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.open-badge{
	background-color:#1e757b11;
	font-size:12px;
	font-weight:bold; 
	color:#1E757B;
	padding:4px 10px;
	border-radius:10px;
}
.status{
	background-color:#13686e;
	font-size:10px;
	font-weight:bold; 
	color:#fff;
	padding:2px 10px;
	border-radius:10px;
}

.closed-badge{
	background-color:#4bae4e2a;
	font-size:12px;
	font-weight:bold; 
	color:#4BAE4F;
	padding:4px 10px;
	border-radius:10px;
}
.not-interested-badge{
	background-color:#f443362d;
	font-size:12px;
	font-weight:bold; 
	color:#F44336;
	padding:4px 10px;
	border-radius:10px;
}

.handledby{
	float: right;
	background-color: #1E757B;
	color:#fff;
	font-size:14px;
	padding:5px;	
	margin-right: -16px;
  margin-bottom: -16px;
	border-bottom-right-radius: 10px;
	font-weight:bold;
}
.handledby p{
	margin-bottom:0px;
}

.mobile-handledby{
	float: right;
	background-color: #1E757B;
	color:#fff;
	font-size:12px;
	padding:5px 10px;	
	margin-right: -16px;
  margin-bottom: -16px;
	border-bottom-right-radius: 10px;
	font-weight:bold;
}
.mobile-handledby p{
	margin-bottom:0px;
}


/*Course Detail page*/
.course-detail-header{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 8px;
	height:auto;
	font-size:14px;

}
.color-div{
	background-color: #1E757B;
	border-radius:8px;
}
.color-div h4{
	margin-top:40px;
}
.enquiry-color-div{
	background-color: #1E757B;
	border-radius:8px 8px 0px 0px ;
}

.activate-button{
	border:1px solid #fff;
	background-color:#1E757B;
	border-radius:5px;
	color:#fff;
	padding:5px;
	margin:10px 10px 20px 0px;
	float:right;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 4px 12px;
}

.course-img{
	width:12rem; 
	height:12rem;
	margin:auto;
	display:block;
	margin-top:-60px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.mobile-course-img{
	width:6rem; 
	height:6rem;
	margin:auto;
	display:block;
	margin:30px 20px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.course-details{
	margin-top:30px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius:5px;
}
.enquiry-details{
	border-radius:5px;
}
.introduction-section{
	margin-top:30px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius:5px;
	margin-bottom:30px;
	padding-bottom: 20px;
}
.introduction-section h5{
	color:#1E757B; 
	padding:20px 0px 0px 20px;
	font-weight:bold;
}


.detail1{
	padding:20px;
}
.color-card{
	background-color: #1e757b15;
	margin:20px;
	border-radius:10px;
}

.duration{
	background-color: #1E757B;
	width:6rem;
	height:2rem;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	float:right;
}
.duration p{
	font-weight:bold;
	color:#fff;
	font-size:14px;
	padding:6px 0px;
	text-align:center;
}

.add-lecture-btn{
	background-color:#fff;
	border-radius:20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border:1px solid #1E757B;
	margin:auto;
	display:block;
	padding:10px;
	
}
.mobile-card{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border:none;
	margin-top:10px; 

}
.mobile-div{
	margin:10px 0px;
}
.carousel-indicators .active{
	background-color: #13686e!important;
}
.collection-color-div{
	margin-bottom:3rem;
	border-radius:5px;
	background-color: #1e757b15;
}
.collection-color-div p{
	text-align:left;
	margin-bottom:0px;
	padding: 8px 0px 4px 8px;
	font-size:14px;
	font-weight:bold;
}

.header-line{
	width:40px;
	height:2px; 
	margin-left:10px;
	background-color: #1E757B;
}

.list h6{
	margin:20px;
	margin-bottom:0px;
	font-weight:bold;
}
.list p{
	margin:20px;
	margin-bottom:0px;
	font-weight:bold;

}
.list span{
	color:rgb(121, 120, 120);
	font-size:13px;
	margin-left:20px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: #000;
	background-color: #fff;
	border-bottom:2px solid #13686e;
	border-radius:none;
}
.nav-link {
	color:#000;
}
.nav-link:hover{
	color:#13686e;
}

.enquiry-followup-card{
	border:none;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	
}
.course-name{
	margin-left:20px;
	background-color:#1e757b0c;
	width:97%;
}
.course-name-mobile{
	margin-left:20px;
	background-color:#1e757b0c;
	width:90%;
	padding:15px;
}
.enquiry-list .nav-pills .nav-link {
	border-radius:0rem;
}

.input-group-append{

	display: flex;
}

.input-group{
	display: flex;
}
.test{
	display: flex;
}
  /* Default button styles */
  .responsive-button {
	display: inline-block;
	padding: 5px;
	font-size: 16px;
	background-color: #1e757b;
	color: #FFFFFF;
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
	/* Styles for smaller screens */
	.responsive-button {
		font-size: 14px;
		padding: 8px 16px;
	}
}

@media screen and (max-width: 480px) {
	/* Styles for even smaller screens */
	.responsive-button {
		font-size: 12px;
		padding: 6px 12px;
	}
}