
/*.mapbox*/
.mapbox {
	position: fixed;
	top: 0;
	right: 0;
	left: 50%;
	z-index: 99 !important;
	height: 100%;
	background-color: #F7EAE6;
}
.mapbox.loading {
	cursor: not-allowed;
}
.mapbox.loading .mapboxgl-canvas-container {
	pointer-events: none !important;
}
.mapboxgl-canvas-container {
	background-color: #F7EAE6;
}

.mapbox__controls {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translate(0, -50%);
	z-index: 4;
}
.mapbox__zooms {
	background: #fff;
	margin: 0 0 8px 0;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04), 0px 12px 12px rgba(0, 0, 0, 0.04);
	border-radius: 4px;
	overflow: hidden;
}
.mapbox__zoom {
	width: 48px;
	height: 48px;
	position: relative;
	display: block;
	transition: .3s background-color;
}
.mapbox__zoom:hover {
	background-color: #F4F4F4;
}
.mapbox__zoom:active {
	background-color: #DFDFDF;
}
.mapbox__zoom--minus:before, .mapbox__zoom--plus:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: 6px 1px;
	width: 14px;
	height: 2px;
	background: #000;
}
.mapbox__zoom--plus:after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: 6px 1px;
	height: 14px;
	width: 2px;
	background: #000;
}
.mapbox__control {
	width: 48px;
	height: 48px;
	line-height: 48px;
	border-radius: 4px;
	display: block;
	position: relative;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04), 0px 12px 12px rgba(0, 0, 0, 0.04);
	transition: .3s background-color;
	text-align: center;
	background: #fff;
	margin-bottom: 8px;
}
.mapbox__control:last-child {
	margin-bottom: 0;
}
.mapbox__control > svg {
	display: inline-block;
	vertical-align: middle;
}
.mapbox__control:hover {
	background-color: #F4F4F4;
}
.mapbox__control:active {
	background-color: #DFDFDF;
}

.mapbox__marker {
	position: absolute;
	z-index: 5;
}
.mapbox__marker--inner {
	position: absolute;
	background: #FFFFFF;
	border-radius: 4px;
	width: 343px;
	padding: 20px 124px 16px 16px;
	min-height: 124px;
	left: 50%;
	bottom: 100%;
	transform: translate3d(-50%, -10px, 0);
	opacity: 0;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04), 0px 12px 12px rgba(0, 0, 0, 0.04);
}
.mapbox__marker--inner.fadeIn {
	opacity: 1;
	transition: .3s all;
	transform: translate3d(-50%, -30px, 0);
}
.mapbox__marker--inner.fadeOut {
	opacity: 0;
	transition: .1s all;
	transform: translate3d(-50%, -30px, 0);
}
.mapbox__marker--type {
	font-family: 'vl2-bold', sans-serif;
	font-size: 11px;
	line-height: 18px;
	display: block;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #336AF7;
	margin: 0 0 7px 0;
	position: relative;
}
.mapbox__marker--title {
	font-size: 16px;
	line-height: 18px;
	color: #262626;
	height: auto;
	min-height: 60px;
	max-height: 80px;
	overflow: hidden;
	margin: 0 0 6px 0;
	font-weight: 500;
}
.mapbox__marker--title > small {
	display: block;
	margin-top: 3px;
}
.mapbox__marker--time {
	font-size: 14px;
	line-height: 15px;
	color: #898989;
	font-weight: 400;
}
.mapbox__marker--pic {
	position: absolute;
	width: 92px;
	height: 92px;
	right: 16px;
	top: 16px;
	border-radius: 4px;
	background: no-repeat center center;
	background-size: cover;
}
.mapbox__marker--inner:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #fff transparent transparent transparent;
	z-index: 2;
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
}
.mapbox__slider {
	position: fixed !important;
	width: 100%;
	padding: 6px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transform: translateY(120%);
	transition: .3s transform, .3s opacity;
}
.mapbox__slider.v__map--active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0%);
}

.mapbox__marker--slide {
	position: relative;
	background: #FFFFFF;
	border-radius: 4px;
	width: 343px;
	padding: 20px 124px 16px 16px;
	min-height: 124px;
	margin-right: 6px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04), 0px 12px 12px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	cursor: move;
}
.mapbox__marker--slide::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 4px;
	background-color: rgba(51, 107, 247, 1);
	transition: .3s width;
	position: absolute;
	top: 0; left: 0;
}
.mapbox__marker--slide.feature-active::before {
	width: 100%;
}
.mapbox__marker--slide .mapbox__marker--title {
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mapboxgl-canvas {
  width: 100% !important;
  height: 100% !important;
}

.close--map {
	position: fixed;
	top: 120px;
	right: 8px;
	z-index: 1100;
	width: 155px !important;
	opacity: 0;
	pointer-events: none;
}
.mapbox__marker--slide .block-favorite {
	transform: translateX(-100px);
	cursor: pointer;
}
.mapbox__marker--slide.feature-active {
	cursor: pointer !important;
}
.mapbox__marker--slide .mapbox__marker--more {
	display: block;
	width: 92px;
	height: 22px;
	line-height: 20px;
	text-align: center;
	background-color: rgba(51, 107, 247, 1);
	color: #ffffff;
	font-size: 13px;
	margin-top: 70px;
	border-radius: 4px;
	opacity: 0;
}
.mapbox__marker--slide.feature-active .mapbox__marker--more {
	opacity: 1;
}

@media (max-width: 1024px) {
	.mapbox {
		width: 100% !important;
		opacity: 0;
		pointer-events: none;
		
	}
	.v__map--fullscreen .mapbox {
		pointer-events: auto;
	}
	.v__map--fullscreen .close--map {
		opacity: 1;
		pointer-events: auto;
	}
	
	
}
@media (max-width: 412px) {
	.mapbox__marker--slide {
		width: 96vw;
	}
}

.v__pos--fixed {
	position: fixed;
	overflow: hidden;
}