/*** Popaps ***/
body.lock {
	overflow: hidden;
}

.popup {
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 30px 10px 100px;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	visibility: hidden;
	transition: all 0.6s ease 0s;
	z-index: 15;
}

.popup.open {
	opacity: 1;
	visibility: visible;
}


.popup--content {
	background-color: rgba(6, 12, 43, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	color: #c4c4c4;
	width: 100%;
	min-height: 300px;
	max-width: 800px;
	padding: 10px;
	position: relative;
	top: 5%;
	transition: all .8s ease 0s;
	transition-delay: .1s;
	transform: scale(.8);
	opacity: 0;
}

.popup.open .popup--content {
	transform: scale(1);
	opacity: 1;
}

.win-close {
	position: absolute;
	width: 40px;
	height: 40px;
	right: -45px;
	top: 0;
	font-size: 20px;
	fill: #ffffff;
	text-decoration: none;
}

.popup--video {
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 30px;
}

.main-video--popup {
	width: 100%;
}

.popup--map {
	background: #000;
	margin: 0 0 2em;
	padding: 10px;
}

.popup--map iframe {
	border: none;
}

body.vp-center {
	align-items: flex-start;
}

.popup--descript {
	position: relative;
}

.popup--title {
	padding: 0 25px;
	margin: 0 0 .7em 0;
	font-size: calc(22px + 16 * ((100vw - 320px) / 1080));
	font-weight: bold;
	line-height: 1;
}

.popup--text {
	padding: 0 25px 25px;
}

.popup--text p {
	font-size: 14px;
}

.popup--text-link {
	text-decoration: underline;
	color: #008ff9;
}

.popup--text-link:hover {
	text-decoration: none;
}


/* Popap order */
.open-order--btn,
.form-send--btn {
	background: #000;
	border-radius: 10px;
	position: relative;
	padding: 14px 15px;
	transition: .3s;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
}

.open-order--btn:after,
.form-send--btn:after {
	content: '→';
	position: absolute;
	right: 15px;
	top: 13px;
	font-size: 22px;
}

.open-order--btn:hover,
.form-send--btn:hover {
	background: #333;
	transform: translateY(-3px);
}

.form-send.flex {
	align-items: center;
}

.form-send--btn {
	padding: 14px 20px;
	width: 100%;
	max-width: 303px;
}

.form-send--error {
	background: #F4A189;
	padding: 8px 45px;
	color: #333;
	position: absolute;
	top: -50px;
	font-size: 14px;
}

.form-send--error:after {
	content: '';
	background: inherit;
	position: absolute;
	left: calc(50% - 8px);
	bottom: -4px;
	width: 16px;
	height: 16px;
	transform: rotate(45deg);
}

.form-send--capcha {
	margin-bottom: 20px;
}

.g-recaptcha {
	display: inline-block;
}

.popup--order-form {
	padding: 10vw 5vw 5vw;
}

.popup--form {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.popup--form-input {
	position: relative;
	margin: 0 0 20px;
}

.popup--form-input input,
.popup--form-input textarea {
	background: #ffdbd6;
	border-radius: 10px;
	padding: 12px 15px;
	font-size: 1rem;
	color: #000;
}

.popup--form-input input:hover,
.popup--form-input input:focus,
.popup--form-input textarea:hover,
.popup--form-input textarea:focus {
	background: #fff;
}

@media (max-width: 889px) {
	.win-close {
		background: rgba(30, 30, 30, .9);
		border-radius: 50%;
		padding: 4px;
		right: -20px;
		top: -21px;
		z-index: 1;
	}
}

@media (max-width: 629px) {
	.win-close {
		right: 5px;
		top: 5px;
	}

	.popup--title {
		padding: 0 5px;
	}

	.popup--text {
		padding: 0 5px 15px;
	}
}
}