.modal-thanks {
	display: none;
	max-width: 650px;
	max-height: 330px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-thanks.active {
	display: block;
}

.modal-thanks.before-enter, .modal-thanks.after-leave {
	opacity: 0;
}

.modal-thanks.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-thanks.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-thanks:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-thanks:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-thanks:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-thanks:after {
		top: 10px;
		left: 10px;
	}
}

.modal-thanks__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-thanks__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-thanks__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-thanks__content {
	background-image: url("../img/back-modal.png");
}

.modal-thanks__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-thanks__text {
	text-align: center;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-thanks__text {
		width: calc(100% - 80px);
	}
}

.modal-request {
	display: none;
	max-width: 650px;
	max-height: 660px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-request.active {
	display: block;
}

.modal-request.before-enter, .modal-request.after-leave {
	opacity: 0;
}

.modal-request.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-request.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-request:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-request:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-request:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-request:after {
		top: 10px;
		left: 10px;
	}
}

.modal-request__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	min-height: 578px;
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-request__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-request__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-request__content {
	background-image: url("../img/back-modal.png");
}

.modal-request__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-request .text-input {
	background: transparent;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-request .text-input {
		width: calc(100% - 80px);
	}
}

.modal-request input.text-input {
	margin-bottom: 10px;
}

.modal-request textarea.text-input {
	margin-bottom: 30px;
	flex-grow: 1;
	resize: none;
}

.modal-fail-payment {
	display: none;
	max-width: 650px;
	max-height: 330px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-fail-payment.active {
	display: block;
}

.modal-fail-payment.before-enter, .modal-fail-payment.after-leave {
	opacity: 0;
}

.modal-fail-payment.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-fail-payment.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-fail-payment:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-fail-payment:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-fail-payment:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-fail-payment:after {
		top: 10px;
		left: 10px;
	}
}

.modal-fail-payment__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-fail-payment__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-fail-payment__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-fail-payment__content {
	background-image: url("../img/back-modal.png");
}

.modal-fail-payment__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-fail-payment__text {
	text-align: center;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-fail-payment__text {
		width: calc(100% - 80px);
	}
}

.modal-success-payment {
	display: none;
	max-width: 650px;
	max-height: 330px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-success-payment.active {
	display: block;
}

.modal-success-payment.before-enter, .modal-success-payment.after-leave {
	opacity: 0;
}

.modal-success-payment.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-success-payment.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-success-payment:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-success-payment:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-success-payment:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-success-payment:after {
		top: 10px;
		left: 10px;
	}
}

.modal-success-payment__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-success-payment__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-success-payment__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-success-payment__content {
	background-image: url("../img/back-modal.png");
}

.modal-success-payment__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-success-payment__text {
	text-align: center;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-success-payment__text {
		width: calc(100% - 80px);
	}
}

.modal-cash-payment {
	display: none;
	max-width: 650px;
	max-height: 330px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-cash-payment.active {
	display: block;
}

.modal-cash-payment.before-enter, .modal-cash-payment.after-leave {
	opacity: 0;
}

.modal-cash-payment.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-cash-payment.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-cash-payment:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-cash-payment:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-cash-payment:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-cash-payment:after {
		top: 10px;
		left: 10px;
	}
}

.modal-cash-payment__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-cash-payment__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-cash-payment__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-cash-payment__content {
	background-image: url("../img/back-modal.png");
}

.modal-cash-payment__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-cash-payment__text {
	text-align: center;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-cash-payment__text {
		width: calc(100% - 80px);
	}
}

.modal-map {
	display: none;
	max-width: 650px;
	max-height: 660px;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal-map.active {
	display: block;
}

.modal-map.before-enter, .modal-map.after-leave {
	opacity: 0;
}

.modal-map.enter {
	animation: .25s ease-out modalOpacity 1;
}

.modal-map.leave {
	animation: .25s ease-out modalOpacity 1 reverse;
}

.modal-map:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-color: #0facd0;
}

@media screen and (max-width: 576px) {
	.modal-map:before {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
	}
}

.modal-map:after {
	position: absolute;
	content: '';
	cursor: pointer;
	top: 20px;
	left: 20px;
	width: 11px;
	height: 11px;
	background-image: url("../img/close-white.svg");
}

@media screen and (max-width: 576px) {
	.modal-map:after {
		top: 10px;
		left: 10px;
	}
}

.modal-map__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50px;
	right: 0;
	box-sizing: border-box;
	height: calc(100% - 50px);
	min-height: 578px;
	width: calc(100% - 50px);
	padding: 80px 0 70px;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
}

@media screen and (max-width: 576px) {
	.modal-map__content {
		top: 30px;
		height: calc(100% - 30px);
		width: calc(100% - 30px);
		padding: 40px 0 30px;
	}
}

.webp .modal-map__content {
	background-image: url("../img/back-modal.webp");
}

.no-webp .modal-map__content {
	background-image: url("../img/back-modal.png");
}

.modal-map__title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 36px;
	text-align: center;
}

.modal-map .text-input {
	background: transparent;
	width: calc(100% - 200px);
}

@media screen and (max-width: 576px) {
	.modal-map .text-input {
		width: calc(100% - 80px);
	}
}

.modal-map input.text-input {
	margin-bottom: 10px;
}

.modal-map textarea.text-input {
	margin-bottom: 30px;
	flex-grow: 1;
	resize: none;
}

.sites-block{
  margin-left: auto;
}

.sites-block{
  margin-left: auto;
  margin-right: 50px;
}

.sites-block{
  margin-left: auto;
  position: relative;
}
.sites-block__top{
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  color: #151a51 !important;
  text-transform: capitalize;
}
.sites-block__top .sites-block__arr{
  margin-right: 10px;
  max-width: 10px;
  transform: rotate(90deg);
  height: 22px;
}
.sites-block__body{
  position: absolute;
  top: 100%;
  right: -17px;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #eee;
  width: 175px;
  min-width: 175px;
  padding: 12.6px 14px;
  display: none;
}
.sites-block__body-el{
  font-weight: 500;
  color: #151a51 !important;
  border-bottom: 1px solid #fff;
  transition: .2s;
  font-size: 11.2px;
  display: block;
  width: 100%;
  margin-bottom: 9.1px;
  line-height: 1;
  font-size: 14px;
  text-transform: capitalize;
}
.sites-block__body-el:last-child{
  margin-bottom: 0;
}

.active-city{
	color: #0facd0 !important;
}

.header-extended__wrapper .sites-block{
	margin: 0 auto;
	margin-bottom: 20px;
	display: none;
}

@media screen and (max-width: 700px){
	.sites-block{
		margin-right: 20px;
	}
}
@media screen and (max-width: 600px){
	.sites-block__body{
		right: 50%;
		transform: translateX(50%);
	}
}
@media screen and (max-width: 580px){
	.header-extended__wrapper .sites-block{
		display: block;
	}
}