* { font-family: Poppins, sans-serif; }
/* html, body { height: 100%; font-size: 14px; }
body { display: flex; margin: 0; overflow: hidden; } */

.c-mmd-body { display: flex; margin: 0; overflow: hidden; height: 100%; font-size: 14px;}


/* # Login Page */
#id-login-form {
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 0 14px rgba(0, 0, 0, .1);
}

#id-login-title {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

#id-login-form label {
	display: block;
	margin-bottom: 2rem;
}
#id-login-form label span { color: #8D969A; }
#id-login-form label input:not([type="checkbox"]):not([type="range"]),
#id-login-form label select {
	width: 100%;
	height: 40px;
	margin-top: .25rem;
}

#id-login-error {
	margin-block: 2rem 0;
	padding-top: 2rem;
	border-top: 1px solid #F3F3F4;
	text-align: center;
	color: #CD432D;
}
#id-login-error span { display: inline-block; transform: translateY(-50%); }

#id-login-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#id-login-form #id-remember-me {
	display: flex;
	align-items: center;
	gap: .25rem;
	margin: 0;
	cursor: pointer;
}

/* # Navbar # */
.c-mmd-navbar {
	display: flex;
    flex-direction: column;
	width: 17%;
	padding: 1rem;
	background-color: #999;
	background: radial-gradient(200% 60% at 120% 65%, #005E57 21.00%, #003C38 36.00%, #00221F 51.00%, #000F0D 67.00%, #000303 83.00%, #000 100%);
	box-sizing: border-box;
	transition: width .3s;
}
.c-mmd-navbar.c-menu-closed { width: calc(30px + 2rem); }

#id-nav-logo-container {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 35px;
	margin-bottom: 1.75rem;
	white-space: nowrap;
}
nav.c-menu-closed #id-nav-logo-container { justify-content: center; }

#id-nav-logo-container > img { width: 30px; }
#id-nav-logo-container > h1 { margin: 0; color: white; }
#id-nav-logo-container > #id-toggle-menu { display: flex; margin-left: auto; transition: transform .2s; }
#id-nav-logo-container > #id-toggle-menu > img { width: 15px; }

.c-mmd-navbar.c-menu-closed #id-nav-logo-container > img,
.c-mmd-navbar.c-menu-closed #id-nav-logo-container > h1 { display: none; }
.c-mmd-navbar.c-menu-closed #id-nav-logo-container > #id-toggle-menu { margin: 0; transform: scaleX(-1); }

#id-nav-items {
	display: flex;
	flex-direction: column;
	width: calc(17vw - 2rem); /* should be the width of <nav> less the inline padding */
	height: 100%;
}
#id-nav-items > a, #id-nav-items > span {
	display: flex;
	align-items: center;
	gap: 1rem; /* should be equal to gap of `#id-nav-logo-container` */
	height: 30px;
	margin-bottom: 1.5rem;
	color: #ADB4CC;
	text-decoration: none;
}
#id-nav-items > a[disabled] {
	opacity: .5;
	pointer-events: none;
}
#id-nav-items > a:hover, #id-nav-items > a.c-active-nav-item { color: #30E49D; }
#id-nav-items > a > img, #id-nav-items > span > img {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	padding: 5px;
	box-sizing: content-box;
}
#id-nav-items > a > img.c-highlighted-icon, #id-nav-items > span > img.c-highlighted-icon,
#id-nav-items > a:hover > img:not(.c-highlighted-icon),
#id-nav-items > a.c-active-nav-item > img:not(.c-highlighted-icon) { display: none; }
#id-nav-items > a:hover > img.c-highlighted-icon,
#id-nav-items > a.c-active-nav-item > img.c-highlighted-icon {
	display: inline-block;
	background: #313247;
	border-radius: 50%;
}
#id-nav-items > a.c-loading { background: url('../assets/loading-grey.svg') left / contain no-repeat; pointer-events: none; }
#id-nav-items > a.c-loading > img { visibility: hidden; }
#id-nav-items > a.c-loading > * { opacity: .5; }

#id-nav-items > a > span + span {
	margin-left: auto;
	padding: .25rem .75rem;
	background-color: #283a42;
	border-radius: 4rem;
}

#id-nav-items-separator { width: 100%; margin-bottom: 1.5rem; text-align: center; color: #ADB4CC; font-size: 200%; cursor: default; transition: .2s width; }
nav.c-menu-closed #id-nav-items-separator { width: 30px; }

#id-nav-user-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: .75rem;
	height: 60px;
	padding: 1rem;
	padding-right: 0;
	background: rgba(0, 0, 0, 0.20);
	border: 1px solid #313247;
	border-radius: 4px;
	box-sizing: border-box;
}
nav.c-menu-closed #id-nav-user-box { padding-left: 0; }
#id-nav-user-image {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #30E49D;
	border-radius: 50%;
	font-weight: 500;
}
#id-nav-user-title {
	flex: 1;
	line-height: 1;
	color: #ADB4CC;
	white-space: nowrap;
}
nav.c-menu-closed #id-nav-user-image, nav.c-menu-closed #id-nav-user-title { display: none; }
#id-nav-user-box-handle { width: 2rem; text-align: center; }
#id-nav-user-box-menu {
	display: none;
	position: absolute;
	bottom: 0;
	left: calc(100% + .5rem);
	padding: .5rem 1rem;
	background-color: #E8EAED;
	border: 1px solid #D4D4D4;
	border-radius: 4px;
	font-size: .9rem;
	white-space: nowrap;
	box-shadow: 0 0 14px rgba(0, 0, 0, .3);
	z-index: 1;
}
#id-nav-user-box-menu > *:not(:last-child) { margin-bottom: .5rem; padding-bottom: .5rem; border-bottom: 1px solid #D4D4D4; }
#id-nav-user-box-menu a { font-size: .85rem; color: #00AF6C; text-decoration: none; }

/* # Form Fields # */
.c-file-upload input[type="file"] { display: none; }
.c-file-upload.c-disabled { opacity: .5; cursor: not-allowed; }

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select {
	height: 32px;
	padding: 5px 8px;
	border: 1px solid #E8EAED;
	border-radius: 5px;
	box-sizing: border-box;
	transition: border-color .2s;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([disabled]):hover, select:hover { border-color: #D4D4D4; }
input.c-loading, select.c-loading {
    padding-left: 30px;
	background: white url('../assets/loading-grey.svg') left / contain no-repeat;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 200px;
	height: 3px;
	margin: 0;
	background-color: #E8EAED;
	border-radius: 1px;
	transition: background-color .2s;
}
input[type="range"]:hover { background-color: #D4D4D4; }
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 13px;
	height: 13px;
	background-color: #D1EEE6;
	border: 2px solid #1AA884;
	border-radius: 3px;
	text-align: center;
	transform: rotate(45deg);
	box-sizing: content-box;
	cursor: pointer;
	transition: box-shadow .2s;
}
input[type="range"]:hover::-webkit-slider-thumb { box-shadow: 0 0 8px rgba(0, 0, 0, .1); }

input[type="number"] { width: 120px; }
input[type="range"] + input[type="number"] { margin-left: .5rem; width: 60px; }

label.c-checkbox {
	display: inline-flex;
	align-items: center;
}
label.c-checkbox > input { display: none; }
label.c-checkbox > input ~ span { /* the track of the switch */
	flex: 0 0 auto;
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 35px;
	height: 5px;
	background-color: rgba(63, 186, 139, 0.30);
	border-radius: 1px;
	cursor: pointer;
	transition: background .2s;
}
label.c-checkbox > input ~ span > span, .c-checkbox-dummy { /* the thumb of the switch */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 13px;
	height: 13px;
	background-color: #D1EEE6;
	border: 2px solid #1AA884;
	border-radius: 3px;
	text-align: center;
	transform: rotate(45deg);
	transition: all .3s;
}
label.c-checkbox > input ~ span > span { position: absolute; right: 0; }
label.c-checkbox > input:not(:checked) ~ span  { background-color: #D4D4D4; }
label.c-checkbox > input:not(:checked) ~ span > span, .c-checkbox-dummy:not(.c-checkbox-dummy-checked) {
	right: calc(100% - 17px);
	background-color: white;
	border-color: #D6D6D6;
}
label.c-checkbox > input ~ span > span b, .c-checkbox-dummy b {
	display: inline-block;
	font-size: .75rem;
	color: #454549;
	text-decoration: none;
	transform: rotate(-45deg);
}

.c-radio-selector {
	display: flex;
	border: 1px solid #E8EAED;
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	overflow: hidden;
}
.c-radio-selector input { display: none; }
.c-radio-selector label {
	min-width: 50px;
	padding: .5rem .75rem;
	text-align: center;
	cursor: pointer;
}
.c-radio-selector label:hover:not(.c-disabled) { background-color: #E8EAED; }
.c-radio-selector input:checked + label {
	background-color: #00AF6C;
	color: white;
	font-weight: 500;
	box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}
.c-radio-selector input:disabled + label {
	opacity: .5;
	pointer-events: none;
}



.c-form-field-row {
	/* align-self: start; */
	display: flex;
	align-items: center;
	gap: .5rem;
	max-width: 100%;
	margin-bottom: 1.5rem;
	transition: opacity .3s;
}
.c-form-field-row > span:first-child { flex-shrink: 0; }
.c-form-field-row.c-disabled > label, .c-form-field-row.c-disabled > input, .c-form-field-row.c-disabled > input + span {
	opacity: .5;
	pointer-events: none;
}



.c-action-button {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	background: white no-repeat center;
	border: none;
	border-radius: 5px;
	font-size: .9rem;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all .2s;
}
.c-action-button.c-small-button { padding: .5rem 1rem; font-size: .75rem; }
.c-action-button[disabled] { opacity: .5; cursor: not-allowed; }
.c-action-button:not([disabled]):hover { background-color: #f4f4f4; }
.c-action-button.c-success-button { background-color: #00AF6C; color: white; }
.c-action-button.c-success-button:not([disabled], .c-loading):hover { background-color: #00975d; }
.c-action-button.c-danger-button { background-color: #CD432D; color: white; }
.c-action-button.c-danger-button:not([disabled], .c-loading):hover { background-color: #bc3723; }
.c-action-button.c-info-button { background-color: dodgerblue; color: white; }
.c-action-button.c-info-button:not([disabled], .c-loading):hover { background-color: #117be6; }
.c-action-button.c-loading {
	background-image: url('../assets/loading-grey.svg');
	color: transparent;
	cursor: wait;
}
.c-action-button.c-success-button.c-loading { background-image: url('../assets/loading.svg'); }
.c-action-button.c-loading > * {
	visibility: hidden;
}

#id-main-container { flex: 1; min-width: 0; }
#id-main-container section {
	display: none;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
#id-main-container section.c-active-section { display: flex; }

#id-main-container section.c-section-with-sidebar { flex-direction: row; }
#id-main-container section.c-section-with-sidebar > .c-section-main-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
#id-main-container section.c-section-with-sidebar > .c-section-sidebar {
	width: 25%;
	border-left: 1px solid #E8EAED;
}

#id-main-container section header {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	height: 65px;
	padding: 1rem 1.5rem;
	background: white;
	border-bottom: 1px solid #E8EAED;
	box-shadow: 0 0 15px 5px rgba(0, 0, 0, .1);
	box-sizing: border-box;
	z-index: 3;
}
#id-main-container section header > img { width: 20px; height: 20px; padding: 7px; margin-right: 1rem; background: #191A23; border-radius: 50%; }
#id-main-container section header > h3 { margin: 0; font-weight: 600; }
#id-main-container section header > h3 span { color: #8C909A; font-weight: 500; }
#id-main-container section header > .c-header-actions { display: flex; align-items: center; gap: 1rem; height: 100%; margin-left: auto; }
#id-main-container section header > .c-header-actions a { color: #00AF6C; text-decoration: none; }
#id-main-container section header > .c-header-actions a:hover span:not(:first-child) { text-decoration: underline; }
#id-main-container section header > .c-header-actions > *:not(:last-child) { padding-right: 1rem; border-right: 1px solid #E8EAED; }

#id-main-container section .c-section-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	overflow: auto;
}
#id-main-container section .c-section-content.c-section-content-expanded { padding: 0; }
#id-main-container section .c-section-content.c-section-content-expanded > .tabulator { border: 0; }

.c-link-item-with-icon { display: inline-flex; align-items: center; color: #00AF6C; text-decoration: none; }
.c-link-item-with-icon > :first-child { margin-right: .5rem; }
.c-link-item-with-icon > img { width: 20px; }

.c-link-item-no-icon { display: inline-flex; align-items: center; color: #00AF6C; text-decoration: none; }
.c-link-item-no-icon > :first-child { margin-right: .5rem; }

.c-add-item-button span:first-child, .c-remove-item-button span {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid;
	line-height: 16px;
	color: #00AF6C;
	font-weight: bold;
}
.c-remove-item-button span { color: #CD432D; }


/* # Popup Form */
.c-popup-form {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(30, 30, 30, .7);
	backdrop-filter: blur(1px);
	z-index: 999;
	transition: all .2s;
}
.c-popup-form:not(.c-popup-form-active) { opacity: 0; z-index: -1; }
.c-popup-form > form {
	display: flex;
	flex-direction: column;
	width: 600px;
	max-width: 95%;
	max-height: 90vh;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 0px 50px 0px rgba(44, 44, 48, 0.50);
	overflow: hidden;
	transition: transform .1s;
}
.c-popup-form > form.c-wider-form {
	width: 900px; /* Override the width when the class "bigger" is present */
}

.c-popup-form:not(.c-popup-form-active) > form { transform: scale(0) rotateY(180deg); }
.c-popup-form > form > .c-popup-form-header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
	background: #191A23;
	color: white;
	box-shadow: 0px 0px 50px 0px rgba(44, 44, 48, 0.50);
	z-index: 1;
}
.c-popup-form > form > .c-popup-form-header > img {
	display: flex;
	width: 20px;
	height: 20px;
	padding: 7px;
	margin-right: 1rem;
	background: #303139;
	border-radius: 50%;
}


.c-popup-form > form > .c-popup-form-header > h3 { align-self: center; margin: 0; font-weight: 500; }
.c-popup-form > form > .c-popup-form-header > .c-popup-form-header-checkbox { display: flex; gap: 1rem; margin-left: auto; color: #ADB4CC; }
.c-popup-form > form > .c-popup-form-content {
	display: flex;
	flex-direction: column;
	max-height: 75vh;
	padding: 1.5rem 2.5rem 0;
	background: white;
	overflow: auto;
}
.c-popup-form > form > .c-popup-form-content h2:empty { display: none; }
.c-popup-form > form > .c-popup-form-content .c-line-separator { margin-block: 3rem; }
.c-popup-form > form > .c-popup-form-content .c-line-separator span { min-width: 25%; padding-right: 2rem; font-weight: 600; white-space: nowrap; }
.c-popup-form > form > .c-popup-form-content .c-popup-form-field { position: relative; display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.c-popup-form > form > .c-popup-form-content .c-popup-form-field label:not(.c-checkbox) { width: 35%; color: #5D6576; }
.c-popup-form > form > .c-popup-form-content .c-popup-form-field input, .c-popup-form > form > .c-popup-form-content .c-popup-form-field select { flex: 1; }
.c-popup-form > form > .c-popup-form-content .c-popup-form-field.c-has-suffix input { padding-right: 3.5rem; }
.c-popup-form > form > .c-popup-form-content .c-popup-form-field .c-popup-form-field-suffix { position: absolute; top: 50%; right: .75rem; transform: translateY(-50%); }
.c-popup-form > form > .c-popup-form-actions { display: flex; justify-content: end; gap: 1.25rem; padding: 1.5rem; }

.c-popup-form > form > .c-popup-form-content .c-popup-form-field.c-disabled > select,
.c-popup-form > form > .c-popup-form-content .c-popup-form-field.c-disabled > input,
.c-popup-form > form > .c-popup-form-content .c-popup-form-field.c-disabled > input + span {
	opacity: .5;
	pointer-events: none;
}

/* # Tabulator Styles */
.tabulator .tabulator-header { border-color: #E8EAED; color: #8C909A; font-weight: normal; text-transform: uppercase; }
.tabulator .tabulator-header .tabulator-col, .tabulator .tabulator-row .tabulator-cell { padding: .75rem 1rem; border-right: none; }
.tabulator .tabulator-header .tabulator-col { padding-block: 1rem; background: white; }
.tabulator .tabulator-header .tabulator-col .tabulator-col-content { padding: 0; }
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter { text-align: left; }
.tabulator-row { background-color: #FAFAFA; border-bottom: 1px solid #E8EAED; color: #6D6D7A }
.tabulator-row.tabulator-row-even { background-color: white; }
.tabulator-row.tabulator-selectable:hover, .tabulator-row.tabulator-selected { background-color: #E8EAED; }

.tabulator .tabulator-header .tabulator-col.c-has-overflow, .tabulator .tabulator-header .tabulator-col.c-has-overflow .tabulator-col-content .tabulator-col-title { overflow: visible; }

/* # EV Models Management */
.c-tabs-container { display: flex; border-bottom: 3px double #E8EAED; }
.c-tabs-container button { flex: 1; padding-block: .75rem; background-color: #FAFAFA; border: none; cursor: pointer; }
.c-tabs-container button:not(:last-child) { border-right: 1px solid #E8EAED; }
.c-tabs-container button.c-active-tab, .c-tabs-container button:hover { background-color: #F4F4F4; }
.c-tabs-container button.c-active-tab { font-weight: 600; }


/* # System Connections */
#id-connection-systems { margin-bottom: 1.5rem; }
#id-connection-systems .c-systems-div {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 8px;
	padding: 1.5rem;
	cursor: pointer;
	height: 100px;
	box-shadow: 0 0 8px rgba(0 0 0 / 20%);
}
#id-connection-systems .c-systems-div img { max-width: 100px; margin: auto; }
#id-connection-systems .c-systems-div h3 {
	margin-block: 1rem 0;
}

.c-info-system-card{
	box-shadow: 0 0 8px rgba(0 0 0 / 20%);
	padding: 0.5rem;
	border-radius: 8px;
	cursor: pointer;
	margin-top: 10px;
	width: 90%;
	text-align: center;
	font-weight: 700;
}

.c-systems-div-container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* #id-connection-systems .c-info-div {
	text-align: center;
	margin-top: 0.5rem;
	background-color: #f0f0f0;
	border-radius: 4px;
	padding: 0.5rem;
	width: 100%;
	box-shadow: 0 0 4px rgba(0 0 0 / 10%);
} */

.c-choose-vehicle-form-system {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin: 5px;
	border: 1px solid #8C909A;
	padding: 10px;
	border-radius: 5px;
}
.c-choose-vehicle-form-system img { height: 100px; border-radius: 0.5rem; border: 2px solid #8C909A; }
.c-choose-vehicle-form-system p { margin: 0.5rem;}

#id-connection-systems .c-active-choose-system-fms, #id-connection-systems .c-active-choose-vehicle-fms {
	border-bottom: 5px solid #30E49D;
}


/* # Routes-based Calculation # */
.c-total-vehicles-to-replace { display: flex; }
.c-total-vehicles-to-replace > div { background: linear-gradient(to right, grey calc(1.5rem + 15px), white 15px 85px, grey 85px); background-size: 100% 2px; background-position: center 10px; background-repeat: no-repeat; }
.c-total-vehicles-to-replace > div:not(:first-child) { padding-left: 1.5rem; }
.c-total-vehicles-to-replace > div:first-child { background-image: linear-gradient(to right, white 75%, grey 75%); }
.c-total-vehicles-to-replace > div:last-child:not(:first-child) { background-image: linear-gradient(to right, grey calc(1.5rem + 15px), white 15px) }
.c-total-vehicles-to-replace > div:first-child:last-child { background: none; }
.c-total-vehicles-to-replace > div > label/* , .c-total-vehicles-to-replace > div > div */ {
	display: flex;
	justify-content: center;
	width: 2px;
	height: 60px;
	margin: auto;
	background: linear-gradient(to bottom, white 20px, grey 20px);
	font-weight: 500;
}
.c-total-vehicles-to-replace > div > label:not(:first-child) { height: 40px; background: linear-gradient(to bottom, white 5px, grey 5px); }
.c-total-vehicles-to-replace > div input {
	width: 80px;
	margin-top: .25rem;
	padding-left: 1.5rem;
	text-align: center;
}

.c-loader {
    width: 3em;
    height: 3em;
    vertical-align: middle;
}


.c-info-circle, .c-warning-circle {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 11px;
	height: 11px;
	margin-left: .25rem;
	padding: 3px;
	border: 1px solid;
	border-radius: 50%;
	color: #00AF6C;
	cursor: help;
}
.c-warning-circle {
	color: #af4c00;
}
.c-info-circle img {
	max-width: 100%;
}


.c-line-separator {
	display: flex;
	align-items: center;
	width: 100%;
	height: 1px;
	margin-block: 4.5rem 3rem;
	background: #E8EAED;
	font-size: 1.5rem;
	text-transform: capitalize;
}
.c-line-separator:not(summary):first-of-type { margin-top: 1.5rem; }

.c-line-separator span {
	display: inline-flex;
	align-items: center;
	padding-right: 1rem;
	background: white;
}
summary.c-line-separator span { display: list-item; cursor: pointer; }
summary.c-line-separator span:hover { text-decoration: underline; }
.c-line-separator span img { height: 25px; margin-right: 10px; }

.c-line-separator-subtitle {
	margin-block: -2rem 1.5rem;
	color: grey;
	font-size: 1.15rem;
	font-weight: 300;
}


.c-details-as-link summary, a.c-link-as-button {
	list-style: none;
	color: #00AF6C;
	font-size: .8rem;
	text-decoration: underline;
	text-transform: uppercase;
	cursor: pointer;
}
a.c-link-as-button[disabled] {
	opacity: .5;
	pointer-events: none;
}


/* # Results Overview # */
#id-avg-result-buttons,
#id-route-result-buttons {
    align-self: start;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    margin-top: -0.35rem;
    background: white;
    transition: all .2s;
}

#id-avg-result-buttons.c-open,
#id-route-result-buttons.c-open {
    margin-top: -0.65rem;
    padding: 0 1rem .75rem;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    /* overflow-y: auto; */
}

#id-avg-result-buttons > span,
#id-route-result-buttons > span {
    display: flex;
    max-height: 50px;
    transition: all .2s;
}

#id-avg-result-buttons.c-open > span,
#id-route-result-buttons.c-open > span {
    margin-top: .75rem;
}

#id-avg-result-buttons:not(.c-open) > span:not(.c-active),
#id-route-result-buttons:not(.c-open) > span:not(.c-active) {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}

#id-avg-result-buttons > span button,
#id-route-result-buttons > span button {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#id-avg-result-buttons > span:not(.c-active) button,
#id-route-result-buttons > span:not(.c-active) button {
    overflow: hidden;
}

#id-avg-result-buttons:not(.c-open) > span:not(.c-active) button,
#id-route-result-buttons:not(.c-open) > span:not(.c-active) button {
    padding: 0;
}

#id-avg-result-buttons > span button + a,
#id-route-result-buttons > span button + a {
    display: flex;
    align-items: center;
    width: 20px;
    padding: 0 5px;
    background: white;
    border: 1px solid #00AF6C;
    border-radius: 0 5px 5px 0;
    border-left-color: transparent;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    transition: all .2s;
}

#id-avg-result-buttons:not(.c-open) > span:not(.c-active) button + a,
#id-route-result-buttons:not(.c-open) > span:not(.c-active) button + a {
    border: 0;
}

#id-avg-result-buttons > span button:not(.c-success-button) + a,
#id-route-result-buttons > span button:not(.c-success-button) + a {
    border-color: transparent;
}

#id-avg-result-buttons > span button + a:hover,
#id-route-result-buttons > span button + a:hover {
    background: #CD432D;
    border-color: #CD432D;
}

#id-avg-result-buttons > span button.c-success-button + a:hover,
#id-route-result-buttons > span button.c-success-button + a:hover {
    border-left-color: black;
}

#id-avg-result-buttons > span button + a > img:not(.c-highlighted-icon),
#id-avg-result-buttons > span button + a:hover > img.c-highlighted-icon,
#id-route-result-buttons > span button + a > img:not(.c-highlighted-icon),
#id-route-result-buttons > span button + a:hover > img.c-highlighted-icon {
    display: none;
}

#id-avg-result-buttons > span button + a:hover > img:not(.c-highlighted-icon),
#id-route-result-buttons > span button + a:hover > img:not(.c-highlighted-icon) {
    display: inline-block;
}

.toggle-result-buttons > a {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 1px solid #00AF6C;
    border-bottom: 1px solid #00AF6C;
    transform: rotate(-45deg);
    transition: transform .2s;
}

#id-avg-result-buttons.c-open + .toggle-result-buttons > a,
#id-route-result-buttons.c-open + .toggle-result-buttons > a {
    transform: rotate(135deg) translate(50%, -50%);
}

.c-card {
	border-radius: 10px;
	font-weight: 300;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
	position: relative; /* Ensure the card is positioned relative to its content */

}
.c-card-header {
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 1rem 2rem;
	background: linear-gradient(to right, #30353b 0%, #1c504f  51%, #263343  100%);
	border-radius: 10px 10px 0 0;
	color: white;
	font-size: 16px;
	text-transform: capitalize;
	white-space: nowrap;
	overflow: hidden;
}
.c-card-content {
	padding: 1.5rem;
	text-align: center;
}

.c-card-content-req-info {
	max-height: 22rem;
	overflow-y: auto;
	overflow-x: hidden; /* Added overflow-x hidden to manage horizontal overflow */
}

.c-tooltip {
	text-decoration: underline dotted 1px;
	cursor: help;
}
  
.c-tooltip .c-tooltip-text {
	width: 100%;
	visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1rem;
    position: absolute;
    z-index: 3;
    top: 60px;
    right: 105%;
	text-align: left;
    opacity: 0;
	box-sizing: border-box;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 0%;
	/* left: 0%; */
	transform: translateX(-50%);

	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
  }

.c-tooltip:hover .c-tooltip-text {
	visibility: visible;
	opacity: 1;
}

.c-tooltip-text > div:not(:first-child) { margin-top: .5rem; }
.c-tooltip-text label {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
}


.c-co2-emission-ice-card {
	color: #CD432D;
	border: solid 2px;
    border-radius: 0 0 10px 10px;
    border-top: 0;
}


.c-chart-container {
	position: relative;
	width: 75%;
	padding-top: 37.5%; /* maintain an aspect-ratio of 2:1 */
	margin: 0 auto 3rem;
}
.c-chart-container.c-smaller-container {
	width: 50%;
	padding-top: 25%;
}
.c-chart-container canvas {
	position: absolute;
	top: 0;
}


.c-line-separator.c-section-separator {
	justify-content: center;
	margin-bottom: 4.5rem;
	font-size: 3rem;
}
.c-line-separator.c-section-separator span { padding-left: 1rem; }
.c-line-separator.c-section-separator span img { height: 50px; }


.c-year-summary-buttons {
	position: sticky;
	top: calc(-2rem - 1px);
	display: flex;
	width: calc(100% + 4rem);
	background-color: white;
	border-top: 1px solid #E8EAED;
	text-align: center;
	font-size: 16px;
	box-shadow: 0 0 16px rgba(0, 0, 0, .1);
	overflow: hidden;
	transform: translateX(-2rem);
	z-index: 2;
}
.c-year-summary-buttons > button {
	width: 80px;
	height: 50px;
	transition: all .2s;
}
.c-year-summary-buttons > button.c-active-button {
	background-color: #00AF6C;
	color: white;
	font-size: 1.3rem;
}

.c-multiple-info-blocks-container, .c-multiple-info-blocks-vertical {
	display: flex;
	justify-content: space-between;
}
.c-multiple-info-blocks-vertical {
	flex-direction: column;
	gap: 1.5rem;
}
.c-multiple-info-blocks-vertical > .c-info-block-container { flex: 1; }
.c-multiple-info-blocks-container > div { width: 32%; }
.c-info-block-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.c-info-block-container > h3 {
	margin-block: 0 0.25rem;
	text-align: center;
	font-weight: 500;
	text-decoration: underline;
}
.c-info-block {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: .25rem;
	padding: 1rem;
	border: 1px solid lightgrey;
	border-radius: 8px;
	box-shadow: 2px 2px lightgrey;
}

.c-info-row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 2rem; /* text-transform: capitalize; */ }
.c-info-row:not(:last-child) { margin-bottom: .25rem; }
.c-info-row b { flex-shrink: 0; font-weight: 600; }



#id-export-buttons button { display: flex; padding: .75rem; }
#id-export-buttons button:not(:hover) { background: none; box-shadow: none; }
#id-export-buttons button img{ height: 30px; }



.c-buttons-container {
	display: flex;
	gap: 1rem;
}

.c-year-info-list {
	display: flex;
	align-items: start;
	flex-direction: column;
}

.c-electrified-drives-progress-bar-title {
	margin-right: 10px; 
    font-size: 16px; 
    font-weight: bold; 

}

.c-electrified-drives-progress-bar-wrapper {
	display: flex; 
	align-items: center;
	margin-top: 50px;
	margin-bottom: -20px; 
}

.c-electrified-drives-progress-bar-container {
	width: 82%;
	background-color: #ddd;
	border-radius: 10px;
	overflow: hidden;
	height: 25px;
	position: relative;
}

.c-electrified-drives-progress-bar {
	height: 100%;
	width: 100%;
	background-color: #4caf50;
	text-align: center;
	line-height: 25px;
	color: white;
	font-weight: bold;
	transition: width 0.4s ease-in-out;
}

.c-cards-container {
	display: flex;
	justify-content: space-between;
	align-content: center;
	gap: 3rem 2.5%;
    flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.c-request-info-cards-container {
    display: flex;
    justify-content: center;
    gap: 3rem; 
}


.req-summary-container {
	display: flex;
	justify-content: space-between;
	align-content: center;
	gap: 3rem 2.5%;
    flex-wrap: wrap;
	margin-bottom: 1.5rem;
}



#id-daily-activity-date-picker {
	position: sticky;
	top: calc(49px - 2rem);
	width: calc(100% + 4rem);
	margin-left: -2rem;
	padding: 1rem;
	background: white;
	border-bottom: 1px solid #E8EAED;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	z-index: 1;
}
#id-daily-activity-calendar {
	display: flex;
	gap: .5rem;
    max-height: 200px;
	overflow: hidden;
    transition: max-height .2s;
}
#id-daily-activity-date-picker > h3 {
	margin-bottom: 0;
	text-align: center;
}
#id-daily-activity-date-picker.c-closed > div { max-height: 0; }
#id-daily-activity-date-picker.c-closed > h3 { margin: 0; }
#id-daily-activity-days {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#id-daily-activity-squares {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
#id-daily-activity-months {
	display: flex;
	justify-content: space-between;
}
.c-squares-container {
	flex: 1;
	display: flex;
	gap: .25rem;
}
.c-date-picker-square {
	flex: 1;
	border: 2px solid transparent;
	border-radius: 5px;
}
.c-date-picker-square.c-empty { background: #E8EAED!important; }
.c-date-picker-square:not(.c-has-data) { pointer-events: none; }
.c-date-picker-square.c-has-data:hover { border-color: black; }
.c-date-picker-square.c-selected { background: #f5e905!important;}



#id-drives-count-legend {
	position: absolute;
	bottom: 1rem;
	display: flex;
	align-items: center;
	gap: .25rem;
	text-transform: capitalize;
	transform: translateY(-50%);
}
#id-drives-count-legend > span {
	width: 15px;
	height: 15px;
	border-radius: 5px;
}


#id-vehicles-replacement-suggestion-legend {
	display: flex;
	align-items: center;
	gap: .25rem;
	margin-bottom: .5rem;
	text-transform: capitalize;
}
#id-vehicles-replacement-suggestion-legend > span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	height: 15px;
	border-radius: 5px;
}



#id-heatmap-colors-legend {
	/* position: absolute; */
	bottom: 1rem;
	display: flex;
	align-items: center;
	gap: .25rem;
	text-transform: capitalize;
	transform: translateY(-50%);
}
#id-heatmap-colors-legend > span {
	width: 15px;
	height: 15px;
	border-radius: 5px;
	margin-left: 25px;
}

#id-vehicle-drives-container {
	display: flex;
	align-items: start;
	gap: 2rem;
}

#id-vehicle-drives-map-container {
	flex: 1;
	position: sticky;
	top: calc(50px + 60px - 2rem + 2rem);
	height: 75vh;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}
#id-vehicle-drives-map {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}


/* # Results Visualization # */
.c-multiple-charts-container { display: flex; justify-content: space-evenly; gap: 2%; flex-wrap: wrap; }
.c-multiple-charts-container > div { width: 49%; margin: auto; text-align: center; }
.c-multiple-charts-container > div canvas { margin-bottom: 3rem;  }
.c-multiple-charts-container > .c-row-separator { width: 100%; }
.c-multiple-charts-container > .c-row-separator-print-only { display: none; }


/* # Charging Routine # */
.c-charging-point-row { width: 100%; break-inside: avoid; }
.c-charging-point-row > div { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.c-charging-point-row > div > div:first-child { flex-grow: 1; }

/* .c-charging-point-row > .c-charging-point-times > div { display: flex; justify-content: space-between; }
.c-charging-point-row > .c-charging-point-times > div > span { display: flex; justify-content: center; width: 0; font-size: .75rem; } */

.c-charging-point-row > div > .c-charging-point-boxes {
	position: relative;
	display: flex;
	height: 40px;
	background: rgb(0 175 108 / 85%);
	box-shadow: 0 0 8px rgb(0 0 0 / 10%);
	/* overflow: hidden; */
}
.c-charging-point-row > div > .c-charging-point-boxes > div {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: white;
	border: 3px solid;
	box-sizing: border-box;
	cursor: help;
}
.c-charging-point-row > div > .c-charging-point-boxes > div .c-charging-info-circle {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
	padding: 5px;
	background-color: white;
	border: 1px solid;
	border-radius: 50%;
	color: grey;
}
.c-charging-point-row > div > .c-charging-point-boxes > div > span:not(.c-charging-info-circle) { position: absolute; font-size: .75rem; }
.c-charging-point-row > div > .c-charging-point-boxes > div > span:first-child { bottom: 105%; right: 100%; transform: translateX(50%); }
.c-charging-point-row > div > .c-charging-point-boxes > div > span:last-child { top: 105%; left: 100%; transform: translateX(-50%); }
/* .c-charging-point-row > .c-charging-point-boxes > div > div { display: inline-flex; align-items: center; gap: .5rem; text-align: center; } */
/* .c-charging-point-row > .c-charging-point-boxes > div > div img { height: 20px; } */
/* .c-charging-point-row > .c-charging-point-boxes > div > div span { text-decoration: underline dashed 1px; cursor: help; } */

.c-charger-summary {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	box-sizing: border-box;
	white-space: nowrap;
}
.c-charger-summary span {
	width: 30%;
	padding: .5rem;
	background: whitesmoke;
	border: 1px solid lightgrey;
	border-radius: 5px;
	text-align: center;
}


/* # Heatmaps # */
#id-heatmaps-legend-container {
	position: absolute;
	top: 0;
	right: 0;
}
#id-heatmaps-legend-container h3 {
	margin: 0;
	text-align: center;
	font-weight: 500;
}
#id-heatmaps-legend-container > div {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-top: .75rem;
	color: #00AF6C;
}
#id-heatmaps-legend-container > div img { width: 20px; }

.c-route-info-block {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: .5rem;
}
.c-route-info-block > img { width: 20px; }

.c-heatmap-input-images-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.c-heatmap-img {
	position: relative;
	width: 925px;
	height: 487px;
    border: none;
	border-radius: 8px;
    box-shadow: 0 0 8px rgb(0, 0, 0, 0.2);
}

.c-heatmap-cs-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 925px;
	height: 487px;
}

.c-most-common-points-heatmap-cs-icon {
	display: none;
}

.c-heatmap-first-cs-icon {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 235px;
	left: 495px;
}

.c-heatmap-second-cs-icon {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 145px;
    left: 675px;
}


.c-heatmap-source-icon {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 155px;
	left: 460px;
}

.c-heatmap-img-zoomed {
	position: relative;
	display: block;
	width:100px;
	height: 100px;
	background: #fff none top left no-repeat;
}

.c-heatmap-first-cs-icon-zoomed {
	position: absolute;
	top: 225px;
	left: 560px;
	width: 30px;
	height: 30px;
}



/* ################# */
/* # MEDIA QUERIES # */
/* ################# */

@media screen and (max-width: 1550px) {
	.c-mmd-navbar { width: 18%; }
	#id-nav-items { width: calc(18vw - 2rem); /* should be the width of <nav> less the inline padding */ }
	#id-fleet-selector-nav-item > span { display: none; }
}

@media print {
	@page {
		size: A3 landscape;
		margin: 0;
	}

	/* html { height: auto; } */
	body { height: auto !important; }
	.c-mmd-body { overflow: visible; }

	.c-mmd-navbar { display: none; }
	/* #id-main-container section { height: auto; } */
	#id-main-container section header { break-before: page; }
	#id-main-container section header > .c-header-actions { display: none; }
	#id-main-container section .c-section-content { overflow: visible; }

	.c-print-full-page,
	.c-line-separator.c-section-separator {
		height: 100vh;
		margin: 0;
		background: none;
	}
	.c-line-separator.c-section-separator { font-size: 5rem; }
	.c-line-separator { break-before: page; }

	.c-year-summary-buttons { width: 100%; border-radius: 0 0 10px 10px; box-shadow: none; transform: none; }
	.c-year-summary-buttons button { font-size: 2rem; }

	.tabulator .tabulator-tableholder { overflow: visible; }
	.tabulator-table { width: 100%; }
	.tabulator-headers, .tabulator-row { display: flex; }
	.tabulator-headers > div, .tabulator-row > div { flex: 1; }

	#id-yearly-summary, #id-export-buttons, #id-daily-activity-date-picker { display: none; }

	/* #id-main-container #id-heatmap-cs-offering { display: flex; } */

	.c-multiple-charts-container {
		justify-content: center;
		min-height: 100vh;
	}
	.c-multiple-charts-container > .c-row-separator, .c-multiple-charts-container > .c-row-separator-print-only { display: block; width: 100%; height: 0; }
}




.c-vehicle-list-container {
    position: relative;
    width: 200px; /* Set the width of your dialog */
    border: 1px solid #E8EAED;
    padding: 3px 10px;
	border-radius: 5px;
	flex: 1;
	cursor: pointer;
}

.c-vehicle-list-container::before{
	content: '▼';
	float: right;
}

.c-vehicle-list-container.c-dialog-is-open::before{
	content: '▲';
}

.c-vehicle-list-container::before[disabled]{
	color: rgba(170, 170, 170);
}

.c-dropdown-vehicle-content {
    /* display: none; */
	display: flex;
    position: fixed;
    background-color: white;
    min-width: 100px;
    padding: 10px;
	overflow-y: scroll;
	max-height: 200px;
	border: 1px solid #E8EAED;
	flex-direction: column;
	gap: 5px;
	transform: scaleY(0); /* Initial transform scale to hide content */
    transform-origin: top; /* Set the origin to the top for smooth expansion */
    transition: transform 0.2s ease-in-out; /* Added transition for transform */
}

.c-dropdown-vehicle-content.show {
	z-index: 1001;
	transform: scaleY(1); /* Set transform scale to reveal content */
	max-height: 200px; /* Expanded max-height to reveal the content */

}

.mmd-c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.mmd-c-overlay.mmd-c-show-overlay {
    display: block;
    visibility: visible;
}

.c-vehicle-label-item{
	width: 100% !important;
	opacity: 0;
	cursor: pointer;
	transition: opacity .15s ease-in-out;
}


.c-dropdown-vehicle-content.show> .c-vehicle-label-item{
	opacity: 1;
	transition-delay: .2s;
}

.c-check-all-vehicles-btn{
	color: #00AF6C;
	cursor: pointer; /* Optional: to show pointer cursor on hover */
}




.progress {
	position: relative;
	overflow: hidden;
	height: 20px;
	background-color: #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	margin: 12px 0;
	width: 65%;
	text-align: center;
}
.progress-bar {
	width: 0;
	height: 100%;
	color: #fff;
	text-align: center;
	border-radius: 4px 0px;
	background-color: #433a66
	/* #ee303c; */

	
 
}
.progress-striped .progress-bar {
			background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
			background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
			background-size: 40px 40px;
}
.progress.active .progress-bar {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
}

.c-current-percentage-download{
	color: white;
	position: absolute;
	left: 43%;
	top: 0;
}

.c-metadata-file-row {
	display: flex;
	justify-content: space-between;
	width: 400px;
	margin-bottom: .5rem;
	font-size: 18px;
}

#id-external-api-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}

#id-no-data-title {
	text-align: center;
    font-size: 20px;
    font-weight: 600;
}


/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */

 .success-checkmark {
	width: 80px;
	height: 115px;
	margin: 0 auto;
}
.success-checkmark .check-icon {
	width: 80px;
	height: 80px;
	position: relative;
	border-radius: 50%;
	box-sizing: content-box;
	border: 4px solid #4caf50;
}
.success-checkmark .check-icon::before {
	top: 3px;
	left: -2px;
	width: 30px;
	transform-origin: 100% 50%;
	border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
	top: 0;
	left: 30px;
	width: 60px;
	transform-origin: 0 50%;
	border-radius: 0 100px 100px 0;
	animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
	content: '';
	height: 100px;
	position: absolute;
	background: #fff;
	transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
	height: 5px;
	background-color: #4caf50;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
	top: 46px;
	left: 14px;
	width: 25px;
	transform: rotate(45deg);
	animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
	top: 38px;
	right: 8px;
	width: 47px;
	transform: rotate(-45deg);
	animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
	top: -4px;
	left: -4px;
	z-index: 10;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	box-sizing: content-box;
	border: 4px solid rgba(76, 175, 80, .5);
}
.success-checkmark .check-icon .icon-fix {
	top: 8px;
	width: 5px;
	left: 26px;
	z-index: 1;
	height: 85px;
	position: absolute;
	transform: rotate(-45deg);
	background-color: #fff;
}
@keyframes rotate-circle {
	0% {
		transform: rotate(-45deg);
   }
	5% {
		transform: rotate(-45deg);
   }
	12% {
		transform: rotate(-405deg);
   }
	100% {
		transform: rotate(-405deg);
   }
}
@keyframes icon-line-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
   }
	54% {
		width: 0;
		left: 1px;
		top: 19px;
   }
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
   }
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
   }
	100% {
		width: 25px;
		left: 14px;
		top: 45px;
   }
}
@keyframes icon-line-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
   }
	65% {
		width: 0;
		right: 46px;
		top: 54px;
   }
	84% {
		width: 55px;
		right: 0px;
		top: 35px;
   }
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
   }
}

#id-sites-management-form {
	position: relative;
}

#id-sites-reset-changes-container {
	align-self: end;
    position: sticky;
    top: 0;
	background-color: white;
}

.swal2-title {
	font-size: 20px!important;
}

.c-marker-with-label { display: flex; justify-content: center; background: none; border: none;}
.c-marker-with-label > img {background: none!important; border: none!important;}
.c-marker-with-label > b {
    position: absolute;
    bottom: 2px;
    padding: 0 2px;
    background: rgba(0, 0, 0, .3);
    border-radius: 3px;
    text-align: center;
    color: white;
}

.c-providers-container {
    max-height: 40vh;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid #E8EAED;
    font-size: .9rem;
    overflow: auto;
}
.c-providers-container label { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1rem; cursor: pointer; }



.c-css-loader {
    height: 0.5rem;
    width: 0.5rem;
    display: inline-block;
    animation: around 0.7s infinite;
    border-width: 2px;
    border-color: #333 #333 transparent transparent;
    border-style: solid;
    border-radius: 20px;
  }

@keyframes around {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}


#id-heatmaps-container {
    display: flex;
    flex-direction: column;
	flex: 1;
	justify-content: center; 
	align-items: center; 
	width: 75%; min-height: 75vh; 
	margin: auto;
    /* border: 1px solid #ddd;
    border-inline: none; */
    overflow-y: auto;
	
}


#id-heatmap-pick {
	position: sticky;
	top: 0;
	background-color: white;
	text-align: center;
	box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
	z-index: 2;
    display: flex;
	width: 100%
}
#id-heatmap-pick input {
	display: none;
}
#id-heatmap-pick label {
	flex: 1;
	padding: 1rem;
    color: #676b71;
	cursor: pointer;
	transition: all .2s;
}
#id-heatmap-pick input:checked + label {
	background-color: #00AF6C;
	color: white;
}
#id-heatmap-pick input:checked + label, #id-heatmap-pick label:hover {
	font-weight: bold;
}
.c-return-btn-integrations{
	position: absolute;
    bottom: 100px;
    left: 50%;
}

.c-radio-section {
	margin-bottom: 10px;
	display: inline-block; /* Display the radio sections inline */
}
.c-radio-section label {
	margin-right: 10px;
	display: inline-block;
}
.radio-section input[type="radio"] {
	display: inline-block;
	margin-right: 5px; /* Add some spacing between radio buttons */
}

.c-fix-content-box-geotab{
	box-sizing: content-box;
}

.c-error-red-border{
	border: 2px solid #e57373 !important;
}

.c-faq-button{
	/* Action Button */
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	height: 40px;
	padding: .75rem 1.5rem;
	background-color: buttonface;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	border-radius: 20px;
	color: black;
	font-size: .9rem;
	text-transform: capitalize;
	font-weight: 600;
	/* box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); */
	cursor: pointer;
	transition: all .2s;
}

.my-custom-header-class {
    background-color: #f0f0f0; /* Example styling */
    font-weight: bold;
    text-align: center;
	height: 55px !important;
    /* Add other styles as needed */
}


.c-link-style {
    color: blue;               /* Change text color to blue */
    text-decoration: underline; /* Underline the text */
    cursor: pointer;           /* Change cursor to pointer */
}

.c-link-style:hover {
    color: darkblue;          /* Darker color on hover */
    text-decoration: none;    /* Remove underline on hover */
}


.c-info-icon-big-circle {
    position: relative; /* Needed for positioning the inner circle */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust size as needed */
    height: 30px;
    background: #303139; /* Larger circle background color */
    color: #00AF6C;
    border-radius: 50%;
	margin-right: 15px;
}

.c-info-icon-small-circle {
    position: absolute;
	text-align: center;
    width: 20px; /* Smaller circle size */
    height: 20px;
	border: 1px #00AF6C solid;
    background: #303139; /* Smaller circle background color */
    border-radius: 50%;
}


/* # Toast Element */
#id-toast {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
#id-toast.c-show-toast {
	z-index: 1001;
}
#id-toast:not(.c-show-toast) {
	transition: all .2s;
	transition-delay: z-index .2s;
}
#id-toast.c-error-toast {
	background: rgba(30, 30, 30, .7);
    backdrop-filter: blur(1px);
}
#id-toast:not(.c-error-toast) {
	pointer-events: none;
}
#id-toast.c-error-toast #id-toast-container #id-toast-text.too-long {
	margin-top: 44rem;
	word-break: break-word;
	overflow-wrap: break-word;
	text-align: center;
}
#id-toast-container {
	position: fixed;
	bottom: 0;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	min-width: 20%;
	max-width: 80%;
	max-height: 40vh; 
	overflow-y: auto;
	padding: 1rem;
	background-color: #323232;
	border-radius: 5px 5px 0 0;
	color: #e8eaed;
	opacity: 0;
	transform: translate(-50%, 100%);
	pointer-events: all;
	transition: all .2s;
	text-align: center; 
	box-sizing: border-box;
	z-index: 9999;
}

#id-toast.c-show-toast #id-toast-container {
	opacity: 1;
	transform: translate(-50%, 0); /* Slide up to visible position */
}

#id-toast.c-error-toast #id-toast-container {
	bottom: 50%;
	border-radius: 5px;
	transition: none;
	max-height: 60vh;
	overflow-y: auto;
}

.c-toast-close-btn {
	width: 24px;
    height: 24px;
    padding: 0;
    background: url("../assets/icons/icon-x.svg") no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
}

.c-toast-error-close-btn {
    padding: .75rem 1rem;
    background-color: transparent;
	border: none;
	border-radius: 5px;
	color: #aecbfa;
	cursor: pointer;
}
.c-toast-error-close-btn:hover {
	background-color: #4a4a4a;
}

.c-multiple-vehicles-modal {
	position: fixed;
	top: -50px;
	left: 150px;
	width: 100%;
	height: 100%;
	z-index: 9999; /* Very high to override Geotab UI */
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-multiple-vehicles-modal-content {
	background-color: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 8px;
	width: 300px;
	position: relative;
}

.c-close-vehicles-modal-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	cursor: pointer;
}

.c-multiple-vehicles-modal-input {
	margin-top: 20px;
	padding: 30px;
	width: 82% !important; 
	border: 1px solid #ccc; 
}

.c-multiple-vehicles-approve-btn {
	padding: 10px 20px;   
	margin: 0 10px;       
	margin-top: 20px;     
	cursor: pointer;      
	background-color: #00AF6C; 
	color: white;
	border: none;
	border-radius: 5px;
}
  
.vertical-divider {
	display: block;
	width: 4px;
	background-color: #ccc;
	margin: 0 20px;
}

#yearly-extrapolated-title.hidden {
    display: none !important;
}

.hidden{
	display: none !important;
}