.loader-wrapper {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	background-color: rgba(255, 255, 255, 0.8);
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}

.loader {
	margin: 60px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(74, 160, 213, 0.8);
	border-right: 1.1em solid rgba(74, 160, 213, 0.8);
	border-bottom: 1.1em solid rgba(74, 160, 213, 0.8);
	border-left: 1.1em solid transparent;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.header__logo {
	-webkit-box-flex: 0 0 248px;
	-ms-flex: 0 0 248px;
	flex: 0 0 248px;
	width: 248px;
	max-width: 248px;
}

.header__nav {
	position: relative;
	-webkit-box-flex: calc(100% - 250px);
	-ms-flex: calc(100% - 250px);
	flex: calc(100% - 250px);
	width: calc(100% - 250px);
	max-width: calc(100% - 250px);
}

.header__nav .nav__list > li {
	float: left;
	position: relative;
	z-index: 2;
}

.header__nav .nav__list .nav__submenu {
	padding: 30px 25px 15px 25px;
	box-sizing: border-box;
	margin: 0;
	display: none;
	width: 265px;
	position: absolute;
	z-index: -1;
	top: 30px;
	left: -25px;
	background: #4aa0d5;
	border-radius: 30px 30px 0 0;
}

.header__nav .nav__list .nav__parent:hover .nav__submenu {
	display: block;
}

.header__nav .nav__list .nav__submenu li {
	margin: 5px 0;
}

.header__nav .nav__list .nav__submenu li a {
	margin: 0;
}

.nav__link.active,
.header__nav .nav__list .nav__submenu li a:hover {
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

.page-venue .content {
	padding: 30px 0;
}

.page-venue .content .container {
	padding: 0;
}

@media screen and (max-width: 629px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 300px;
	}
}
@media screen and (min-width: 630px) and (max-width: 929px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 600px;
	}
}
@media screen and (min-width: 930px) and (max-width: 1229px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 900px;
	}
}
@media screen and (min-width: 1230px) and (max-width: 1529px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 1200px;
	}
}
@media screen and (min-width: 1530px) and (max-width: 1829px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 1500px;
	}
}
@media screen and (min-width: 1830px) {
	.page-venue .content {
		margin: 0 auto;
		max-width: 1800px;
	}
}

.page-venue .venues-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.page-venue .venue-item {
	position: relative;
    padding: 15px;
    box-sizing: border-box;
	margin: 0 10px 10px 10px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 280px;
	flex: 0 0 280px;
	width: 280px;
	max-width: 280px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zd…B5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%,color-stop(0, rgb(217, 217, 217)),color-stop(1, rgb(240, 240, 240)));
    background-image: -webkit-linear-gradient(top,rgb(217, 217, 217) 0%,rgb(240, 240, 240) 100%);
    background-image: linear-gradient(to bottom,rgb(217, 217, 217) 0%,rgb(240, 240, 240) 100%);
    background-image: -ms-linear-gradient(top,rgb(217, 217, 217) 0%,rgb(240, 240, 240) 100%);
    color: #111;
}
.page-venue .venue-item:hover {
	text-decoration: none;
}

.page-venue .venue-item:after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	content: '...';
	font-size: 20px;
	text-align: center;
	touch-event: none;
}

.page-venue .venue-image {
	display: block;
	max-width: 100%;
	height: auto;
}

.page-venue .venue-name {
	margin-top: 0.4em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	line-height: 1.2;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .06em;
	text-align: center;
	color: #111;
}

.page-venue .venue-address {
	margin-top: 0.8em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	line-height: 18px;
}

.page-venue .venue-description {
	margin-top: 0.8em;
	min-height: 140px;
	max-height: 140px;
	overflow: hidden;
	font-size: 14px;
	line-height: 20px;
}

.page-venueDetail .content .container {
	max-width: 1300px;
}

.page-venueDetail h2 {
	margin: 0 0 0.2em 0;
	text-align: center;
}

.page-venueDetail .venue-address {
	font-size: 12px;
	text-align: center;
}

.page-venueDetail .venue-middle {
	margin: 3em 0 0 0;
}

@media screen and (max-width: 959px) {
	.page-venueDetail .venue-image {
		text-align: center;
	}
	.page-venueDetail .venue-map {
		margin: 2em 0 0 0;
	}
}
@media screen and (min-width: 960px) {
	.page-venueDetail .venue-middle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.page-venueDetail .venue-image,
	.page-venueDetail .venue-map {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 10px);
		flex: 0 0 calc(50% - 10px);
		width: calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

.page-venueDetail .venue-image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.page-venueDetail .venue-map {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.page-venueDetail .venue-map #map {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	min-height: 400px;
}

.page-venueDetail .venue-map #map:before {
	content: '';
	padding-top: 104.7%;
	float: left;
}

.page-venueDetail .venue-description {
	margin: 3em 0 0 0;
	line-height: 30px;
}

.footer__social {
	display: block;
}
