.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

#sidebar {
	min-width: 30em;
	max-width: 30em;
	min-height: 100vh;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#sidebar.active {
	margin-left: -30em;
}

.btn {
	font-weight: 500 !important;
}

.row {
	clear: both;
}

.column-2 {
	float: left;
	width: 50%;
}

.logo {
	background: url("../images/logo.svg") no-repeat center;
	background-size: 200px;
}

#mode-switch {
	position: relative;
	margin-left: auto;
}

.sun, .moon {
	font-size: 10rem;
	width: fit-content;
	height: fit-content;
}

.moon {
	position: absolute;
	inset: 0;
}

.moon-logo {
	opacity: 0;
	transform: translateY(20%) rotateZ(50deg);
	transition: all 1s ease-out;
}

.sun-logo {
	opacity: 1;
	transform: translateY(0) rotateZ(0deg);
	transition: all 1s ease-out;
}

.animate-sun {
	opacity: 0;
	transform: translateY(20%) rotateZ(100deg);
}

.animate-moon {
	opacity: 1;
	transform: translateY(0%) rotateZ(0deg);
}

.animate-moon path {
	fill: white;
}

.animate-sun path {
	fill: white;
}

.dark-mode {
	background-color: black;
	color: white !important;
}

.dark-mode ul.ui-autocomplete.ui-menu li {
	background-color: transparent;
	color: white;
}

.dark-mode .prop {
	background-color: black;
	color: white;
}

#toggleDarkMode {
	position: absolute;
	right: 3em;
}

.verticalLine {
	border-left: solid;
}

/* Accordion styles */

.accordionMenu {
	margin: 0 auto;
}

.accordionMenu input[type=radio] {
	display: none;
}

.accordionMenu label {
	display: block;
	height: 50px;
	line-height: 47px;
	padding: 0 25px 0 10px;
	background: #575555;
	font-size: 18px;
	color: #fff;
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid #e6e6e6;
}

.accordionMenu label::after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
	z-index: 10;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.accordionMenu .content {
	max-height: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 2s ease-in-out;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
	/* width: 97%; */
	padding-left: 10px;
}

.accordionMenu .content .inner1 {
	font-size: 1.2rem;
	color: #2c97de;
	line-height: 2;
	background: none;
	padding: 20px 10px;
}

.accordionMenu input[type=radio]:checked+label:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.accordionMenu input[type=radio]:checked+label+.content {
	min-height: 700px;
	height: auto;
	margin-bottom: 10px;
}

.form-row {
	padding: 0.5em;
	border-top: grey solid thin;
}

.ui-autocomplete-loading {
	background: url(http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/images/ui-anim_basic_16x16.gif) no-repeat center
}

#departCoord, #arriveCoord, #stepCoord, #step1Coord {
	display: none;
}

ul.ui-autocomplete.ui-menu {
	width: 40em;
}

ul.ui-autocomplete.ui-menu li {
	background-color: transparent;
	list-style: none;
}

a.mapboxgl-ctrl-logo {
	display: none !important;
}

.mapboxgl-ctrl-bottom-right {
	display: none;
}

.mapboxgl-ctrl-bottom-left {
	bottom: 60 !important;
	left: 20 !important;
}

.dark-mode {
	background-color: black !important;
	color: white !important;
}

/* Style tab links */

.tablink {
	background-color: #555;
	color: white;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	font-size: 17px;
	width: 33%;
}

.tablink:hover {
	background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */

.tabcontent {
	display: none;
	padding: 1em 1em;
	height: 100%;
}

.relative {
	position: relative;
}

.zoom-level {
	position: absolute;
	left: 30;
	bottom: 5;
	z-index: 1;
	font-weight: 700;
	font-size: 1.5em;
}

/* The Modal (background) */

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 10% !important;
	width: 360px;
	height: 640px;
	overflow: auto;
	background-color: transparent;
}

/* The device with borders */

.smartphone {
	position: relative;
	width: 360px;
	height: 640px;
	margin: auto;
	border: 16px black solid;
	border-top-width: 60px;
	border-bottom-width: 60px;
	border-radius: 36px;
}

/* The horizontal line on the top of the device */

.smartphone:before {
	content: '';
	display: block;
	width: 60px;
	height: 5px;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #333;
	border-radius: 10px;
}

/* The circle on the bottom of the device */

.smartphone:after {
	content: '';
	display: block;
	width: 35px;
	height: 35px;
	position: absolute;
	left: 50%;
	bottom: -65px;
	transform: translate(-50%, -50%);
	background: #333;
	border-radius: 50%;
}

/* The screen (or content) of the device */

.smartphone .content {
	width: 100%;
	height: 100%;
	background: white;
}

.is-blurred {
	filter: blur(2px);
	-webkit-filter: blur(20px);
}

#car {
	position: absolute;
	left: calc(50% - 19px);
	top: 50%;
	width: 72px;
	height: 56px;
	background: url('../images/car.png') no-repeat;
	background-size: 50%;
}

#params {
	position: absolute;
	top: 0;
	margin-top: 10px;
	margin-left: 10px;
	color: #1445f5;
}

#maneuvers {
	position: absolute;
	bottom: 0;
	height: 80px;
	visibility: hidden;
	display: inline-block;
	color: #1445f5;
}

#circle {
	position: absolute !important;
	width: 40px;
	height: 40px;
}

.marker {
	/* background-image: url('/images/arrive.svg'); */
	background-size: cover;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
}

.mapboxgl-popup {
	max-width: 200px;
}

.mapboxgl-popup-content {
	text-align: left;
	font-family: 'Open Sans', sans-serif;
	padding: unset;
}

router-link {
	background-repeat: no-repeat;
	padding-left: 30px;
	cursor: pointer;
}

.hidden {
	visibility: hidden;
}

.no-display {
	display: none;
}

/*Hidden class for adding and removing*/

.lds-dual-ring.hidden {
	display: none;
}

.loader {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

.ui-helper-hidden-accessible {
	display: none;
}

.mapContextMenu {
	position: absolute;
	overflow: hidden;
	border: 1px solid #CCC;
	white-space: nowrap;
	font-family: sans-serif;
	background: #FFF;
	color: #333;
	border-radius: 5px;
	padding: 0;
}

.mapContextMenu li {
	padding: 2px 10px;
	cursor: pointer;
}

.mapContextMenu li:hover {
	background-color: #DEF;
}

.ui-widget {
	font-family: Verdana, Arial, sans-serif;
	font-size: 0.8em;
}

.ui-dialog {
	left: 0;
	outline: 0 none;
	padding: 0 !important;
	position: absolute;
	top: 0;
}

#success {
	padding: 0;
	margin: 0;
}

.ui-dialog .ui-dialog-content {
	background: none repeat scroll 0 0 white !important;
	border: 0 none !important;
	overflow: auto !important;
	position: relative !important;
	padding: 0 !important;
	font-size: 1em !important;
	text-align: center !important;
	height: 70px !important;
}

.ui-widget-header {
	/*Change the Header color here*/
	background: #f11515;
	border: 0;
	color: #fff;
	font-weight: normal;
}

.ui-dialog .ui-dialog-titlebar {
	padding: 0.1em .5em;
	position: relative;
	font-size: 1.5em;
	color: red;
}

.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: 0;
}

.overlay {
	height: 100%;
	width: 0;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	background-color: white;
	overflow-x: hidden;
	transition: 0.5s;
	max-width: 33% !important;
}

.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.overlay div {
	/* padding: 8px; */
	text-decoration: none;
	font-size: 12px;
	color: black;
	display: block;
	transition: 0.3s;
}

.overlay .closebtn {
	position: absolute;
	top: -20;
	right: 45px;
	font-size: 60px;
}

@media screen and (max-height: 450px) {
	.overlay a {
		font-size: 20px
	}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}

#maptools {
	position: absolute;
	right: 0px;
}

#mapDetours {
	position: absolute;
	bottom: 10px;
	right: 30px;
	overflow: hidden;
	box-sizing: border-box;
	padding: 10px;
	width: 30%;
	background-color: #fff;
	transition: transform 0.5s;
}

#mapDetours:not(:has(li)) {
	transform: translateX(100%);
}

#mapDetours ul {
	padding: 0 0 0 20px;
}

.round {
	position: relative;
	padding: 8px;
}

.round label {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	cursor: pointer;
	height: 28px;
	left: 0;
	position: absolute;
	top: 0;
	width: 28px;
}

.round label:after {
	border: 2px solid #fff;
	border-top: none;
	border-right: none;
	content: "";
	height: 6px;
	left: 7px;
	opacity: 0;
	position: absolute;
	top: 8px;
	transform: rotate(-45deg);
	width: 12px;
}

.round input[type="checkbox"] {
	visibility: hidden;
}

.round input[type="checkbox"]:checked+label {
	background-color: #66bb6a;
	border-color: #66bb6a;
}

.round input[type="checkbox"]:checked+label:after {
	opacity: 1;
	margin-left: 4px;
}

#mapPills {
	position: absolute;
	left: 50;
	top: 20;
	display: block;
}

#mapPills>li {
	padding-bottom: 10px;
	font-size: 36px;
}

#mapPills>li a {
	color: black;
}

.poiImg {
	width: 1.5rem;
	height: 1.5rem;
}

pre {
	font-size: 100% !important;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
}

#reqURL #url {
	width: 100%;
	height: 10%;
}

/* ---------------------------------------------------
      MEDIAQUERIES
  ----------------------------------------------------- */

@media (max-width: 768px) {
	#sidebar {
		margin-left: -320px;
	}
	#sidebar.active {
		margin-left: 0;
	}
	#sidebarCollapse {
		display: none;
	}
	.container {
		margin-top: 0px !important;
	}
}
