@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

body{
	font-family: 'Montserrat', sans-serif;
	background: linear-gradient(180deg, #2A2D32 0%, #161719 100%);
	color: #EBEBF5
}


a{transition: 0.4s;-webkit-transition: 0.4s;-ms-transition: 0.4s;-moz-transition: 0.4s;}
.btn{transition: 0.4s;-webkit-transition: 0.4s;-ms-transition: 0.4s;-moz-transition: 0.4s;}

.btn-rounded{border-radius: 25px;}
.btn{
	padding: .656rem 2.188rem;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #EBEBF5;
}

.btn-primary{background-color: #24CEBD;color: #fff;border-color: #24CEBD;}
.btn-primary:hover{background-color: transparent;color: #24CEBD;border-color: #24CEBD;}
.btn-primary:not(:disabled):not(.disabled):active{background-color: #24CEBD;color: #fff;border-color: #24CEBD;}
.btn-primary.focus, .btn-primary:focus {
  color: #fff;
  background-color: #24CEBD;
  border-color: #24CEBD;
  box-shadow: 0 0 0 .2rem rgba(36,206,189,.5);
}
.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {box-shadow: 0 0 0 .2rem rgba(36,206,189,0.5);}

.btn-primary:disabled {
	background-color: #cccccc; /* A grey color to indicate disabled state */
	color: #666666; /* A slightly darker grey for text */
	border-color: #cccccc; /* Matching border color */
	cursor: not-allowed; /* Change cursor to indicate non-clickable */
	opacity: 0.6; /* Slightly transparent to show it's disabled */
  }

.btn-orange{background-color: #FE6D00;color: #fff;border-color: #FE6D00;}
.btn-orange:hover{background-color: transparent;color: #FE6D00;border-color: #FE6D00;}
.btn-orange:not(:disabled):not(.disabled):active{background-color: #FE6D00;color: #fff;border-color: #FE6D00;}
.btn-orange.focus, .btn-orange:focus {
  color: #fff;
  background-color: #FE6D00;
  border-color: #FE6D00;
  box-shadow: 0 0 0 .2rem rgba(254,109,0,.5);
}
.btn-orange:focus, .btn-orange:not(:disabled):not(.disabled):active:focus {box-shadow: 0 0 0 .2rem rgba(254,109,0,0.5);}

.btn-secondary{background-color: #00B2FF;color: #fff;border-color: #00B2FF;}
.btn-secondary:hover{background-color: transparent;color: #00B2FF;border-color: #00B2FF;}
.btn-secondary:not(:disabled):not(.disabled):active{background-color: #00B2FF;color: #fff;border-color: #00B2FF;}
.btn-secondary.focus, .btn-secondary:focus {
  color: #fff;
  background-color: #00B2FF;
  border-color: #00B2FF;
  box-shadow: 0 0 0 .2rem rgba(0,178,255,.5);
}
.btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus {box-shadow: 0 0 0 .2rem rgba(0,178,255,0.5);}

.login-main{
	height: 100vh;
	background-image: url("../images/login-bg.jpg");
	background-size: cover;
	background-position: center center;
}

.login-main .row, .login-main .container-fluid{height: 100vh;}

.login-logo{margin-bottom: 25px;}

.form-content{
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 30px 50px;
	border: 1px solid;
	border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 0, 0, 0) 100%);
	background: #282B2F;
	color: #fff;
	text-align: center;
	border-radius: 20px;
}

.form-section{width: 100%;}

.form-section h3{font-weight: 600;font-size: 26px;color: #EBEBF5;margin-bottom: 15px;}
.form-section p{font-weight: 600;font-size: 20px;color: #EBEBF5;margin-bottom: 0;}

.form-section .btn{
	padding: .656rem 3.125rem;
}

.form-label-group {position: relative;margin-bottom: 1rem;}

.form-control{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.25);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
}


.form-label-group > .form-control{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.25);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
}

.form-label-group > .form-control,
.form-label-group > label,
.input-group > .form-control,
.input-group > label,
.form-select .form-control{
	height: 62px;
	padding: 1.1rem .95rem 1.1rem;
	transition: all .4s ease-in-out;
}

.form-label-group > label,
.input-group > label {
	position: absolute;
	font-size: 16px;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	margin-bottom: 0; /* Override default `<label>` margin */
	line-height: 1.5;
	color: rgba(235, 235, 245, 0.4);
	text-align: left;
	pointer-events: none;
	cursor: text; /* Match the input under the label */
	border: 1px solid transparent;
	border-radius: .25rem;
	z-index: 3;
	transition: all .1s ease-in-out;
}

.form-label-group .form-control::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group .form-control:-ms-input-placeholder {
  color: transparent;
}

.form-label-group .form-control::-ms-input-placeholder {
  color: transparent;
}

.form-label-group .form-control::-moz-placeholder {
  color: transparent;
}

.form-label-group .form-control::placeholder {
  color: transparent;
}

.form-label-group .form-control:not(:placeholder-shown) {
	padding-top: 1.45rem;
	padding-bottom: .35rem;
}

.form-label-group .form-control:not(:placeholder-shown) ~ label {
	padding: .45rem .95rem .85rem;
	font-size: 12px;
	color: rgba(235, 235, 245, 0.4);
}
.form-label-group .form-control:focus {
	padding-top: 1.45rem;
	padding-bottom: .35rem;
}

.form-label-group .form-control:focus ~ label {
	padding: .45rem .95rem .85rem;
	font-size: 12px;
	color: rgba(235, 235, 245, 0.4);
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group .form-control::-ms-input-placeholder {
    color: rgba(235, 235, 245, 0.4);
  }
}

/* Fallback for IE
-------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group .form-control:-ms-input-placeholder {
    color: rgba(235, 235, 245, 0.4);
  }
}


.form-label-group.has-icon > i{
	position: absolute;
	left: 20px;top: 50%;
	transform: translateY(-50%);
	color: rgba(235,235,245,0.8);
	z-index: 99;
	font-size: 20px;
}

.form-label-group.has-icon > .form-control,
.form-label-group.has-icon > label {
	padding-left: 3.5rem !important;
}
.form-label-group.has-icon > .form-control:focus ~ label {
	padding-top: .45rem !important;
	padding-bottom: .25rem !important;
	font-size: 12px;
	color: rgba(235, 235, 245, 0.4);
}

.login-main .bg-img {
	top: 0;
	bottom: 0;
	z-index: 999;
	min-height: 100vh;
	position: relative;
	text-align: center;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
}


/*  sidebar menu css  */
.navbar {
    padding: 8px 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	background: #32373C;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.navbar h4{
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	text-shadow: -3px -2px 22px rgba(255, 255, 255, 0.25);
	margin-bottom: 0;
	margin-left: 25px;
}
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

/*.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px;
}*/

.wrapper {
    display: flex;
    width: 100%;
	
}

/*#sidebar {
    min-width: 240px;
    max-width: 240px;
    background: #d6199d;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}*/

#sidebar {
    width: 240px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #32373C;
    color: #fff;
    transition: all 0.3s;
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}

#sidebar.active {
    margin-left: -240px;
    transform: rotateY(100deg);
}

#sidebar .sidebar-header {
    padding: 15px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	text-align: center;
}
#sidebar .sidebar-header a{display: block;}

#sidebar ul.components {
    padding: 10px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li {
	padding-bottom: 5px;
}
#sidebar ul li a {
	position: relative;
    padding: 12px 25px;
	font-size: 16px;
    display: block;
	font-weight: 500;
	color: rgba(235, 235, 245, 0.5);
}
#sidebar ul li a::before {
	position: absolute;
	left: 0;top: 0;
	content: "";
	width: 6px;height: 46px;
	background: rgba(36,206,189,0);
	border-radius: 0px 15px 15px 0px;
}
#sidebar ul li a i{
	margin-right: 14px;
	font-size: 18px;
	color: #EBEBF5;
}
#sidebar ul li a:hover {
    color: #fff;
	text-decoration: none;
}

#sidebar ul li.active > a{
    color: #24CEBD;
	background-color: rgba(36, 206, 189, 0.06);
}
#sidebar ul li.active > a::before {
	background: rgba(36,206,189,1.00);
}
#sidebar ul li.active > a i{
    color: #24CEBD;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
/*#content {
    width: 100%;
    padding: 0;
    min-height: 100vh;
    transition: all 0.3s;
}*/

#content {
    width: calc(100% - 240px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
	background: linear-gradient(180deg, #2A2D32 0%, #161719 100%);
}
#content.active {
    width: 100%;
}

.inner-content {
    padding: 30px;
    width: 100%;
    min-height: 100vh;
}

#sidebarCollapse {
    width: 35px;
    height: 35px;
    cursor: pointer;
	padding: 0;
	background-color: transparent;
}
#sidebarCollapse:focus {
   box-shadow: none;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #555;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}


#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px 0;
}
#sidebarCollapse.active span:first-of-type {
	width: 65%;
}
#sidebarCollapse.active span:last-of-type {
	width: 55%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -240px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px 5px;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }
	.navbar .btn {padding: .656rem 1rem;}
	.navbar-collapse{padding-top: 25px;}
	.navbar h4{margin-left: 0;margin-bottom: 15px;}
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -240px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 240px);
    }
	#sidebarCollapse{
		background-color: #24CEBD
	}
	#sidebarCollapse span{
		background-color: #fff;
		width: 70%
	}
	#sidebarCollapse span:first-of-type {width: 60%;}
	#sidebarCollapse.active span:first-of-type {width: 70%;}
	#sidebarCollapse span:last-of-type {width: 55%;}
	#sidebarCollapse.active span:last-of-type {width: 70%;}
}

.navbar-nav .nav-link .btn{
	font-weight: 400;
	font-size: 16px;
	color: #EBEBF5;
	text-transform: inherit;
	padding: .5rem 1.875rem;
}

.navbar-nav .nav-item.dropdown{text-transform: uppercase;color: #FFFFFF;font-size: 16px;}
.navbar-nav .nav-item.dropdown img{margin-right: 10px;}

.card {
	margin-bottom: 30px;
	background-color: #383B42;
	border-radius: 10px;
	border: 1px solid;
	border-image: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 0, 0, 0) 100%);
}

.card-body {padding: 1rem;border-radius: 10px;}


.table-dark{background-color: #383B42;}
.table-dark tbody td{color: #EBEBF5;}
table.table-bordered.dataTable {
	border-left: 1px solid rgba(235, 235, 245, 0.15);
}
.table-bordered thead td, .table-bordered thead th {
	border-bottom-width: 1px;
}
table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td {
  border-top-width: 0;
  border-bottom-width: 1px;
}
.table-dark td, .table-dark th, .table-dark thead th {
	border-color: rgba(235, 235, 245, 0.15);
}
.table thead th {
	font-weight: 500;
	font-size: 14px;
}
div.dataTables_wrapper div.dataTables_length label{
	color: #EBEBF5;
}
div.dataTables_wrapper div.dataTables_length select{
	background: #24272C url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.05);
	color: rgba(235, 235, 245, 0.8);
	font-size: 14px;
	border-radius: 5px;
	height: 35px;
	margin-left: 5px;margin-right: 5px;
}

div.dataTables_wrapper div.dataTables_filter input{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.05);
	color: rgba(235, 235, 245, 0.8);
	border-radius: 5px;
	height: 35px;
}
.table-action a{display: inline-block;}
.table-action a, .table .btn-sm{
	background: rgba(0, 178, 255, 0.1);
	color: #00B2FF;
	width: 32px;height: 32px;
	border-radius: 50%;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.table .btn-sm{padding: 0;}

.table-action a:hover, .table .btn-sm:hover{background-color: #00B2FF;color: #fff;}

.dropdown .dropdown-menu {
	min-width: 10rem;
	padding: .5rem 0;
	margin: 0;
	font-size: .875rem;
	background-color: #292e33;
	border: 1px solid #32383e;
	border-radius: .3rem;
	color: #adb5bd;
}

.dropdown .dropdown-menu .dropdown-item{
	color: #adb5bd;
	padding: .35rem 1.2rem;
}
.dropdown .dropdown-item:focus, .table .dropdown .dropdown-item:hover {
	color: #b9bfc4;
	background-color: #2f343a;
}

.access-status .btn{
	padding: 2px 8px;
	gap: 10px;
	border-radius: 5px;
	font-weight: 500;
}

.green-status{background-color: rgba(40,199,111,.12);color: #28C76F;}
.green-status:hover{color: #28C76F;}
.red-status{background-color: rgba(230, 68, 68, 0.1);color: #E64444}
.red-status:hover{color: #E64444}

.access-status:hover> .dropdown-menu {
	display: block;
}

.access-status> .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
	pointer-events: none;
}

.access-status.dropdown .dropdown-item i{font-size: 14px;}
.access-status.dropdown .dropdown-item i.point-online{color: #28C76F}
.access-status.dropdown .dropdown-item i.point-offline{color: #E64444}

.page-item.disabled .page-link {
  color: #EBEBF5;
  pointer-events: none;
  background-color: #383B42;
  border-color: rgba(235, 235, 245, 0.15);
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #24CEBD;
  border-color: #24CEBD;
}

.page-link:hover {
  z-index: 2;
  color: #ced4da;
  background-color: #2a2f34;
  border-color: rgba(235, 235, 245, 0.15);
}
.page-link {
  padding: .375rem .75rem;
}
.page-link {
  position: relative;
  display: block;
  color: #EBEBF5;
  text-decoration: none;
  background-color: #383B42;
  border: 1px solid rgba(235, 235, 245, 0.15);
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.modal-header{
	margin-left: 25px;
	margin-right: 25px;
	background-color: #24CEBD;
	padding: 1rem 1rem 1rem 1.563rem;
	border-radius: 10px;
	margin-top: -25px;
	border: 0;
}

.modal-content{
	background: #32373C;
	border-radius: 10px;
	border: 1px solid;
	border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 0, 0, 0) 100%);
}

.modal-header .close {
  color: #E64444;
  text-shadow: none;
  opacity: 1;
}
.large-modal.modal{
	padding-left: 80px !important;
	padding-right: 80px !important;
}

.large-modal.modal .modal-xl{
	max-width: 1137px;
	width: 100%;
}

.modal-body {padding: 1.563rem;}
.modal-content .table-dark{background: #32373C;border: 1px solid rgba(235,235,245,0.15)}
.modal-content .table-dark thead th {
	vertical-align: bottom;
	border-bottom: 1px solid #dee2e6;
    border-bottom-color: rgba(235,235,245,0.15);
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #FFFFFF;
}
.modal-content .table-dark tbody td {font-weight: 400;font-size: 16px;line-height: 20px;color: #EBEBF5;}

.table-dark td, .table-dark th, .table-dark thead th {
	border-color: rgba(235,235,245,0.15);
}

.table-footer-btns{margin-top: 10px;}
.table-footer-btns .btn:not(:last-child){margin-right: 15px;}

.entry-color{color: #06992F}
.exit-color{color: #FE6D00}

.btn-group .btn:not(:last-child) {margin-right: 20px;}

.btn-group-toggle .btn-outline-primary{
	background-color: transparent;
	border: 1.5px solid #6D6F77;
	border-radius: 15px;
	padding: 15px 30px;
	text-transform: inherit;
}
.btn-group-toggle .btn-outline-primary span{
	display: block;
	text-transform: uppercase;
}
.btn-group-toggle .btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-group-toggle .btn-outline-primary:not(:disabled):not(.disabled):active, 
.show > .btn-group-toggle .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #22C3B3;
	border-color: #22C3B3;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
	box-shadow: 0 0 0 .2rem rgba(34,195,179,.5);
}

.modal-body .btn-group{margin-bottom: 25px;}

hr{border-top: 1px solid rgba(0, 0, 0, 0.3);margin: 0;margin-bottom: 1.25rem;}

.add-site-btn{
	padding-left: 20px;
	padding-right: 20px;
	height: 62px;
	font-weight: 400;
	text-transform: inherit;
}
.modal-inner-title{
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: #EBEBF5;
	margin-bottom: 15px;
	margin-top: 0;
}
.modal-sub-title{
	font-style: italic;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: rgba(235, 235, 245, 0.8);
}
.table-action a.remove-icon{background: rgba(230, 68, 68, 0.1);color: #E64444;}

.page-info{
	font-weight: 500;
	font-size: 18px;
	color: rgba(235, 235, 245, 0.4);
	margin-bottom: 1rem;
}

.form-label-group > select.form-control{
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	background: url("../images/arrow-down.png") #24272C no-repeat right center;
	padding-right: 30px;
	padding-left: 12px;
}

select::-ms-expand { display: none;}

.switch-button {
	display: inline-block;
	background-color: #b3b3b3;
	width: 62px;
	height: 28px;
	padding: 4px;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	background: #24272C;
	box-shadow: inset -4px -4px 8px rgba(252, 254, 255, 0.05), inset 14px 14px 19px rgba(0, 0, 0, 0.05);
	border-radius: 34px;
	color: #7F8493;
}
.switch-button input[type=checkbox] {
  display: none;
}
.switch-button label {
	border-radius: 50%;
	box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.15), 2px 2px 10px rgba(0, 0, 0, 0.45), inset 0px 4px 42px rgba(0, 0, 0, 0.06);
	background-color: #222529;
	margin: 0;
	height: 18px;
	width: 18px;
	z-index: 1;
	display: inline-block;
	cursor: pointer;
	background-clip: padding-box;
	margin-top: 1px;
}
.switch-button label:before {
	position: absolute;
	font-size: 10px;
	font-weight: 400;
	z-index: 0;
	content: "Off";
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 12px;
	top: 0;
	text-align: right;
	padding-right: 13px;
	color: #7F8493;
}
.switch-button input[type=checkbox]:checked + span {
	background: #24272C;
	box-shadow: inset -4px -4px 8px rgba(252, 254, 255, 0.05), inset 14px 14px 19px rgba(0, 0, 0, 0.05);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 4px;
}
.switch-button input[type=checkbox]:checked + span label {
	float: right;
	border-color: #24CEBD;
	background-color: #24CEBD;
}
.switch-button input[type=checkbox]:checked + span label:before {
	position: absolute;
	font-size: 10px;
	font-weight: 400;
	z-index: 0;
	content: "On";
	color: #7F8493;
	left: 0;
	text-align: left;
	padding-left: 10px;
}
.switch-button.switch-button-yesno label:before {
	content: "No";
}
.switch-button.switch-button-yesno input[type=checkbox]:checked + span label:before {
	content: "Yes";
}

.switch-button.switch-button-xs {
	height: 28px;
	line-height: 16px;
	width: 62px;
}
.switch-button.switch-button-xs label {
	height: 18px;
	width: 18px;
}
.switch-button.switch-button-xs label:before {
	line-height: 28px;
}

.upload-file, .upload-file .custom-file-input{height: 62px;}

.custom-file-input:hover {
	cursor: pointer;
}

.upload-file .custom-file-label{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.05);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
	height: 62px;
	display: flex;
	align-items: center;
}
.upload-file .custom-file-label::after {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 0;
	z-index: 3;
	display: block;
	padding: .775rem 1.75rem;
	line-height: 1.5;
	color: #ffffff;
	content: "Choose file";
	text-transform: uppercase;
	background-color: #24CEBD;
	border-left: inherit;
	border-radius: 5px;
	height: 50px;
}

.upload-file .custom-file-input:lang(en) ~ .custom-file-label::after {
	content: "Choose file";
}

.access-radio .btn-group-toggle .btn-primary {
	color: #fff;
	border-radius: 25px;
	padding: 12px 35px;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: inherit;
	opacity: 0.3;
}
.access-radio .btn-group-toggle .btn:not(:last-child) {margin-right: 15px;}
.access-radio .btn-group-toggle .btn-primary:not(:disabled):not(.disabled).active, 
.access-radio .btn-group-toggle .btn-primary:not(:disabled):not(.disabled):active, .show > 
.access-radio .btn-group-toggle .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #22C3B3;
	border-color: #22C3B3;
	box-shadow: none;
	opacity: 1;
}

.select-date-group {position: relative;margin-bottom: 25px;}

.select-date-group .form-control{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.05);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
	height: 62px;
}
.select-date-group label{font-weight: 500;font-size: 16px;color: rgba(235, 235, 245, 0.5);margin-bottom: 10px;}
.form-label{font-weight: 500;font-size: 16px;color: rgba(235, 235, 245, 0.5);margin-bottom: 10px;}

.select-date-group .input-group-text{
	background: #00B2FF;
	border: 1px solid #24272C;
	color: #fff;
}


.week-checkbox .btn-group-toggle .btn-dark {
	background: radial-gradient(64.18% 126.83% at 16.75% 21.74%, rgba(84, 86, 89, 0.5) 0%, rgba(35, 38, 41, 0.5) 100%) 
	/* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	padding: 0;
	border-radius: 50%;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 10px;
	border: 1px solid transparent;
	position: relative;
}
.week-checkbox .btn-group-toggle .btn:not(:last-child) {margin-right: 8px;}

.week-checkbox .btn-group-toggle .btn-dark:not(:disabled):not(.disabled).active, 
.week-checkbox .btn-group-toggle .btn-dark:not(:disabled):not(.disabled):active, .show > 
.week-checkbox .btn-group-toggle .btn-dark.dropdown-toggle {
	color: #00B2FF;
	border: 1.5px solid #24CEBD;
	opacity: 1;
}

.cst-btn-group{height: auto;width: 100%}

.modal-dialog {margin: 2.75rem auto 1.75rem;}

.multiSelect {
    position: relative;
	margin-bottom: 1.25rem;
}

.multiSelect *, .multiSelect *::before, .multiSelect *::after {
    box-sizing: border-box;
}

.multiSelect_dropdown {
	position: relative;
    font-size: 14px;
    min-height: 62px;
    outline: none;
    background-color: #fff;
    padding: 0.5px 13px;
    margin: 0;
    transition: .1s border-color ease-in-out;  
    cursor: pointer;
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.05);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
}

.multiSelect_dropdown.-hasValue {
    padding: 20px 30px 5px 5px;
    cursor: default;
}

.multiSelect_dropdown.-open {
    box-shadow: none;
    outline: none;
    padding: 20px 29.5px 4.5px 4.5px;
}

.multiSelect_arrow::before,
.multiSelect_arrow::after {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 8px;
    border-radius: 20px;
    border-bottom: 8px solid #99A3BA;
    top: 40%;
    transition: all .15s ease;
}

.multiSelect_arrow::before {
    right: 18px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.multiSelect_arrow::after {
    right: 13px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.multiSelect_list {
    margin: 0;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(10 * 31px);
    top: 28px;
    left: 0;
    z-index: 9999;
    right: 0;
    background: #24272C;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: opacity 0.1s ease, visibility 0.1s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    -webkit-transform: scale(0.8) translate(0, 4px);
    transform: scale(0.8) translate(0, 4px);
    border: 1px solid #d9dbde;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.12);
}

.multiSelect_option {
    margin: 0;
    padding: 0;
    opacity: 0;
    -webkit-transform: translate(6px, 0);
    transform: translate(6px, 0);
    transition: all .15s ease;
}

.multiSelect_option.-selected {
    display: none;
}

.multiSelect_option:hover .multiSelect_text {
    color: #fff;
    background: #24CEBD;
    text-decoration: none;
}

.multiSelect_text {
    cursor: pointer;
    display: block;
    padding: 5px 13px;
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all .15s ease;
}

.multiSelect_list.-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(0, 12px);
    transform: scale(1) translate(0, 12px);
    transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.multiSelect_list.-open + .multiSelect_arrow::before {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
}

.multiSelect_list.-open + .multiSelect_arrow::after {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
}

.multiSelect_list.-open .multiSelect_option {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.multiSelect_list.-open .multiSelect_option:nth-child(1) {
  transition-delay: 10ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(2) {
  transition-delay: 20ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(3) {
  transition-delay: 30ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(4) {
  transition-delay: 40ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(5) {
  transition-delay: 50ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(6) {
  transition-delay: 60ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(7) {
  transition-delay: 70ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(8) {
  transition-delay: 80ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(9) {
  transition-delay: 90ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(10) {
  transition-delay: 100ms;
}

.multiSelect_choice {
    background: rgba(36, 206, 189, 0.1);
    color: rgba(235, 235, 245, 0.8);
    padding: 4px 8px;
    line-height: 17px;
    margin: 5px;
    display: inline-block;
    font-size: 13px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.multiSelect_deselect {
    width: 12px;
    height: 12px;
    display: inline-block;
    stroke: #E64444;
    stroke-width: 4px;
    margin-top: -1px;
    margin-left: 2px;
    vertical-align: middle;
}

.multiSelect_choice:hover .multiSelect_deselect {
    stroke: #a1a8b1;
}

.multiSelect_noselections {
    text-align: center;
    padding: 7px;
    color: #b2bac3;
    font-weight: 450;
    margin: 0;
}

.multiSelect_placeholder {
    position: absolute;
    left: 20px;
    font-size: 16px;
    top: 18px;
    padding: 0 4px;
	background-color: #24272C;
    color: rgba(235, 235, 245, 0.8s);
    pointer-events: none;
    transition: all .1s ease;
}

.multiSelect_dropdown.-open + .multiSelect_placeholder,
.multiSelect_dropdown.-open.-hasValue + .multiSelect_placeholder {
    top: 6px;
    left: 15px;
	font-weight: 400;
	font-size: 12px;
	color: rgba(235, 235, 245, 0.4);
}

.multiSelect_dropdown.-hasValue + .multiSelect_placeholder {
    top: 6px;
    left: 15px;
	font-weight: 400;
	font-size: 12px;
	color: rgba(235, 235, 245, 0.4);
}

.input-group-addon {cursor: pointer;}

.bootstrap-datetimepicker-widget.dropdown-menu {
  border: 1px solid #34495e;
  border-radius: 0;
  box-shadow: none;
  margin: 10px 0 0 0;
  padding: 0;
  min-width: 300px;
  max-width: 100%;
  width: auto;
	background-color: #32373C;
	color: #EBEBF5;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before, .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  display: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td,
.bootstrap-datetimepicker-widget.dropdown-menu table th {
  border-radius: 0;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td.old, .bootstrap-datetimepicker-widget.dropdown-menu table td.new {
  color: #bbb;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td.today:before {
  border-bottom-color: #0095ff;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td.active,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active:hover,
.bootstrap-datetimepicker-widget.dropdown-menu table td span.active {
  background-color: #0095ff;
  text-shadow: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td.active.today:before,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active:hover.today:before,
.bootstrap-datetimepicker-widget.dropdown-menu table td span.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget.dropdown-menu table th {
  height: 40px;
  padding: 0;
  width: 40px;
}
.bootstrap-datetimepicker-widget.dropdown-menu table th.picker-switch {
  width: auto;
}
.bootstrap-datetimepicker-widget.dropdown-menu table tr:first-of-type th {
  border-bottom: 1px solid #34495e;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td.day {
  height: 32px;
  line-height: 32px;
  padding: 0;
  width: auto;
}
.bootstrap-datetimepicker-widget.dropdown-menu table td span {
  border-radius: 0;
  height: 77px;
  line-height: 77px;
  margin: 0;
  width: 25%;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-months tbody tr td,
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-years tbody tr td,
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td {
  padding: 0;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td span {
  display: block;
  float: left;
  width: 50%;
  height: 46px;
  line-height: 46px !important;
  padding: 0;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td span:not(.decade) {
  display: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td {
  padding: 0;
  width: 30%;
  height: 20px;
  line-height: 20px;
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td:nth-child(2) {
  width: 10%;
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td a,
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td span,
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button {
  border: none;
  border-radius: 0;
  height: 56px;
  line-height: 56px;
  padding: 0;
  width: 100%;
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td span {
  color: #22C3B3;
  margin-top: -1px;
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td span:hover {
	background-color: #3B4046
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button {
  background-color: #32373C;
  color: #EBEBF5;
  font-weight: bold;
  font-size: 1.2em;
}
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button:hover {
  background-color: #24CEBD;
}

.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td {
  border-top: 1px solid #34495e;
}
.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td a, .bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td span {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0;
  width: 100%;
  color:#EBEBF5;
}
.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td a:hover, .bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td span:hover {
	background-color: #3B4046
}
.todayText:before {
  content: "Today's Date";
  color:#EBEBF5
}
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
	background: #24CEBD;
	cursor: pointer
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
	background: #3B4046
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
	background: #3B4046
}

.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
	color: #EBEBF5 !important
}
.bootstrap-datetimepicker-widget .timepicker-hour:hover, .bootstrap-datetimepicker-widget .timepicker-minute:hover, .bootstrap-datetimepicker-widget .timepicker-second:hover {
	background: #3B4046
}


.login-head{
	background-color: #24CEBD;
	border-radius: 15px;
	margin-bottom: 50px;
	padding: 25px;
	margin-top: -30px;
}

.form-select .form-control{
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.25);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
}

.tbl-link{
	color: #ffffff;
	text-decoration: underline;
}

.cst-link{
	color: #24CEBD;
}
.custom-control {
	padding-left: 1.6rem;
}
.custom-control-label::before {
	top: 0;
	left: -1.6rem;
	width: 1.2rem;
	height: 1.2rem;
	background-color: #383B42;
}


.custom-control-label::after {
	top: 0;
	left: -1.6rem;
	width: 1.2rem;
	height: 1.2rem;
}
.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	border-color: #24CEBD;
	background-color: #24CEBD;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
	border-color: #7AFAED;
}
.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0 0 .2rem rgba(36,206,189,.25);
}


/* Scoped styles for the modal */
/* #mapModal .modal-body #map {
	width: 600px;
	height: 600px;
}
#mapModal .custom-toolbar {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1000;
	display: flex;
	align-items: center;
	background: #333;
	padding: 5px 10px;
	border-radius: 25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#mapModal .custom-toolbar button {
	background: none;
	border: none;
	color: white;
	margin: 0 5px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
#mapModal .custom-toolbar button.active {
	color: #00d1c1;
}
#mapModal .custom-toolbar button svg {
	margin-right: 5px;
} */
 
/* Positioning the map modal to the right */
#mapModal.modal {
    position: fixed;
    top: 5%;
    left: 50%;
    width: 45%;
    height: 80%;
    margin: 0;
    border-radius: 15px; /* Adjust the value to change the rounding of corners */
    border: 5px solid #24CEBD; /* Thick border with the specified color */
    background-color: rgba(255, 255, 255, 0.9);
    overflow: hidden; /* Ensure content doesn't overflow */
}

#myKaart.modal {
    position: fixed;
    top: 5%;
    left: 25%;
    width: 50%;
    height: 80%;
    margin: 0;
    border-radius: 15px; /* Adjust the value to change the rounding of corners */
    border: 5px solid #24CEBD; /* Thick border with the specified color */
    background-color: rgba(255, 255, 255, 0.9);
    overflow: hidden; /* Ensure content doesn't overflow */
}


#mapModal .modal-dialog {
    max-width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mapModal .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
}

#myKaart .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
}

#mapModal .modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#myKaart .modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mapModal .modal-header, #mapModal .modal-footer {
    border: none;
}

#myKaart .modal-header, #myKaart .modal-footer {
    border: none;
}

/* Existing styles for map and toolbar */
#mapModal #map {
    width: 100%;
    height: calc(100% - 60px);
}

#myKaart #map {
    width: 100%;
    height: calc(100% - 60px);
}


#mapModal .custom-toolbar {
    /* position: absolute;
    top: 10px;
    left: 10px; */
    z-index: 1000;
    display: flex;
    align-items: center;
    /* background: #333; */
    padding: 10px 10px;
    border-radius: 25px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */
}

#myKaart .custom-toolbar {
    /* position: absolute;
    top: 10px;
    left: 10px; */
    z-index: 1000;
    display: flex;
    align-items: center;
    /* background: #333; */
    padding: 10px 10px;
    border-radius: 25px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */
}

#mapModal .custom-toolbar button.active {
    color: #00d1c1;
}

#myKaart .custom-toolbar button.active {
    color: #00d1c1;
}

#mapModal .custom-toolbar button svg {
    margin-right: 5px;
} 

#myKaart .custom-toolbar button svg {
    margin-right: 5px;
} 

/* Multiple Locations */
.input-group-location {
	display: flex;
	align-items: stretch;
	padding-top: 5px;

  }
  
  .input-group-location .form-control-location,
  .input-group-location .input-group-text-location,
  .input-group-location .form-label-group-location > .form-control {
	height: 62px;
	padding: 1.1rem .95rem 1.1rem;
	transition: all .4s ease-in-out;
  }
  

  .input-group-location .input-group-addon-location {
	cursor: pointer;
	display: flex;
	/* align-items: center; */
  }
  
  .input-group-location .input-group-text-location {
	background: #00B2FF;
	border: 1px solid #24272C;
	color: #fff;
	display: flex;
	align-items: center;
  }
  
  .form-label-group-location {
	position: relative;
	margin-bottom: 2rem;
  }
  
  .form-label-group-location > .form-control {
	background: #24272C;
	border: 1px solid #24272C;
	box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.05), inset 8px 8px 16px rgba(0, 0, 0, 0.25);
	border-radius: 5;
	color: rgba(235, 235, 245, 0.8);
	font-weight: 500;
  }
  
  .form-label-group-location > label {
	position: absolute;
	font-size: 16px;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	margin-bottom: 0;
	line-height: 1.5;
	color: rgba(235, 235, 245, 0.4);
	text-align: left;
	pointer-events: none;
	cursor: text;
	border: 1px solid transparent;
	border-radius: .25rem;
	z-index: 3;
	transition: all .1s ease-in-out;
  }
  
  .contact-input .input-group-btn .btn{
    padding: .5rem 1rem;
    height: 100%;
    background-color: #24CEBD;
    border-radius: .25rem 0 0 .25rem;

  }
  .contact-input .input-group-btn .btn .emoji{
    font-size: 1.1rem;
  }
  .contact-input .input-group-btn .btn:hover{
    color: #fff;
  }
  
  .contact-input .dropdown-menu{
    background-color: #32373C;
    font-size: 14px;
  }
  .contact-input .dropdown-menu .dropdown-item{
    color: #EBEBF5;
      padding: .25rem 1rem;
  }
  .contact-input .dropdown-menu .dropdown-item:hover{
    background-color: #000;
  }
  .contact-input .dropdown-item:focus, .dropdown-item:hover {
    background-color: #000;
  }
  .contact-input .input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    background-color: #24CEBD ;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* CSS for disabling the outer modal */
.disabled-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1040; /* Ensure it covers the outer modal but not the inner modal */
    display: none; /* Hidden by default */
}
.pillContainer {
    margin-top: 0px;
	margin-bottom: 10px;
  }
  .pill {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #e0e0e0;
    border-radius: 20px;
  }
  .fa-times {
	margin-left: 5px;
	margin-right: 3px; 
	cursor: pointer;
}
  .fa-times:hover {
	color: #E64444;
	cursor: pointer;
}

.leaflet-control {
    padding-right: 0 !important; /* Override default padding */
    display: inline-block !important; /* Ensure controls display correctly */
}


/* Style for the time input */
input[type="time"].form-control {
    background-color: #383B42; /* background color */
    border: none; /* remove default border */
    color: #FFFFFF; /* text color */
    padding: 10px 10px 10px 20px;
    border-radius: 5px 0 0 5px; /* rounded corners for the left side */
    font-size: 16px;
    outline: none; /* remove default outline */
    width: calc(100% - 50px); /* adjust width to fit with button */
    box-sizing: border-box;
}

/* Container for the input and the button */
.time-picker-container {
    display: flex;
    align-items: center;
    border: 2px solid #24CEBD; /* border color for the container */
    border-radius: 5px; /* rounded corners for the container */
    background-color: #383B42; /* background color for the container */
}

/* Style for the button next to the input */
.time-picker-button {
    background-color: #24CEBD; /* button background color */
    border: none; /* remove default border */
    padding: 10px;
    border-radius: 0 5px 5px 0; /* rounded corners for the right side */
    cursor: pointer; /* pointer cursor on hover */
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-picker-button i {
    color: #383B42; /* icon color */
    font-size: 20px; /* adjust the size of the icon */
}
.map-container {
  width: 100%;
  height: 500px;
}

.search-container {
  margin-top: 20px;
  text-align: center;
}

#searchInput {
  width: 300px;
  padding: 10px;
  font-size: 16px;
}

.pac-container {
  z-index: 9999 !important;
}