@charset "UTF-8";

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Medium.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roboto Mono";
	src: url("../fonts/RobotoMono-Thin.woff2") format("woff2");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	75%,
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
}

:root {
	--color-green: #01b988;

	--color-green-dark: #344938;

	--color-pink: #ff7bab;

	--color-red: #f00;

	--font-inter: "Inter", sans-serif;

	--font-roboto: "Roboto", sans-serif;

	--font-inika: "Inika", sans-serif;
}

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active,
:focus-visible,
a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	scroll-behavior: smooth;
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	min-height: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input:read-only {
	cursor: unset;
}

button {
	cursor: pointer;
	background: transparent;
	border: none;

}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

* {
	-webkit-tap-highlight-color: transparent !important;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	scrollbar-gutter: stable;
	font-family: var(--font-inter);
}

body.lock {
	overflow: hidden;
}
.hidden{
	display: none !important;
}

.input{
	background: #ffffff;
    border-radius: 3px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.019em;
    text-align: center;
    color: #757575;
    width: 100%;
    padding: 10px ;
}

.textarea{
	padding: 10px;
}

.textarea::placeholder{
	opacity: 0.5;
	font-size: 14px;
}

.wrapper {
	position: relative;
	min-width: 320px;
	min-height: 100%;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.page {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.main-sticker {
	position: absolute;
	top: 0;
	left: -83px;
	width: 242px;
	height: 170px;
	z-index: 1;
	background: url("../images/main-sticker.svg") center no-repeat;
	background-size: 100%;
}

.main-sticker svg {
	width: 100%;
	height: 100%;
}

.popup {
	font-family: "Inter", sans-serif;
}

.popup {
	position: fixed;
	inset: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	transform: scale(1.5);
	transition: opacity 0.15s, transform 0.15s ease;
	z-index: -1;
	pointer-events: none;
}

.booking-popup_map .popup__body{
	display: flex;
}

.popup.active {
	opacity: 1;
	pointer-events: all;
	transform: scale(1);
	z-index: 3;
}

.popup.active .popup__body{
	display: flex;
}

.popup__window {
	background: #e6e6e6;
	height: 100%;
	width: 100%;
	overflow-y: auto;
}

.popup__window_interval{
	display: none;
}

.popup__header {
	border-bottom: 1px solid #cbcbcb;
	padding: 12px 15px;
}

.popup__window_interval[data-type="month"] .popup__body-top,
.popup__window_interval[data-type="month"] button.editInterval,
.popup__window_interval[data-type="everyDay"] .popup__body-top{
	display: none;
}


.popup__back-btn, .popup__window_interval-btn {
	display: flex;
	align-items: center;
	gap: 7.5px;
	color: #757575;
	font-family: var(--font-inter);
	font-size: 14px;
	font-weight: 400;
	line-height: 30px;
}

.popup__body, .popup__body-interval {
	/* display: flex; */
	display: none;
	flex-direction: column;
	padding: 20px;
	transition: all .3s ease-in;
}


.popup__body-interval {
	display: flex;
}

.popup__body_add .booking-popup__interval{
	display: none;
}

.booking-popup__interval{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.booking-popup__interval-month, .booking-popup__interval-everyday, .booking-popup__interval-dates  {
	justify-content: center;
	align-items: center;
	gap: 15px;
}




.popup__body-top {
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	/* gap: 15px; */
}

.popup__window_interval[data-interval-window] .popup__body-top{
	gap: 15px;
}


.popup__body[data-booking="edit"] .registration__form fieldset{
	gap: 10px;
}

.popup__body-top_interval-list {
	flex-direction: row-reverse;
	margin-bottom: 20px;
	justify-content: space-between;
}

.popup__body-interval-slider{
	position: relative;
	margin-bottom: 30px;
	padding: 0 15px;
	/* display: flex;
	align-items: center;
	position: relative;
	height: 20px; */
}
.popup__body-interval-slider .noUi-horizontal .noUi-handle {
	width: 40px;
}

/* input[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;

	outline: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
}

input[type="range"]::-webkit-slider-runnable-track{
	-webkit-appearance: none;
	height: 20px;
}

input[type="range"]::-moz-range-track{
	-moz-appearance: none;
	height: 20px;
}

input[type="range"]::-webkit-slider-thumb{
	pointer-events: auto;
} */

/* input[type="range"]::-moz-range-thumb{
	pointer-events: auto;
}  */


.popup__title-icon{
	display: flex;
}
.popup__title-edit{
	margin-bottom: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;	
}


.popup__subtitle {
	/* flex: 1 1 100%; */
	font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    /* text-align: center; */
    
}
.popup__subtitle_wait {
	color: #FF7BAB;
}
.popup__subtitle_cancel {
	color: #e30052;
}

.title {
	font-family: var(--font-inter);
	color: var(--color-green-dark);
	font-size: 24px;
	font-weight: 700;
	line-height: 39px;
	letter-spacing: -0.022em;
	text-align: center;
}

.button {
	display: block;
	background: #01b988;
	border-radius: 3px;
	color: #ffffff;
	font-family: var(--font-inter);
	font-size: 14px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.266px;
	text-align: center;
	padding: 10px 25px;
	cursor: pointer;
	width: 100%;
}

.button_gray {
	display: block;
	background: #cbcbcb;
	color: #757575;
	font-family: var(--font-inter);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	text-align: center;
	border-radius: 3px;
	padding: 10px 25px;
	transition: all 0.15s ease;
	cursor: pointer;
}

.button_pink {
	background: #ff7bab;
}

.button_gray:hover {
	background: #ff7bab;
	color: #ffffff;
}

.button_telegram {
	
	height: 46px;
	margin: 0 auto 10px;

	
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #fff;
	border: 1px solid #29A0D3;
	padding: 0 20px 0 15px;
	color: #757575;

	text-align: center;
	border-radius: 3px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #757575;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

}

.button_telegram-blue {
	background-color: #29A0D3;
	color: #fff;
}


.select2 {
	min-width: 100%;
}

.select2.select2-container--default .select2-selection--single {
	font-family: var(--font-inter), sans-serif;
	border: none;
	padding: 7px 9px;
	min-height: 40px;
	border-radius: 3px;
	color: #757575;
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
}

.select2-container .select2-dropdown {
	border: none;
	border-radius: 3px;
}

.select2-container .select2-dropdown * {
	font-family: var(--font-inter), sans-serif;
	color: #757575;
	background: #ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
}

.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-radius: 3px;
}

.search-result,
.select2-results {
	border-radius: 3px;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.search-wrapper {
	position: relative;
	margin-top: 10px;
	margin-bottom: 25px;
}

.search-wrapper >.form-field {
	display: flex;
	align-items: center;
	gap: 10px;
}


.search-wrapper >.form-field button {
	flex: 0;
	padding: 10px;
}


.search-result {
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: var(--font-inter), sans-serif;
	color: #757575;
	background: #ffffff;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
	max-height: 300px;
	overflow-y: auto;
	transition: all 0.15s ease;
}

.search-result li {
	cursor: pointer;
}

.search-result li > * {
	pointer-events: none;
}

.search-result.opened {
	padding: 15px;
}

.select2-dropdown .select2-results__option {
	padding: 6px 16px;
	border-bottom: 1px solid #d9d9d9;
}

.loader {
	position: fixed;
	inset: 0;
	height: 100%;
	width: 100%;
	background: #e6e6e6;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.loader.loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.2s ease;
}

.loader__spin {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: relative;
	animation: rotate 1s linear infinite;
}

.loader__spin::before,
.loader__spin::after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #fff;
	animation: prixClipFix 2s linear infinite;
}

.loader__spin::after {
	inset: 8px;
	transform: rotate3d(90, 90, 0, 180deg);
	border-color: var(--color-green);
}

.date-field {
	cursor: pointer !important;
}

.actions {
	position: relative;
	background: #e6e6e6;
	min-height: 100vh;
	font-family: "Inter", sans-serif;
}

.actions__title {
	color: var(--color-green-dark);
	font-size: 26px;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: -0.5px;
	text-align: center;
	margin-bottom: 7px;
}

.actions__container {
	padding-top: 75px;
}

.object-screen .popup__header {
	position: absolute;
	width: 100%;
	height: 55px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.form-field {
	width: 100%;
}

.form-field .err, div.done{
	margin: 5px 0;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
	text-align: center;
	background: #eefbf4;
	line-height: 2.5;
	justify-content: center;
}


.form-field label {
	display: block;
	margin-bottom: 7px;
	color: #acacac;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.3px;
	margin-bottom: 4px;
}

.form-field textarea,
.form-field input, 
.booking-request__bill-cancel textarea,
.modal-telegram__option input, .captcha .captcha-cont input, .password-empty input {
	min-height: 35px;
	min-width: 0;
	max-width: 100%;
	width: 100%;
	border-radius: 3px;
	color: #757575;
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
	padding: 7px 9px;
	border: 1px solid #e6e6e6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #aeaeae;
}

.form-field textarea {
	max-width: 100%;
	max-height: 250px;
}

.form-field > div {
	display: flex;
	align-items: center;
	gap: 7px;
}

.form-field select {
	bottom: 0;
	left: 30px;
}

.form-field >:not(.form-field_textarea-descr span) div span {
	color: #757575;
	font-family: var(--font-inter);
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
}

.field-label {
	color: #acacac;
	font-family: var(--font-inter);
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
	margin-bottom: 10px;
}

.registration__form_final{
	margin-top: 30px;
}

.registration__switch {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 10px;
}

.registration__switch input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.registration__switch label {
	text-align: center;
	flex: 1 0 48%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	background: #b2b2b2;
	color: #1e1e1e;
	font-family: "Inika", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	padding: 10px;
	min-height: 30px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.registration__switch label:hover,
.registration__switch input:checked + label {
	background: #ff7bab;
}

.booking__interval-list {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(3, 1fr);
}

.booking__interval-list_edit{
	padding: 0px 20px 0px 20px
	
}

.booking__interval-item{
	position: relative;
}



.booking__interval-empty {
	grid-column: 1/-1;
	height: 150px;


	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	justify-content: center;
}

.booking__interval-empty p {
	/* text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.304px;
	color: #f25a68; */

	text-align: center;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
}

.booking__interval-empty button,
.booking__interval-empty-day p {

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 0 20px;
	height: 46px;
	font-weight: 400;
	font-size: 14px;
	/* line-height: 214%; */
	color: #757575;

	border: 1px solid #cbcbcb;
	border-radius: 3px;

	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	background: #fff;

}

.booking__interval-empty button  span {
	flex: 0 0 13px;
	display: flex;
}

.booking__interval-item input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.booking__interval-item label, 
.booking__interval-item button:not(.delete-time_interval),
 .interval-list__curren-time button:not(.delete-time_interval){
	position: relative;
	display: block;
	background: #01b988;
	border-radius: 3px;
	padding: 7px 2px;
	color: #ffffff;
	text-align: center;
	font-family: var(--font-inter);
	font-size: 12px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.304px;
	cursor: pointer;
}

.booking__interval-item-busy label{
	background: #cbcbcb;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: center;
	color: #757575;
	pointer-events: none;
}

.booking__interval-item button{
	width: 100%;
	font-size: 14px;
}


.booking__interval-count{
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	border-radius: 50%;
	background-color: #e5f0a9;

	letter-spacing: -0.02em;
	color: #757575;
	line-height: 1;
}


.booking__interval-count span:first-child{
	
	font-weight: 400;
	font-size: 15px;
}

.booking__interval-count span:last-child{

	font-weight: 500;
	font-size: 8px;

}





.booking__interval-item input:disabled + label {
	background: rgba(255, 0, 0, 0.3);
}

.booking__interval-item input:checked + label {
	background-color: #ffb3b3;
}

.toast-container {
	z-index: 3;
	font-family: var(--font-inter);
	font-size: 14px;
	font-weight: 500;
	line-height: 130%;
}

.toast_success {
	background-color: var(--color-green) !important;
}

.toast_danger {
	background-color: #f25a68 !important;
}

.toast {
	transition: all 0.15s ease !important;
}

.toast:not(.toast_show) {
	display: block !important;
	transform: translate3d(calc(100% + 15px), 0, 0);
}

.toast.toast_show {
	transform: translate3d(0, 0, 0);
}

.tabs ul {
	scroll-snap-type: x mandatory;
}

.tabs ul li {
	transition-property: transform;
}

.tab-content {
	display: none;
	transition: opacity 0.2s ease;
}

.tab-content.active {
	display: block;
	animation: fadein 0.2s;
}

section.gray {
	background: #e6e6e6;
}

.callback {
	flex-grow: 1;
	padding: 60px 0;
}

.callback form,
.callback form fieldset {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.callback form p {
	display: block;
	font-size: 16px;
	margin: 35px auto;
	text-align: center;
}

.booking-request:not(:last-of-type) {
	margin-bottom: 15px;
}

.booking-request__container {
	border-radius: 3px;
	background: #d9d9d9;
	padding-top: 25px;
	padding-bottom: 25px;
}

.booking-request__container_confirmed {
	background-color: #01b9881a;
}

.booking-request__container_confirmed .booking-request__info p span,
.booking-request__container_cancel .booking-request__info p span {
	color: #313333;
	font-weight: 700;
}

.booking-request__container_cancel {
	background-color: #ff00004d;
}

.booking-request__title {
	margin-bottom: 17px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 18px;
}

.booking-request__title .icon-label {
	width: 25px;
	height: 25px;
	flex-shrink: 0;
}

.booking-request__message,
.booking-request__content {
	color: #000000;
	font-family: var(--font-inter);
	font-size: 18px;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.342px;
}

.booking-request__message {
	text-align: center;
	margin-top: 30px;
}

.booking-request__decr {
	margin-bottom: 30px;
}

.booking-request__info p span {
	color: #ff7bab;
}

.booking-request__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 70px;
	padding-left: 12px;
	padding-right: 12px;
	flex-wrap: wrap;
}

.booking-request__actions button {
	flex: 1 0 48%;
}

.booking-request_subscribe{
	margin-top: 30px;
}

.booking-request_subscribe-btn {
	background: #9962db;
}

.booking-request_confirmed .booking-request__actions,
.booking-request_cancel .booking-request__actions {
	justify-content: center;
}

.booking-request_confirmed .booking-request__content,
.booking-request_cancel .booking-request__content {
	color: #757575;
}

.booking-request_confirmed .booking-request__info p span,
.booking-request_cancel .booking-request__info p span {
	color: #313333;
	font-weight: 700;
}

.booking-request_confirmed .booking-request__container {
	background: rgba(1, 185, 136, 0.1);
}

.booking-request_cancel .booking-request__container {
	background: rgba(255, 0, 0, 0.3);
}

.booking-request_confirmed .booking-request__actions button,
.booking-request_cancel .booking-request__actions button {
	flex: 0 0 auto;
	padding-left: 12px;
	padding-right: 12px;
}

.popup__body-list {
	position: relative;
}
.interval-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.interval-list__item {
}
.interval-list__date {
    color: var(--color-green);
    font-size: 16px;
    font-weight: 700;

	margin-bottom: 10px;
}
.interval-list__block {

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.interval-list__curren-time {
	flex: 0 1 30%;
}

.interval-list__curren-time button{
	width: 100%;
	font-size: 14px;
}
.interval-list__btns {
	display: flex;
	gap: 15px;
}

.interval-list__btns button {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.interval-list__btns img {
	width: 100%;
	height: 100%;
}

.modal-edit, .modal-action, .modal-telegram, .modal-requests {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.modal-requests {
	z-index: 2;
}

.modal-edit.hidden, .modal-action.hidden, .modal-telegram.hidden, .modal-requests.hidden {
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}

.modal-edit.hidden .modal-edit__content,
 .modal-action.hidden .modal-action__content,
 .modal-telegram.hidden .modal-telegram__content,
 .modal-requests.hidden .modal-requests__content {
	transform: translateY(-100%);
	opacity: 0;
}

.modal-edit__body,
 .modal-action__body, 
 .modal-telegram__body,
 .modal-requests__body {
	min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px;
}
.modal-edit__content, 
.modal-action__content, 
.modal-telegram__content,
.modal-requests__content {
	max-width: 390px;
	position: relative;
	width: 100%;
	padding: 20px ;
	/* display: flex;
	gap: 40px;
	align-items: center; */
	transition: all 0.6s ease-in;
	background-color: #e5e5e5;

	transform: translateY(0);
	opacity: 1;
}

.modal-requests__content{
	max-width: 480px;
	background-color: #fff;
}


.modal-edit__btn-close, .modal-action__btn-close, .modal-telegram__btn-close, .modal-requests__btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
}
.modal-edit__btn-close img, 
.modal-action__btn-close img, 
.modal-telegram__btn-close img,
.modal-requests__btn-close img {
	width: 100%;
	height: 100%;
}

.modal-edit__content-btns, .modal-telegram__content-btns{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.modal-edit__content-btns button, .modal-telegram__content-btns button{
	flex: 0 1 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-edit__content-title, .modal-action__title, .modal-telegram__content-title{
	text-align: center;
	margin-bottom: 30px;
}

.modal-edit__content-block{

	margin-bottom: 30px;
	align-items: center;
	display: none;
	gap: 10px;
}

.modal-edit__content-block input[type='text'] {
    background: #ffffff;
    border-radius: 3px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.019em;
    text-align: center;
    color: #757575;
    height: 30px;
    width: 100%;
    padding: 10px 15px;
}


.modal-telegram__content {
	padding-top: 40px;
}

.modal-telegram__options {
	margin-bottom: 20px;
}

.modal-telegram__btn-close {
	width: 30px;
	height: 30px;
}
.modal-telegram__title {
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
	line-height: 1.3;
	  font-weight: 700;

}
.modal-telegram__options {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.modal-telegram__option {
}



.modal-telegram__option-title {
	margin-bottom: 20px;
	display: block;
	text-align: center;
    /* color: var(--color-green-dark); */
    font-size: 16px;
    /* font-weight: 700; */
    line-height: 1.3;
    letter-spacing: -0.572px;
}

.modal-telegram__option-title a:visited{
	color: inherit;
}

.modal-telegram__option-title a {
	color: #0d99ff !important;
}



.modal-telegram__option-video {

}
.modal-telegram__option-video  video{
	height: 500px;
	width: 100%;
}
.modal-telegram__content-btns {
}







.ui-timepicker-container{
	z-index: 100 !important;
}
.ui-timepicker-standard {
    border: none !important;
    border-radius: 3px !important;
    color: #757575 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 150% !important;
    letter-spacing: -0.342px !important;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    margin-top: 5px !important;
}


/* Стоимость */

.booking-popup__cost {
	margin-bottom: 10px;
}

.booking-popup__cost button{
	width: 100%;
}

.booking__list-cost{
	
}

.booking__list-cost .set-interval{
	background-color: #fff;
	padding: 5px 20px;
}


.booking__list-cost-wrapper{
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #fff;
	position: relative;
}

.booking__list-cost-wrapper label {
	display: flex;
	align-items: center;
	gap: 20px;
}
.booking__list-cost-wrapper label span{
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.342px;
	flex: 0 1 70%;
}

.booking__list-cost-wrapper label input {
	flex: 0 1 30%;

	background: #ffffff;
    border-radius: 3px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.019em;
    text-align: center;
    color: #757575;
    width: 100%;
    padding: 10px ;

	background: #e6e6e6;
}


.booking__list-cost-wrapper_add{
	display: none;
}

.booking__list-cost-wrapper_add[data-type="storeRoom"] {}


/* .user > a[href="/map/"] {

} */

a[data-map="booking-map"], 
button[data-map="booking-map"] {
	border-radius: 0;
	/* border: 4px solid #17ffb9; */

	max-width: 310px;
	height: 52px;
	margin: 0 auto 10px;
	border: 3px solid #27e7b3;
	
	font-weight: 700;
	font-size: 16px;
	text-shadow: 0 2px 4px  rgba(0, 0, 0, 0.25);

	display: flex;
	align-items: center;
	justify-content: center;
}


/* popup на карте */

.popup__window_send-interval{
	display: none;
}

.popup__body-interval {
}
.popup__body-interval-date {
}



.popup__body-interval-wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
}
.popup__body-interval-cost,
.popup__body-interval-cost-total,
.popup__body-interval-cost-key {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.572px;
}

.popup__body-interval-cost{
	margin-bottom: 15px;
}

.popup__body-interval-date{
	width: 70%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.active-data {
	background-color:var(--color-green);
	color: #fff;
}

.hide-fileds .booking__list-cost-wrapper label:nth-child(2),
.hide-fileds .booking__list-cost-wrapper label:nth-child(3){
	display: none;
}

.hide-fileds  .editInterval,
.hide-fileds .popup__body-top_interval-list {
	display: none;
}


/* .hide-fileds #addInterval, .hide-fileds #showIntervals,.hide-fileds .booking-popup__interval{
display: none;
} */


.button-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;

	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05;
	color: #3F82A8;
	background-color: #fff;
	height: 40px;
	border-bottom: 1px solid #3F82A8;

	position: relative;

	padding: 0 40px;
}

.button-tab.active .button-tab-arrow {
	transform: rotate(180deg);
}

.button-tab-arrow{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background-color: #3F82A8;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: transform .3s ease-in;
}


.booking-popup__interval-wrapper {
	padding: 10px 0;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.booking-popup__interval-wrapper >p {
	padding: 15px;
	max-width: 300px;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #757575;
}

.booking-popup__interval-wrapper ul:not(.booking__interval-tooltip-list) {
	/* padding: 0 20px; */
	display: block;
	/* width: 100%; */
}

.booking-popup__interval-wrapper ul li.booking__interval-item button {

	font-weight: 500;
	font-size: 13px;

	letter-spacing: -0.02em;
	text-align: center;

	padding: 7px 10px;
}


.booking-popup__interval-title{
	max-width: 110px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin-bottom: 10px; */


    /* font-size: 18px;
    font-weight: 700;
    color: #ce2994; */

	font-weight: 700;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: -0.02em;

	color: #757575;
}

.booking__interval-list_center{
	display: flex;
	/* align-items: center; */
	justify-content: center;
	flex-wrap: wrap;
}
.booking__interval-list_center li {
	/* flex: 0 1 35%; */
	flex: 0 0 calc(33% - 15px);
}

.registered-cancel {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.registered-cancel_done .registered-cancel__wrapper {
	background: #eefbf4;
}	

.registered-cancel_done .registered-cancel__decor span {
	border: 3px solid #01b988;;
}
.registered-cancel_done  .registered-cancel__decor span::before{
	bottom: unset;
	top: -4px;
}

.registered-cancel__wrapper{
	background: #ffe6e6;
	border-radius: 3px;
	padding: 5px 15px;
	display: flex;
	align-items: center;
	gap: 25px;

}

.registered-cancel__decor{
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}




.registered-cancel__decor span {
	position: relative;
	width: 27px;
	height: 27px;
	background-color: #fff;
	border: 3px solid #FF7BAB;
	border-radius: 50%;
}

.registered-cancel__decor span::before {
	content: '';
	width: 28px;
	height: 14px;
	background-color: #fff;
	/* border-radius: 50%; */

	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	

}

.registered-cancel__wrapper p {
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
}

.registered-cancel a {
	
}



.popup__body-interval-label{
	margin-bottom: 10px;
	text-align: center;
	font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.572px;

}

.notify-text{
	margin-top: 15px;
	font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.572px;
	color: #4e5793;
	text-align: center;
}

.list-errors{
	margin: 0 auto 0px auto;
	max-width: 350px;
	width: 100%;
	display: none;
}

.list-errors p {
	margin-bottom: 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 120%;
}

.list-errors ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	/* height: 100px; */
	/* overflow-y: auto; */
}
.list-errors li {
	padding: 10px;
	font-size: 14px;
	color: #fff;
	background-color: #f25a68;
	position: relative;
}

.list-errors li.done{
	background-color: var(--color-green);
}

/* .modal-action .list-errors{
	padding-right: 10px;
	display: block;
}
.modal-action .list-errors ul {
	height: auto;
} */


li.cancel-reserve {
	margin-bottom: 20px;
	padding: 20px 15px;
	border-radius: 3px;
	background: #fff;
	position: relative;
}

li.cancel-reserve::after{
	content: '';
	width: 0;
	height: 0;
	/* background-color: #fff; */
	position: absolute;
	bottom: -10px;
	left: 6%;

	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	
	border-top: 11px solid #fff;
}


li.cancel-reserve p {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: center;
	color: #344938;
}
li.cancel-reserve button {
	max-width: 175px;
	margin: 0 auto;
	background: #cbcbcb;
	padding: 10px;
}


.popup__window_send-interval .popup__body-top{
	margin-bottom: 0;
}

.delete-error{

	display: flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #c4df3b;

	position: absolute;
	top: -12px;
	right: -12px;
}

.delete-error img {
	width: 22px;
}



.icon-label {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin-left: auto; */
    
    /* color: #757575; */
	/* color: #fff; */
    /* font-family: var(--font-inika);
    font-size: 12px;
    font-weight: 400;
    padding: 1px 10px;
    border-radius: 3px; */
}

.popup__title-edit .icon-label{
	flex-shrink: 0;
}

.icon-label_confirmed{
	background: #c4df3b;
}
.icon-label_wait{
	background: var(--color-pink);
	/* color: #fff; */
}
.icon-label_cancel {
	background: #fe015d;
}

.booking-popup__place{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}
.booking-popup__place-wrapper {
	font-size: 22px;
	display: flex;
	flex-direction: column;

}




.booking-popup__squire{
	font-weight: 700;
	color: #757575;
	font-size: 22px;
	line-height: 1.2;
}


.list-object__item-btns {
	
	margin-left: auto;
	display: flex;
	align-items: center;
	
	gap: 5px;
}

.list-object__item-btns .icon-label{
	flex-shrink: 0;
}

.list-object__item-btns p {

	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: center;
	color: #FF7BAB;
}

/* .list-object__item-btns .icon-label {
	max-width: 110px;
	width: 100%;
} */

.title-complex{
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.title-complex__wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.title-complex__wrapper .button_gray {
	padding: 10px;
}


.title-complex__btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.title-complex__parking {
}
.title-complex__storeroom {
}

#sliderInterval2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* z-index: -1; */
}
.busy-time{
	position: absolute;
	top: 1px;
	left: 31%;
	right: 32%;
	height: 16px;
	background-color: #d26045;

}

#sliderInterval2 .noUi-handle{
	display: none;
}

#sliderInterval2 .noUi-connect {
	background-color: red;
}


.button-datepicker {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #4eb5e6;

	color: #fff;
}

.button-datepicker_left {

}

/* .booking-popup__interval-dates .booking__interval-list_edit{
	padding: 0;
} */
.popup__body-interval-month{
	padding: 15px;
	background-color: #fff;
	/* height: 55px; */
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;

	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
}
.popup__body-interval-month span {
	/* text-decoration: underline; */
	color: #3f82a8;
}

.popup__body-interval-month span b {
	color: #000;

}

.popup__body-header {
	margin-bottom: 0;
}
.popup__body-header, .popup__body-form-date {
	padding: 10px 20px 0;
	gap: 20px;
	border-bottom:  1px solid #cbcbcb;
}
.popup__heading, .booking-list .popup__heading {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #757575;
}

.popup__body_p0{
	padding: 0;
}

.popup__body-header .popup__title {
	justify-content: center;
}

.popup__body-form-date .popup__heading{
	margin-bottom: 20px;
} 

.popup__body-form-date .popup__body-interval-date input,
.popup__body-interval-date input, 
 .popup__body-interval-wrapper input{
font-weight: 700;
font-size: 20px;
line-height: 1.5;
letter-spacing: -0.02em;
color: #000;
}

.booking-list{
	padding: 20px;
}

.booking-list label {
	font-weight: 500;
font-size: 16px;
line-height: 1.5;
letter-spacing: -0.02em;
text-align: center;
}

.busy-interval-list{
	padding: 0 20px;
}


.month-rent {
	margin: 0 20px;
	padding: 0 10px;
	display: none;
	align-items: center;
	justify-content: center;

	background: rgba(1, 185, 136, 0.1);
	height: 320px;
	position: relative;
}
.month-rent__text {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;

	display: flex;
	flex-direction: column;
	gap: 2px;

	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
	color: #000;
}

.day-wrapper{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.notify__list_all{
	padding-top: 30px;
}


.telegram-binding {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.telegram-binding__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.telegram-binding__title {
	display: flex;
	align-items: center;
	gap: 15px;

	font-weight: 400;
	font-size: 18px;
	line-height: 144%;
	color: #bfe0f0;
}
.telegram-binding__title span:last-child{
	flex: 0 0 30px;
}

.button_telegram {
}
.telegram-binding__text {
	font-weight: 400;
	font-size: 10px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
}

.telegram-binding__warn {
	display: flex;
	/* align-items: center; */
	gap: 30px;
}
.telegram-binding__warn p{
	position: relative;
	padding: 15px 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.62;
	color: #000;
	background: rgba(255, 123, 171, 0.1);
	border-radius: 3px;
}

.telegram-binding__warn p::after{
	content: '';
	position: absolute;
	top: 30%;
	right: -25px;
	/* width: 25px; */
	/* height: 25px; */
	/* background: rgba(255, 123, 171, 0.1); */
	border-top: 13px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 25px solid rgba(255, 123, 171, 0.1);
}

.telegram-binding__warn span {
	flex: 0 0 40px;
	transform: translateY(25%);	
}

.telegram-binding__text {
}


.booking-only-month label[for="dateType_perday"],
.booking-only-month label[for="dateType_days"],
.booking-only-month label[for="dateType_Ndays"]{
	display: none;
}

.booking-storeroom .booking-list legend,
.booking-storeroom .busy-interval-list{
	display: none !important;
}

.houseComplex-empty {
	margin-bottom: 10px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.houseComplex-empty p{
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #757575;
}


.message-recover-pass{
	padding: 30px 20px;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #757575;

}

.recovery-password {
	margin: 30px 0;
}

.add-address{
	display: none;
	padding: 30px 0 50px;
	
}
.add-address__wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.add-address__wrapper input[name="nameOfParking"] {
	display: none;
}


.add-address__wrapper_rc .select-wrapper {
	pointer-events: none;
	opacity: 0.5;
}

.add-address__wrapper_rc .add-address__wrapper-select button {
	background-color: #ff7bab;
}

.add-address__wrapper_rc input[name="nameOfParking"]{
	display: block;
}


.add-address__wrapper .form-field:last-child{
	margin-bottom: 10px;
}


.add-address__wrapper-select {
	display: flex;
	align-items: center;
	gap: 15px;
}

.add-address__wrapper-select .select-wrapper {
	flex: 0 1 calc(70% - 15px);
	
}

.add-address__wrapper-select button{
	flex: 0 1 calc(30% - 15px);
	
}

.captcha .captcha-cont{
	display: flex;
	
	gap: 5px;
}

.new-password {
	margin: 30px 0;
	font-size: 25px;
	padding: 0 20px;
	font-weight: 700;
	color: #000;
}
.new-password i {
	color: #27e7b3;
}

.password-empty {
	margin: 30px auto;
	display: flex;
	flex-direction: column;
	gap: 10px;

	font-size: 20px;
	color: #000;
}

.password-empty label {
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.password-empty__title {
	font-size: 24px;
	margin: 20px 0;
}


.booking__interval-tooltip {
	background: #d9d9d9;

	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #757575;

	display: flex;
	flex-direction: column;
	/* align-items: center; */
	/* justify-content: center; */

	padding: 5px 5px 5px 13px;

	position: relative;
}

.booking__interval-tooltip::before {
	content: '!';
	position: absolute;
	left: -12.5px;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	background-color: #FF7BAB;
	color: #fff;
}

.booking__interval-tooltip > span {
	font-size: 8px;
	align-self: flex-start;
	margin-bottom: 3px;
}

.booking__interval-tooltip {
	border-radius: 3px;
}

.booking__interval-tooltip-list {

  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  position: relative;
}


.booking__interval-tooltip-list li {
	flex: 0 1 auto;
	position: relative;
}


.set-interval label {
	color: #000;
	font-weight: 400;
	font-size: 14px;
}

.set-interval label span {
	font-weight: 500;
}


.popup__body-available-key {
	display: none;
	max-width: 320px;
	width: 100%;
	margin: 0 auto;
	position: relative;

	margin-bottom: 20px;
}

.popup__body-available-key span {
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background-color: #64BBE8;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.popup__body-available-key span img {
	transform: translateX(5px);
	width: 100%;
}


.popup__body-available-key p {

	padding: 5px 5px 5px 35px;
	background-color: #BFE0F0;

	font-family: var(--font-family);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #757575;
	border-radius: 3px;
}

.free-cost {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);

	display: flex;
	align-items: center;
	justify-content: center;

}
.free-cost__text {
	color: #05cd98;
	letter-spacing: 16px;
	font-size: 26px;
	transform: rotate(45deg);
	font-weight: 700;
}


@media (max-width: 480px) {
	.modal-telegram__body{
		padding: 0;
	}
	.modal-telegram__content{
		width: 100%;
		max-width: 100%;
	}

	.captcha .captcha-cont{
		flex-direction: column;
	}
}




@media (max-width: 420px) {
	.booking__interval-list{
		grid-template-columns: repeat(2, 1fr);
	}

	.booking__interval-list_center li {
		flex: 0 1 calc(50% - 15px);
	}

	.booking__interval-tooltip-list li {
		flex: 0 1 auto;
	}
}

@media (min-width: 440px) {
	.booking-request__title{
		font-size: 26px;
	}
}


@media (min-width: 400px) {

	.title {
		font-size: 26px;
	}

	.booking-request__title{
		font-size: 20px;
	}

	.booking__interval-item label {
		font-size: 16px;
	}
}
