@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
	--black: #000;
	--white: #fff;
	--theme_color: #d79970;
	--dark_grey: #191c24;
	--grey: #f7f7f7;
	--successColor: #2ed47e;
	--dangerColor: #e74c3c;
}

body {
	background: var(--black);
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

*:not(i) {
	font-family: "Outfit", sans-serif;
}

body,
button {
	font-size: 14px;
	color: #fff;
}

p:last-child {
	margin: 0px;
}

a,
button {
	cursor: pointer;
}

a {
	text-decoration: none;
	color: var(--theme_color);
}

img {
	width: 100%;
}

div {
	width: 100%;
}

h3 {
	font-size: 27px;
	line-height: 1.25;
	font-weight: 500;
}

h4 {
	font-size: 24px;
	line-height: 1.25;
	font-weight: 500;
}

h5 {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 500;
}

label[for="remember"] {
	display: flex;
	align-items: center;
	gap: 7px;
}

input[type="checkbox"] {
	width: 18px;
	height: 18px;
}
span.select2 {
    width: 100% !important;
}
/* .dashboard header .button_custom {
	padding: 0px;
	background: transparent;
	color: var(--theme_color);
	border-radius: 0px;
	font-weight: 500;
	transition: all .2s linear;
	border: 0;
	text-transform: uppercase;
    font-size: 18px;
} */
.button_custom {
	padding: 12px 20px;
	background: var(--theme_color);
	color: var(--dark_grey);
	border-radius: 6px;
	font-weight: 500;
	transition: all .2s linear;
	border: 1px solid var(--theme_color);
}

.button_custom:hover {
	background-color: var(--black);
	color: var(--theme_color);
}

.form_group label {
	font-weight: 500;
	color: #d4d9e3;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 14px 10px;
	text-align: left;
	font-size: 14px;
}

tr:not(:last-child) td,
tr:not(:last-child) th {
	border-bottom: 1px solid #fff1;
}

/***************************login page css**************/
section.login {
	padding: 60px;
	background: #313338;
}

.login_main {
	display: flex;
	min-height: calc(100vh - 120px);
	max-width: 1520px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
}

.login_main>div {
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black);
	box-shadow: 0 5px 15px #0003;
	flex-direction: column;
	gap: 20px;
}

.login_main .img_side {
	background: #D79970;
	position: relative;
	padding: 0px;
}

.login_main .img_side a.brand_logo img {
	max-width: 220px;
	height: auto;
	/* filter: invert(1); */
}

.login_imgs {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	height: 100%;
}

.login_imgs img {
	height: 100%;
	object-fit: cover;
}

.login a.brand_logo {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .55);
	max-width: 100%;
}

.login_heading_group {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
.login_main .alert.alert-danger {
    max-width: 550px;
}
.form_side .form_control {
	border-color: #ffffffc7;
	color: #fff;
}

.form_side .form_control::placeholder {
	color: var(--white);
}

.form_side form {
	width: 100%;
	max-width: 550px;
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.form_side form .fileds {
	display: flex;
	flex-direction: column;
	row-gap: 25px;
}

.form_group.remember {
	display: flex;
	justify-content: space-between;
}

.form_group:not(.remember) {
	display: flex;
	flex-direction: column;
	gap: 7px;
	position: relative;
}

.form_control {
	padding: 12px 14px;
	line-height: 1;
	border: 1px solid #000;
	font-size: 16px;
	background: transparent;
	outline: none;
	height: 50px;
}

.form_control[type="submit"],
.form_control[type="button"],
.form_control[type="submit"].btn,
.form_control[type="button"].btn {
	background: #d79970;
	color: #fff;
	font-weight: 500;
	border-color: #d79970;
	border-radius: 6px;
	line-height: 1;
	cursor: pointer;
	border-color: var(--theme_color) !important;
	padding: 12px 28px;
	height: auto;
}

/***********************************dashboard css start**************************************************

********************************************************************************************************/
.dashboard {
	display: flex;
}

aside {
	width: 100%;
	max-width: 270px;
	background: var(--dark_grey);
	min-height: 100vh;
	transition: .5s;
	position: fixed;
	top: 0;
	z-index: 2;
	left: 0;
	overflow: hidden;
	padding-bottom: 60px;
	border-right: 1px solid #fff2;
}

aside .brand_upper {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	border-bottom: 1px solid #fff2;
}

aside .brand_upper .toggle_dash {
	filter: invert(1);
	max-width: 32px;
	cursor: pointer;
}

.brand_upper a {
	display: flex;
}

ul.sidenav {
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	list-style: none;
}

ul.sidenav li a,
ul.sidenav li form button {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--white);
	font-weight: 500;
	flex-shrink: 0;
	transition: .5s;
	width: 100%;
	justify-content: space-between;
	padding: 12px 18px;
}
ul.sidenav li a span {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
}
ul.sidenav li form {
	width: 100%;
}

ul.sidenav li a img,
ul.sidenav li form button img {
	max-width: 24px;
	filter: invert(1);
	aspect-ratio: 1;
	object-fit: contain;
}

ul.sidenav li.has_child>a::after {
    content: 'chevron_forward';
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    line-height: 1;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
	transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
}

ul.sidenav li.has_child>a {
	position: relative;
}
ul.sub_menu {
    list-style: none;
    display: none;
    padding: 8px 8px 8px 20px;
    background: #0008;
}
ul.sub_menu a {
    padding: 10px 0 10px 25px;
    font-size: 13px;
}
ul.sub_menu a i {
    font-size: 16px;
}
li.has_child {
    display: flex;
    flex-direction: column;
}
ul.sidenav li.has_child.active>a::after {
    transform: rotate(90deg);
}
/********************main css********************/
main {
	width: calc(100% - 270px);
	margin-left: auto;
	padding: 0 20px 20px;
	transition: .5s;
}

.dashboard header {
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	background: var(--dark_grey);
	position: sticky;
	left: 0;
	border-radius: 6px;
	z-index: 2;
	transition: .5s;
	border: 1px solid #fff2;
}

.burger_menuactive main {
	width: calc(100% - 65px);
}

form.search {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 420px;
}

form.search input {
	border-radius: 6px;
	border: 2px solid #8b8b8b;
}

form.search input[type="submit"] {
	position: absolute;
	right: 7px;
	top: 7px;
	height: calc(100% - 14px);
	font-size: 0px;
	aspect-ratio: 1;
	background-color: var(--white);
	background-image: url(../images/search.png);
	border: none;
	filter: invert(1);
	cursor: pointer;
	background-position: center;
	background-size: 55%;
	background-repeat: no-repeat;
}

form.search input[type="text"] {
	width: 100%;
	padding: 12px 45px 12px 12px;
	background-color: var(--white);
	font-size: 14px;
	border: none;
}

ul.right_header {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}

ul.right_header img {
	max-width: 30px;
	filter: invert(1);
}

ul.right_header li {
	display: flex;
	cursor: pointer;
	align-items: center;
	gap: 4px;
	transition: all .18s linear;
}

ul.right_header li span.badge {
	background: var(--theme_color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	padding: 0px;
	aspect-ratio: 1;
	border-radius: 50%;
	font-weight: 500;
	position: absolute;
	right: -5px;
	top: -5px;
	width: 15px;
}

ul.right_header li.profile img {
	max-width: 36px;
	border-radius: 50%;
	border: 2px solid var(--theme_color);
	filter: none;
	height: 36px;
}
i#bell-icon {
    position: relative;
}
/*****************************main css***************************/
.main {
	padding: 30px 0px 0px ;
	background: var(--black);
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	/* height: 100vh;
    max-height: calc(100vh - 123px); */
	overflow-y: scroll;
}

.main::-webkit-scrollbar {
	display: none;
}

.analytics {
	display: flex;
	gap: 20px;
}

.card_cus {
	padding: 20px;
	border: 2px solid #fff2;
	background: var(--dark_grey);
	border-radius: 12px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.icon_box {
	display: flex;
	padding: 18px;
	aspect-ratio: 1;
	max-width: 75px;
	background: var(--black);
	border-radius: 6px;
	align-items: center;
	justify-content: center;
}

.icon_box img {
	filter: invert(1);
}

.icon_box i {
	font-size: 40px;
}

span.bg_stats {
	display: flex;
	align-items: center;
	gap: 7px;
	font-weight: 500;
	color: #d79970;
	background: #d7997029;
	padding: 3px 15px;
	border-radius: 6px;
	display: none;
}

span.bg_stats img {
	max-height: 14px;
	object-fit: contain;
	width: auto;
}

span.bg_stats i {
	font-size: 20px;
}

.counts {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.analytics h5 {
	color: var(--theme_color);
}

.box_heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.view_all {
	color: var(--white);
	font-weight: 500;
}

.maintenance-card,
.table_data {
	padding: 10px;
	background: var(--dark_grey);
	border-radius: 12px;
	border: 1px solid #fff2;
}

h6.user_profile {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

h6.user_profile img {
	max-width: 40px;
	border-radius: 50%;
}

.car_details {
	display: flex;
	gap: 10px;
}

.car_details img {
	max-width: 50px;
	border-radius: 5px;
}

span.time_own {
	font-size: 12px;
	display: flex;
	gap: 7px;
	align-items: center;
}

span.time_own span.circle {
	width: 6px;
	background: var(--theme_color);
	border-radius: 50%;
	aspect-ratio: 1;
	display: block;
}

.car_details h6 {
	font-size: 14px;
}

/*************************dashboard form css***************************/
::-webkit-calendar-picker-indicator {
	background-image: url(http://icons.iconarchive.com/icons/dakirby309/simply-styled/256/Calendar-icon.png);
	background-position: center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	color: rgba(204, 204, 204, 0);
}

.dataTables_filter .form-control {
	background-color: transparent;
	color: #fff;
	transition: all .2s linear;
}

.dashboard .main form .form_control {
	color: #fff;
	border-color: #fff3;
	font-size: 14px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all .2s linear;
}

.dashboard .main form .form_control[type] {
	display: block;
}

.dashboard .main form .form_control[type="date"] {
	width: 100%;
}

.dataTables_filter .form-control:focus,
.dashboard .main form .form_control:focus {
	border-color: #d4d9e3 !important;
}

.dashboard .main form .form_control[type="file"] {
	padding: 0 !important;
	min-height: 44px;
}

.dashboard .main form .form_control[type="file"]::-webkit-file-upload-button {
	border: none;
	background: #fff2;
	height: 48px;
	color: #fff;
}

.form_fields_group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
}

.form_fields_group .half {
	width: calc(100% / 2 - 10px);
}

.form_fields_group .one_third {
	width: calc(100% / 3 - 13.34px);
}

.form_fields_group .one_fourth {
	width: calc(100% / 4 - 15px);
}

.heading_with_btn,
.heading_with_btn h5,
.heading_with_btn h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.heading_with_btn h5 {
	opacity: .6;
}

.heading_with_btn h3 .material-symbols-outlined {
	font-size: 30px;
}

.heading_with_btn a {
	color: #fff;
}

.form_submit_end {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	margin-top: 20px;
}

.form_submit_end .btn:first-child {
	background: var(--white);
	font-weight: 500;
	color: var(--black) !important;
	border-radius: 4px;
	line-height: 1;
	cursor: pointer;
	padding: 12px 28px;
	border: 1px solid var(--white) !important;
}

.form_submit_end .btn:last-child {
	padding: 12px 28px;
	border: 1px solid var(--theme_color);
	color: var(--black) !important;
	transition: all .2s linear;
}

.form_submit_end .btn:last-child:hover {
	background: transparent;
	color: var(--theme_color) !important;
}

div#simpletable_wrapper .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

div#simpletable_wrapper .row .col-sm-12 {
	width: 100%;
}

div#simpletable_wrapper .form-control {
	padding: 5px;
	border: 1px solid #fff2;
	outline: none;
	border-radius: 4px;
	height: 32px;
}

div#simpletable_wrapper .row:last-child div#simpletable_info {
	padding: 0px;
}

div#simpletable_paginate ul.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	list-style: none;
}

div#simpletable_paginate ul.pagination * {
	color: #aeb9cb;
}

div#simpletable_paginate ul.pagination a {
	padding: 8px 12px;
	display: flex;
	border: 1px solid #fff2;
	min-width: 30px;
	justify-content: center;
	border-radius: 4px;
	font-size: 12px;
	transition: all .18s linear;
}

.table_data .btn-group {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 0px 0;
}

.table_data .btn-group i {
	filter: brightness(0) invert(1);
	transition: all .18s linear;
}

.table_data .btn-group button {
	border: 0;
	background: transparent;
	display: flex;
}

.select2-container--default .select2-selection--single {
	background-color: transparent;
	border: 1px solid #ffffff38;
	border-radius: 4px;
	height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #fff;
	line-height: 24px;
	padding: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #fff transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
	height: auto;
    transform: translate(0, -50%);
}

.select2-results__option,
.form_control option {
	color: #d4d9e3;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--theme_color);
	color: var(--black);
}

.select2-dropdown {
	background-color: var(--dark_grey);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #fff2;
	background: #fff1;
	padding: 8px;
	color: #fff;
	outline:none !important;
	border-radius: 6px;
	transition: all .2s linear;
}
.select2-dropdown {
    border: 1px solid #fff3;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
	border: 1px solid #fff8;
}

.table_data ul {
	list-style: square;
}

.tab-content {
	display: none;
	flex-direction: column;
	row-gap: 20px;
}

.tab-content.active {
	display: flex;
}

.tab-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.tab-buttons button {
	padding: 0.5rem 1rem;
	cursor: pointer;
	border-radius: 6px;
	font-weight: 500;
	color: #fff;
	border: 2px solid #dddddd40;
	background: var(--dark_grey);
	transition: all .18s linear;
}

.tab-buttons button.active,
.tab-buttons button:hover {
	background-color: var(--theme_color);
	border-color: var(--theme_color);
	color: var(--black);
}

#simpletable {
	width: 100% !important;
}

ul.right_header li.profile {
	position: static;
}

.profilemenu_dropdown {
	position: absolute;
	right: 20px;
	top: 70px;
	border-radius: 12px;
	background: var(--black);
	display: none;
	flex-direction: column;
	z-index: 1;
	border: 1px solid #fff2;
	max-width: 260px;
}

.profilemenu_dropdown.active {
	display: flex;
}

.promenu_header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px dashed #e7e2e294;
}

.profilemenu_dropdown a {
	font-weight: 500;
}
.promenu_body{
	padding: 10px 0;
}
.promenu_body a,
.notification_dropdown ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding:10px 16px;
	width: 100%;
	color: #ffffff;
	transition: all .18s linear;
}

.promenu_body i,
.promenu_body span {
	color: #d79970;
}

.promenu_body a:hover {
	background-color: #2c343e;
}

.profilemenu_dropdown .title {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.burger_menu {
	cursor: pointer;
	transition: .5s;
	width: auto;
}

.burger_menu span {
	height: 1px;
	width: 25px;
	margin: 6px 0;
	display: block;
	background: #ffffff;
	transition: .5s;
	border-radius: 4px;
}

.burger_menu.active span.top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}

.burger_menu.active span.middle-bar {
	opacity: 0;
}

.burger_menu.active span.bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 90%;
	margin-top: 5px;
}

.brand_upper .logo_icon {
	display: none;
	height: 37.33px;
	object-fit: contain;
	width: 40px;
}

img.main_logo {
	height: 33.33px;
	object-fit: contain;
}

aside.active .main_logo {
	width: 114px;
}

aside.active:hover .main_logo {
	width: 100%;
}

aside.active {
	max-width: 65px;
}

aside.active ul.sidenav li a,
aside.active ul.sidenav li form button {
	font-size: 0;
}

aside.active .signoutform button {
	font-size: 0;
	gap: 0;
}

aside.active .burger_menu.active {
	display: none;
}

aside.active:hover {
	max-width: 270px;
}

aside.active:hover .burger_menu.active {
	display: block;
}

aside.active:hover ul.sidenav li a,
aside.active:hover ul.sidenav li form button,
aside.active:hover .signoutform button {
	font-size: 14px;
}

.form_control::placeholder {
	color: #ffffffbd;
}

ul.sidenav li a:hover,
ul.sidenav li form button:hover {
	color: var(--theme_color);
}

ul.sidenav li a:hover img,
ul.sidenav li form button:hover img {
	filter: invert(100);
}

.material-symbols-outlined {
	font-size: 20px;
}

.material-symbols-outlined:hover,
.heading_with_btn a:hover {
	color: var(--theme_color);
}

.heading_with_btn a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.heading_with_btn a i {
	font-size: 19px;
}

div#simpletable_paginate ul.pagination a:hover {
	background-color: #000000;
}

.badge {
	font-size: 24px;
	border-radius: 3px;
	padding: 3px 10.24px;
}

.status {
    border-radius: 3px;
    padding: 4px 10px;
}

.badge.confirmed, .success_status {
    color: var(--successColor);
    background: #2ed47e1a;
	border: 1px solid #2ed47e22;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.badge.error {
	color: var(--dangerColor);
	background: #e74c3c1a;
}

#simpletable_length .form-control {
	padding: 0 !important;
	border: 0 !important;
	background: transparent;
	color: #ffffff;
	font-weight: 500;
}

#simpletable_length .form-control option {
	color: #000;
}

.btn {
	transition: .5s;
	font-weight: 500;
}

.btn:hover {
	opacity: .9;
}
.view_current {
    position: absolute;
    right: 15px;
    text-align: right;
    top: 50%;
    width: auto;
    z-index: 1;
    transform: translate(0, -17%);
}
.view_current>div {
    top: -4px;
    position: absolute;
    right: 15px;
} 
.viewonly_table .row:first-child,
.viewonly_table .row:last-child,
.viewonly_table thead .sorting:after,
.viewonly_table thead .sorting:before,
.viewonly_table thead .sorting_asc:after,
.viewonly_table thead .sorting_asc:before {
	display: none !important;
}

.viewonly_table td, .booking_divs ul li {
    color: #fff;
    font-weight: 500;
}
.booking_divs ul li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    border-bottom: 1px dashed #e0e0e07a;
    padding: 18px 0;
    justify-content: space-between;
}
.booking_divs ul li:last-child {
	border-bottom: none;
}
.booking_divs ul li strong {
	color: #fff6;
	font-weight: 500;
}

.vehicle_divs,
.booking_box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	height: 48px;
}

.booking_divs {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
}

.booking_box {
	padding: 20px;
	border-radius: 12px;
	width: calc(100% / 3 - 13.33px);
	gap: 15px;
	background: var(--dark_grey);
}

.booking_box.bookbox_1third {
	width: 66.2%;
}

.booking_box.bookbox_full {
	width: 100%;
}

.booking_divs ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.in_box {
    padding: 11px 15px;
    border: 1px solid #ffffff38;
    flex-direction: row !important;
    justify-content: space-between;
    line-height: 0;
    border-radius: 5px;
    align-items: center;
	height: 50px;
}

.alert {
	border-radius: 0 15px 15px 0;
	padding: 20px;
	border: 2px solid #0f01;
	box-shadow: -2px -2px 4px #fff1 inset, 2px 2px 4px #0004 inset;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.alert-success {
	border-left: 3px solid var(--successColor);
	color: var(--successColor);
	background: #2ed47e1a;
}

.alert-danger {
	background: #f002;
	color: #f00;
	border-left: 3px solid #f00;
}

.maintenance-card .row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

/* .vehicle-info {
    width: calc(50% - 31px);
} */
.maintenance_table th,
.maintenance_table td {
	padding: 12px 0;
}

.maintenance_table td:first-child strong {
	color: #fff8;
}

.maintenance-card h4 {
	margin-bottom: 4px;
	color: #fffd;
}

.vrl {
	border-top: 1px solid #fff2;
	height: 1px;
}

.thumbnailimg {
	height: 70px;
	width: 70px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #fff1;
	padding: 3px;
	transition: all .2s linear;
	cursor: pointer;
}

.thumbnailimg:hover {
	border: 1px solid #fff8;
	transform: scale(1.05);
}

.overflow-hidden {
	overflow: hidden !important;
}

.pop-up {
	position: fixed;
	z-index: 9999;
	height: 100%;
	width: 100%;
	background: #0005;
	display: block;
	top: 0;
	left: 0;
	backdrop-filter: blur(5px);
}

.closeicon {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 30px;
	cursor: pointer;
}

.pop-up-body {
	max-width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.date-filter form {
	display: flex;
	justify-content: start;
	align-items: end;
	gap: 20px
}

.date-filter form label {
	display: block;
	width: 100%;
}

.date-filter form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	padding: 14px 25px;
}

.date-filter button.btn.form_control.one_third {
	justify-content: center;
	gap: 10px;
}

.rowspace2 {
	border-spacing: 0 10px !important;
}

tr.expiredv {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .02) 50%, rgba(255, 255, 255, .02) 75%, transparent 75%, transparent);
	background-size: 1rem 1rem;
}

tr.expiredv td {
	background: #d1243b22;
	font-weight: 500;
}

tr.expiredv .badge.error {
	background: transparent !important;
}

.overflow-x-auto {
	overflow-x: auto;
}

.delivery_successbox {
	flex-direction: column;
	padding: 20px;
	border-radius: 12px;
	background: #d79970b3;
	gap: 15px;
	font-size: 18px;
}

.delivery_successbox h3 {
	display: flex;
	width: 100%;
	gap: 10px;
	align-items: center;
	flex-direction: column;
}

.delivery_successbox h3 .material-symbols-outlined {
	font-size: 50px;
}

.form_submit_end_buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-end;
}

.alert-success h5,
.form_submit_end_buttons a,
.booking_box a {
	display: flex;
	gap: 10px;
	align-items: center;
}

.signature-pad {
	background-color: #fff;
	cursor: crosshair;
	display: block;
	border-radius: 12px;
	width: 100%;
	height: 300px;
	min-height: 300px;
}

.signature-container {
	background-color: #000000f2;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.modal {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 4;
	top: 0;
	left: 0;
	backdrop-filter: blur(4px);
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease, display 0.3s ease;
}

.show.modal {
	opacity: 1;
}

.modal-md {
	max-width: 650px;
	padding: 40px;
	border-radius: 12px;
	background-color: var(--black);
	margin: 0 auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.modal-content,
.modal-body {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.modal-body ul,
.modal-footer {
	display: flex;
	flex-direction: column;
	gap: 20px;
	list-style: none;
}

.modal-title,
.modal-body ul li {
	display: flex;
	gap: 10px;
	align-items: center;
}

.modal-footer .btn {
	background: #d79970;
	color: #fff;
	font-weight: 500;
	border-radius: 6px;
	line-height: 1.5;
	cursor: pointer;
	border: 2px solid var(--theme_color);
	padding: 12px 28px;
	width: 100%;
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
	background-color: var(--theme_color);
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	font-family: inherit;
	transform: translateY(-50%);
}

.table_data ul {
	width: 100%;
}

.dataTables_filter,
.dataTables_filter label,
.dataTables_length select,
.dataTables_length label,
.dataTables_length,
.dataTables_info,
table.dataTable thead>tr>th {
	color: #fff8;
	font-weight: 400;
}

.form_side .form_control[type="submit"] {
	color: var(--black);
	border: 1px solid var(--theme_color);
}

.form_side .form_control[type="submit"]:hover {
	color: var(--theme_color);
	background: transparent;
}

select.form_control option {
	background-color: var(--dark_grey);
	color: var(--white);
}

select.form_control option:hover {
	background: var(--theme_color) !important;
}

footer {
	padding: 12px;
	display: flex;
	justify-content: center;
	background: var(--dark_grey);
	border-radius: 6px;
}

footer p {
	text-align: center;
	font-size: 13px;
	color: #aeb9cb;
}

.signoutform {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}

.signoutform button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #000;
	border: 0;
	padding: 14px;
	width: 100%;
	justify-content: center;
	border: 5px solid var(--dark_grey);
	transition: all .2s linear;
	font-weight: 500;
}

.signoutform button:hover {
	background: var(--theme_color);
	color: var(--black);
}

.heading_actions {
	width: auto;
	display: flex;
	gap: 20px;
}

.btn-danger,
.btn-danger i {
	color: #F90101 !important;
	transition: all .2s linear;
}

.table_data .btn-group a:hover i,
.btn-danger:hover i {
	filter: none;
}

.flatpickr-input,
.input,
.form_control[type="date"] {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" viewBox="0 0 24 24" fill="%23d79970"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zm-7-9h5v5h-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.5rem center;
	background-size: 20px 20px;
	padding-right: 2rem;
}

.form_submit_end button.form_control {
	display: flex !important;
	align-items: center;
	gap: 10px;
}

.view_current button {
	border: 0;
	background: transparent;
	color: var(--theme_color);
}

.view_current i {
	color: var(--theme_color);
	cursor: pointer;
}

.view_current.view_upadted {
	z-index: 2;
}

@-moz-document url-prefix() {
	.dashboard .main form .form_control[type="file"] {
		padding: 12px 14px !important;
	}
}
.btn-group a {
	display: flex;
}
.view_current.multiple_images {
    position: static;
    display: flex;
	transform: unset;
}
.badge {
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

.notification_dropdown {
    position: absolute;
    right: 40px;
    top: 70px;
    border-radius: 12px;
    background: var(--black);
    display: none;
    z-index: 9;
    border: 1px solid #fff2;
    max-width: 300px;
    overflow: hidden;
    flex-direction: column;
}

.notification_dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_dropdown li:not(:last-child) {
    border-bottom: 1px solid #fff2;
}

.notification_dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
	transition: all .18s linear;
}

.notification_dropdown li a:hover {
    background-color: #2c343e;
}
.notification_dropdown ul li a {
    padding: 16px;
	gap: 16px;
	font-size: 16px;
	font-weight: 500;
	transition: all .18s linear;
}
.notification_dropdown i {
    padding: 10px;
    border-radius: 50%;
    color: var(--theme_color);
    background: #293542;
	transition: all .18s linear;
}
.notification_dropdown li a:hover i {
    color: var(--white);
    background: var(--theme_color);
}
.notification_dropdown p {
    padding: 16px 20px;
    border-bottom: 1px dashed #e7e2e294;
    font-size: 16px;
    font-weight: 500;
}
.notification_dropdown p span {
    color: #ffffff80;
}
.select2-container--default .select2-results__option--selected {
    background-color: #000000;
}
.form_control[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* fully invisible but clickable */
  cursor: pointer;
  background: transparent;
}
i.material-symbols-outlined.error {
    color: var(--dangerColor);
    filter: unset;
}
.no_notification {
	padding: 25px 20px;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}
form.dash-form {
    padding: 20px;
    background: var(--dark_grey);
    border-radius: 6px;
    border: 1px solid #fff2;
}
form.dash-form .form_group label {
    margin-bottom: -19px;
    background: var(--dark_grey);
    z-index: 1;
    width: max-content;
    padding: 3px 6px;
    margin-left: 10px;
    border-radius: 4px;
	text-transform: uppercase;
    font-weight: 400;
}
.view_current 
.large_form_group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form_group.in_box label.form-label {
    margin: 0px;
    padding: 0px;
    background: transparent;
}
.large_form_group.inline {
    flex-direction: row;
    flex-wrap: wrap;
}
.card-header {
    margin: 40px 0px 0px;
}
.card-header:first-child {
    margin: 0px;
}
.booking_box form.dash-form {
    padding: 0px;
    border: none;
}
tr .btn-group a, tr .btn-group button {
    background: #fff2 !important;
    padding: 8px;
    border-radius: 100px;
}
tr .btn-group a i, tr .btn-group button i {
    filter: brightness(0) invert(1);
    font-size: 16px;
}
tr .btn-group button:hover i {
    filter: none;
}
tr .btn-group a:hover, tr .btn-group button:hover {
    opacity: 1;
}
.form_page .user_change_pass {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.eye_icon {
    background: #ffffff5c !important;
    padding: 8px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.table thead th{
	color: #fff7 !important;
	font-weight: 500;
}
.mb-18{
	margin-bottom: 18px;
}
.p-20{
	padding: 20px;
}
.w-100{
	width:100% !important;
}
/* Responsive css */
@media (max-width: 1440px) {
	.analytics {
		flex-wrap: wrap;
	}

	.card_cus,
	.form_fields_group .one_third,
	.booking_box {
		width: calc(100% / 2 - 10px);
	}
}

@media (min-width: 1025px) {
	.mob_menu, .burger_menu {
		display: none;
	}

	.dashboard header {
		top: 0;
		margin-top: 20px;
	}

	.dashboard header.sticky {
		top: 0;
		transition: .5s;
	}
}

@media (max-width: 1024px) {
	form.dash-form{
		padding:14px
	}
	.card-header {
		margin: 20px 0px 0px;
	}
	.form_submit_end,
	.form_fields_group {
		gap: 16px;
	}
	.main {
		padding: 30px 15px 15px !important;
	}
	.maintenance-card .row {
		flex-direction: column;
		gap: 20px;
	}

	.vehicle-info,
	.form_fields_group .one_third,
	.booking_box,
	.form_fields_group .half,
	aside.active .main_logo,
	main,
	.burger_menuactive main,
	.card_cus {
		width: 100%;
	}

	.analytics {
		gap: 14px;
	}

	.counts {
		align-items: start;
		gap: 5px;
		/* flex-direction: column; */
	}

	.analytics h5 {
		font-size: 15px;
		font-weight: 500;
	}

	header .button_custom {
		display: none;
	}

	aside {
		transform: translate(-100%, 0);
	}

	aside.active {
		max-width: 270px;
		transform: translate(0, 0);
		box-shadow: 10px 0 20px #0005;
		        z-index: 3;
	}

	aside.active ul.sidenav li a,
	aside.active ul.sidenav li form button {
		font-size: 14px;
	}

	aside.active .signoutform button {
		font-size: 14px;
		gap: 6px;
	}

	aside .brand_upper {
		padding: 17px 20px;
	}

	aside.active .burger_menu.active {
		display: block;
	}

	.burger_menu.mob_menu.active span.top-bar,
	.burger_menu.mob_menu.active span.middle-bar,
	.burger_menu.mob_menu.active span.bottom-bar {
		transform: unset;
		opacity: unset;
	}

	.dashboard header {
		top: 0;
		border-radius: 0;
	}

	main {
		padding: 0;
	}

	footer {
		border-radius: 0;
	}

	.burger_menuactive {
		overflow: hidden;
	}

	.burger_menuactive:before {
		backdrop-filter: blur(4px);
		content: "";
		height: 100%;
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 2;
	}
}

@media (max-width: 768px) {
	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	.tab-buttons,
	div#simpletable_wrapper .row,
	.form_submit_end {
		flex-wrap: wrap;
	}

	div.dataTables_wrapper div.dataTables_length,
	div.dataTables_wrapper div.dataTables_filter,
	div.dataTables_wrapper div.dataTables_paginate {
		text-align: left;
	}

	div.dataTables_wrapper div.dataTables_filter label {
		width: 100%;
	}

	div#simpletable_paginate ul.pagination {
		margin: 10px 0 0;
	}

	.heading_with_btn,
	.heading_with_btn h5,
	.heading_with_btn h3 {
		gap: 20px;
		flex-wrap: wrap;
	}

	.form_submit_end .btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	/* Login Form */
	section.login {
		padding: 20px;
		min-height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.login_main>div {
		padding: 30px;
		border-radius: 12px;
	}

	.login_main {
		min-height: initial;
	}

	.login_main .img_side {
		display: none;
	}

	.date-filter form {
		gap: 10px;
	}

	.date-filter .form_fields_group .one_fourth {
		width: calc(100% / 2 - 5px);
	}

	.date-filter .button_custom {
		width: 100%;
		justify-content: center;
	}
}

footer {
	display: none;
}

img#modalImage {
    width: 800px !important;
    object-fit: cover;
}
@media only screen and (max-width:767px){
.counts h5 {
    margin-top: 6px !important;
}
}
.counts h3 {
    font-size: 21px !important;
}