@charset "UTF-8";

@font-face {
    font-family: "Segoe";
    src: url("/fonts/SegoeUI.woff2") format("woff2");
    font-style: normal;
    font-weight: normal;
} 

@font-face {
    font-family: "Handset Sans";
    src: url("/fonts/HandsetSansUI.otf");
    /*src: url("/fonts/HandsetSansUI.woff2") format("woff2");*/
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'awesome';
    src: url('/fonts/awesome.eot?66978316');
    src: url('/fonts/awesome.eot?66978316#iefix') format('embedded-opentype'),
         url('/fonts/awesome.woff?66978316') format('woff'),
         url('/fonts/awesome.ttf?66978316') format('truetype'),
         url('/fonts/awesome.svg?66978316#awesome') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "Handset Sans", Sans-Serif;
}

body {
    height: 100vh;
    background: linear-gradient(rgba(238, 245, 243, 0.95), rgba(238, 245, 243, 0.95)), url(img/bg_main.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

a {
    color: #444;
}

h1 {
    font-family: "Segoe", Sans-Serif;
    font-size: 32px;
    letter-spacing: -0.4px;
    margin-bottom: .65rem;
}

h2 {
    font-family: "Segoe", Sans-Serif;
    font-size: 24px;
}

.main {
    height: auto;
    background: url(img/bg_main.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.main h1 {
    color: #FFF;
    font-size: 132px;
    margin-bottom: 0;
}

.main p {
    color: #EEE;
    font-size: 28px;
    line-height: 1;
    margin-right: 7px;
}

.overflow {
    display: none;
}

.header {
    height: 74px;
    background: #FFF;
    padding: 0 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.3);
}

.header .container,
.header .container-fluid {
    display: flex;
    align-items: center;
}

.header .logo {
    height: 74px;
    background: no-repeat -6px center;
    color: #444;
    font-family: "Segoe", Sans-Serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    padding-left: 78px;
    padding-bottom: 4px;
    align-content: center;
    text-decoration: none;
}

.header .logo.vocal {
    background-image: url(img/logo_vocal.png);
}

.header .logo.acoustic {
    background-image: url(img/logo_acoustic.png);
}

.header .logo.electric {
    background-image: url(img/logo_electric.png);
}

.header .logo.piano {
    background-image: url(img/logo_piano.png);
}

.header .logo.drums {
    background-image: url(img/logo_drums.png);
}

.main .header {
    background: transparent;
    position: absolute;
    top: 30px;
    box-shadow: none;
}

.main .header .logo {
    display: none;
}

.menu {
    padding: 0 20px;
    margin: 0;
    display: flex;
}

.main .menu {
    padding: 18px 4px;
}

.mobile-menu {
    display: none;
}

.menu li a {
    border-top: 3px #FFF solid;
    border-bottom: 3px #FFF solid;
    color: inherit;
    text-decoration: none;
    transition: .5s;
}

.menu li a:hover {
    border-bottom: 3px #888 solid;
}

.main .menu li a {
    border-top: transparent;
    border-bottom: 3px transparent solid;
    color: #EEE;
}

.main .menu li a:hover {
    border-bottom: 3px #DDD solid;
}

.menu li {
    background: #FFF;
    font-size: 18px;
    padding: 10px 15px;
    list-style: none;
}

.main .menu li {
    background: transparent;
    font-size: 22px;
}

.breadcrumbs {
    color: #666;
    padding: 16px 0 12px;
}

.breadcrumbs a {
    color: #444;
}

.block {
    width: 80%;   
    overflow: hidden;
}

.marking::before {
    content: "";
    width: 18px;
    height: 18px;
    background: #12b6d7;
    margin-right: 8px;
    position: relative;
    top: 1px;
    display: inline-block;
}

.content {
    min-height: calc(100% - 306px);
    padding-bottom: 12px;
}

.reserve {
    padding-top: 8px;
    display: flex;
    gap: 20px;
}

.hidden {
    display: none !important;    
}

.modal-header {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ------------------------------- */
/* Стили для календаря ----------- */
/* ------------------------------- */

.calendar {
    width: 32%;
    height: 385px;
}

.calendar .month {
    background: #EEE;
    border: 1px #DDD solid;
	display: inline-block;
	display: none;
}

.calendar .month.active {
    display: block;
}

.calendar .month .calendar-month {
    background: #FFF;
    border-top: 4px #F33455 solid;
    color: #777;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 8px;
	text-align: center;
	display: flex;
    justify-content: space-between;
}

.calendar .month .calendar-month span {
    color: #F33455;
    font-family: Sans-Serif;
    font-size: 25px;
    line-height: 26px;    
    cursor: pointer;
    user-select: none;
    transition: .2s;
}

.calendar .month:first-of-type .calendar-month span:first-of-type,
.calendar .month:last-of-type .calendar-month span:last-of-type {
    color: #DDD;
}

.calendar .month .calendar-month span:hover {
    color: #cb0023;
}

.calendar .month .calendar-week {
    padding: 7px 20px 0;
}

.calendar .month .calendar-week span {
	width: calc(100% / 7);
	color: #F33455;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
}

.calendar .month .calendar-days {
    border-right: 1px #C7C7C7 solid;
    border-bottom: 1px #C7C7C7 solid;
	margin: 6px 12px 12px;
}

.calendar .month .calendar-days span {
	width: calc(100% / 7);
	height: 47px;
	border-top: 1px #C7C7C7 solid;
	border-left: 1px #C7C7C7 solid;
	color: #CCC;
	font-size: 18px;
	text-align: center;
	line-height: 45px;
	cursor: default;
	position: relative;
	display: inline-block;
    transition: .2s;
}

.calendar .month .calendar-days span.active {
	color: #666;
}

.calendar .month .calendar-days span.active:nth-child(7n - 1),
.calendar .month .calendar-days span.active:nth-child(7n) {
	color: #F66;
}

.calendar .date-disabled {
    color: #888 !important;
	background: #E5E5E5;
}

.calendar .date-enabled {
	background: #EFE;
	cursor: pointer !important;
}

.calendar .date-enabled:hover {
	background: #b5f7b5;
}

.calendar .selected,
.calendar .selected:hover {
	background: #d5e3fd;
    color: #444;
    cursor: default !important;
}

/* ------------------------------- */
/* Часы брони -------------------- */
/* ------------------------------- */

.times {
    width: 36%;
    border: 2px #CCC dashed;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.times:has(div) {
    background: #DDD;
    border: 1px #DDD solid;
    gap: 1px;
}

.times span {
    color: #888;
    font-family: Sans-Serif;
    font-size: 20px;
    padding-right: 10px;
    align-content: center;
}

.times span i[data-type="left"] {
    font-size: 27px;
    position: relative;
    top: 2px;
    left: -2px;
    animation: arrow-left 1s ease-in-out infinite;
}

@keyframes arrow-left {
    0% {left: -2px}
    50% {left: 3px}
    100% {left: -2px}
}

.times span i[data-type="up"] {
    display:  none;
}

.times .times-today,
.times .times-tomorrow {
    background: #EEE;
}

.times .times-date {
    width: 100%; 
    background: #FFF;
    border-top: 4px #F33455 solid;
    color: #777;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.times .times-date div:last-of-type {
    color: #222;    
    font-size: 15px;
    font-weight: normal;
    align-content: center;
}

.times .slots {
    margin: 12px;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
}

.times .slot {
    width: calc((100% - 8px) / 3);
    height: 35px;
	background: #EEE;
    color: #AAA;
    font-size: 15px;
    text-align: center;
    line-height: 35px;
    cursor: default;
    position: relative;
    display: inline-block;
    transition: .2s;
}

.times .slot.free {
	background: #EFE;
    color: #666;
    cursor: pointer;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.times .slot.free:hover {
	background: #b5f7b5;
}

.times .slot.selected {
	background: #d5e3fd;
    color: #444;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
	position: relative;
    top: -1px;
    left: -1px;
}

.times .slot.selected:hover {
	background: #bad2fd;
}

/* ------------------------------- */
/* Форма брони ------------------- */
/* ------------------------------- */

.form {
    width: 32%;
    border: 2px #CCC dashed;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.form:not(:has(div.hidden)) {
    background: #DDD;
    border: 1px #DDD solid;
    flex-direction: column;
    justify-content: flex-start;
}

.form span {
    color: #888;
    font-family: Sans-Serif;
    font-size: 20px;
    padding-right: 10px;
    align-content: center;
}

.form span i[data-type="left"] {
    font-size: 27px;
    position: relative;
    top: 2px;
    left: 0;
    animation: arrow-left 1s ease-in-out infinite;
}

.form span i[data-type="up"] {
    display:  none;
}

.form .form-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form .form-datetime {
    width: 100%; 
    background: #FFF;
    border-top: 4px #F33455 solid;
    color: #777;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 8px;
    text-align: center;
}

.form .form-body {
    height: 100%;
    background: #EEE;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form .form-body .form-fields,
.form .form-body .form-submits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form .form-body .form-submits {
    gap: 12px;
}

.form .form-body .form-label {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    padding-left: 2px;
    margin-bottom: 4px;
}

.form .form-body .form-label sup {
    color: #F44;
    padding-left: 4px;
}

.form .form-body label {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    padding-left: 2px;
    padding-right: 10px;
    margin-bottom: 4px;
}

.form .form-body input[type=text] {
    width: 100%;
    height: 40px;
    background: #F5F5F5;
    border: 1px #DDD solid;
    color: #444;
    padding: 2px 10px;
    outline: none;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.form .form-body input[type=text]:focus {
	box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.2);
}

.form .form-payments {
    margin: 4px 0 16px;
}

.form .form-body input[type=radio] {
    width: 17px;
    height: 17px;
    margin-right: 2px;
    position: relative;
    top: 3px;
}

.form .form-body label:has(input[disabled]) {
    color: #BBB;
}

.form .form-body button {
    width: 100%;
    height: 38px;
    background: #EFE;
    border: 1px #0dc50d solid;
    color: #444;
    transition: .2s;
}

.form .form-body button:hover {
    background: #0dc50d;
    color: #FFF;
}

.form .form-body button:disabled {
    background: #DDD;
    border: 1px #CCC solid;
    color: #AAA;
}

.form .agreements label {
    font-weight: normal;
    padding-right: 0;
    margin-bottom: 0;
}

.form .agreements input {
    width: 17px;
    height: 17px;
    margin-right: 6px;
    position: relative;
    top: 3px;
}

.form .agreements label img {
    display: none;
}

/* ------------------------------- */
/* Скидки и акции ---------------- */
/* ------------------------------- */

.promo-list {
    padding-top: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-list-element {
    display: flex;
    gap: 12px;
}

.promo-list-element img {
    border-radius: 4px;
}

.promo-element {
    padding-top: 8px;
    display: flex;
    gap: 18px;
}

.promo-date {
    margin-left: -2px;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
}

.promo-date .icon-calendar {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    top: -1px;
    margin-right: 3px;
}

.promo-date .icon-eye {
    font-size: 17px;
    line-height: 16px;
    position: relative;
    left: 1px;
    margin-right: 0px;
}

/* ------------------------------- */
/* Пагинация --------------------- */
/* ------------------------------- */

.pagination {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
}

.pagination a {
    background: #12b6d7;
    border: 1px #12b6d7 solid;
    color: #FFF;
    padding: 2px 8px;
    text-decoration: none;
}

.pagination:not(:has(a)) {
    display: none;
}

.pagination span {
    border: 1px #CCC solid;
    padding: 2px 8px;
}

.pagination span:first-of-type {
    border: 1px transparent solid;
    border-left: none;
    padding: 2px 2px 2px 0;
}

.pagination a[id=id_next],
.pagination a[id=id_prev] {
    display: none;
}

/* ------------------------------- */
/* Контакты ---------------------- */
/* ------------------------------- */

.contacts {
    padding-top: 8px;
    display: flex;
    gap: 26px;
}

.contacts-map {
    width: 45%;
    border: 4px #FFF solid;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    position: relative;
}

.contacts-block {
    display: flex;
    flex-direction: column;
}

.contacts-info {
    margin-left: -5px;
    display: flex;
    gap: 16px;
}

.contacts-contact {
    font-size: 18px;
}

.contacts-contact .icon-location {
    position: relative;
    top: -2px;
}

.contacts-contact .icon-phone {
    position: relative;
    left: 1px;
}

.contacts-socials {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.contacts-additional {
    margin-bottom: 10px;
}

.contacts-additional p {
    margin-bottom: 0.6rem;
}

.contacts .metro {
    width: 15px;
    height: 15px;
    color: #FFF;
    font-size: 12px;
    line-height: 13px;
    text-align: center;
    position: relative;
    top: -2px;
    border-radius: 100%;    
    display: inline-block;
}

.contacts .metro.blue {
    background: #0070bf;
}

.contacts .metro.mck {
    background: #ff4c4c;
}

/* ------------------------------- */
/* Стили для футера -------------- */
/* ------------------------------- */

.footer {
    width: 100%;
    height: 180px;
    background: #333;
    font-size: 12px;
    color: #EEE;
    padding: 18px 0 8px;
}

.footer .container,
.footer .container-fluid {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.footer a {
    color: #FFF;
}

.footer a img {
    display: none;
}

.footer .common-data {
    width: 100%;
    height: 105px;
    border-bottom: 1px #555 solid;
    display: flex;
    align-self: flex-start;
    gap: 70px;
}

.footer .footer-logo-wrap {
    margin-top: -2px;
    flex-grow: 1;
}

.footer .footer-logo a {
    font-family: "Segoe", Sans-Serif;
    font-size: 34px;
    line-height: 33px;
    text-decoration: none;
    display: block;
}

.footer .footer-logo span {
    font-size: 11px;
}

.footer .footer-logo-wrap .footer-contacts {
    display: none;
}

.footer .footer-menu div {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer .footer-menu ul {
    padding-left: 0;
}

.footer .footer-menu ul li {
    list-style: none;
}

.footer .footer-contacts {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer .footer-contacts .footer-socials {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.footer .footer-contacts .footer-phone,
.footer .footer-contacts .footer-email {
    background-position: right center;
    background-size: 17px;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: bold;
    padding-right: 26px;
    display: flex;
    justify-content: flex-end;
}

.footer .footer-contacts .footer-phone {
    background-image: url(/img/phone_icon.png);
}

.footer .footer-contacts .footer-email {
    background-image: url(/img/email_icon.png);
}

.footer .footer-contacts .footer-phone a,
.footer .footer-contacts .footer-email a {
    text-decoration: none;
}

.footer .personal-data {
    display: flex;
}

.footer .personal-data span {
    color: #BBB;
    padding: 0 10px;
}

.footer .copyrights {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer .hostCMS,
.footer .hostCMS a {
    color: #BBB;
}

.main .footer {
    height: auto;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.main .footer .common-data {
    display: none;
}

/* ------------------------------- */
/* Иконки ------------------------ */
/* ------------------------------- */

.phone-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' viewBox='0 0 50 50'%3E%3Cpath fill='%23FFFFFF' transform='translate(14 3)' d='M0 0c3.5 3.4 5.8 7.5 6.4 12.3-.1.9-.2 1.8-.4 2.7-.4 3.9-.4 3.9 1.5 5.6l1.5 1.4v2c.6.3 1.2.6 1.8.9l6.2 3.1.9-1c4.7-.8 7.1.5 10.9 3 1.4 1 2.8 2 4.1 3-.3 3.7-.6 6.3-2.6 9.4-3.5 2.2-6.5 2.2-10.4 1.6C8.4 39.9-3.5 27.6-9.4 17c-1.9-4.3-2.4-7.4-1.6-12C-8.2 1.1-4.8-.7 0 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.email-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath fill='%23FFFFFF' transform='translate(0 7)' d='M0 0h50v36H0V0zm22 23v1h6v-1h-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.telegram-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='1.027' y1='1000.583' x2='1.027' y2='999.59' gradientTransform='matrix(1000 0 0 -1000 -526.945 1000583)'%3E%3Cstop offset='0' stop-color='%232aabee'/%3E%3Cstop offset='1' stop-color='%23229ed9'/%3E%3C/linearGradient%3E%3Ccircle cx='500' cy='500' r='500' fill='url(%23a)'/%3E%3Cpath fill='%23fff' d='M226.3 494.7c145.8-63.5 243-105.4 291.6-125.6 138.9-57.8 167.7-67.8 186.5-68.1 4.1-.1 13.4 1 19.4 5.8 5.1 4.1 6.5 9.6 7.1 13.5s1.5 12.8.8 19.7c-7.5 79.1-40.1 270.9-56.6 359.5-7 37.5-20.8 50-34.2 51.3-29 2.7-51.1-19.2-79.2-37.6-44-28.8-68.9-46.8-111.6-75-49.4-32.5-17.4-50.4 10.8-79.6 7.4-7.6 135.3-124 137.8-134.6.3-1.3.6-6.2-2.3-8.8s-7.2-1.7-10.4-1c-4.4 1-74.7 47.5-210.9 139.4-20 13.7-38 20.4-54.2 20-17.9-.4-52.2-10.1-77.7-18.4-31.3-10.2-56.2-15.6-54-32.8 2.2-17.3 14.6-26.5 38.2-35.9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%2325D366' d='M500 0C223.9 0 0 223.9 0 500c0 90.8 24.2 176 66.6 249.5L0 1000l259.8-61.4C331.1 977.7 412.9 1000 500 1000c276.1 0 500-223.9 500-500S776.1 0 500 0zm0 910.4c-83.6 0-161.3-25-226.1-67.9l-153.5 39.1 43-146.7C116.9 668.4 89.6 587.4 89.6 500c0-226.7 183.8-410.4 410.4-410.4S910.4 273.3 910.4 500 726.7 910.4 500 910.4zm117.2-344.4l121 57c5.5 2.6 9.1 8.3 8.6 14.4-1.3 15.9-7.7 47.8-36.3 76.4-80.7 80.7-225.7-10.6-231.6-14.1-35.6-19.2-69.5-44.8-101.6-76.9-32.1-32.1-57.8-66-76.9-101.6-3.5-5.9-94.9-150.9-14.1-231.6 28.6-28.6 60.5-35 76.4-36.3 6.1-.5 11.7 3 14.4 8.6l57 121c2.7 5.7 1.5 12.5-3 17l-42.5 42.5c-9.2 9.2-11.9 23.5-5.6 34.9 15.5 27.8 36.4 54.6 60.5 79.3 24.7 24.2 51.5 45 79.3 60.5 11.4 6.3 25.7 3.6 34.9-5.5l42.5-42.5c4.5-4.5 11.3-5.7 17-3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.max-icon {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cdefs%3E%3ClinearGradient id='a'%3E%3Cstop offset='0' stop-color='%234cf'/%3E%3Cstop offset='.662' stop-color='%2353e'/%3E%3Cstop offset='1' stop-color='%2393d'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='117.847' x2='1000' y1='760.536' y2='500' gradientUnits='userSpaceOnUse' href='%23a'/%3E%3ClinearGradient id='b'%3E%3Cstop offset='0' stop-color='%2300f'/%3E%3Cstop offset='1' stop-opacity='0'/%3E%3C/linearGradient%3E%3CradialGradient id='d' cx='-87.392' cy='1166.116' r='500' fx='-87.392' fy='1166.116' gradientTransform='rotate(51.356 1551.478 559.3) scale(2.42703 1)' gradientUnits='userSpaceOnUse' href='%23b'/%3E%3C/defs%3E%3Crect width='1000' height='1000' fill='url(%23c)' ry='249.681'/%3E%3Crect width='1000' height='1000' fill='url(%23d)' ry='249.681'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M508.2 878.3c-75 0-109.8-11-170.4-54.7-38.4 49.2-159.7 87.8-165 21.9 0-49.5-11-91.3-23.4-136.9-14.7-56.2-31.5-118.8-31.5-209.5 0-216.6 177.7-379.6 388.4-379.6 210.8 0 375.9 171 375.9 381.6.7 207.3-166.6 376.1-373.9 377.2m3.1-571.6c-102.6-5.3-182.5 65.7-200.2 177-14.6 92.2 11.3 204.4 33.4 210.3 10.6 2.5 37.2-19 53.8-35.6a189.8 189.8 0 0092.7 33c106.3 5.1 197.1-75.8 204.2-182 4.2-106.3-77.7-196.4-184-202.6z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.telegram-desktop {
    display: block;
}

.telegram-mobile {
    display: none;
}

/* ------------------------------- */
/* Стили для адаптива ------------ */
/* ------------------------------- */

@media (max-width: 1399px) {

    h1 {
        font-size: 30px;
    }
    
    .main h1 {
        font-size: 112px;
    }
    
    .main p {
        font-size: 24px;
    }
    
    .main .menu li {
        font-size: 20px;
        padding: 10px 12px;
    }
    
    .reserve {
        gap: 12px;
    }
    
    .calendar {
        height: 350px;
    }    

    .calendar .month .calendar-days {
        margin: 6px 10px 10px;
    }

    .calendar .month .calendar-week {
        padding: 10px 10px 0;
    }
    
    .calendar .month .calendar-week span {
        font-size: 13px;
    }
    
    .calendar .month .calendar-month,
    .times .times-date,
    .form .form-datetime {
        font-size: 17px;
        padding: 8px;
    }
    
    .calendar .month .calendar-days span {
        height: 42px;
        font-size: 17px;
        line-height: 42px;
    }
    
    .times .times-date {
        padding: 8px 18px;
    }

    .times .slots {
        margin: 9px 10px 10px;
    }
    
    .times .slot {
        height: 32px;
        line-height: 32px;
    }
    
    .form .form-body {
        padding: 10px 15px;
    }
    
    .form .form-payments {
        margin: 2px 0 10px;
    }    

    .form .form-body .form-fields {
        gap: 8px;
    }    
    
    .form .form-body .form-submits {
        gap: 10px;
    }    

    .contacts {
        gap: 22px;
    }

    .contacts-map {
        width: 42%;
    }    
    
    .contacts-contact {
        font-size: 17px;
    }

    .footer .common-data {
        gap: 60px;
    }

    .footer .footer-contacts {
        padding-left: 10px;
    }

}

@media (max-width: 1199px) {

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 26px;
    }

    .main h1 {
        font-size: 80px;
    }
    
    .main p {
        font-size: 17px;
        margin-right: 6px;
    }
    
    .main .menu {
        padding: 5px 0;
    }
    
    .main .menu li {
        font-size: 17px;
        padding: 10px;
    }
    
    .menu li {
        font-size: 17px;
    }
    
    .breadcrumbs {
        padding: 16px 0 10px;
    }
    
    .content {
        min-height: calc(100% - 303px);
    }
    
    .reserve {
        gap: 10px;
    }
    
    .calendar {
        height: 305px;
    }
    
    .calendar .month .calendar-month,
    .times .times-date,
    .form .form-datetime {
        height: 38px;
        font-size: 15px;
        line-height: 24px;
        padding: 4px 5px;
    }
    
    .calendar .month .calendar-week {
        padding: 5px 10px 0;
    }
    
    .calendar .month .calendar-days {
        margin: 4px 10px 10px;
    }
    
    .calendar .month .calendar-week span {
        font-size: 12px;
    }
    
    .calendar .month .calendar-days span {
        height: 37px;
        font-size: 15px;
        line-height: 37px;
    }
    
    .times span,
    .form span {
        font-size: 18px;
        padding-right: 14px;
    }
    
    .times .times-date {
        padding: 4px 13px;
    }

    .times .times-date div:last-of-type {
        font-size: 13px;
    }

    .times .slots {
        margin: 10px;
        gap: 3px;
    }

    .times .slot {
        height: 28px;
        font-size: 13px;
        line-height: 28px;
    }
    
    .form .form-datetime {
        flex-shrink: 0;
    }
    
    .form .form-body {
        padding: 8px 10px 9px;
    }
    
    .form .form-body .form-label {
        font-size: 13px;
        margin-bottom: 2px;
    }    
    
    .form .form-body input[type=text] {
        height: 34px;
    }
    
    .form .form-payments {
        margin: 1px 0 10px;
    }
    
    .form .form-body .form-submits {
        gap: 6px;
    }
    
    .form .form-body button {
        height: 36px;
    }
    
    .form .agreements label {
        font-size: 12px;
    }
    
    .form .agreements input {
        width: 16px;
        height: 16px;
    }
    
    .contacts {
        gap: 20px;
    }

    .contacts-map {
        width: 35%;
    }

    .contacts-contact {
        font-size: 16px;
    }

    .contacts-socials {
        margin-top: 8px;
        margin-bottom: 10px;
        gap: 10px;
    }

    .contacts-additional {
        margin-bottom: 5px;
    }

    .footer .common-data {
        gap: 50px;
    }

    .footer .footer-contacts {
        padding-left: 0;
    }

}

@media (max-width: 991px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: .6rem;
    }
    
    .main h1 {
        font-size: 70px;
    }
    
    .main p {
        font-size: 15px;
        margin-right: 5px;
    }
    
    .main .menu {
        padding: 5px 0;
        flex-direction: column;
        gap: 0;
    }
    
    .main .menu li {
        font-size: 20px;
        padding: 8px;
    }
    
    .header {
        height: 60px;
    }

    .header .logo {
        height: 60px;
        background-size: 44px;
        font-size: 28px;
        padding-left: 44px;
    }

    .menu {
        padding: 0;
        gap: 15px;
    }

    .menu li {
        font-size: 15px;
        padding: 0;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .breadcrumbs {
        padding: 15px 0 8px;
    }
    
    .content {
        min-height: calc(100% - 284px);
    }

    .reserve {
        padding-top: 2px;
        flex-direction: column;
        gap: 10px;
    }    
    
    .calendar,
    .times,
    .form {
        width: 100%;
        height: auto;
    }

    .calendar .month .calendar-month,
    .times .times-date,
    .form .form-datetime {
        height: 45px;
        font-size: 16px;
        padding: 2px 6px 4px;
        display: flex;
        align-items: center;
    }
    
    .calendar .month .calendar-week {
        padding: 5px 10px 0;
    }    

    .calendar .month .calendar-week span {
        font-size: 13px;
    }    

    .calendar .month .calendar-days {
        margin: 4px 10px 10px;
    }
    
    .calendar .month .calendar-days span {
        height: 40px;
        font-size: 16px;
        line-height: 39px;
    }
    
    .times {
        border: none;
    }
    
    .times span {
        color: #444;
        font-size: 16px;
        padding-right: 0;
    }

    .times span i[data-type="left"] {
        display: none;
    }
    
    .times span i[data-type="up"] {
        height: 20px;
        font-size: 27px;
        text-align: center;
        position: relative;
        top: -10px;
        animation: arrow-up 1s ease-in-out infinite;
        display: block;
    }
    
    @keyframes arrow-up {
        0% {top: -10px}
        50% {top: -15px}
        100% {top: -10px}
    }

    .times .times-date {
        padding-left: 13px;
        padding-right: 13px;
    }
    
    .times .slots {
        margin: 8px;
        gap: 4px;
    }
    
    .times .slot {
        height: 33px;
        font-size: 14px;
        line-height: 33px;
    }
    
    .form {
        border: none;
    }
    
    .form .form-datetime {
        justify-content: center;
    }

    .form span {
        color: #444;
        font-size: 16px;
        padding-right: 0;
    }

    .form span i[data-type="left"] {
        display: none;
    }
    
    .form span i[data-type="up"] {
        height: 20px;
        font-size: 27px;
        text-align: center;
        position: relative;
        top: -10px;
        animation: arrow-up 1s ease-in-out infinite;
        display: block;
    }

    .form .form-body {
        padding: 15px;
    }
    
    .form .form-body .form-fields {
        gap: 10px;
    }

    .form .form-body .form-label {
         font-size: 14px; 
         margin-bottom: 4px; 
    }
    
    .form .form-body input[type=text] {
        height: 40px;
    }
    
    .form .form-payments {
        margin: 2px 0 15px;
    }

    .form .form-body .form-submits {
        gap: 10px;
    }
    
    .form .form-body button {
        height: 38px;
    }
    
    .form .agreements label {
        font-size: 14px;
    }
    
    
    .promo-element img {
        width: 250px;
    }
    
    .contacts {
        padding-top: 6px;
        flex-direction: column;
        gap: 12px;
    }
    
    .contacts-map {
        width: 100%;
        border: 2px #FFF solid;
    }
    
    .contacts-map iframe {
        height: 300px;
    }
    
    .contacts-info {
        margin-left: 0;
        flex-direction: column;
        gap: 4px;
    }
    
    .contacts-contact {
        font-size: 16px;
    }
    
    .contacts-contact:has(.icon-location) {
        margin-left: -5px;
    }

    .contacts-contact:has(.icon-phone) {
        margin-left: -4px;
    }

    .contacts-contact:has(.icon-mail) {
        margin-left: -1px;
    }
    
    .contacts-socials {
        gap: 10px;
    }
    
    .footer .common-data {
        gap: 18px;
    }
    
    .footer .personal-data span {
        display: none;
    }
    
    .footer .personal-data {
        flex-direction: column;
    }
    
}

@media (max-width: 767px) {
    
    p {
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .marking::before {
        width: 16px;
        height: 16px;
    }
    
    dl, ol, ul {
        margin-bottom: 10px;
    }

    .header {
        height: 50px;
        padding: 0;
    }
    
    body:not(.main) {
        margin-top: 50px;
    }
    
    body:not(.main) .header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    .header .logo {
        height: 50px;
        background: none !important;
        font-size: 26px;
        font-weight: normal;
        padding-left: 0;
        padding-bottom: 2px;
    }

    .main h1 {
        font-size: 90px;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .main p {
        font-size: 21px;
        margin-right: 0;
    }
    
    .main .header {
        position: absolute;
        top: 200px;
        left: 0;
        right: 0;
    }
    
    .header .container {
        position: relative;
    }

    .mobile-menu {
        font-size: 32px;
        text-decoration: none;
        display: block;
        position: absolute;
        top: 0;
        right: 5px;
    }
    
    .mobile-menu.icon-phone {
        font-size: 30px;
        top: 4px;
        right: 50px;
    }
    
    .main .mobile-menu {
        display: none;
    }

    body:has(.mobile-menu.active) .overflow {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.2);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        display: block;
    }
    
    .mobile-menu.active + .menu {
        background: #FFF;
        padding: 8px 30px 8px 5px;
        position: absolute;
        top: 52px;
        right: 0;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 0;
        box-shadow: 4px 4px 15px 0 rgba(0,0,0,0.3);
    }

    .mobile-menu.active + .menu li {
        background: transparent;
        padding: 10px 15px;
    }
    
    .mobile-menu.active + .menu li a {
        background: transparent;
        border: none;
        font-size: 21px;
    }
    
    .menu {
        display: none;
    }

    .main .menu {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .main .menu li {
        font-size: 32px;
        text-align: center;
        padding: 10px 0;
    }
    
    .main .menu li a {
        color: #FFF;
        border: none;
    }

    .main .menu li a:hover {
        border: none;
    }

    .main .content {
        min-height: 0;
    }
    
    .block {
        width: 100%;
    }
    
    .breadcrumbs {
        padding: 14px 0 6px;
    }
    
    .promo-list {
        padding-top: 6px;
    }

    .promo-element {
        padding-top: 6px;
        flex-direction: column;
    }
    
    .promo-date {
        margin-bottom: 8px;
    }
    
    .btn.btn-secondary {
        padding-bottom: 7px;
    }
    
    .footer {
        height: auto;
        font-size: 14px;
    }
    
    .footer .hostCMS {
    }

    .footer .common-data {
        height: auto;
        padding-bottom: 24px;
        margin-bottom: 20px;
        flex-direction: column;
    }
    
    .footer .footer-logo-wrap  {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
 
    .footer .footer-logo div {
        font-size: 41px;
        line-height: 40px;
    }
    
    .footer .footer-logo span {
        font-size: 13px;
    }

    .footer .footer-logo-wrap .footer-contacts {
        padding-left: 0;
        margin-top: 6px;
        display: flex;
    }

    .footer .footer-menu div {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .footer .footer-menu ul {
        margin-bottom: 0;
    }
    
    .footer .footer-contacts {
        display: none;
    }

    .footer .personal-data {
        width: 100%;
        text-align: right;
        display: flex;
    }

    .footer .copyrights {
        width: 100%;
        text-align: right;
        margin-top: 16px;
    }

    .main .footer .copyrights {
        margin-top: 4px;
    }
    
    .telegram-desktop {
        display: none;
    }
    
    .telegram-mobile {
        display: block;
    }

}