.number-of-transports {
  position: absolute;
  bottom: 0;
  left: 466px;
  z-index: 999; }
  .number-of-transports p {
    font-size: 18px;
    font-weight: bold;
    line-height: 0.5; }

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	/*background-image: url(images/layers.png);*/
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	/*background-image: url(images/layers-2x.png);*/
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
/*.leaflet-default-icon-path {*/
	/*background-image: url(images/marker-icon.png);*/
	/*}*/


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
    ========================================================================== */
/**
  * 1. Set default font family to sans-serif.
  * 2. Prevent iOS and IE text size adjust after device orientation change,
  *    without disabling user zoom.
  * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
  *  `em` units.
  */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
  * Remove default margin.
  */
body {
  margin: 0; }

/* HTML5 display definitions
    ========================================================================== */
/**
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
  * Correct `block` display not defined for `details` or `summary` in IE 10/11
  * and Firefox.
  * Correct `block` display not defined for `main` in IE 11.
  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
  * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
  * Prevents modern browsers from displaying `audio` without controls.
  * Remove excess height in iOS 5 devices.
  */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
  * Address `[hidden]` styling not present in IE 8/9/10.
  * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  */
[hidden],
template {
  display: none; }

/* Links
    ========================================================================== */
/**
  * Remove the gray background color from active links in IE 10.
  */
a {
  background-color: transparent; }

/**
  * Improve readability of focused elements when they are also in an
  * active/hover state.
  */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
    ========================================================================== */
/**
  * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  */
abbr[title] {
  border-bottom: 1px dotted; }

/**
  * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  */
b,
strong {
  font-weight: bold; }

/**
  * Address styling not present in Safari and Chrome.
  */
dfn {
  font-style: italic; }

/**
  * Address variable `h1` font-size and margin within `section` and `article`
  * contexts in Firefox 4+, Safari, and Chrome.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
  * Addresses styling not present in IE 8/9.
  */
mark {
  background: #ff0;
  color: #000; }

/**
  * Address inconsistent and variable font size in all browsers.
  */
small {
  font-size: 80%; }

/**
  * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
    ========================================================================== */
/**
  * 1. Remove border when inside `a` element in IE 8/9/10.
  * 2. Improves image quality when scaled in IE 7.
  */
img {
  border: 0; }

/**
  * Correct overflow not hidden in IE 9/10/11.
  */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
    ========================================================================== */
/**
  * Address margin not present in IE 8/9 and Safari.
  */
figure {
  margin: 1em 40px; }

/**
  * Address differences between Firefox and other browsers.
  */
hr {
  box-sizing: content-box;
  height: 0; }

/**
  * Contain overflow in all browsers.
  */
pre {
  overflow: auto; }

/**
  * Address odd `em`-unit font size rendering in all browsers.
  * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
    ========================================================================== */
/**
  * Known limitation: by default, Chrome and Safari on OS X allow very limited
  * styling of `select`, unless a `border` property is set.
  */
/**
  * 1. Correct color not being inherited.
  *  Known issue: affects color of disabled elements.
  * 2. Correct font properties not being inherited.
  * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  * 4. Improves appearance and consistency in all browsers.
  */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
  * Address `overflow` set to `hidden` in IE 8/9/10/11.
  */
button {
  overflow: visible; }

/**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  * Correct `select` style inheritance in Firefox.
  */
button,
select {
  text-transform: none; }

/**
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  *  and `video` controls.
  * 2. Correct inability to style clickable `input` types in iOS.
  * 3. Improve usability and consistency of cursor style between image-type
  *  `input` and others.
  * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
  *  Known issue: inner spacing remains in IE 6.
  */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
  * Re-set default cursor for disabled elements.
  */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
  * Remove inner padding and border in Firefox 4+.
  */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
input {
  line-height: normal; }

/**
  * 1. Address box sizing set to `content-box` in IE 8/9/10.
  * 2. Remove excess padding in IE 8/9/10.
  *  Known issue: excess padding remains in IE 6.
  */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
  * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  * `font-size` values of the `input`, it causes the cursor style of the
  * decrement button to change from `default` to `text`.
  */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
  * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
  * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  * Safari (but not Chrome) clips the cancel button when the search input has
  * padding (and `textfield` appearance).
  */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
  * Define consistent border, margin, and padding.
  */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
  * 1. Correct `color` not being inherited in IE 8/9/10/11.
  * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  * 3. Corrects text not wrapping in Firefox 3.
  * 4. Corrects alignment displayed oddly in IE 6/7.
  */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
  * Remove default vertical scrollbar in IE 8/9/10/11.
  */
textarea {
  overflow: auto; }

/**
  * Don't inherit the `font-weight` (applied by a rule above).
  * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  */
optgroup {
  font-weight: bold; }

/* Tables
    ========================================================================== */
/**
  * Remove most spacing between table cells.
  */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

body {
  font-family: "Gilroy"; }

.main-wrapper {
  display: flex;
  font-family: "Gilroy";
  font-size: 12px; }
  .main-wrapper .main-content {
    position: relative;
    max-width: calc(100% - 270px);
    padding-bottom: 80px;
    margin-left: auto;
    margin-right: 15px; }

a:hover {
  color: #fff; }

label {
  display: inline-flex;
  margin-bottom: 5px;
  font-size: 10px;
  color: #767D91; }

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-height: 35px;
  border-radius: 6px;
  background-color: #0D0D0D;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01px;
  min-width: 190px;
  padding: 0 15px;
  border: none;
  cursor: pointer;
  transition: all .2s linear; }
  .c-button--transparent {
    background-color: transparent;
    color: #0D0D0D;
    border: 1px solid #C7CBD6; }
  .c-button.ant-btn-default {
    background-color: #0D0D0D;
    color: #fff; }
  .c-button:hover {
    background-color: #C7CBD6;
    color: #fff;
    border: 1px solid #C7CBD6; }

.c-actionbtn {
  border: none;
  color: #629AFF;
  font-weight: 500;
  font-size: 12px;
  background: rgba(98, 154, 255, 0.2);
  border-radius: 2px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  line-height: 1;
  outline: none; }
  .c-actionbtn svg {
    margin-left: 5px; }
  .c-actionbtn--green {
    background: rgba(140, 188, 105, 0.2);
    color: #8CBC69;
    padding: 5px 10px; }
    .c-actionbtn--green:hover {
      background: rgba(140, 188, 105, 0.2);
      color: #8CBC69; }

.ReactTable .rt-noData {
  position: absolute;
  left: 0;
  bottom: 0;
  top: initial;
  transform: none;
  text-align: center;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  height: 50px; }

.table {
  border: 1px solid #F0F2F7;
  letter-spacing: -0.01px;
  color: #0D0D0D; }
  .table .-even {
    background-color: #fff; }
  .table .-filters {
    display: none; }
  .table__pagination {
    position: absolute;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    width: 100%; }
  .table__pagination-visiblePagesWrapper {
    margin: 0 10px; }
  .table__pagination-navButton, .table__pagination-pageButton {
    color: #0D0D0D;
    background-color: transparent;
    border: none;
    text-decoration: none;
    height: 18px;
    min-width: 18px;
    padding: 0 4px;
    letter-spacing: -0.01px;
    outline: none;
    display: inline-flex;
    justify-content: center;
    border-radius: 2px; }
    .table__pagination-navButton--active, .table__pagination-pageButton--active {
      background-color: #0D0D0D;
      color: #fff; }
    .table__pagination-navButton:disabled, .table__pagination-pageButton:disabled {
      color: #0D0D0D;
      cursor: initial;
      opacity: 0.5; }
  .table__pagination-navButton-prev {
    transform: rotate(90deg);
    color: #0D0D0D; }
  .table__pagination-navButton-next {
    transform: rotate(270deg);
    color: #0D0D0D; }
  .table .rt-thead.-header {
    min-height: 32px;
    box-shadow: none;
    background-color: #fff;
    font-weight: 600;
    letter-spacing: -0.01px;
    color: #0D0D0D; }
  .table__filter {
    display: flex;
    align-items: center; }
    .table__filter span {
      display: flex;
      flex-direction: column; }
    .table__filter .range-picker {
      display: flex;
      flex-direction: column; }
    .table__filter .ant-calendar-range-picker-separator {
      display: inline;
      width: 10px; }
    .table__filter .ant-calendar-picker {
      height: 35px;
      width: 220px !important; }
    .table__filter .ant-calendar-picker-input {
      height: 35px;
      border: 1px solid #F0F2F7;
      border-radius: 3px;
      font-size: 12px;
      color: #0D0D0D;
      flex-direction: row; }
  .table__delete-btn {
    cursor: pointer; }
  .table__filter-main {
    display: flex; }
  .table__top {
    display: flex;
    align-items: flex-end;
    padding: 20px 0;
    z-index: 20;
    position: relative; }
  .table__title {
    font-weight: 600;
    letter-spacing: -0.01px;
    color: #0D0D0D;
    margin-right: 20px;
    margin-bottom: 0; }
  .table__filter-item {
    min-width: 210px;
    height: 35px;
    background-color: #fff;
    letter-spacing: -0.01px;
    color: #0D0D0D;
    margin-right: 35px;
    border-radius: 3px; }
    .table__filter-item .ant-input {
      height: 35px;
      border: 1px solid #F0F2F7;
      border-radius: 3px;
      box-shadow: none; }
      .table__filter-item .ant-input::placeholder {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: -0.00930607px;
        color: #3D4660;
        opacity: 0.2; }
      .table__filter-item .ant-input.filled {
        border: 1px solid #629AFF; }
      .table__filter-item .ant-input:focus {
        border: 1px solid #629AFF;
        box-shadow: none; }
    .table__filter-item .select__dropdown-indicator {
      color: rgba(13, 13, 13, 0.7); }
    .table__filter-item .select__control--menu-is-open .select__dropdown-indicator {
      transform: rotate(180deg); }
    .table__filter-item .select__control {
      min-height: 35px;
      border: 1px solid #F0F2F7;
      box-shadow: none;
      border-radius: 3px;
      cursor: pointer; }
    .table__filter-item .select__menu-list {
      padding: 0;
      border-radius: 0;
      border: none;
      cursor: pointer; }
    .table__filter-item .select__menu {
      border: none;
      margin: 0;
      background-color: #fff;
      line-height: 2;
      letter-spacing: -0.01px;
      border-radius: 0;
      cursor: pointer; }
    .table__filter-item .select__option--is-focused {
      background-color: #F0F2F7; }
    .table__filter-item .select__option--is-selected {
      background-color: #F0F2F7;
      color: inherit; }
    .table__filter-item .select__option {
      line-height: 2;
      letter-spacing: -0.01px;
      color: #0D0D0D;
      line-height: initial;
      padding: 6px 6px 6px 20px;
      cursor: pointer; }
      .table__filter-item .select__option:hover, .table__filter-item .select__option:focus {
        background-color: #F0F2F7; }
    .table__filter-item .select__value-container {
      padding: 0 11px;
      outline: none; }
    .table__filter-item .select__placeholder {
      color: rgba(13, 13, 13, 0.2);
      font-size: 12px;
      color: rgba(61, 70, 96, 0.2); }
    .table__filter-item .select__indicator-separator {
      display: none; }
    .table__filter-item .select__clear-indicator {
      position: absolute;
      right: 7px;
      top: 50%;
      background-color: #fff;
      z-index: 1;
      padding: 0;
      margin-top: -6px; }
  .table__stops {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 14px;
    color: #629AFF;
    cursor: pointer; }
  .table__add-btn {
    min-width: 190px;
    margin-left: auto; }
  .table .rt-th-cell {
    text-align: left;
    font-weight: 600; }
  .table .rt-tr {
    text-align: left;
    display: flex;
    align-items: center; }
    .table .rt-tr .rt-th {
      white-space: pre-wrap;
      border: none;
      padding-left: 22px;
      padding-right: 22px; }
  .table .rt-td {
    min-height: 44px;
    padding-left: 22px;
    padding-right: 22px;
    display: inline-flex;
    align-items: center;
    word-break: break-all;
    white-space: pre-line; }
  .table .rt-tbody .rt-td {
    border-right: none; }
  .table .rt-th-center {
    white-space: pre-line; }
  .table .rt-td-center,
  .table .rt-th-center {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: pre-line; }

.range-picker-dropdown .ant-calendar-footer.ant-calendar-range-bottom {
  display: none; }

.main-container {
  display: flex; }
  .main-container .main-content {
    flex-grow: 1; }

.ant-popover {
  max-width: 300px; }

.rt-td-center {
  text-align: center; }

.leaflet-container {
  min-height: 700px;
  width: 100%; }
  .leaflet-container .location-icon {
    display: flex;
    align-items: center;
    justify-content: center; }
  .leaflet-container .id-icon {
    font-size: 16px;
    margin-top: 5px !important; }
  .leaflet-container .leaflet-control-scale {
    margin: 0 !important; }

.aaaaaaaaaaaaaaaaaa {
  display: none; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  min-width: 230px;
  z-index: 100;
  background: #0D0D0D; }
  .sidebar__logo {
    margin: 30px 0 45px;
    padding-left: 33px; }
    .sidebar__logo svg {
      color: #fff; }
  .sidebar__inner {
    position: relative;
    width: 100%;
    min-height: 100%;
    max-width: 210px; }
  .sidebar__btn {
    min-height: 35px;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    padding-left: 33px;
    border-top-left-radius: 10em;
    border-bottom-left-radius: 10em; }
    .sidebar__btn--active {
      background-color: #f8f9fd;
      color: #0D0D0D;
      font-weight: 700; }
      .sidebar__btn--active:hover {
        color: #0D0D0D; }
  .sidebar__logout {
    position: absolute;
    left: 33px;
    bottom: 45px;
    padding: 0;
    border: none;
    color: #fff;
    background-color: transparent;
    max-width: 210px;
    font-weight: 500;
    font-size: 12px;
    outline: none; }

.tabs {
  background-color: #fff;
  width: calc(100% + 40px);
  margin-left: -25px;
  padding: 40px 25px 10px; }
  .tabs__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0D0D0D;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01px;
    padding: 0 5px;
    margin-right: 30px; }
    .tabs__item::before {
      content: '';
      position: absolute;
      border-radius: 2px;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: transparent;
      display: block; }
    .tabs__item.active:before {
      background-color: #629AFF; }
    .tabs__item:hover {
      color: #0D0D0D; }

.main-content__form {
  margin: 55px 0; }

.main-content__form-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02px;
  color: #0D0D0D;
  margin-bottom: 25px; }

.main-content__form-goback {
  border: none;
  background-color: transparent;
  outline: none;
  color: #629AFF;
  padding: 0;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: -8px; }

.ant-checkbox-wrapper {
  user-select: none;
  display: flex;
  align-items: center; }

.message-form__inner {
  display: flex;
  align-items: center;
  margin: 0 -10px;
  width: 100%;
  max-width: 690px; }
  .message-form__inner > span {
    margin: 0 10px;
    flex-grow: 1;
    width: 210px;
    display: flex;
    flex-direction: column; }
    .message-form__inner > span .message-range-picker {
      min-width: 270px; }
      .message-form__inner > span .message-range-picker .ant-calendar-range-picker-input {
        width: 45%; }
      .message-form__inner > span .message-range-picker .ant-calendar-picker-input:hover {
        border: none; }

.main-content__form .blind-zones-map {
  max-width: 1000px; }
  .main-content__form .blind-zones-map .leaflet-container {
    min-height: 470px; }

.ant-select-dropdown-menu-item {
  letter-spacing: -0.01px;
  color: #0D0D0D;
  padding: 3px 12px;
  font-size: 13px;
  letter-spacing: -0.0100816px;
  color: #0D0D0D; }

.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #F0F2F7; }

input.ant-input:-internal-autofill-selected {
  background-color: #fff !important; }

.c-form {
  display: flex;
  flex-wrap: wrap; }
  .c-form__field {
    display: inline-flex;
    align-items: center;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #F0F2F7;
    background-color: #fff;
    margin-bottom: 0;
    padding: 4px 11px;
    max-width: 210px;
    z-index: 999; }
    .c-form__field .select__control {
      min-width: 100%;
      border: none; }
    .c-form__field > div {
      flex-grow: 1; }
    .c-form__field input::placeholder {
      font-size: 12px;
      color: rgba(61, 70, 96, 0.2); }
    .c-form__field::placeholder {
      font-size: 12px;
      color: rgba(61, 70, 96, 0.2); }
    .c-form__field--required {
      color: red; }
    .c-form__field .ant-select-arrow {
      right: 0;
      color: rgba(13, 13, 13, 0.7); }
    .c-form__field .ant-select-selection {
      height: 25px;
      box-shadow: none; }
    .c-form__field .ant-input-password-icon,
    .c-form__field .ant-input-suffix {
      color: rgba(61, 70, 96, 0.2); }
    .c-form__field .ant-select-selection__rendered {
      display: flex;
      align-items: center;
      outline: none;
      font-size: 13px;
      letter-spacing: -0.01px;
      color: #0D0D0D;
      line-height: 27px;
      margin-left: 0;
      border: none; }
    .c-form__field .ant-select-selection__placeholder {
      font-size: 12px;
      color: rgba(61, 70, 96, 0.2); }
    .c-form__field .ant-select-selection--single,
    .c-form__field .ant-input,
    .c-form__field .ant-select-selection__rendered {
      border: none; }
    .c-form__field .ant-select-selection {
      border: none !important;
      outline: none;
      box-shadow: none !important; }
    .c-form__field.metro-field {
      z-index: inherit; }
  .c-form__field--transparent {
    background-color: transparent;
    height: initial;
    border: none;
    padding: 0;
    align-items: flex-start; }
  .c-form__timepickers {
    border: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 210px;
    flex-grow: 1;
    height: initial;
    padding: 0; }
  .c-form__checkbox {
    display: flex;
    align-items: center;
    margin-right: 40px; }
    .c-form__checkbox .ant-checkbox {
      margin-right: 10px; }
    .c-form__checkbox label {
      margin: 0;
      font-size: 12px;
      color: #0D0D0D; }
  .c-form__inner {
    display: flex;
    min-width: 100%; }
    .c-form__inner .c-form__item-range {
      max-width: 80px; }
  .c-form__item {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    max-width: 690px; }
    .c-form__item .ant-calendar-picker {
      width: 300px !important; }
      .c-form__item .ant-calendar-picker .ant-calendar-picker-input {
        width: 100%; }
    .c-form__item .table__filter {
      max-width: 210px;
      align-items: flex-start;
      justify-content: flex-start;
      z-index: 9999;
      min-height: 72px; }
      .c-form__item .table__filter .c-form__field {
        min-width: 100%;
        padding: 0; }
        .c-form__item .table__filter .c-form__field .select__control {
          min-height: 33px; }
        .c-form__item .table__filter .c-form__field .select__menu {
          z-index: 999; }
      .c-form__item .table__filter.metro-field {
        z-index: inherit; }
    .c-form__item > span {
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-basis: 210px;
      margin-right: 20px;
      position: relative;
      z-index: 0; }
      .c-form__item > span.c-form__checkbox {
        flex-direction: initial;
        align-items: center;
        flex-basis: 260px; }
        .c-form__item > span.c-form__checkbox label {
          margin-bottom: 0;
          font-size: 12px; }
        .c-form__item > span.c-form__checkbox .ant-checkbox-wrapper {
          margin-right: 10px; }
    .c-form__item .ant-select-selection__placeholder {
      font-size: 12px;
      color: rgba(61, 70, 96, 0.2); }
    .c-form__item--vertical {
      flex-direction: column; }
      .c-form__item--vertical > span {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-basis: 0;
        margin-right: 20px; }
    .c-form__item.message-form {
      display: flex;
      flex-wrap: wrap;
      max-width: 992px; }
    .c-form__item-range .c-form__field {
      width: 80px;
      padding: 0; }
      .c-form__item-range .c-form__field input {
        border: none;
        width: 100%;
        font-size: 12px;
        line-height: 35px; }
      .c-form__item-range .c-form__field .ant-time-picker-icon {
        display: none; }
      .c-form__item-range .c-form__field .ant-time-picker-clear {
        right: 7px; }
      .c-form__item-range .c-form__field.message-range-picker {
        width: 310px; }
    .c-form__item-report {
      display: flex;
      flex-direction: column;
      min-width: 100%; }
      .c-form__item-report-selects {
        display: flex;
        align-items: center; }
        .c-form__item-report-selects .table__filter {
          display: flex;
          flex-direction: column;
          z-index: inherit;
          margin-right: 30px; }
      .c-form__item-report-checkboxes {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .c-form__item-report-checkboxes .c-form__checkbox {
          margin: 0;
          min-width: 210px; }
      .c-form__item-report-columns {
        display: flex;
        flex-wrap: wrap;
        min-width: 810px;
        margin-top: 30px; }
        .c-form__item-report-columns h2 {
          min-width: 100%; }
        .c-form__item-report-columns .c-form__checkbox {
          margin-bottom: 20px;
          margin-right: 0;
          padding-right: 10px; }
        .c-form__item-report-columns > span {
          max-width: 40%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex-grow: 1; }
        .c-form__item-report-columns > span:nth-of-type(2) {
          max-width: 60%; }
  .c-form__item-submit {
    margin: 60px -10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .c-form__item-submit button {
      margin: 0 10px; }
  .c-form__timepickers-divider {
    width: 30px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .c-form__item-range {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .c-form__item-range .ant-time-picker {
      max-width: 100%; }
      .c-form__item-range .ant-time-picker .ant-time-picker-icon {
        display: none; }
    .c-form__item-range .ant-time-picker-input {
      border: 1px solid #F0F2F7;
      border-radius: 3px;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: -0.00930607px; }
      .c-form__item-range .ant-time-picker-input::placeholder {
        color: rgba(61, 70, 96, 0.2); }
    .c-form__item-range .ant-calendar-picker-input {
      display: flex;
      flex-direction: row;
      font-size: 13px;
      letter-spacing: -0.01px;
      color: #0D0D0D;
      width: 290px; }
    .c-form__item-range.date-range {
      max-width: 100%;
      flex-basis: inherit; }
  .c-form__item-textarea {
    flex-grow: 1; }
    .c-form__item-textarea textarea {
      resize: none;
      min-height: 100px; }
  .c-form__temprange {
    position: relative;
    display: inline-flex;
    padding-top: 20px;
    max-width: initial; }
    .c-form__temprange span.c-form__checkbox {
      flex-basis: initial; }
      .c-form__temprange span.c-form__checkbox .ant-checkbox-wrapper {
        margin-right: 0; }
    .c-form__temprange .c-form__item-range {
      position: absolute;
      right: -40px;
      top: 0;
      transform: translateX(100%); }

.ant-calendar-today .ant-calendar-date {
  color: #0D0D0D;
  font-weight: bold;
  border-color: #0D0D0D; }

.ant-calendar-range-picker-separator {
  display: inline-flex;
  align-items: center; }

.ant-calendar-picker-clear:hover {
  color: #0D0D0D; }

.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) {
  box-shadow: none; }

.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date,
.ant-calendar-date:active,
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover {
  background-color: #0D0D0D; }

.ant-select-disabled {
  background-color: #f5f5f5; }
  .ant-select-disabled .ant-select-selection {
    background: transparent; }

.ant-calendar-footer-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 0; }
  .ant-calendar-footer-btn > a {
    display: flex !important; }
  .ant-calendar-footer-btn .ant-calendar-time-picker-btn,
  .ant-calendar-footer-btn .ant-calendar-ok-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 30px;
    border-radius: 6px;
    background-color: #0D0D0D;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.01px;
    padding: 0 15px;
    min-width: 100px;
    border: none;
    cursor: pointer;
    transition: all .2s linear;
    margin: 0;
    line-height: 0; }
    .ant-calendar-footer-btn .ant-calendar-time-picker-btn:hover,
    .ant-calendar-footer-btn .ant-calendar-ok-btn:hover {
      background-color: #C7CBD6;
      color: #fff;
      border: 1px solid #C7CBD6; }
  .ant-calendar-footer-btn .ant-calendar-time-picker-btn-disabled,
  .ant-calendar-footer-btn .ant-calendar-ok-btn-disabled {
    background-color: transparent !important;
    color: #0D0D0D !important;
    border: 1px solid #C7CBD6 !important; }

.ant-calendar-date:hover {
  background-color: rgba(13, 13, 13, 0.15); }

.ant-calendar-range .ant-calendar-in-range-cell::before {
  background-color: rgba(13, 13, 13, 0.15); }

.ant-calendar-input {
  text-align: center; }

.ant-calendar-range-middle {
  display: none; }

.ant-calendar-range-picker-input::placeholder,
.ant-calendar-input::placeholder {
  font-size: 12px;
  color: rgba(61, 70, 96, 0.2); }

.ant-calendar-picker-icon {
  color: #629AFF;
  width: 16px;
  height: 16px; }

.ant-form-explain {
  min-height: 20px;
  font-size: 10px; }

.ant-input-password {
  padding: 0; }

.ant-calendar-picker {
  padding: 0;
  overflow: hidden; }

.has-error .c-form__field,
.has-error .ant-time-picker-input {
  border: 1px solid red; }

.valid .c-form__field,
.valid .ant-select-selection,
.valid .ant-time-picker-input {
  border: 1px solid #629AFF; }

.ant-select-selection {
  border: 1px solid #F0F2F7; }

.table__filter .range-picker {
  width: 220px; }

.table__filter-item .select__control--menu-is-open,
.table__filter-item .select__control--is-focused,
.table__filter-item .select__control:hover {
  border: 1px solid #629AFF; }

.table__filter-item.filled .select__control {
  border: 1px solid #629AFF; }

.filled.ant-calendar-picker .ant-calendar-picker-input {
  border: 1px solid #629AFF; }

.ant-input-number {
  width: 100%; }

.ant-form-explain {
  white-space: nowrap; }

.ant-input-number-handler-wrap {
  display: none; }

.ant-calendar-picker-input {
  height: 35px;
  border: 1px solid #F0F2F7;
  border-radius: 3px;
  font-size: 12px;
  color: #0D0D0D;
  width: 220px; }
  .ant-calendar-picker-input:hover {
    border: 1px solid #629AFF; }

.ant-calendar-picker-input .ant-calendar-range-picker-input {
  width: 40%; }

.ant-select-selection {
  min-width: 100%; }

.ant-input:hover,
.ant-select-selection:hover .ant-calendar-picker-input:hover {
  border-color: transparent; }

.ant-calendar-picker-clear {
  margin-top: -9px;
  right: 11px;
  width: 18px;
  height: 18px;
  font-size: 18px; }

.c-form__top-controls {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-end; }
  .c-form__top-controls .c-button {
    margin: 0 10px; }

.cols-row {
  display: flex; }
  .cols-row .col-submit {
    margin-left: auto;
    align-self: flex-end;
    padding-bottom: 20px; }
    .cols-row .col-submit .c-button {
      margin-left: 20px; }

.c-confirm-modal {
  min-width: 425px;
  font-family: "Gilroy";
  padding: 0; }
  .c-confirm-modal .anticon {
    display: none; }
  .c-confirm-modal .ant-modal-close {
    display: block; }
  .c-confirm-modal .ant-modal-confirm-title {
    font-weight: 500;
    font-size: 14px; }
  .c-confirm-modal .ant-modal-content {
    border-radius: 0; }
  .c-confirm-modal .ant-modal-confirm-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
  .c-confirm-modal .ant-modal-body {
    padding: 20px 57px 30px;
    border-radius: 0; }
  .c-confirm-modal svg {
    min-width: 25px;
    height: 30px;
    margin-bottom: 20px; }
  .c-confirm-modal .ant-modal-confirm-content {
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1; }
  .c-confirm-modal .ant-modal-confirm-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    float: none; }
  .c-confirm-modal__submit {
    min-width: 150px;
    order: -1;
    margin-right: 5px;
    margin-left: 0 !important; }
  .c-confirm-modal__cancel {
    min-width: 150px;
    margin-left: 5px; }
  .c-confirm-modal__close {
    position: absolute;
    right: 0;
    top: 0;
    height: 27px;
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none; }
    .c-confirm-modal__close svg {
      min-width: 7px;
      height: 7px;
      margin: 0; }

.c-route-direction {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: initial;
  margin: 30px 0;
  position: relative;
  z-index: 1; }
  .c-route-direction .table__filter {
    width: calc(100% - 495px);
    max-width: initial;
    align-items: stretch;
    margin: 0; }
    .c-route-direction .table__filter.valid .select__control {
      border: 1px solid #629AFF; }
    .c-route-direction .table__filter .c-form__field {
      min-width: 100%;
      padding: 0;
      border: none; }
    .c-route-direction .table__filter .table__filter-item {
      margin-right: 0; }
  .c-route-direction span {
    flex-basis: initial; }
  .c-route-direction__inner {
    display: flex;
    justify-content: center;
    margin-top: 22px; }
  .c-route-direction__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #0D0D0D;
    margin-bottom: 15px; }
  .c-route-direction .c-form__field {
    max-width: 570px;
    width: calc(100% - 475px); }
  .c-route-direction .map {
    width: 100%; }
    .c-route-direction .map .leaflet-container {
      min-height: 660px; }
  .c-route-direction__table-container {
    position: relative;
    min-width: 470px;
    flex-grow: 1;
    margin-left: 25px;
    min-height: 100%;
    display: flex; }
  .c-route-direction__tabs {
    width: initial;
    position: absolute;
    left: 25px;
    top: -20px;
    font-weight: 500;
    transform: translateY(-100%);
    background-color: transparent;
    padding: 0;
    text-align: right; }
  .c-route-direction__tab-item {
    min-width: 70px;
    margin-right: 20px;
    cursor: pointer; }
    .c-route-direction__tab-item::before {
      bottom: -5px; }
    .c-route-direction__tab-item.active {
      pointer-events: none; }

.c-table-dnd {
  width: 100%;
  height: 610px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  margin-top: 50px; }
  .c-table-dnd__table {
    min-width: 100%;
    height: 600px;
    overflow: auto; }
  .c-table-dnd .ant-form-explain {
    display: none; }
  .c-table-dnd__input {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    height: 20px;
    width: 40px;
    border: none;
    padding: 3px; }
    .c-table-dnd__input:focus {
      background-color: #fff;
      outline: none; }
  .c-table-dnd__head {
    box-shadow: 0px 2px 4px rgba(92, 92, 92, 0.1);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%; }
    .c-table-dnd__head span {
      background: #fff;
      min-height: 54px;
      font-weight: 600;
      font-size: 14px;
      line-height: 17px;
      color: #0D0D0D;
      padding: 18px 20px;
      flex-grow: 1;
      width: 205px; }
      .c-table-dnd__head span:first-of-type {
        max-width: 60px; }
  .c-table-dnd__content {
    min-width: 100%;
    height: 600px; }
    .c-table-dnd__content .custom-scrollbar {
      min-width: calc(100% + 4px); }
    .c-table-dnd__content .c-table-dnd__row:nth-child(odd) {
      background-color: #F0F2F7; }
  .c-table-dnd__row {
    width: calc(100% - 4px);
    display: flex;
    align-items: center;
    background: #fff;
    transition: background-color .4s linear; }
  .c-table-dnd__item {
    color: #0D0D0D;
    position: relative;
    padding: 8px 40px 8px 20px;
    font-size: 12px;
    line-height: 14px;
    min-height: 30px;
    flex-grow: 1;
    word-break: break-all;
    width: 205px; }
    .c-table-dnd__item:first-of-type {
      max-width: 60px;
      flex-shrink: 0;
      padding: 8px 10px 8px 20px; }
  .c-table-dnd__remove-btn, .c-table-dnd__edit-btn, .c-table-dnd__add-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer; }
  .c-table-dnd__remove-btn {
    right: 20px; }
  .c-table-dnd__edit-btn {
    right: 45px; }
  .c-table-dnd__add-btn {
    right: 75px; }
  .c-table-dnd__add-btn button, .c-table-dnd__edit-btn button {
    border: none;
    background-color: inherit !important;
    outline: none;
    padding: 0; }
    .c-table-dnd__add-btn button:hover, .c-table-dnd__edit-btn button:hover {
      background: none; }
  .c-table-dnd .scrollbar-container.ps {
    width: calc(100% + 1.5px);
    transition: linear all .15s;
    background-color: transparent;
    max-height: 600px; }
    .c-table-dnd .scrollbar-container.ps .ps__rail-y {
      z-index: 999;
      background-color: transparent;
      opacity: 1; }
    .c-table-dnd .scrollbar-container.ps .ps__thumb-y {
      background: #629AFF;
      border-radius: 1.5px;
      width: 3px;
      right: 0;
      transition: linear all .15s; }

.stop-list {
  display: flex;
  max-width: 100%; }
  .stop-list__item {
    width: 50%;
    display: flex;
    flex-direction: column;
    font-size: 13px; }
    .stop-list__item div {
      display: flex;
      word-break: break-all;
      padding-right: 25px; }
      .stop-list__item div span {
        min-width: 40px;
        font-size: 13px;
        line-height: 18px;
        letter-spacing: -0.0100816px;
        color: #0D0D0D; }
      .stop-list__item div span:first-of-type {
        color: #629AFF;
        width: 60px; }
  .stop-list__modal .ant-modal-body {
    padding: 20px 40px; }
  .stop-list__title {
    font-weight: 600;
    font-size: 16px;
    color: #0D0D0D;
    margin-bottom: 15px; }

.logs-modal .ant-modal-content {
  border-radius: 0;
  max-height: 500px;
  overflow: auto; }
  .logs-modal .ant-modal-content .ant-modal-body {
    padding-right: 30px; }
    .logs-modal .ant-modal-content .ant-modal-body h3 {
      font-weight: 600;
      font-size: 16px;
      color: #0D0D0D;
      margin-bottom: 23px; }

.logs-modal__content {
  display: flex;
  flex-wrap: wrap; }
  .logs-modal__content p {
    font-size: 13px;
    color: #0D0D0D;
    word-break: break-all; }
  .logs-modal__content .title {
    width: 160px;
    font-weight: 500; }
  .logs-modal__content .description {
    width: calc(100% - 160px); }

.ant-modal {
  font-family: "Gilroy"; }
  .ant-modal .ant-modal-content {
    border-radius: 0; }
  .ant-modal .ant-modal-body {
    padding: 15px 25px 15px 30px; }
  .ant-modal .ant-modal-close-x {
    width: 10px;
    height: 10px;
    top: 10px;
    right: 10px;
    position: absolute;
    line-height: 10px; }
    .ant-modal .ant-modal-close-x i {
      color: #3D4660;
      font-size: 10px; }

.stops-interval-modal .ant-modal-body {
  padding: 24px 0; }
  .stops-interval-modal .ant-modal-body .main-content__form {
    margin: 0; }
    .stops-interval-modal .ant-modal-body .main-content__form-title {
      text-align: center; }
    .stops-interval-modal .ant-modal-body .main-content__form form {
      display: flex;
      flex-wrap: wrap; }
      .stops-interval-modal .ant-modal-body .main-content__form form > * {
        width: 50%; }
      .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-submit {
        width: 100%; }
      .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-weekday {
        border-right: 1px solid #F0F2F7; }
      .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-weekday, .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-weekend {
        padding: 0 24px; }
        .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-weekday h4, .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-weekend h4 {
          font-weight: normal;
          font-size: 16px;
          color: #000000; }
      .stops-interval-modal .ant-modal-body .main-content__form form .c-form__add-item button {
        background: none;
        display: flex;
        align-items: center;
        border: none;
        font-weight: 500;
        font-size: 12px;
        color: #0D0D0D;
        outline: none;
        margin: 5px auto 0 auto; }
        .stops-interval-modal .ant-modal-body .main-content__form form .c-form__add-item button svg {
          margin-right: 10px; }
      .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-group {
        display: flex;
        margin-bottom: 10px;
        align-items: center;
        justify-content: space-between; }
        .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-group .c-form__item-range {
          width: calc( 100% - 25px);
          flex-direction: inherit; }
          .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-group .c-form__item-range span {
            width: 100%; }
        .stops-interval-modal .ant-modal-body .main-content__form form .c-form__item-group .c-form__close-item {
          cursor: pointer; }

.stops-interval-modal .ant-modal-close-x {
  display: none; }

.stats {
  position: relative;
  width: 530px;
  height: 170px;
  background: linear-gradient(198.47deg, #BBE19F 1.87%, #8CBC69 100%);
  border-radius: 3px;
  display: flex;
  padding: 15px;
  margin-top: 40px;
  max-width: 530px; }
  .stats__total {
    position: relative;
    width: 300px;
    padding: 0 15px; }
    .stats__total .stats__title {
      font-size: 14px; }
    .stats__total .stats__number {
      font-size: 60px; }
    .stats__total:before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 1px;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5); }
  .stats__title {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.0108571px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    line-height: 1; }
  .stats__number {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: -0.0387753px;
    color: #FFFFFF;
    line-height: 1;
    margin-top: 5px; }
  .stats__os {
    padding: 0 0 0 30px; }
  .stats__item {
    height: 50%;
    display: flex;
    flex-direction: column; }
    .stats__item-bottom {
      justify-content: flex-end;
      border-top: 1px solid rgba(255, 255, 255, 0.5); }
  .stats__decor-1 {
    position: absolute;
    right: 0;
    top: 5px; }
  .stats__decor-2 {
    position: absolute;
    left: -5px;
    bottom: -5px; }
  .stats__filter {
    display: flex;
    align-items: flex-end; }
    .stats__filter .range-picker {
      display: flex;
      flex-direction: column;
      margin-left: 10px; }
    .stats__filter svg {
      margin-bottom: 5px; }
  .stats__inner {
    display: flex;
    align-items: center;
    margin-left: -15px;
    width: calc(100% + 30px); }
  .stats__details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #B7C3CF;
    display: flex;
    flex-direction: column;
    max-width: 530px; }
  .stats__platform {
    position: absolute;
    right: 20px;
    top: 35px; }
  .stats__detail {
    position: relative;
    width: 250px;
    height: 176px;
    background: linear-gradient(216.1deg, #9BCAFF -36.69%, #629AFF 96.87%);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin: 15px;
    padding: 15px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .stats__detail .stats__date {
      font-weight: 500;
      font-size: 12px;
      line-height: 20px;
      text-align: center;
      color: #FFFFFF; }
    .stats__detail .stats__number {
      font-size: 50px;
      text-align: center; }
    .stats__detail .stats__title {
      text-align: center;
      text-transform: uppercase;
      color: #FFFFFF;
      line-height: 20px; }
      .stats__detail .stats__title span {
        font-size: 18px;
        font-weight: bold;
        text-transform: none;
        line-height: 22px; }

.login {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-color: #333333; }
  .login .c-form__item-submit span {
    display: none; }
  .login .main-content__form-goback,
  .login .main-content__form-title {
    display: none; }
  .login form {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .login form > span {
      display: flex;
      flex-direction: column;
      min-width: 100%;
      width: 220px; }
  .login .c-form__item-submit {
    margin: 0;
    margin-top: 30px; }
    .login .c-form__item-submit button {
      margin: 0;
      width: 100%; }
  .login__logo {
    position: absolute;
    left: 50px;
    top: 20px;
    color: #fff; }
  .login__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 57px;
    color: #fff;
    margin-bottom: 40px; }
  .login__link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #629AFF;
    margin-top: 27px;
    cursor: pointer;
    transition: all .15s linear; }
    .login__link svg {
      margin-right: 8px; }
    .login__link:hover {
      color: #fff; }
  .login__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    flex-grow: 1; }
  .login__form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 570px;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: 10%; }
    .login__form .ant-form-explain {
      min-height: 10px; }
    .login__form .main-content__form {
      max-width: 320px;
      width: 100%;
      margin: 0; }
      .login__form .main-content__form label {
        color: #fff; }
  .login__copyright {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 25px;
    background-color: #0D0D0D;
    padding: 2.5px;
    transition: all .15s linear; }
    .login__copyright a {
      margin-right: 10px;
      color: #629AFF; }
      .login__copyright a:hover {
        color: #fff; }
  .login__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff; }
    .login__message p {
      margin: 10px 0 0; }

.report-sendform .main-content__form {
  margin: 0; }
  .report-sendform .main-content__form form {
    display: flex;
    flex-direction: column; }
    .report-sendform .main-content__form form .c-form__field {
      min-width: 100%; }

.report-sendform .c-form__item-submit {
  margin: 0;
  display: flex; }
  .report-sendform .c-form__item-submit .c-button {
    margin: 0; }

.main-wrapper {
  display: flex;
  min-width: 100%;
  min-height: 100vh; }
  .main-wrapper .main-container {
    min-width: 100%;
    background-color: #f8f9fd; }

.cam-main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: -moz-available;
  max-height: -webkit-fill-available;
  max-height: fill-available;
  overflow: hidden; }
  .cam-main .cam-main__inner {
    position: relative;
    flex-grow: 1;
    display: flex; }

.client-main {
  position: relative;
  display: flex;
  flex-grow: 1;
  min-height: 100%;
  min-width: 100%; }
  .client-main__sidebar {
    flex-grow: 1;
    max-width: 400px; }
  .client-main__map {
    flex-grow: 1; }
    .client-main__map .map {
      display: flex;
      min-height: 100%; }
    .client-main__map .leaflet-container {
      min-height: 100%;
      width: 100%; }

.map,
.leaflet-container,
.leaflet-pane,
.leaflet-overlay-pane,
.leaflet-interactive {
  cursor: crosshair; }
  .map .leaflet-top.leaflet-left,
  .leaflet-container .leaflet-top.leaflet-left,
  .leaflet-pane .leaflet-top.leaflet-left,
  .leaflet-overlay-pane .leaflet-top.leaflet-left,
  .leaflet-interactive .leaflet-top.leaflet-left {
    display: none; }
  .map .leaflet-bar,
  .leaflet-container .leaflet-bar,
  .leaflet-pane .leaflet-bar,
  .leaflet-overlay-pane .leaflet-bar,
  .leaflet-interactive .leaflet-bar {
    box-shadow: none; }
  .map .leaflet-control-zoom.leaflet-bar.leaflet-control,
  .leaflet-container .leaflet-control-zoom.leaflet-bar.leaflet-control,
  .leaflet-pane .leaflet-control-zoom.leaflet-bar.leaflet-control,
  .leaflet-overlay-pane .leaflet-control-zoom.leaflet-bar.leaflet-control,
  .leaflet-interactive .leaflet-control-zoom.leaflet-bar.leaflet-control {
    border: none;
    box-shadow: none; }
  .map a.leaflet-control-zoom-in,
  .map a.leaflet-control-zoom-out,
  .map .map-geolocation,
  .leaflet-container a.leaflet-control-zoom-in,
  .leaflet-container a.leaflet-control-zoom-out,
  .leaflet-container .map-geolocation,
  .leaflet-pane a.leaflet-control-zoom-in,
  .leaflet-pane a.leaflet-control-zoom-out,
  .leaflet-pane .map-geolocation,
  .leaflet-overlay-pane a.leaflet-control-zoom-in,
  .leaflet-overlay-pane a.leaflet-control-zoom-out,
  .leaflet-overlay-pane .map-geolocation,
  .leaflet-interactive a.leaflet-control-zoom-in,
  .leaflet-interactive a.leaflet-control-zoom-out,
  .leaflet-interactive .map-geolocation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(138, 147, 200, 0.2);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 5px 0; }
    .map a.leaflet-control-zoom-in:hover,
    .map a.leaflet-control-zoom-out:hover,
    .map .map-geolocation:hover,
    .leaflet-container a.leaflet-control-zoom-in:hover,
    .leaflet-container a.leaflet-control-zoom-out:hover,
    .leaflet-container .map-geolocation:hover,
    .leaflet-pane a.leaflet-control-zoom-in:hover,
    .leaflet-pane a.leaflet-control-zoom-out:hover,
    .leaflet-pane .map-geolocation:hover,
    .leaflet-overlay-pane a.leaflet-control-zoom-in:hover,
    .leaflet-overlay-pane a.leaflet-control-zoom-out:hover,
    .leaflet-overlay-pane .map-geolocation:hover,
    .leaflet-interactive a.leaflet-control-zoom-in:hover,
    .leaflet-interactive a.leaflet-control-zoom-out:hover,
    .leaflet-interactive .map-geolocation:hover {
      background: #fff;
      border: 1px solid rgba(138, 147, 200, 0.2);
      width: 35px;
      height: 35px;
      line-height: initial; }
    .map a.leaflet-control-zoom-in svg,
    .map a.leaflet-control-zoom-out svg,
    .map .map-geolocation svg,
    .leaflet-container a.leaflet-control-zoom-in svg,
    .leaflet-container a.leaflet-control-zoom-out svg,
    .leaflet-container .map-geolocation svg,
    .leaflet-pane a.leaflet-control-zoom-in svg,
    .leaflet-pane a.leaflet-control-zoom-out svg,
    .leaflet-pane .map-geolocation svg,
    .leaflet-overlay-pane a.leaflet-control-zoom-in svg,
    .leaflet-overlay-pane a.leaflet-control-zoom-out svg,
    .leaflet-overlay-pane .map-geolocation svg,
    .leaflet-interactive a.leaflet-control-zoom-in svg,
    .leaflet-interactive a.leaflet-control-zoom-out svg,
    .leaflet-interactive .map-geolocation svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .map .map-geolocation,
  .leaflet-container .map-geolocation,
  .leaflet-pane .map-geolocation,
  .leaflet-overlay-pane .map-geolocation,
  .leaflet-interactive .map-geolocation {
    margin-bottom: 15px; }
  .map .from-icon,
  .leaflet-container .from-icon,
  .leaflet-pane .from-icon,
  .leaflet-overlay-pane .from-icon,
  .leaflet-interactive .from-icon {
    pointer-events: none; }
    .map .from-icon svg,
    .leaflet-container .from-icon svg,
    .leaflet-pane .from-icon svg,
    .leaflet-overlay-pane .from-icon svg,
    .leaflet-interactive .from-icon svg {
      position: absolute;
      bottom: 0;
      left: -6px; }
  .map .geolocation-icon svg,
  .leaflet-container .geolocation-icon svg,
  .leaflet-pane .geolocation-icon svg,
  .leaflet-overlay-pane .geolocation-icon svg,
  .leaflet-interactive .geolocation-icon svg {
    position: absolute;
    bottom: -30px;
    left: -30px; }
  .map .transport-marker,
  .leaflet-container .transport-marker,
  .leaflet-pane .transport-marker,
  .leaflet-overlay-pane .transport-marker,
  .leaflet-interactive .transport-marker {
    position: relative;
    display: block;
    width: 26px;
    height: 26px; }
    .map .transport-marker .transport-number,
    .leaflet-container .transport-marker .transport-number,
    .leaflet-pane .transport-marker .transport-number,
    .leaflet-overlay-pane .transport-marker .transport-number,
    .leaflet-interactive .transport-marker .transport-number {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 0;
      right: 0;
      font-style: normal;
      font-weight: 600;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: -0.0141176px;
      color: #0d0d0d;
      font-family: "Gilroy";
      transform: translate(100%, -100%); }
      .map .transport-marker .transport-number div,
      .leaflet-container .transport-marker .transport-number div,
      .leaflet-pane .transport-marker .transport-number div,
      .leaflet-overlay-pane .transport-marker .transport-number div,
      .leaflet-interactive .transport-marker .transport-number div {
        white-space: nowrap; }
  .map .transport-icon,
  .leaflet-container .transport-icon,
  .leaflet-pane .transport-icon,
  .leaflet-overlay-pane .transport-icon,
  .leaflet-interactive .transport-icon {
    pointer-events: none;
    z-index: 1111 !important; }
    .map .transport-icon svg,
    .leaflet-container .transport-icon svg,
    .leaflet-pane .transport-icon svg,
    .leaflet-overlay-pane .transport-icon svg,
    .leaflet-interactive .transport-icon svg {
      position: absolute;
      left: 0;
      top: 0;
      transform: translate(-25%, -25%);
      width: 26px;
      height: 26px; }
    .map .transport-icon.transfer,
    .leaflet-container .transport-icon.transfer,
    .leaflet-pane .transport-icon.transfer,
    .leaflet-overlay-pane .transport-icon.transfer,
    .leaflet-interactive .transport-icon.transfer {
      position: relative; }
      .map .transport-icon.transfer:before,
      .leaflet-container .transport-icon.transfer:before,
      .leaflet-pane .transport-icon.transfer:before,
      .leaflet-overlay-pane .transport-icon.transfer:before,
      .leaflet-interactive .transport-icon.transfer:before {
        content: "";
        position: absolute;
        left: 5px;
        bottom: 10px;
        height: 15px;
        width: 2px;
        background-color: rgba(118, 125, 145, 0.7); }
      .map .transport-icon.transfer svg,
      .leaflet-container .transport-icon.transfer svg,
      .leaflet-pane .transport-icon.transfer svg,
      .leaflet-overlay-pane .transport-icon.transfer svg,
      .leaflet-interactive .transport-icon.transfer svg {
        top: -10px;
        transform: translate(-5%, -100%); }
  .map .transport-marker,
  .leaflet-container .transport-marker,
  .leaflet-pane .transport-marker,
  .leaflet-overlay-pane .transport-marker,
  .leaflet-interactive .transport-marker {
    transform: translate(-25%, -25%); }
    .map .transport-marker svg,
    .leaflet-container .transport-marker svg,
    .leaflet-pane .transport-marker svg,
    .leaflet-overlay-pane .transport-marker svg,
    .leaflet-interactive .transport-marker svg {
      transform: translate(0%, 0%); }
  .map .arrow-icon,
  .leaflet-container .arrow-icon,
  .leaflet-pane .arrow-icon,
  .leaflet-overlay-pane .arrow-icon,
  .leaflet-interactive .arrow-icon {
    position: absolute;
    width: 26px;
    height: 26px;
    left: 0;
    bottom: 0;
    display: flex;
    transform-origin: center center;
    align-items: center;
    justify-content: center;
    z-index: 999999; }
    .map .arrow-icon svg,
    .leaflet-container .arrow-icon svg,
    .leaflet-pane .arrow-icon svg,
    .leaflet-overlay-pane .arrow-icon svg,
    .leaflet-interactive .arrow-icon svg {
      left: initial;
      top: initial;
      width: 34px;
      height: 34px;
      top: -5px;
      position: relative; }

.stop-icon {
  cursor: pointer;
  z-index: 1000 !important; }

.map-coords-popup {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Gilroy"; }
  .map-coords-popup-title {
    position: relative;
    padding: 15px 10px; }
    .map-coords-popup-title:before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: calc(100% - 5px);
      height: 1px;
      background-color: #F0F2F7; }
    @media (max-width: 1024px) {
      .map-coords-popup-title .stop-number {
        display: none; }
      .map-coords-popup-title h5 {
        margin: 0; } }
  .map-coords-popup h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.0188235px;
    color: #0D0D0D;
    margin: 0 0 5px 0; }
  .map-coords-popup .stop-number {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #c0c0c0; }
  .map-coords-popup .leaflet-popup-content-wrapper {
    box-shadow: none;
    padding: 0; }
  .map-coords-popup .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 5px; }
  .map-coords-popup .leaflet-popup-tip {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }
  .map-coords-popup .leaflet-popup-close-button {
    display: none; }
  .map-coords-popup .leaflet-popup-content {
    cursor: auto;
    position: relative;
    margin: 0;
    border-radius: 5px;
    min-width: 100%; }
  .map-coords-popup--extended {
    width: 100vw;
    max-width: 350px; }
    .map-coords-popup--extended .map-coords-popup__btn {
      width: 50%; }
  .map-coords-popup__btns {
    position: relative; }
    .map-coords-popup__btns::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 50%;
      transform: translate(-50%, -50%);
      width: 1px;
      height: 20px;
      background-color: #F0F2F7; }
  .map-coords-popup__routes {
    padding: 0 10px;
    overflow-y: auto;
    max-height: 40vh; }
  .map-coords-popup__route {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.0124081px;
    color: #0D0D0D;
    margin: 10px 0; }
    .map-coords-popup__route .transport-icon {
      display: inline-flex;
      align-items: center;
      margin-right: 5px;
      flex-grow: 1; }
      .map-coords-popup__route .transport-icon svg {
        position: relative;
        transform: none; }
    .map-coords-popup__route span:last-of-type {
      margin-right: 0; }
    .map-coords-popup__route svg {
      margin: 0 10px 0 5px;
      flex-shrink: 0; }
    .map-coords-popup__route .transport-arrival-time {
      font-weight: 500;
      font-size: 15px;
      line-height: 18px;
      letter-spacing: -0.0176471px;
      color: #629AFF; }
    .map-coords-popup__route .transport-icon {
      flex-grow: 0; }
      .map-coords-popup__route .transport-icon svg {
        margin: 0;
        width: 20px;
        height: 20px; }
    .map-coords-popup__route .transport-arrival-time {
      width: 45px;
      flex-shrink: 0;
      justify-content: flex-end;
      display: flex;
      align-items: center;
      justify-content: center; }
      .map-coords-popup__route .transport-arrival-time svg {
        margin: 0; }
    .map-coords-popup__route .transport-last-station {
      overflow: hidden;
      flex-grow: 1;
      text-align: left;
      margin-right: 0; }
  .map-coords-popup__btn {
    width: 125px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.0164706px; }
  .map-coords-popup__from {
    color: #8CBC69; }
  .map-coords-popup__to {
    color: #629AFF; }
  .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__time {
    height: 24px;
    line-height: 24px;
    background: #e8ebf2;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #626d82; }
  .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes {
    cursor: auto; }
    .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes-title {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin: 12px 0 16px; }
      .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes-title p {
        font-size: 12px;
        color: #626d82;
        margin: 0;
        width: 85px;
        text-align: center; }
    .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route {
      display: flex; }
      .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-times,
      .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-stop-name {
        display: flex;
        align-items: center; }
      .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-stop-name {
        width: 165px; }
      .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-times {
        justify-content: inherit;
        width: calc(100% - 160px); }
        .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-times > * {
          width: 50%; }
        .map-coords-popup.metro-info-popup .leaflet-popup-content-wrapper .leaflet-popup-content .map-coords-popup__routes .map-coords-popup__route .transport-times .transport-arrival-time {
          font-weight: 500;
          font-size: 16px;
          color: #202b41; }

.handicapted-btn, .air-conditioner-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 80px;
  right: 35px;
  border-radius: 10em;
  background-color: #bad7a4;
  z-index: 998;
  pointer-events: auto; }
  .handicapted-btn--checked, .air-conditioner-btn--checked {
    background-color: #8cbc69; }
  .handicapted-btn--mobile, .air-conditioner-btn--mobile {
    top: 60px;
    right: 10px; }
  .handicapted-btn button, .air-conditioner-btn button {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 100%;
    height: 100%; }
    .handicapted-btn button svg, .air-conditioner-btn button svg {
      width: 20px;
      height: 26px; }
  .handicapted-btn__check, .air-conditioner-btn__check {
    position: absolute;
    top: 0;
    left: -5px;
    display: flex;
    align-items: center; }
    .handicapted-btn__check span, .air-conditioner-btn__check span {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }

.air-conditioner-btn {
  top: 150px;
  right: 35px;
  background-color: #629AFF; }
  .air-conditioner-btn--mobile {
    top: 120px;
    right: 10px; }
  .air-conditioner-btn button svg {
    width: 28px;
    height: 28px; }

.client__sidebar {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
  width: 430px;
  height: 100%;
  height: calc(100vh - 80px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column; }
  .client__sidebar-header {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
    flex-shrink: 0; }
    .client__sidebar-header span {
      display: inherit; }
    .client__sidebar-header article {
      display: flex;
      align-items: center;
      justify-content: space-between; }
  .client__sidebar-location {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
  .client__sidebar-nav-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -2px 4px; }
  .client__sidebar-nav-btn {
    min-height: 44px;
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    margin: 0 2px;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: #629AFF;
    width: 50%; }
    .client__sidebar-nav-btn:hover {
      background: #fff;
      color: #629AFF; }
  .client__sidebar-nav-btn--active {
    background: #fff;
    color: #629AFF; }
    .client__sidebar-nav-btn--active[disabled] {
      background: #fff;
      color: #629AFF; }
  .client__sidebar-search {
    position: relative;
    z-index: 998;
    display: flex;
    padding: 30px 0;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }
  .client__sidebar-searchfields {
    display: flex;
    flex-grow: 1;
    max-width: 81%;
    margin-right: 10px;
    flex-direction: column; }
    .client__sidebar-searchfields .select__control {
      max-width: 100%;
      color: #fff; }
      .client__sidebar-searchfields .select__control--is-focused {
        border: none;
        outline: none;
        box-shadow: none; }
    .client__sidebar-searchfields > div:last-child {
      border: none;
      bottom: -10px; }
  .client__sidebar-searchfield {
    position: relative;
    min-width: 100%;
    border-bottom: 1px solid #F0F2F7; }
    .client__sidebar-searchfield.client__sidebar-searchfield--has-value label {
      top: -10px; }
    .client__sidebar-searchfield label {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 12px;
      margin-bottom: 0;
      line-height: 14px;
      letter-spacing: -0.0141176px;
      color: #B7C3CF;
      transform: none;
      transition: all .15s linear; }
    .client__sidebar-searchfield .select__placeholder {
      display: none; }
    .client__sidebar-searchfield .select__value-container--has-value label,
    .client__sidebar-searchfield .select__control--is-focused label {
      top: -10px; }
    .client__sidebar-searchfield .select__input {
      color: #0D0D0D;
      min-width: 100%;
      max-width: calc(100% - 30px); }
      .client__sidebar-searchfield .select__input-wrap {
        min-width: 100%; }
      .client__sidebar-searchfield .select__input input {
        min-width: 100%;
        opacity: 1 !important;
        max-width: 100%; }
    .client__sidebar-searchfield .select__value-container,
    .client__sidebar-searchfield .select__single-value {
      font-weight: 500;
      font-size: 15px;
      line-height: 18px;
      color: #0D0D0D;
      padding: 0;
      max-width: calc(100% - 30px); }
    .client__sidebar-searchfield .select__value-container {
      overflow: initial; }
      .client__sidebar-searchfield .select__value-container > div {
        max-width: 100%; }
    .client__sidebar-searchfield .select__control {
      background-color: transparent;
      border: none !important;
      min-height: 35px; }
    .client__sidebar-searchfield .select__indicator-separator,
    .client__sidebar-searchfield .select__dropdown-indicator {
      display: none; }
    .client__sidebar-searchfield .select__clear-indicator svg path {
      color: rgba(13, 13, 13, 0.4);
      fill: rgba(13, 13, 13, 0.4);
      fill-opacity: 1;
      cursor: pointer; }
    .client__sidebar-searchfield .select__menu-notice--no-options {
      display: none; }
    .client__sidebar-searchfield .select__menu {
      background: #fff;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 500;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.0164706px;
      color: #0D0D0D;
      margin: 0;
      border-radius: 0; }
    .client__sidebar-searchfield .select__option {
      padding: 20px 5px 0 10px;
      background-color: #fff; }
    .client__sidebar-searchfield .select__menu-list {
      padding: 0; }
  .client__sidebar-swap {
    display: flex;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: rgba(240, 242, 247, 0.3);
    border-radius: 6px;
    border: none;
    outline: none;
    width: 28px;
    height: 28px;
    transition: all .2s linear; }
    .client__sidebar-swap:hover {
      background: rgba(240, 242, 247, 0.5); }
  .client__sidebar-decor {
    min-height: 100%;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: -3px; }
  .client__sidebar-drawer .ant-drawer-body {
    padding: 10px;
    display: flex;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    padding: 0;
    position: absolute;
    left: 10px;
    top: 10px; }
  .client__sidebar-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 3px;
    z-index: 9999;
    background: #629AFF;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
    width: 55px;
    height: 42px;
    outline: none;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all .1s linear;
    padding: 0; }
    .client__sidebar-drawer-btn svg:last-of-type {
      transform: rotate(-90deg);
      width: 15px;
      height: 15px;
      transition: all .1s linear; }
    .client__sidebar-drawer-btn--active {
      background-color: #F30000;
      width: 29px; }
      .client__sidebar-drawer-btn--active svg:last-of-type {
        transform: rotate(90deg);
        margin-right: 5px; }
  .client__sidebar-drawer.ant-drawer-open .ant-drawer-content-wrapper {
    box-shadow: none;
    max-width: 100vw; }
  .client__sidebar-drawer .ant-drawer-content {
    background-color: transparent; }
  .client__sidebar-drawer .ant-drawer-mask {
    pointer-events: none; }
  .client__sidebar-drawer .client__sidebar {
    height: initial;
    position: relative;
    top: 0;
    left: 0;
    width: 100%; }
  .client__sidebar-drawer .client-tabs,
  .client__sidebar-drawer .ant-collapse,
  .client__sidebar-drawer .custom-scrollbar {
    width: 100%;
    min-width: 100%;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px; }
  .client__sidebar-drawer .client-tabs .ant-tabs-content {
    width: 100%; }
  .client__sidebar-drawer .accordion .ant-collapse-item {
    padding: 0 7px; }
  .client__sidebar-drawer .client__sidebar-searchfields {
    max-width: 270px; }
  .client__sidebar-drawer .client-tabs .ant-tabs-bar {
    width: 100%; }
  .client__sidebar-drawer .client-tabs__loading {
    background-color: #fff; }

.client-tabs {
  min-height: 300px;
  z-index: 1;
  flex-grow: 1;
  background-color: transparent;
  font-variant: initial;
  font-feature-settings: initial;
  width: calc(100% + 10px); }
  .client-tabs__has-additional .accordion {
    margin-top: 40px; }
  .client-tabs__wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
  .client-tabs .ant-tabs-bar {
    width: calc(100% - 10px); }
  .client-tabs .ant-tabs-bar,
  .client-tabs .ant-tabs-nav-container {
    min-height: 65px;
    margin-bottom: 0;
    border: none; }
  .client-tabs .ant-tabs-tabpane {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background-color: #fff; }
  .client-tabs .ant-tabs-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100% - 10px); }
  .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav {
    display: flex;
    background: transparent; }
    .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav > div {
      min-width: 100%;
      display: flex; }
    .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab {
      background-color: #8CBC69;
      margin: 0;
      border: none;
      border-radius: 0;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 65px;
      padding: 10px 5px;
      user-select: none;
      width: 25%; }
      .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab h5 {
        margin-top: 5px;
        white-space: normal;
        line-height: 1;
        font-weight: 500;
        font-size: 11px;
        text-align: center;
        letter-spacing: -0.0129412px;
        color: #fff;
        margin-bottom: 0; }
      .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab svg {
        color: #fff;
        max-height: 22px; }
    .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active {
      pointer-events: none;
      background-color: #fff; }
      .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active h5,
      .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active svg {
        color: #293043; }
        .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active h5 path,
        .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active svg path {
          fill: #293043 !important; }
    .client-tabs .ant-tabs-nav-wrap .ant-tabs-nav .tab-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 100%; }
  .client-tabs__image {
    position: absolute;
    left: 0;
    top: 65px;
    right: 10px;
    bottom: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
  .client-tabs__loading {
    position: absolute;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    max-width: calc(100% - 10px); }
    .client-tabs__loading--small {
      position: relative;
      min-height: 90px; }

.stopsTabs {
  margin-top: 25px;
  min-height: initial; }
  .stopsTabs .ant-tabs-bar,
  .stopsTabs .ant-tabs-nav-container {
    min-height: initial !important;
    height: initial !important;
    border-bottom: none; }
  .stopsTabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab {
    min-height: 30px;
    height: initial;
    background-color: #629AFF;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.108333px;
    color: #fff;
    padding: 5px; }
  .stopsTabs .ant-tabs-nav {
    border: 1px solid #629AFF;
    border-radius: 4px;
    overflow: hidden; }
  .stopsTabs .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active {
    background-color: #fff;
    color: #629AFF; }
  .stopsTabs__stoplist {
    margin-top: 10px; }
    .stopsTabs__stoplist .stopsTabs__stoplist-item:first-child span, .stopsTabs__stoplist-item:last-child span {
      position: relative; }
    .stopsTabs__stoplist .stopsTabs__stoplist-item:first-child span:before {
      top: 20px; }
    .stopsTabs__stoplist .stopsTabs__stoplist-item:last-child span:before {
      bottom: 20px;
      top: initial; }
    .stopsTabs__stoplist .stopsTabs__stoplist-item {
      display: flex;
      align-items: center;
      min-height: 45px;
      padding: 5px 0;
      position: relative;
      cursor: pointer; }
      .stopsTabs__stoplist .stopsTabs__stoplist-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10px;
        width: calc(100% + 15px);
        height: 1px;
        background-color: #F0F2F7; }
      .stopsTabs__stoplist .stopsTabs__stoplist-item p {
        font-weight: 500;
        font-size: 14px;
        letter-spacing: -0.010857px;
        color: #0D0D0D;
        flex-grow: 1;
        margin-left: 12px; }
      .stopsTabs__stoplist .stopsTabs__stoplist-item svg {
        position: relative;
        z-index: 10; }
      .stopsTabs__stoplist .stopsTabs__stoplist-item span {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 20px;
        flex-shrink: 0;
        width: 100%; }
        .stopsTabs__stoplist .stopsTabs__stoplist-item span::before {
          position: absolute;
          content: '';
          width: 1px;
          height: 100%;
          left: 9.5px;
          top: 0;
          background-color: #B7C3CF; }

.custom-scrollbar {
  min-width: calc(100% + 10px); }
  .custom-scrollbar > div:last-child {
    max-width: 3px;
    border-radius: 1.5px; }
    .custom-scrollbar > div:last-child div {
      border-radius: 1.5px;
      background-color: #629AFF !important; }

.ant-collapse {
  width: calc(100% - 10px); }

.no-results {
  position: absolute;
  width: calc(100% - 10px);
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; }

.suburban-checkbox {
  position: absolute;
  z-index: 11;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65px;
  height: 40px;
  width: 100%;
  user-select: none; }
  .suburban-checkbox label {
    margin: 0;
    margin-left: 5px;
    font-weight: 600;
    font-size: 10px;
    color: #0D0D0D;
    cursor: pointer; }
  .suburban-checkbox input {
    flex-grow: 1;
    border: 1px solid rgba(183, 195, 207, 0.497296);
    border-radius: 4px;
    height: 30px;
    padding: 0 15px;
    outline: none; }
    .suburban-checkbox input::placeholder {
      font-size: 12px; }
    .suburban-checkbox input:focus, .suburban-checkbox input:hover {
      border-color: #40a9ff; }

.client-header {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  min-height: 40px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }
  .client-header--mobile button {
    order: 5;
    justify-content: center;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  .client-header--mobile .client-header__logo {
    flex-grow: 1;
    display: flex;
    align-items: center; }
  .client-header--mobile .lang-dropdown {
    margin: 0 30px 0 0; }
  .client-header .bort-number-checkbox {
    margin-left: 20px; }
    .client-header .bort-number-checkbox span {
      color: #0D0D0D;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: -0.0141176px;
      line-height: 18px; }
  .client-header .ant-checkbox-checked .ant-checkbox-inner {
    background-color: #629AFF;
    border-color: #629AFF; }

.lang-dropdown {
  width: 63px;
  background-color: #629AFF;
  border-radius: 18px;
  height: 25px;
  margin-left: 40px;
  z-index: 10000; }
  .lang-dropdown .ant-select-selection__rendered {
    display: flex;
    align-items: center;
    height: 25px; }
  .lang-dropdown .ant-select-selection-selected-value {
    line-height: 1;
    margin-bottom: -2px; }
  .lang-dropdown .ant-select-dropdown-menu-item {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    padding: 2px 12px;
    color: #629AFF; }
  .lang-dropdown .ant-select-dropdown-menu {
    background: #fff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0; }
  .lang-dropdown .ant-select-selection {
    height: 25px;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #fff; }

.client-menu {
  display: inline-flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -10px; }
  .client-menu__item {
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #0D0D0D;
    margin: 0 10px;
    cursor: pointer; }
  .client-menu__modal {
    padding: 0;
    z-index: 9999; }
    .client-menu__modal.ant-modal .ant-modal-close {
      right: 10px; }
    .client-menu__modal.ant-modal .ant-modal-body {
      max-height: 80vh;
      overflow-y: auto;
      padding: 35px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center; }
      .client-menu__modal.ant-modal .ant-modal-body a:hover {
        opacity: 0.5;
        color: #1890ff; }
      .client-menu__modal.ant-modal .ant-modal-body .main-content__form {
        margin: 0;
        width: 100%;
        max-width: 400px; }
        .client-menu__modal.ant-modal .ant-modal-body .main-content__form .main-content__form-title {
          display: none; }
        .client-menu__modal.ant-modal .ant-modal-body .main-content__form .ant-input,
        .client-menu__modal.ant-modal .ant-modal-body .main-content__form .c-button {
          height: 40px; }
        .client-menu__modal.ant-modal .ant-modal-body .main-content__form .ant-input {
          padding-left: 15px;
          font-size: 12px;
          line-height: 14px; }
          .client-menu__modal.ant-modal .ant-modal-body .main-content__form .ant-input:hover {
            border: 1px solid rgba(183, 195, 207, 0.497296); }
          .client-menu__modal.ant-modal .ant-modal-body .main-content__form .ant-input::placeholder {
            font-size: 12px;
            line-height: 14px;
            color: #6D7278; }
        .client-menu__modal.ant-modal .ant-modal-body .main-content__form textarea {
          min-height: 120px;
          padding: 13px 15px;
          font-size: 12px;
          line-height: 14px; }
          .client-menu__modal.ant-modal .ant-modal-body .main-content__form textarea:hover {
            border: 1px solid rgba(183, 195, 207, 0.497296); }
      .client-menu__modal.ant-modal .ant-modal-body .feedback-content {
        flex-direction: column;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center; }
      .client-menu__modal.ant-modal .ant-modal-body .c-form__item-submit,
      .client-menu__modal.ant-modal .ant-modal-body .c-button {
        margin: 0;
        width: 100%; }
      .client-menu__modal.ant-modal .ant-modal-body .c-button {
        background-color: #629AFF; }
      .client-menu__modal.ant-modal .ant-modal-body .envelope-image {
        margin-left: 70px; }
      .client-menu__modal.ant-modal .ant-modal-body .modal-content {
        margin-bottom: 20px; }
      .client-menu__modal.ant-modal .ant-modal-body h2 {
        font-weight: bold;
        font-size: 20px;
        line-height: 24px;
        color: #0D0D0D;
        text-align: center;
        margin: 20px 0; }
        .client-menu__modal.ant-modal .ant-modal-body h2.mt-0 {
          margin-top: 0; }
    .client-menu__modal--mobile .ant-modal .ant-modal-body {
      padding: 15px; }
  .client-menu__drawer {
    z-index: 9999; }
    .client-menu__drawer .ant-drawer-body {
      min-height: 100%;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
    .client-menu__drawer .client-menu {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 40px 15px 15px; }
      .client-menu__drawer .client-menu .client-menu__item {
        font-weight: 600;
        font-size: 18px;
        line-height: 48px;
        text-align: center;
        letter-spacing: -0.0141176px;
        color: #0D0D0D;
        margin: 0; }

.accordion {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-variant: initial;
  font-feature-settings: initial; }
  .accordion .ant-collapse-header {
    padding: 0 !important; }
  .accordion .ant-collapse-content {
    border: none; }
  .accordion .ant-collapse-item {
    border: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #F0F2F7;
    margin: 2px;
    padding: 0 15px;
    border-radius: 5px;
    overflow: hidden; }
  .accordion__header {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: none;
    border-radius: 5px;
    padding: 9px 0; }
    .accordion__header .count {
      display: flex;
      align-items: center;
      padding-left: 10px; }
      .accordion__header .count span {
        color: #6d7278;
        font-size: large;
        font-weight: bold;
        font-size: 20px; }
  .accordion__indicator {
    position: absolute;
    right: -15px;
    transform: rotate(45deg) translateY(-75%);
    top: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(200, 49, 47, 0.500219); }
    .accordion__indicator--best {
      background-color: #d5f0b9; }
    .accordion__indicator--medium {
      background-color: #f6e28b; }
  .accordion__header-top-item {
    display: flex;
    align-items: flex-end; }
  .accordion__icon span {
    margin-left: 5px; }
  .accordion__icon {
    margin-right: 7px; }
  .accordion__number, .accordion__icon {
    display: inline-flex;
    align-items: flex-end;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.0124081px;
    color: #293043;
    line-height: 1; }
  .accordion__number--big {
    font-size: 20px; }
  .accordion__header-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
  .accordion__arrow {
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 2px; }
  .accordion__header-top {
    display: flex;
    align-items: center;
    margin-bottom: 6px; }
  .accordion__header-bottom {
    display: flex;
    align-items: center; }
    .accordion__header-bottom span {
      flex-grow: 1; }
    .accordion__header-bottom h6 {
      margin: 0;
      font-weight: 500;
      font-size: 10px;
      line-height: 12px;
      letter-spacing: -0.007755px;
      color: #9fb1c2; }
    .accordion__header-bottom p {
      margin: 0;
      font-weight: 600;
      font-size: 14px;
      line-height: 17px;
      letter-spacing: -0.010857px;
      color: #0D0D0D; }
  .accordion__header-bottom-route-name p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.010857px;
    color: #0D0D0D; }
  .accordion__details {
    position: absolute;
    right: 0;
    margin: 0;
    top: 10px;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.0117647px;
    color: #629AFF;
    display: inline-flex;
    align-items: center; }
    .accordion__details svg {
      width: 6px;
      transform: rotate(180deg);
      margin-left: 5px;
      position: relative;
      top: 1px;
      transition: transform 0.1s linear; }
  .accordion__gps {
    background: #F0F2F7;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.007755px;
    color: #6d7278;
    margin-left: 10px;
    width: 36px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase; }
  .accordion__header-subbottom {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 25px;
    padding-top: 5px; }
    .accordion__header-subbottom h6 {
      margin-bottom: 4px; }
    .accordion__header-subbottom span {
      margin: 5px 0; }
  .accordion__carrier {
    min-width: 100%; }
  .accordion__header-stops {
    margin-left: 5px; }
    .accordion__header-stops p {
      font-weight: 500;
      font-size: 12px;
      line-height: 22px;
      letter-spacing: -0.009306px;
      color: #0D0D0D; }
  .accordion__disabled {
    background-color: #8CBC69;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    width: 15px;
    color: #fff;
    border-radius: 2px; }
    .accordion__disabled__snowflake {
      background-color: #629AFF; }
    .accordion__disabled svg {
      width: 9px;
      height: 11px; }
  .accordion__stops {
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.00775506px;
    color: #fff;
    background: #629AFF;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 15px;
    margin-left: 5px; }
  .accordion__time {
    text-align: center; }
    .accordion__time h6 {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: -0.009306px;
      color: #293043;
      margin-bottom: 0; }
    .accordion__time p {
      font-weight: 600;
      font-size: 17px;
      line-height: 20px;
      letter-spacing: -0.0131836px;
      color: #0D0D0D;
      margin: 0; }
  .accordion .ant-collapse-item-active .accordion__header {
    border-bottom: none; }
  .accordion .ant-collapse-item-active .accordion__details svg {
    transform: rotate(90deg); }
  .accordion .ant-collapse-content-box {
    padding: 0; }
  .accordion__content {
    position: relative;
    border-radius: 0px; }
    .accordion__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 1px;
      background-color: #F0F2F7;
      max-width: 310px; }

.routes {
  padding: 18px 0; }
  .routes .route-stage {
    display: flex;
    min-height: 65px; }
  .routes .route-stage:last-child {
    min-height: initial; }
  .routes .route-streetname {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.010857px;
    color: #0D0D0D;
    margin: 0; }
  .routes .route-icons {
    padding: 0 15px;
    width: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.0124081px;
    color: #0D0D0D; }
    .routes .route-icons__inner {
      width: 60px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      min-height: 100%; }
      .routes .route-icons__inner > div {
        display: inline-flex;
        align-items: center; }
      .routes .route-icons__inner > span {
        position: relative;
        margin: 0;
        flex-grow: 1;
        width: 20px; }
        .routes .route-icons__inner > span::before {
          position: absolute;
          content: "";
          width: 2px;
          height: calc(100% - 0px);
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
    .routes .route-icons .decor--1::before {
      background-color: #8CBC69; }
    .routes .route-icons .decor--2::before {
      background-color: #629AFF; }
    .routes .route-icons .route-icon-decor {
      margin: 10px 0; }
    .routes .route-icons::before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 1px;
      background-color: #F0F2F7; }
  .routes .route-details {
    flex-grow: 1;
    padding-left: 15px; }
  .routes .route-distance {
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.007755px;
    color: #9fb1c2;
    margin-top: 15px; }
  .routes .route-icon-first {
    width: 20px;
    display: inline-flex;
    justify-content: center;
    margin-right: 8px; }

.stoplist-accordion {
  margin: 15px 0; }
  .stoplist-accordion .accordion-panel {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0; }
  .stoplist-accordion .accordion-panel .ant-collapse-header {
    display: inline-flex;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.007755px;
    color: #629AFF; }
    .stoplist-accordion .accordion-panel .ant-collapse-header svg {
      top: 1px;
      right: -16px;
      position: absolute;
      transform: rotate(270deg);
      transition: transform 0.05s linear; }
  .stoplist-accordion .ant-collapse-item-active .ant-collapse-header svg {
    transform: rotate(90deg);
    top: 0px; }
  .stoplist-accordion .ant-collapse-content-box p {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: -0.007755px;
    color: #0D0D0D;
    margin: 0; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent; }

.overlay.overlay--show {
  background: #ddd;
  z-index: 1111; }

.map {
  position: relative; }

html, body {
  min-height: 100%;
  height: initial;
  font-variant: initial;
  font-feature-settings: initial; }

