html, body {
	font-family: 'Roboto', Arial, sans-serif;
	height: 100%;
	position: relative;
    overflow: hidden;
}

#map {
	width: 100%;
	height: 100%;
	padding: 0;
}

#filter-companies,
#tile-layers,
#filter-features {
	position: absolute;
	z-index: 99999;
	right: 55px;
	bottom: 27px;
}

#page_loader {
	background: #333;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 9999;
}

#page_loader #logo {
	background: url('../img/logo.png') no-repeat center;
	height: 100%;
	width: 100%;
}

@media only screen and (max-width: 600px) {
	#page_loader {
		padding: 30px;
	}
	#page_loader #logo {
		background-size: contain;
	}
}

#page_loader #loadingmessage {
	position: relative;
	bottom: 25%;
	text-align: center;
	color: #242A37;
}

.loading {
    position: absolute;
    z-index: 9999;
    top: auto;
    left: 50%;
    bottom: 15%;
    margin-left: -25px;
    float: left;
    width: 45px;
    height: 45px;
}

.loading::before {
    content: "";
    vertical-align: top;
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid #FFD428;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: loaderLoop 0.8s infinite linear;
    -moz-animation: loaderLoop 0.8s infinite linear;
    animation: loaderLoop 0.8s infinite linear;
}

@-webkit-keyframes loaderLoop {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
    } to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
    }
}
 @-moz-keyframes loaderLoop {
	from {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
    } to {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
    }
}
 @-o-keyframes loaderLoop {
	from {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
    } to {
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
    }
}
 @-ms-keyframes loaderLoop {
	from {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
    } to {
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
    }
}
 @keyframes loaderLoop {
	from {
		transform: rotate(0deg);
    } to {
		transform: rotate(360deg);
    }
}

.btn-yellow-primary {
    background-color: #FFD428 !important;
    color: #222;
	font-weight: 700;
	letter-spacing: 1px;
}

.btn-yellow-primary:hover {
	text-shadow: none !important;
}

.truck-info-prices table {
	background-color: #FFD428;
	border-radius: 5px;
}

.truck-info-prices table tbody tr:nth-child(1) {
	border-bottom: 1px solid #e2b80f;
}

.truck-info-prices table th {
	padding: 5px 5px;
	font-weight: 700 !important;
	font-size: .75rem !important;
}

.truck-info-prices table td {
	padding: 4px 0px;
	font-size: .8rem !important;
	font-weight: 400 !important;
}

/* .close { */
	/* position: absolute !important; */
    /* right: 12px !important; */
    /* top: 10px !important; */
/* } */


@-webkit-keyframes pulse-green {
    0%{
        -webkit-box-shadow:0 0 0 0 rgba(0, 200, 81,.4)
    }
    70%{
        -webkit-box-shadow:0 0 0 10px rgba(0, 200, 81,0)
    }
    100%{
        -webkit-box-shadow:0 0 0 0 rgba(0, 200, 81,0)
    }
}
@keyframes pulse-green {
    0%{
        -moz-box-shadow:0 0 0 0 rgba(0, 200, 81,.4);
        box-shadow:0 0 0 0 rgba(0, 200, 81,.4);
    }
    70%{
        -moz-box-shadow:0 0 0 10px rgba(0, 200, 81,0);
        box-shadow:0 0 0 10px rgba(0, 200, 81,0)
    }
    100%{
        -moz-box-shadow:0 0 0 0 rgba(0, 200, 81,0);
        box-shadow:0 0 0 0 rgba(0, 200, 81,0)
    }
}

@-webkit-keyframes pulse-red {
    0%{
        -webkit-box-shadow:0 0 0 0 rgba(255, 53, 71,.4)
    }
    70%{
        -webkit-box-shadow:0 0 0 10px rgba(255, 53, 71,0)
    }
    100%{
        -webkit-box-shadow:0 0 0 0 rgba(255, 53, 71,0)
    }
}
@keyframes pulse-red {
    0%{
        -moz-box-shadow:0 0 0 0 rgba(255, 53, 71,.4);
        box-shadow:0 0 0 0 rgba(255, 53, 71,.4);
    }
    70%{
        -moz-box-shadow:0 0 0 10px rgba(255, 53, 71,0);
        box-shadow:0 0 0 10px rgba(255, 53, 71,0)
    }
    100%{
        -moz-box-shadow:0 0 0 0 rgba(255, 53, 71,0);
        box-shadow:0 0 0 0 rgba(255, 53, 71,0)
    }
}

.leaflet-tooltip-transition {
    transition: transform 0.5s linear, opacity .2s linear !important;
    -webkit-transition: transform 0.5s linear, opacity .2s linear !important;
	-o-transition: transform 0.5s linear, opacity .2s linear !important;
    -moz-transition: transform 0.5s linear, opacity .2s linear !important;
}

.leaflet-tooltip-no-transition {
    transition: transform 0s linear, opacity .2s linear !important;
    -webkit-transition: transform 0s linear, opacity .2s linear !important;
	-o-transition: transform 0s linear, opacity .2s linear !important;
    -moz-transition: transform 0s linear, opacity .2s linear !important;
}

.leaflet-marker-icon-custom {
    transition: transform 0.5s linear;
    -webkit-transition: transform 0.5s linear;
    -o-transition: transform 0.5s linear;
    -moz-transition: transform 0.5s linear;
}

.leaflet-bottom .leaflet-control {
    margin-bottom: 10px !important;
}

.leaflet-bottom .leaflet-control:last-child {
    margin-bottom: 27px !important;
}

.leaflet-control-attribution.leaflet-control {
	margin-bottom: 0px !important;
}

.dropdown-menu {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.dropleft .dropdown-menu {
	margin: 0 !important;
	border: none !important;
    border-radius: .5rem !important;
	min-width: 9em !important;
	right: 0 !important;
	z-index: 9999;
}

.dropleft .dropdown-toggle::before {
	content: normal !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: #FF8900 !important;
    border-color: #FF8900 !important;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #FFD428 !important;
    background-color: #FFD428 !important;
}

/* .close { */
    /* font-size: 1.7rem !important; */
/* } */

@supports (-webkit-overflow-scrolling: touch) {
	.leaflet-bar button,
	.leaflet-bar button:hover {
		padding-left: 11px !important;
	}
}

@media (max-width: 575.98px) {
	video {
		max-width: 90% !important;
	}
}

#regionSelect {
	position: absolute;
	bottom: 30%;
	left: 50%;
}

#button_filter {
	animation: glowing 1000ms infinite;
}

@keyframes glowing {
	0% { box-shadow: 0 0 -10px #ffd428; }
	50% { box-shadow: 0 0 10px #ffd428; }
	100% { box-shadow: 0 0 10px #ffd428; }
}

.lang-icon {
	width: 24px;
	height: 24px;
}

.w-280 {
	width: 280px !important;
}

.search-bar {
	position: absolute;
	z-index: 9997;
	top: 15px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 35%;
}

#search-bar-input {
	border: 0;
	border-radius: 1.25rem;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	color: #212529;
}

#search-bar-btn {
	z-index: 9996;
	color: #212529;
	font-size: 14px;
	font-weight: 700;
	border: 0;
	background-color: #FFF;
	border-radius: 1.25rem !important;
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
}

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 9997;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

@media (max-width: 1199.98px) {
	.search-bar {
		width: 40%;
	}
}

@media (max-width:992px) {
	.search-bar {
		width: 55%;
	}
}

.ribbon {
	margin: 0;
	padding: 0;
	background: #F00;
	color: #FFF;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(30%) translateY(0%) rotate(45deg);
	transform-origin: top left;
}

.ribbon:before,
.ribbon:after {
	content: '';
	position: absolute;
	top: 0;
	margin: 0 -1px;
	width: 100%;
	height: 100%;
	background: #F00;
}

.ribbon:before {
	right: 100%;
}

.ribbon:after {
	left: 100%;
}

.dropdown-toggle:after {
    color: rgb(134, 134, 134) !important;
}

.pointer {
	cursor: pointer;
}

.btn {
	border-radius: 5px;
}

.truck-info-box {
	/* top: 48px; */
	/* width: calc(100% - 30px); */
	/* position: absolute; */
	/* z-index: 99999; */
	/* background: #2c3e50; */
}

.truck-info-box {
	position: absolute;
	left: 370px;
	z-index: 1;
	width: 350px;
	background-color: #fff;
	border-radius: 20px;
	padding: 15px;
	top: 10px;
}

.truck-info-box h6 {
	font-weight: 500;
}

.truck-info-box .media {
	color: #FFF;
}

.truck-info-divider {
	height: 3px;
	background-color: #1e3042;
	border-bottom: solid 2px #374859;
}

.sidebar {
	overflow-y: hidden;
	width: 350px;
	z-index: 401;
	-webkit-box-shadow: 2px 0 5px 0 rgba(0,0,0,.2),
						2px 0 10px 0 rgba(0,0,0,.16) !important;
	box-shadow: 2px 0 5px 0 rgba(0,0,0,.2),
				2px 0 10px 0 rgba(0,0,0,.16) !important;
	background-color: #2c3e50;
}

.sidebar h1 {
	font-size: 1.2rem;
}

.sidebar-header {
	position: absolute;
	z-index: 9997;
	top: 15px;
	right: 15px;
}

#dropdown-profile-select i {
	font-size: 25px;
}

.search-form-box {
	height: calc(100% - 129px);
	overflow-y: auto;
	overflow-x: hidden;
}

.order-form-box {
    height: calc(100% - 131px);
    overflow-y: auto;
}

#order-info {
	resize: none;
	height: 38px;
	min-height: 38px;
	box-sizing: border-box;
	overflow: hidden;
}

.main {
	float: left;
	width: calc(100% - 350px);
}

.no-shadow {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.bg-yellow {
	background-color: #ffd428 !important;
}

#route-distance-price {
	opacity: 0.5;
}

.btn-get-location {
	position: absolute;
	right: 0;
	opacity: 0.75;
	margin-top: 5px;
}

.truck-tooltip {
	line-height: 1;
	/* max-width: 225px; */
}

.truck-tooltip.leaflet-tooltip {
	background: #fff;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 13px;
	/* line-height: 1.2 !important; */
	line-height: 0.8 !important;
	border-radius: 12px !important;
	padding: 8px !important;
}

.leaflet-tooltip {
    /* width: 200px !important; */
    /* white-space: normal !important; */
}

.truck-tooltip.leaflet-tooltip-top:before {
    margin-bottom: -13px !important;
}

.popup-w .leaflet-popup-content {
	max-width: 225px;
	/* width: 225px; */
}

.popup-sw .leaflet-popup-content {
	width: 225px;
}

.leaflet-popup-content {
	font-family: 'Roboto', Arial, sans-serif !important;
	font-size: 13px !important;
	margin: 8px 16px;
}

.footer-map {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8em;
}

.footer-map .list-inline-item a {
	color: rgba(255, 212, 40, 0.7);
}

.ui-autocomplete-loading {
	background: white url("https://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif") right center no-repeat;
}

ul.ls li a {
    line-height: 55px;
    display: block;
    color: #fff;
    border-radius: 100%
}

 ul.ls li.sf a {
    background-color: #3b5998;
	background-image: url(../img/f-icon.png);
    background-repeat: no-repeat;
    background-position: center;
	width: 30px;
    height: 30px;
    background-size: 20px;
}

ul.ls li.sf a:hover {
    background-color: #235ed8
}

ul.ls li.si a {
    background-color: #e1306c;
	background-image: url(../img/i-icon.png);
    background-repeat: no-repeat;
    background-position: center;
	width: 30px;
    height: 30px;
    background-size: 20px;
}

ul.ls li.si a:hover {
    background-color: #c13584
}

.card-img-24 {
    width: 24px;
    height: 24px;
}

.sidebar [data-toggle="collapse"] .fas {  
	transition: .3s transform ease-in-out;
}

.sidebar [aria-expanded="true"] .fas {  
	transform: rotate(180deg);
}

button:disabled {
	cursor: not-allowed;
	pointer-events: all !important;
}

.floating-label {
	position: absolute;
	top: 0;
	left: 0;
	user-select: none;
	z-index: 1500;
	font-size: 15px !important;
}

.floating-label-field {
	color: rgba(44, 62, 80, .75);
	border-width: 0;
	z-index: 2000;
}

.floating-label-field.disabled {
	cursor: not-allowed;
	pointer-events: all !important;
}

.floating-label-field:focus {
	outline: 0;
	box-shadow: 0;
}

.floating-label-field::placeholder {
	color: rgba(44, 62, 80, .5);
}

.floating-label,
.floating-label-field {
	font: inherit;
	line-height: 1;
	display: block;
	width: 100%;
}

.floating-label-field,
.floating-label-wrap {
	position: relative;
}

.floating-label-field--s1 {
	transition: border-color .25s ease-in-out;
	color: rgba(255, 255, 255, .75);
	border-bottom: 3px solid rgba(255, 255, 255, .05);
	background-color: transparent;
}

.floating-label-field--s1+.floating-label {
	transition: transform .25s, opacity .25s ease-in-out;
	transform-origin: 0 0;
	opacity: .5;
}

.floating-label-field--s1:focus,
.floating-label-field--s1:not(:placeholder-shown) {
	border-color: rgba(255, 255, 255, .1);
}

.floating-label-field--s1:focus+.floating-label,
.floating-label-field--s1:not(:placeholder-shown)+.floating-label {
	transform: translate(0, -30%) scale(.8);
	opacity: .35;
}

.floating-label-field--s1:valid:not(:placeholder-shown) {
	border-color: rgba(255, 212, 40, .3);
}

.floating-label-field--s1:invalid {
	border-color: rgba(255, 71, 87, .3);
}

.floating-label-field--s2 {
	transition: background-color .25s ease-in-out;
	border: 2px solid #fff;
	border-radius: 5px;
	background-color: #fff;
}

.floating-label-field--s2+.floating-label {
	visibility: hidden;
	transition: transform .25s, visibility .5s, opacity .5s ease-in-out;
	opacity: 0;
}

.floating-label-field--s2:focus+.floating-label,
.floating-label-field--s2:not(:placeholder-shown)+.floating-label {
	visibility: visible;
	transform: translateY(-80%);
	opacity: .5;
}

.floating-label-field--s2:valid:not(:placeholder-shown) {
	border-color: #adefc8;
	background-color: #adefc8;
}

.floating-label-field--s2:invalid {
	border-color: #ffe0e3;
	background-color: #ffe0e3;
}

.floating-label-field--s3 {
	padding: 0 0.75em;
	transition: border-color .25s ease-in-out;
	color: rgba(255, 255, 255, .75);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 5px;
	background-color: transparent;
}

.floating-label-field--s3 + .floating-label {
	position: absolute;
	top: .75em;
	left: .75em;
	display: inline-block;
	width: auto;
	margin: 0;
	padding: .75em;
	transition: transform .25s, opacity .25s, padding .25s ease-in-out;
	transform-origin: 0 0;
	color: rgba(255, 255, 255, .5);
}

.floating-label-field--s3:focus,
.floating-label-field--s3:not(:placeholder-shown) {
	border-color: rgba(255, 255, 255, .1);
}

.floating-label-field--s3:focus+.floating-label,
.floating-label-field--s3:not(:placeholder-shown)+.floating-label {
	z-index: 2500;
	padding: .75em;
	transform: translate(0, -2em) scale(.9);
	color: rgba(255, 255, 255, .25);
	background-color: #2c3e50;
}

.floating-label-field--s1:not(textarea),
.floating-label-field--s2:not(textarea),
.floating-label-field--s3:not(textarea) {
	max-height: 4em;
}

.floating-label-field--s1,
.floating-label-field--s2 {
	padding-top: 0.5em;
	padding-right: 20px;
	padding-bottom: 0.25em;
	padding-left: 0px;
}
.floating-label-field--s1+.floating-label,
.floating-label-field--s2+.floating-label {
	padding-bottom: 0.25em;
}

.floating-label-field--s1+.floating-label,
.floating-label-field--s2+.floating-label {
	z-index: 1500;
}

.floating-label-field--s1::placeholder,
.floating-label-field--s3::placeholder {
	color: transparent;
}

.floating-clear-input,
.floating-loading-input {
	opacity: 0;
	visibility: hidden;
	float: right;
	position: relative;
	top: -23px;
	transition: 0.2s linear;
	z-index: 2000;
}

.default_address_list {
	margin-left: -18px;
}

.toggle-sidebar {
	display: none;
}

#hide-truck-info {
	right: -15px;
	top: -15px;
	z-index: 99999;
	padding: 10px;
	background-color: #dfdfdf;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font-size: 23px !important;
}

.leaflet-bar a,
.leaflet-bar button {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
}

@media (max-width: 575.98px) {
	.truck-info-box {
		width: calc(100% - 20px);
		left: 10px;
	}
	.main {
		width: 100%;
	}

	.sidebar {
		height: 100%;
		width: 85%;
		position: absolute !important;
		z-index: 1;
		top: 0;
		left: -85%;
		overflow-x: hidden;
		transition: 0.5s;
		z-index: 9999;
		box-shadow: 0 1px 7px rgba(0, 0, 0, 0.3);
		transition-duration: 0.5s;
	}

	.sidebar.open {
		left: 0;
	}

	.toggle-sidebar {
		/* width: 145px; */
		position: fixed;
		bottom: 285px;
		left: 0;
		z-index: 401;
		display: inline-flex;
		-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
		/* background: #FFF; */
		background: #2C3E50;
		border-top-right-radius: 50px;
		border-bottom-right-radius: 50px;
		border: none !important;
		padding: 10px;
		/* padding: 0; */
		cursor: pointer;
		color: #2C3E50;
		text-overflow: ellipsis;
		overflow: hidden;
		-webkit-transition: 0.5s;
		-moz-transition: 0.5s;
		-ms-transition: 0.5s;
		-o-transition: 0.5s;
		transition: 0.5s;
		font-weight: 400;
		opacity: 0;
	}

	.toggle-sidebar .sidebar-wrapper {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	.sidebar.open .toggle-sidebar {
		width: 35px;
		/* padding: 7px; */
		left: 85%;
		background: #2C3E50 !important;
		color: #FFF !important;
		opacity: 1;
	}

	.toggle-sidebar i {
		/* transform: rotate(0deg); */
		transform: rotate(180deg);
	}
	
	.sidebar.open .toggle-sidebar i {
		transform: rotate(180deg);
	}
	
	.toggle-sidebar span {
		/* opacity: 1; */
		opacity: 0;
		display: none;
	}

	.sidebar.open .toggle-sidebar span {
		opacity: 0;
		display: none;
	}

	.sidebar .btn {
		padding: 10px;
	}

	.s-media {
		display: none;
	}

	.search-form-box {
		height: calc(100% - 129px);
	}

	.order-form-box {
		height: calc(100% - 90px);
	}
}
@media (min-width: 768px) {
	.leaflet-bar a,
	.leaflet-bar button {
		width: 35px !important;
		height: 35px !important;
		line-height: 35px !important;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.truck-info-box {
		left: 280px;
	}
	.sidebar {
		width: 270px;
	}
	.main {
		width: calc(100% - 270px);
	}
	.floating-label,
	.floating-label-field {
		font-size: 14px;
	}
	.sidebar .custom-control-label {
		font-size: 14px;
	}
	.s-media {
		display: none;
	}
	.search-form-box {
		height: calc(100% - 129px);
	}
	.order-form-box {
		height: calc(100% - 90px);
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.truck-info-box {
		left: 280px;
	}
	.sidebar {
		width: 270px;
	}
	.main {
		width: calc(100% - 270px);
	}
	.floating-label,
	.floating-label-field {
		font-size: 14px;
	}
	.sidebar .custom-control-label {
		font-size: 14px;
	}
	.s-media {
		display: none;
	}
	.search-form-box {
		height: calc(100% - 129px);
	}
	.order-form-box {
		height: calc(100% - 90px);
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.truck-info-box {
		left: 310px;
	}
	.sidebar {
		width: 300px;
	}
	.main {
		width: calc(100% - 300px);
	}
}

@media (min-width: 1200px) {
	
}

.ui-autocomplete {
	z-index: 9999 !important;
}

.ui-widget.ui-widget-content,
.ui-autocomplete .border-top {
	border-top: 1px solid #2c3e50 !important;
}

.ui-widget {
    background: #cacfd3 !important;
	font-size: 15px !important;
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #cacfd3;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	-webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
	box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
}

.ui-menu .ui-menu-item-wrapper {
    padding: 5px 0.5em !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active, .ui-button:active,
.ui-button.ui-state-active:hover {
    border: 0 !important;
    background: #ffd428 !important;
	font-weight: unset !important;
    color: #333 !important;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0px !important;
}

.ui-autocomplete-loading {
	background-image: none !important;
}

.pbg {
	width: 120px;
}

.leaflet-bar a:first-child,
.leaflet-bar a:first-child {
    border-top-right-radius: 0 !important;
}

.leaflet-bar a:last-child,
.leaflet-bar a:last-child {
    border-bottom-right-radius: 0 !important;
}

.leaflet-bar button:first-of-type {
    border-top-right-radius: 0 !important;
}

.leaflet-bar button:last-of-type {
    border-bottom-right-radius: 0 !important;
}

.alert-dark {
	color: #e8e8e8;
	background-color: #152331;
	border-color: #000;
	padding: 10px;
}

.alert-dark h2 {
	font-size: 16px !important;
}

.alert-dark p {
	font-size: 12px !important;
}

.overlay-order-online-box {
	/* height: 245px; */
}

.overlay-order-online {
	background-color: #000;
	z-index: 9996;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	text-align: center;
	border-radius: 5px;
}

.overlay-order-text-center {
	top: 50%;
	transform: translateY(-50%);
}

.overlay-order-text-center h2 {
	font-size: 1.1rem !important;
}

.z-index {
	z-index: 9996;
}

.text-yellow {
	color: #ffd428 !important;
}

.text-muted-2 {
	color: #7a818a !important;
}

.add-point {
	color: #FFF !important;
}

.client-avatar {
    width: 26px !important;
    height: 26px !important;
	object-fit: cover;
}

.img-circle {
    border-radius: 50%;
}

.dropdown-item.active, .dropdown-item:active {
    color: #333 !important;
    background-color: #ffd428 !important;
}

#overlay {
	background: rgba(0, 0, 0, 0.7);
	color: #666666;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 5000;
}

#overlay-inner {
	position: absolute;
	top: 35%;
	width: 100%;
	text-align: center;
	color: #FFF;
}

.spinner {
	margin: 0 auto;
	height: 64px;
	width: 64px;
	animation: rotate 1.5s infinite linear;
	border: 3px solid #FFD428;
	border-right-color: transparent;
	border-radius: 50%;
}

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

.alert-dark-blue {
    color: #2b3e4f;
    background-color: #182531;
    border-color: #121c26;
}

.dropdown-companies-items {
	max-width: 190px;
	min-width: 180px;
	max-height: 200px !important;
	overflow-y: auto;
	overflow-x: hidden;
}

.dropdown-companies-items .company-region-dropdown {
	max-height: initial !important;
}

.dropdown-companies-items label {
	white-space: normal;
}

.order-timeline {
	position: relative;
	border-color: rgba(160, 175, 185, .15);
	padding: 0;
	margin: 0
}

.tl-item {
	border-radius: 3px;
	position: relative;
	display: -ms-flexbox;
	display: flex
}

.tl-item > * {
	padding: 10px
}

.tl-item:last-child .tl-dot:after {
	display: none
}

.tl-item:last-child .tl-dot:after {
	display: none
}

.tl-dot {
	position: relative;
	border-color: rgba(160, 175, 185, .15)
}

.tl-dot:after,
.tl-dot:before {
	content: '';
	position: absolute;
	border-color: inherit;
	border-width: 2px;
	border-style: solid;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	top: 15px;
	left: 50%;
	transform: translateX(-50%)
}

.tl-dot:after {
	width: 0;
	height: auto;
	top: 25px;
	bottom: -15px;
	border-right-width: 0;
	border-top-width: 0;
	border-bottom-width: 0;
	border-radius: 0
}

.tl-dot {
	position: relative;
	border-color: rgba(160, 175, 185, .15)
}

.tl-dot:after,
.tl-dot:before {
	content: '';
	position: absolute;
	border-color: inherit;
	border-width: 2px;
	border-style: solid;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	top: 15px;
	left: 50%;
	transform: translateX(-50%)
}

.tl-dot:after {
	width: 0;
	height: auto;
	top: 25px;
	bottom: -15px;
	border-right-width: 0;
	border-top-width: 0;
	border-bottom-width: 0;
	border-radius: 0
}

.tl-content p:last-child {
	margin-bottom: 0
}

.no-caret:after {
	content: none !important;
}

.dropdown-menu.show {
    z-index: 999999 !important;
}

.company-logo {
	max-width: 130px;
    max-height: 40px;
}

.custom-control-input,
.custom-control-label:before,
.custom-control-label:after {
	top: 50%;
    transform: translateY(-50%);
}

.trucks-box {
	min-height: 120px;
	overflow-y: auto;
}

.map-my-order-dropdown {
	font-size: 14px !important;
}

.truck-info-company-logo {
	height: 32px;
}

.leaflet-control-layers,
.leaflet-bar {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
    background-clip: padding-box;
}

.w-30 {
    width: 30%!important;
}

.select2-container {
    z-index: 9999;
}

input.floating-label-field[type=search]::-ms-clear,
input.floating-label-field[type=search]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input.floating-label-field[type="search"]::-webkit-search-decoration,
input.floating-label-field[type="search"]::-webkit-search-cancel-button,
input.floating-label-field[type="search"]::-webkit-search-results-button,
input.floating-label-field[type="search"]::-webkit-search-results-decoration {
	display: none;
}

.sidebar .stretched-link {
	color: inherit !important;
}

@supports not (-webkit-touch-callout: none) {
	.v-scroll-shadow {
		background: linear-gradient(var(--background-color), var(--background-color), var(--transparent) calc(var(--shadow-size) * 2)), radial-gradient(farthest-side at 50% 0, var(--shadow-color), var(--transparent)), linear-gradient(to top, var(--background-color), var(--background-color), var(--transparent) calc(var(--shadow-size) * 2)), radial-gradient(farthest-side at 50% 100%, var(--shadow-color), var(--transparent)) 0 100%;
		background-color: var(--background-color);
		background-repeat: no-repeat;
		background-attachment: local, scroll,local, scroll;
		background-size: 100% 100%, 100% var(--shadow-size), 100% 100%, 100% var(--shadow-size);
		--background-color: rgb(44, 62, 80);
		--shadow-color: rgba(34,34,34, 0.5);
		--shadow-size: 0.9em;
		--transparent: rgba(255, 255, 255, 0);
	}
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
}

::-webkit-scrollbar-thumb {
	background: #7a818a;
	border: 0px none #ffffff;
	border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
	background: #676e77;
}

::-webkit-scrollbar-thumb:active {
	background: #454d55;
}

::-webkit-scrollbar-track {
	background: #25313f;
	border: 0px none #ffffff;
	border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
	background: #25313f;
}

::-webkit-scrollbar-track:active {
	background: #25313f;
}

::-webkit-scrollbar-corner {
	background: transparent;
}

.tooltip {
	font-family: 'Roboto', Arial, sans-serif !important;
}

.subscribe-bar {
	position: absolute;
	right: 0;
}

.map-top-right-box {
	position: absolute;
	right: 0px;
	top: 10px;
	z-index: 1000;
	display: inline-flex;
}

.client-order-status {
	font-size: 14px !important;
	font-weight: normal;
	padding: 5px 10px;
	background-color: #FFF;
	border-radius: 20px;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12) !important;
	background-clip: padding-box;
	margin-right: 10px;
}

/* toggle sidebar mobile */
.toggle-sidebar-mobile {
	position: absolute;
	z-index: 402;
	bottom: 27px;
	width: 200px;
	left: 0;
	right: 0;
	border-radius: 50px;
	line-height: 1.2;
	color: #333;
	margin: 0px auto;
	padding: 15px;
}

.dark-color-default {
	color: #212529 !important;
}

#services-box {
	font-size: 14px;
}

#services-box label,
#additionalRequirementsCall2 label {
	line-height: normal !important;
}

#services-box .custom-control-input,
#services-box .custom-control-label::before,
#services-box .custom-control-label::after {
	top: 6px !important;
	transform: translateY(-4px) !important;
}

.truck-content {
	cursor: pointer;
	overflow-x: hidden;
	overflow-y: hidden;
	-webkit-transition: background-color ..3s ease-out, box-shadow .3s;
	-moz-transition: background-color .3s ease-out, box-shadow .3s;
	-o-transition: background-color .3s ease-out, box-shadow .3s;
	transition: background-color .3s ease-out, box-shadow .3s;
}

.truck-content:hover {
	background-color: #25313f;
	border-radius: .25rem !important;
}

.truck-info-content .small,
.truck-content .small {
	line-height: 1 !important;
}

.object-fit-cover {
	object-fit: cover;
}

/* fix ios safari bug :) */
.leaflet-container {
	isolation: isolate !important;
}

/* fix ios safari bug :) */
.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
	will-change: transform !important;
}

.leaflet-div-icon {
	background: none !important;
	border: 0 !important;
	transition: transform 0.5s linear;
    -webkit-transition: transform 0.5s linear;
    -o-transition: transform 0.5s linear;
    -moz-transition: transform 0.5s linear;
}

/* .leaflet-marker-icon-custom .truck-status-1, */
/* .leaflet-marker-icon-custom .truck-status-0 { */
	/* background: rgb(0,0,0); */
	/* background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0,0,0,0) 80%); */
	/* border-radius: 50%; */
	/* transition: transform 0.5s linear; */
    /* -webkit-transition: transform 0.5s linear; */
    /* -o-transition: transform 0.5s linear; */
    /* -moz-transition: transform 0.5s linear; */
/* } */

.truck-content-highlight {
	/* box-shadow: 9px 2px 21px -2px rgba(212, 159, 49, 0.3); */
	/* background-color: rgba(212, 159, 49, 0.3); */
	box-shadow: 9px 2px 21px -2px #25313f;
	background-color: #25313f;
}

.truck-status-1 {
	width: 45px;
	height: 45px;
	line-height: 45px;
	background-image: url('../img/truck-shadow.png');
	text-align: center;
	background-size: contain;
}

.truck-status-0 {
	width: 45px;
	height: 45px;
	line-height: 45px;
	background: url('../img/truck-shadow-busy.png') no-repeat center;
	text-align: center;
	background-size: contain;
}

.truck-marker-text {
	margin-left: -40px;
	width: 120px;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-shadow: 2px 0 0 #fff,-2px 0 0 #fff,0 2px 0 #fff,0 -2px 0 #fff,1px 1px #fff,-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff;
}

.border-bottom-radius-0 {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.border-top-radius-0 {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.btn-sm#order-truck-call {
	font-size: 12px !important;
	font-weight: 500 !important;
}

.leaflet-control-layers-toggle {
	background-image: url('../img/layers.png') !important;
	background-size: 19px;
	background-position: 5px 6px;
}

.closest-trucks-list {
	width: 300px;
	margin: 0 auto;
	text-align: left;
	background: HSLA(212.7, 29.7%, 7.3%, 0.7);
	padding: 10px;
	border-radius: 10px;
}