/*//////////////////////////////////////////*/
/* RV map */
/*//////////////////////////////////////////*/

.rvmap{
	position:relative;
	overflow:hidden;
	min-height:500px;
}
.rvmap.size_xxs{
	min-height:650px;
}
.rvmap .loading{
	position:absolute;
	background-color:#f5fbfd;
	background-image:url('../graphics/images/map_fade.jpg');
	box-shadow: inset 0 0 40px 0px rgba(0, 0, 0, 0.2);
	z-index:10;
}
.rvmap.loaded .loading{
	display:none;
}
.rvmap .loading .searching{
	display: block;
	font-weight:700;
	line-height:18px;
	position:absolute;
	width:100%;
	top:calc(50% + 50px);
	z-index:15;
}
.rvmap .loading .searching:before{
	content:'\f002';
	position:absolute;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	font-size: 50px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	top:-110px;
	left:calc(50% - 50px);
	z-index:10;

	-webkit-animation: map_searching 2s linear infinite;
	-moz-animation: map_searching 2s linear infinite;
	animation: map_searching 2s linear infinite;
}
.rvmap .map{
	position:absolute;
	width:100%;
	height:100%;
	z-index:5;
}

/*//////////////////////////////////////////*/
/* Map watermark */
/*//////////////////////////////////////////*/

.rvmap .map .watermark{
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;

	-webkit-animation: map_watermark 10s linear infinite;
	-moz-animation: map_watermark 10s linear infinite;
	animation: map_watermark 5s linear infinite;
}

/*//////////////////////////////////////////*/
/* Google and Yandex buttons */
/*//////////////////////////////////////////*/

.rvmap .map .open_gm{
	background-repeat:no-repeat;
	background-position:center center;
	background-size:60% 60%;
    background-image: url('../graphics/logos/google_maps.svg');
}
.rvmap .map .open_ym{
	background-repeat:no-repeat;
	background-position:center center;
	background-size:70% 70%;
    background-image: url('../graphics/logos/yandex_maps.svg');
}

/*//////////////////////////////////////////*/
/* Controls helpers */
/*//////////////////////////////////////////*/

.rvmap .map .control_fit_markers{
	display:none;
}
.rvmap .map .control_toggler .first,
.rvmap .map .control_toggler.active .last{
	display:none;
}
.rvmap .map .control_toggler.active .first,
.rvmap .map .control_toggler .last{
	display:block;
}
.rvmap .map .control_toggler_clusters a{
	background-size: 70%;
}
.rvmap .map .control_toggler_clusters a.first{
	background-image:url('../graphics/maps/icon_cluster.svg?v3');
}
.rvmap .map .control_toggler_clusters a.last{
	background-image:url('../graphics/maps/icon_uncluster.svg?v3');
}

/*//////////////////////////////////////////*/
/* Marker spotlight */
/*//////////////////////////////////////////*/

.rvmap .map .marker_spotlight:before{
	content:'';
	position:absolute;
    bottom: -15px;
    left: calc(50% - 15px);
	height: 30px;
    width: 30px;
	border-radius: 50%;

	-webkit-transform: scale(1, 0.2);
	-moz-transform: scale(1, 0.2);
	transform: scale(1, 0.2);

	-webkit-animation: map_spotlight 600ms linear 3;
	-moz-animation: map_spotlight 600ms linear 3;
	animation: map_spotlight 600ms linear 3;
}

/*//////////////////////////////////////////*/
/* Marker default */
/*//////////////////////////////////////////*/

.rvmap .map .marker_default{
	display: block;
}
.rvmap .map .marker_default em:before,
.rvmap .map .marker_default em:after{
	content:'';
	display: block;
	height: 100%;
	position:absolute;
}
.rvmap .map .marker_default em:before{
	width:30px;
	top:0;
	left:0;
	background: transparent url('../graphics/maps/marker_default.svg') no-repeat center center;
	z-index: 10;
}
.rvmap .map .marker_default em:after{
	width:41px;
	top: 0;
	left: 2px;
	background: transparent url('../graphics/maps/marker_shadow.png') no-repeat center center;
	z-index: 5;
}

/*//////////////////////////////////////////*/
/* Marker cluster */
/*//////////////////////////////////////////*/

.rvmap .map .marker_cluster{
	text-align:center;
}
.rvmap .map .marker_cluster:after{
	content:'';
	top: -1px;
	left: 10px;
	position:absolute;
	width:100%;
	height:100%;
    background: transparent url('../graphics/maps/marker_shadow.png') no-repeat center center;
	z-index: 5;
}
.rvmap .map .marker_cluster em{
	display:block;
	width:44px;
	height:40px;
	font-size:14px;
	font-weight:700;
	color:#ffffff;
	padding-top:9px;
	position:relative;
	z-index: 10;
	background-image:url('../graphics/maps/marker_cluster.svg?v2');
}

/*//////////////////////////////////////////*/
/* Marker user */
/*//////////////////////////////////////////*/

.rvmap .map .marker_user em:before{
	top:0;
	left:0;
	background: transparent url('../graphics/maps/marker_user.svg') no-repeat center center;
	z-index: 10;
}






/*//////////////////////////////////////////*/
/* Map marker number */
/*//////////////////////////////////////////*/

.rvmap .map .marker_number{
	width:30px;
	height:40px;
	position:relative;
}
.rvmap .map .marker_number:before{
	content:'';
	width:41px;
	height:41px;
	top:0;
	left:0;
	position:absolute;
    background: transparent url('../graphics/maps/marker_shadow.png') no-repeat center center;
	z-index: 5;
}
.rvmap .map .marker_number a{
	display:block;
	font-size:14px;
	font-weight:700;
	color:#ffffff;
	padding-top:9px;
	width:30px;
	height:40px;
	text-align:center;
    background: transparent url('../graphics/maps/marker_number.svg') no-repeat center center;
	position:relative;
	z-index: 10;
}

/*//////////////////////////////////////////*/
/* Map marker dot */
/*//////////////////////////////////////////*/

.rvmap .map .marker_dot{
	width:16px;
	height:24px;
	position:relative;
}
.rvmap .map .marker_dot strong{
	display: block;
	width:16px;
	height:16px;
	background:#0279b3;
	border:2px solid #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
	position: absolute;
	top:8px;
}

/*//////////////////////////////////////////*/
/* Map popups */
/*//////////////////////////////////////////*/

.rvmap .map .map_popup{
	width:200px;
	position:relative;
	background:#ffffff;
	border-radius:5px;
	z-index:10;
}
.rvmap .map .map_popup .popup_inner{
	position:relative;
	border-radius:5px;
}
.rvmap .map .map_popup .popup_inner .ribbon{
	position:absolute;
	top:5px;
	left:-10px;
	z-index:15;
}
.rvmap .map .map_popup .popup_image{
	position:relative;
	z-index:10;
	border-radius:5px 5px 0 0;
	overflow:hidden;
}
.rvmap .map .map_popup .popup_image:before{
	content:'';
	position:absolute;
	top:calc(50% - 25px);
	left:calc(50% - 25px);
	width:50px;
	height:50px;
	z-index:5;
	border-radius:50%;
	background-image:url('../graphics/images/loading.svg');

	-webkit-animation: loading 600ms linear infinite;
	-moz-animation: loading 600ms linear infinite;
	animation: loading 600ms linear infinite;
}
.rvmap .map .map_popup .popup_image img{
	display:block;
	width:200px;
	height:150px;
	position:relative;
	z-index:10;
}
.rvmap .map .map_popup .popup_title{
	position:relative;
	z-index:10;
	padding:20px 10px;
}
.rvmap .map .map_popup .popup_title strong{
	color:#0279b3;
	font-size:16px;
	line-height:20px;
	font-weight:700;
	transition:all 200ms linear;
}
.rvmap .map .map_popup .popup_title a:hover strong{
	color:#35cd92;
}
.rvmap .map .map_popup .popup_title em{
	display:block;
	font-size: 12px;
	line-height: 14px;
	color: #98a8b2;
	padding-top:4px;
}
.rvmap .map .map_popup .popup_link{
	display:block;
	height:40px;
	font-size:14px;
	font-weight:700;
	line-height:40px;
	color:#ffffff;
	background:#039ae4;
	letter-spacing:0.5px;
	text-transform:uppercase;
	border-radius:0 0 5px 5px;
}
.rvmap .map .map_popup .popup_link:hover{
	letter-spacing:1px;
}
.rvmap .map .map_popup .popup_line{
	height:5px;
	background:#039ae4;
	border-radius:0 0 5px 5px;
}

/* Popup company */

.rvmap .map .map_popup.popup_company{
	width:300px;
}
.rvmap .map .map_popup.popup_company .popup_image{
	position:absolute;
	top:5px;
	left:5px;
	width:90px;
	height:calc(100% - 10px);
	border-right:5px solid #ffffff;
}
.rvmap .map .map_popup.popup_company .popup_image:before{
	display:none;
}
.rvmap .map .map_popup.popup_company .popup_title{
	padding-left:110px;
}
.rvmap .map .map_popup.popup_company .popup_inner:after{
	content:'';
	position: absolute;
	top:5px;
	left:95px;
	bottom:5px;
	width:1px;
	background: #dae1e6;
}

/* Popup route point */

.rvmap .map .map_popup.route_point_popup .popup_title .num{
	width:24px;
	height:24px;
	line-height:24px;
	background:#0279b3;
	margin:0 auto 4px;
	color:#ffffff;
	border-radius: 12px;
	font-weight:700;
}
.rvmap .map .map_popup.route_point_popup .popup_nav{
	display:block;
	background:#039ae4;
	border-radius:0 0 5px 5px;
}
.rvmap .map .map_popup.route_point_popup .popup_nav a{
	display:block;
	width:50%;
	font-size:18px;
	font-weight:700;
	line-height:18px;
	color:#ffffff;
	padding:10px;
}
.rvmap .map .map_popup.route_point_popup .popup_nav a:hover{
	background: rgba(255, 255, 255, 0.1);
}
/*//////////////////////////////////////////*/
/* Banner */
/*//////////////////////////////////////////*/

.item_banner{
	position:relative;
	background: rgba(0, 0, 0, 0.05);

    -webkit-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.item_banner *::selection{
	background: transparent !important;
}
.item_banner .target{
	display: block;
    position: absolute;
	width: 100%;
	height: 100%;
}
.item_banner .inner{
	background:#232323;
	overflow:hidden;
    position: absolute;
	bottom: 10px;
	top: 10px;
	left: 10px;
	right: 10px;
}
.item_banner .mark{
	font-size:10px;
	position:absolute;
	top:10px;
	left:10px;
	z-index:10;
	color:#ffffff;
	text-shadow: 0 0 5px #232323;
	text-transform:uppercase;
}
.item_banner .splash{
	position:absolute;
	left:10px;
    bottom:10px;
    right:10px;
	z-index:10;
    padding:7px 10px 10px;
	color:#ffffff;
	background:#dd4b39;
}
.item_banner .splash strong{
	display:block;
	font-weight:700;
}
.item_banner .splash p{
	display:block;
	line-height:18px;
	padding:10px 0;
	font-size:14px;
}
.item_banner .splash span{
	display:block;
	font-size:12px;
	opacity:0.6;
	letter-spacing: 0.5px;
}
.item_banner .img{
	position:absolute;
	z-index:5;
	transition:all 200ms linear;
}
.item_banner:hover .img{
	opacity:0.8;

	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}
.item_banner .ctrl{
	display: flex;
	gap: 10px;
	position: absolute;
	top:20px;
	right:20px;
	z-index: 10;
	opacity:0;
	transition:all 200ms linear;
}
.item_banner:hover .ctrl{
	opacity:1;
}
.item_banner .ctrl a{
	display:block;
	width:30px;
	height:30px;
	line-height:30px;
	background: #35cd92;
	color: #ffffff;
	font-size:14px;
}

/* Horizontal */

.item_banner.horizontal{
	min-height:300px;
}
.item_banner.horizontal .splash{
	width:50%;
    right:auto;
}

/* Vertical */

.item_banner.vertical{
	min-height:400px;
}

/* Placeholder */

.item_banner.placeholder .inner{
	background:transparent;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	opacity: 0.4;
}
/*//////////////////////////////////////////*/
/* Single route */
/*//////////////////////////////////////////*/

/* Meta */

.single_route .route_meta {
	margin-bottom:15px;
}
.single_route .route_meta .data{
	position: relative;
	padding:0 0 0 60px;
	margin-bottom:15px;
	min-height:50px;
}
.single_route .route_meta .data i{
	display: block;
	width: 50px;
	height: 50px;
	line-height: 46px;
	border-radius: 25px;
	border:2px solid #dae1e6;
	text-align: center;
	color: #98a8b2;
	font-size: 20px;
	position: absolute;
	left:0;
	top:0;
}
.single_route .route_meta .data span{
	display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    height: 14px;
    white-space: nowrap;
	padding:2px 0;
}
.single_route .route_meta .data strong{
	display: block;
    width: 100%;
	font-weight: 700;
    line-height: 20px;
    position: relative;
}

/* Credits */

.single_route .route_credits{
	position: relative;
	background-image:url('../graphics/images/route_credits.png');
}
.single_route .route_credits .credits{
	border-radius: 25px;
	border:2px solid #dae1e6;
	padding:18px 20px 18px 120px;
	position: relative;
	overflow: hidden;
	max-width: 500px;
	margin-left:auto;
	margin-right: auto;
	background: #f5fbfd;
}
.single_route .route_credits .credits .logo{
	display: block;
	position: absolute;
	top: 15px;
    left: 15px;
    width: 90px;
    height: 64px;
    border-radius: 15px;
	background-color: #ffffff;
}
.single_route .route_credits .credits p{
	position: relative;
    min-height: 64px;
}
.single_route .route_credits .credits p a.go{
	color:#0279b3;
	font-weight: 700;
}

/* Point */

.single_route .route_point{
	background: #ffffff;
    position: relative;
	height:calc(100% - 30px);
}
.single_route .route_point .anchor{
	position: absolute;
	top:-30px;
}
.single_route .route_point .about{
	padding:20px;
}
.single_route .route_point .about .title{
	display: block;
	min-height: 40px;
	position: relative;
	padding:0 0 20px 40px;
	margin:-2px 0 20px;
	border-bottom: 1px solid #dae1e6;
}
.single_route .route_point .about .title .number{
	width:30px;
	height:40px;
	position: absolute;
	top:2px;
	left:0;
    background: transparent url('../graphics/maps/marker_number.svg') no-repeat center center;
	background-size: contain;
	font-size: 14px;
	font-weight:700;
	color:#ffffff;
	padding-top:8px;
}
.single_route .route_point .about .title h2{
	display: inline;
}
.single_route .route_point .about .title span{
	display: block;
	margin-top:10px;
}
.single_route .route_point .about .title span em{
	display: inline-block;
	margin-left:5px;
	opacity: 0;
	transition: all 200ms linear;
	cursor: pointer;
}
.single_route .route_point .about .title:hover span em{
	opacity: 0.8;
}
.single_route .route_point .about .camping{
	display:block;
	margin-top:20px;
	background: #35cd92;
    color: #ffffff;
    padding: 8px 40px 8px 10px;
	position: relative;
}
.single_route .route_point .about .camping:hover{
	background: #0279b3;
}
.single_route .route_point .about .camping strong{
	display:block;
	padding-bottom:4px;
}
.single_route .route_point .about .camping span{
	display:block;
    font-size: 10px;
	text-transform: uppercase;
	opacity:0.6;
}
.single_route .route_point .about .camping i{
	display:block;
	width:20px;
    height: 30px;
    line-height: 28px;
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
	opacity:0.6;
}
.single_route .route_point .about .toggle_cb{
	margin-top:20px;
	display: inline-block;
	font-size: 12px;
    color: #98a8b2;
    text-transform: uppercase;
}
.single_route .route_point .about .toggle_cb:hover{
	color:#0279b3;
}
.single_route .route_point .about .toggle_cb.active{
	color:#0279b3;
}
.single_route .route_point .about .toggle_cb span{
	display:inline-block;
	padding-right: 5px;
}
.single_route .route_point .about .toggle_cb span i:last-of-type,
.single_route .route_point .about .toggle_cb.active span i:first-of-type{
	display:none;
}
.single_route .route_point .about .toggle_cb.active span i:last-of-type{
	display:inline-block;
}
.single_route .route_point .about .contacts{
	padding-top:20px;
	display: none;
}
.single_route .route_point .about .contacts .widget_contact{
	margin-bottom: 10px;
}
.single_route .route_point .about .contacts .widget_contact:last-child{
	margin-bottom: 0;
}
.single_route .route_point .gallery{
	padding:20px 0 20px 20px;
	position:relative;
}
@media (max-width:599px) {
	.single_route .route_point .gallery{
		padding:0 20px 20px 20px;
	}
}
.single_route .route_point .gallery a{
	display: block;
	position: relative;
}
@media (max-width:599px) {
	.single_route .route_point .gallery a{
		width:100%;
		margin:0 auto;
	}
}
.single_route .route_point .gallery a img{
	display: block;
	width:100%;
	height:auto;
}
.single_route .route_point .gallery span{
	position:absolute;
	bottom:30px;
	left: 30px;
	display:inline-block;
	background: rgba(0, 0, 0, 0.4);
	color:#ffffff;
	padding:0 7px;
	line-height:20px;
}
/*//////////////////////////////////////////*/
/* Listing map */
/*//////////////////////////////////////////*/

.listing_map{
	z-index: auto !important;
}
.listing_map .container_full{
	z-index: auto;
}

/* Cover */

.listing_map .cover{
	color:#ffffff;
	position:relative;
    background: #232323;
	margin-top:80px;
	overflow: hidden;
}
@media (min-width:1200px) {
	.listing_map .cover{
		margin-top:115px;
		margin-left:30px;
		margin-right:30px;
	}
}
@media (max-width:1199px) and (min-width:1000px) {
	.listing_map .cover{
		margin-top:95px;
		margin-left:15px;
		margin-right:15px;
	}
}
.listing_map .cover:after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 10;
	bottom: 0;
	height: 50%;
	background: linear-gradient(0deg, rgba(35, 35, 35, 0.9) 0%, rgba(35, 35, 35, 0.5) 80%, rgba(35, 35, 35, 0) 100%);
}
.listing_map .cover .inner{
	padding:30px;
	position: relative;
	z-index: 15;
}
.listing_map .cover .inner .heading h1{
	display: block;
	word-wrap: break-word;
}
.listing_map .cover .inner .desc{
	padding-top:15px;
}
@media (min-width:1000px) {
	.listing_map .cover .inner .desc{
		max-width: 75%;
	}
}
.listing_map .cover .inner .actions {
	display: block;
	font-size:14px;
	opacity: 0.8;
	margin: 20px -5px 0;
}
.listing_map .cover .inner .actions li{
	display: inline-block;
	padding: 10px 5px 0;
}
.listing_map .cover .inner .actions li i{
	display: inline-block;
	padding-right:3px;
}
.listing_map .cover .image{
	position: absolute;
	opacity: 0.4;
	z-index: 5;
}
.listing_map .cover .widget_breadcrumbs{
	width:calc(100% + 30px);
	margin:0 -15px;
}
.listing_map .cover .widget_breadcrumbs .path{
	padding:0 30px;
}

/* Content */

.listing_map .content{
	padding: 0 15px;
	max-width: 1000px;
	margin: 0 auto;
}
@media (min-width:1200px) {
	.listing_map .content{
		padding:0 30px;
	}
}

/* Counter */

.listing_map .counter{
	font-weight: 700;
	line-height: 20px;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}
@media (max-width:599px) {
	.listing_map .counter {
		display: block;
	}
}
.listing_map .counter strong {
	color: #0279b3;
}
.listing_map .counter .order {
	display: inline-block;
	background: #ffffff;
	color: #98a8b2;
	margin-left: 20px;
	padding-right: 40px;
	position: relative;
}
@media (max-width:599px) {
	.listing_map .counter .order {
		margin: 10px 0 0 0;
	}
}
.listing_map .counter .order select {
	display: block;
	height: 40px;
	line-height: 40px;
	background-color: #ffffff;
	font-family: 'Roboto', Arial, Tahoma, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 14px;
	border: 0;
	padding: 0 10px;
	cursor: pointer;
	color: #717a8f;
}
.listing_map .counter .order a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top: 0;
	right: 0;
}

/* Map fixed */

.listing_map .map_fixed{
    right:0;
    bottom:0;
    transition:all 100ms linear;
    z-index: 100;
	display:none;
}
@media (min-width:1000px) {
	.listing_map .map_fixed{
		display:block;
	    position:fixed;
	    width:50%;
	}
}
@media (max-width:999px) {
	.listing_map .map_fixed{
		display:block;
	    position:fixed;
	    width:100%;
	    height:100% !important;
	    min-height:100vh !important;
	    right:-100%;
	    transition:all 300ms linear;
	}
	.listing_map .map_fixed.mobile{
	    right:0;
	}
}
.listing_map .map_fixed .rvmap{
    position: absolute;
	width: 100%;
	height: 100%;
}
.listing_map .map_fixed .map_toggle{
	display: none;
	width: 40px;
	line-height: 30px;
	background: #35cd92;
	color: #ffffff;
	writing-mode: vertical-rl;
	padding: 35px 10px 13px 0;
	position: fixed;
	top: 40%;
	right: 0;
	z-index: 100000;
	font-size:14px;
}
@media (max-width:999px) {
	.listing_map .map_fixed .map_toggle{
		display: block;
	}
}
.listing_map .map_fixed .map_toggle i {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 0;
	top: 0;
	line-height: 28px;
	text-align: center;
	left: 0;
	top: 5px;
}
.listing_map .map_fixed .map_toggle.active span.open,
.listing_map .map_fixed .map_toggle span.close {
	display: none;
}
.listing_map .map_fixed .map_toggle.active span.close {
	display: block;
}
