/*html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}*/
#yurtMap {
	padding: 20px;
	font-size: 14px;
	line-height: 16px;
	color: #333;
}
#yurtMapHeader {
	margin-bottom: 20px;
	display: flex;
}
#yurtMapTitle {
	font-size: 24px;
	line-height: 1.5;
	text-transform: uppercase;
	margin-right: 20px;
	font-weight: 700;
}
#yurtMapFilters {
	display: flex;
	margin: 0 -5px;
}
.yurtMap-filter {
	position: relative;
	padding: 0 5px;
}
.yurtMap-filter-toggle {
	border: 0;
	padding: 10px 40px 10px 20px;
	display: block;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	white-space: nowrap;
}
.yurtMap-filter-all {
	border: 0;
	padding: 8px 20px;
	display: block;
	border-radius: 10px;
	background-color: #f5f5f5;
	color: #1bad03;
	margin-left: 5px;
	white-space: nowrap;
	border: 1px solid #1bad03;
}
.yurtMap-filter-all.hide {
	display: none;
}
.yurtMap-filter-toggle:after {
	content: '';
	position: absolute;
	top: 15px;
	right: 14px;
	width: 14px;
	height: 8px;
	background: url('images/btn-arrow.svg') center no-repeat;
}
.yurtMap-filter-toggle.active {
	color: #fff;
	background-color: #1bad03;
	box-shadow: none;
}
.yurtMap-filter-toggle.active:after {
	background-image: url('images/btn-arrow-w.svg');
}
.yurtMap-filter-toggle:hover {
	cursor: pointer;
	color: #1bad03;
}
.yurtMap-filter-all:hover {
	cursor: pointer;
	color: #fff;
	background-color: #1bad03;
}
.yurtMap-filter-toggle.active:hover {
	color: #fff;
}
.yurtMap-filter-dropdown {
	display: none;
	position: absolute;
	left: 5px;
	top: 100%;
	margin-top: 5px;
	z-index: 1;
	padding: 10px 0;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-height: 600px;
	overflow-y: auto;
	scrollbar-width: thin;
}
.yurtMap-filter-dropdown.show {
	display: block;
}
.yurtMap-filter__input {
	width: 0;
	height: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
}
.yurtMap-filter__label {
	display: block;
	white-space: nowrap;
	position: relative;
	padding: 10px 20px 10px 50px;
	line-height: 20px;
	transition: all ease-in-out 0.15s;
	margin-bottom: 0;
}
.yurtMap-filter__item.disabled .yurtMap-filter__label {
	opacity: 0.5;
}
.yurtMap-filter__label:hover {
	cursor: pointer;
	background-color: #eee;
	transition: all ease-in-out 0.15s;
}
.yurtMap-filter__item.disabled .yurtMap-filter__label:hover {
	background-color: #fff;
}
.yurtMap-filter__label:before {
	content: '';
	position: absolute;
	left: 20px;
	top: 10px;
	width: 20px;
	height: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
}
.yurtMap-filter__input:checked + .yurtMap-filter__label:before {
	border-color: #1bad03;
	background-color: #1bad03;
	background-image: url('images/check.svg');
	background-position: center;
	background-repeat: no-repeat;
}
#yurtMapBody {
	display: flex;
}
#yurtMapContainer {
	flex-grow: 1;
	height: 600px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#yurtMapInfo {
	width: 400px;
	background-color: #fff;
	padding: 0 0 0 20px;
	flex: none;
	margin-left: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#yurtMapInfoWrap {
	overflow-y: auto;
	scrollbar-width: thin;
	height: 600px;
	padding-right: 10px;
}
#yurtMapInfoWrap::-webkit-scrollbar {
	width: 12px;
}
#yurtMapInfoWrap::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
}
#yurtMapInfoWrap::-webkit-scrollbar-thumb {
	background-color: #ddd;
	border-radius: 4px;
	border: 4px solid #fff;
}
.yurtMap-list__item.show {
	display: block;
}
.yurtMap-list__item.hide {
	display: none;
}
.yurtMap-list-card {
	display: flex;
	padding: 20px 0;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid #eee;
}
.yurtMap-list-card__img {
	flex: none;
	width: 30px;
	height: 30px;
	display: block;
	margin-right: 15px;
}
.yurtMap-list-card__title {
	font-size: 20px;
	line-height: 25px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}
.yurtMap-list-card:hover .yurtMap-list-card__title {
	color: #1bad03;
}
.yurtMap-list-card__subtitle {
	color: #666;
	margin-bottom: 10px;
}
.yurtMap-list-card__text {
	color: #333;
}
.yurt-hint {
	display: inline-block;
	background-color: #fff;
	white-space: nowrap;
	padding: 5px 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	margin: 10px 0 0 5px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 13px;
}

/* Modal */
.yurtMapModalGallery__img {
	display: block;
	width: 600px;
	height: 450px;
	object-fit: cover;
}
#yurtMapModalInfo {
	padding: 20px 20px 0;
}
#yurtMapModalTitle {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 20px;
}
.yurtMapModal-subtitle {
	margin-bottom: 10px;
	font-weight: 700;
}
#yurtMapModalVals {
	margin-bottom: 20px;
	color: #666;
}
#yurtMapModalDescript {
	margin-bottom: 20px;
}
#yurtMapModalAddress {
	margin-bottom: 20px;
}
#yurtMapModalTel {
	margin-bottom: 20px;
}
#yurtMapModalLinks {
	margin-bottom: 20px;
	display: flex;
}
#yurtMapModalSite {
	display: inline-flex;
	align-items: center;
	color: #fff;
	background-color: #1bad03;
	border-radius: 4px;
	padding: 10px 40px;
	text-decoration: none;
	font-weight: 700;
	margin-right: 10px;
}
#yurtMapModalSite:hover {
	background-color: #1fc903;
}
#yurtMapModalSite svg {
	display: block;
	margin-right: 10px;
}
.yurtMapModal-btn-icon {
	display: block;
	width: 40px;
	height: 40px;
	background-color: #d4fecd;
	border-radius: 4px;
	margin-right: 10px;
}
.yurtMapModal-btn-icon svg {
	display: block;
}
.yurtMapModal-btn-icon path {
	fill: #1bad03;
}
.yurtMapModal-btn-icon:hover path {
	fill: #1fc903;
}

#yurtMapModalVidGallery {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.yurtMapModalVidGallery-link {
	margin-right: 10px;
}
#yurtMapModalVidGallery span {
	margin-right: 10px;
	font-weight: 700;
}
.yurtMapModalVidGallery-link svg {
	display: block;
	width: 30px;
}
#yurtMapModalInfo .empty {
	margin: 0;
}

@media (max-width: 1024px) {
	#yurtMap {
		padding: 10px 10px 20px;
	}
	#yurtMapHeader {
		margin-bottom: 10px;
		flex-direction: column;
	}
	#yurtMapTitle {
		margin: 0 0 10px;
	}
	#yurtMapBody {
		flex-direction: column;
	}
	#yurtMapContainer {
		height: 240px;
	}
	#yurtMapInfo {
		width: auto;
		padding: 0 0 0 10px;
		margin: 10px 0 0;
	}
	#yurtMapInfoWrap {
		height: auto;
		max-height: 240px;
	}
	.yurtMap-list-card {
		padding: 10px 0 0;
	}
	.yurtMap-list-card__img {
		margin-right: 10px;
	}
	.yurtMap-list-card__title {
		line-height: 1.25;
		font-size: 16px;
		margin: 5px 0;
	}
	.yurtMap-list-card__text {
		display: none;
	}
}
@media (max-width: 600px) {
	#yurtMapHeader {
		margin: 0;
	}
	#yurtMapTitle {
		text-align: center;
	}
	#yurtMapFilters {
		margin: 0;
		flex-direction: column;
	}
	.yurtMap-filter {
		padding: 0;
		margin-bottom: 10px;
	}
	.yurtMap-filter-toggle {
		width: 100%;
	}
	#yurtMapFilterBtnAll {
		margin: 0 0 10px;
	}
	.yurtMap-filter-dropdown {
		left: 0;
		width: 100%;
	}
	.yurtMap-list-card {
		padding: 10px 0;
	}
	.yurtMap-list-card__title {
		font-size: 14px;
		line-height: 1;
		margin: 0 0 4px;
	}
	.yurtMap-list-card__subtitle {
		font-size: 12px;
		line-height: 1;
		margin: 0;
	}
	.yurtMapModalGallery__img {
		width: 100%;
		height: 300px;
	}
}

.itcss__indicator {
	height: 22px !important;
}
