@font-face {
    font-family: 'Circe';
    src: url('./fonts/CirceBold.woff2');
    src: url('./fonts/CirceBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: url('./fonts/CirceLight.woff2');
    src: url('./fonts/CirceLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/**
 * Remodal (popup window styles)
 */
html.remodal_lock,
body.remodal_lock {
    overflow: hidden;
}

.remodal,
[data-remodal-id] {
    visibility: hidden;
}

a.callhref,
a.callhref:focus,
a.callhref:after,
a.callhref:hover {
    text-decoration: none;
    color: inherit;
}

.remodal-overlay {
    bottom: 0;
    display: none;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    webkit-overflow-scrolling: touch;
    z-index: 10000;
}

.remodal-overlay:after {
    content: '';
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
}

.remodal-overlay > * {
    webkit-transform: translateZ(0);
}

.remodal-bg {
    transition: filter .2s linear;
    transition: -webkit-filter .2s linear, filter .2s linear;
}

body.remodal_active .remodal-bg {
    filter: blur(3px);
    moz-filter: blur(3px);
    ms-filter: blur(3px);
    webkit-filter: blur(3px);
}

.remodal-overlay {
    background-color: rgba(32, 93, 99, 0.94);
    opacity: 0;
    transition: opacity .2s linear;
}

body.remodal_active .remodal-overlay {
    opacity: 1;
}

.remodal {
    display: inline-block;
    position: relative;
    background-clip: padding-box;
    box-shadow: 0 0 8px #171a24;
    box-sizing: border-box;
    color: #182a3c;
    font-size: 16px;
    ms-transform: scale(.95);
    transform: scale(.95);
    transition: transform .2s linear;
    transition: -webkit-transform .2s linear;
    webkit-transform: scale(.95);
    margin: 60px auto;
    width: 888px;
    height: 732px;

    text-align: left;
}

body.remodal_active .remodal {
    ms-transform: scale(1);
    transform: scale(1);
    webkit-transform: scale(1);
}

.remodal,
.remodal-overlay:after {
    vertical-align: middle;
}

.remodal-close {
    transition: background .2s linear;
    background-color: #00c6b7;
    border: none;
    border-radius: 50%;
    left: initial;
    position: absolute;
    text-decoration: none;
    top: -19px;
    right: -19px;

    width: 37px;
    height: 37px;

    text-align: center;
}

.remodal-close:after {
    transition: all .2s linear;
    color: #fff;
    content: "x";
    cursor: pointer;
    display: block;
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
}

.remodal-close:hover {
    text-decoration: none;
}

.remodal .inner {
    width: 888px;
    height: 650px;
    padding-left: 30px;
    padding-top: 30px;
}

.remodal.remodal-sushi .inner {
    background: url('../img/modal-sushi-bg.jpg') 0 0 no-repeat;
}

.remodal.remodal-coffee .inner {
    background: url('../img/modal-coffee-bg.jpg') 0 0 no-repeat;
}

.remodal .header {
    text-transform: uppercase;
    color: #00c6b7;
    font-weight: bold;
    font-size: 57px;
    text-align: left;
    margin-top: 0;
    line-height: 1;
}

.remodal .description {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 0;
}

.remodal .ending {
    text-transform: uppercase;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #00c6b7;
    padding: 20px 0;
}

.remodal .line {
    color: #fff;
    padding: 15px 20px 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.remodal .line1 {
    background: url('../img/modal-2line-bg.png') 0 0 no-repeat;
    padding: 30px 20px 30px;
}

.remodal .line2 {
    background: url('../img/modal-2line-bg.png') 0 0 no-repeat;
}

.remodal .line3 {
    background: url('../img/modal-3line-bg.png') 0 0 no-repeat;
}

.remodal .line strong {
    color: #00c6b7;
}

.remodal .line strong.time {
    font-size: 18px;
}

/**
 * Support classes
 */
.vam {
    vertical-align: middle;
}

/**
 * General styles
 */
body {
    color: #626262;
    background: url('../img/bg.png') 0 0 repeat;
    font-family: 'Ubuntu', sans-serif;
}

input:focus,
input:active {
    outline: none;
}

input[type="text"],
input[type="tel"],
textarea {
    background-color: #fff;
    border: none;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    box-shadow: none;
    display: block;
    padding: 1em 2em;
    width: 100%;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #65cb1c;
    border: none;
    border-radius: 28px;
    color: #fff;
    display: block;
    font-size: 25px;
    font-weight: bold;
    padding: .4em;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

input[type="submit"]:hover,
input[type="submit"]:active {
    background-color: #18b173;
}

input[type="radio"] {
    margin-right: 10px;
    vertical-align: middle;
    display: none;
}

.radio {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 1em;
}

.radio + .radio {
    margin-left: 2em;
}

.radio label {
    margin-left: .4em;
}

.radio label:before {
    position: absolute;
    left: 0;
    top: 4px;
    content: '';
    width: 14px;
    height: 14px;
    background: url('../img/radio.png') 0 0 no-repeat;
}

.radio input[type="radio"]:checked + label:before {
    background: url('../img/radio-checked.png') 0 0 no-repeat;
}

label {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

label + label {
    margin-left: 40px;
}

.remodal .title {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 0;
}

.contacts-form input[type="text"],
.contacts-form input[type="tel"] {
    background-color: #fff;
    border: none;
    border-radius: 28px;
    box-shadow: none;
    display: block;
    padding: .5em 1em;
    width: 100%;
    font-size: 16px;
}

.has-error input[type="text"],
.has-error input[type="tel"] {
    border: 3px solid red;
}

.error {
    color: red;
}

.contacts-form input[type="submit"] {
    background-color: #65cb1c;
    border: none;
    border-radius: 28px;
    color: #fff;
    display: block;
    font-size: 25px;
    font-weight: bold;
    padding: .4em;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.container {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    width: 1200px !important;
}

.sheet {
    background-color: #fff;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 115px;
}

.sheet.bg-trees:before {
    content: '';
    position: absolute;
    left: -120px;
    top: -306px;
    background: url('../img/bg-trees.png') 0 0 no-repeat;
    width: 1388px;
    height: 304px;
    z-index: -10;
}

.site-section {
    margin-bottom: 70px;
    margin-left: 55px;
    margin-right: 55px;
    overflow-x: hidden;
    text-align: center;
}

.site-section:focus {
    outline: none;
}

.site-section:after {
    display: table;
    content: '';
    clear: both;
}

.site-section .section-header {
    display: inline-block;
    position: relative;
    margin-top: 2em;
    margin-bottom: 1.4em;

    color: #141516;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.site-section .section-header:before {
    content: '';
    position: absolute;
    left: -390px;
    top: -30px;
    width: 360px;
    height: 74px;
    background: url('../img/header-leaf-before.png') 0 0 no-repeat;
}

.site-section .section-header:after {
    content: '';
    position: absolute;
    right: -390px;
    top: -30px;
    width: 359px;
    height: 74px;
    background: url('../img/header-leaf-after.png') 0 0 no-repeat;
}

/**
 * *********** ************ ************** **************** **************
 */

.main-heading {
    width: 1088px;
    height: 66px;
    margin: 70px auto;
    padding: 0 1em;
    border-radius: 33px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);

    font-size: 30px;
    line-height: 66px;
    color: #1e1e1e;
    font-weight: 300;
    text-transform: uppercase;
}

.main-heading .phone {
    padding-left: 290px;
}

.main-heading .phone:before {
    background: url('../img/phone-ico.png') 0 0 no-repeat;
    content: '';
    display: inline-block;
    width: 23px;
    height: 25px;
    left: -20px;
    position: relative;
}

.logo-bl-container {
    background: #00b0a3 url('../img/logo-bl.png') center center no-repeat;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    left: 50%;
    margin-left: -76px;
    position: absolute;
    z-index: 10;
    top: 30px;
}

nav {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #00b0a3;
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

nav.sticky {
    border-bottom: none;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
}

nav a {
    color: inherit;
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
}

nav a:last-child {
    margin-right: 0;
}

nav a:last-child:after {
    display: none;
}

nav a:first-child {
    margin-left: 0;
}

nav a:hover,
nav a.active {
    color: #acf33c;
    text-decoration: none;
}

nav a:focus {
    color: inherit;
    text-decoration: none;
}

nav a:after {
    background-color: #acf33c;
    content: '';
    display: block;
    height: 44px;
    position: absolute;
    right: -24px;
    top: -6px;
    width: 1px;
}

nav.sticky a:after {
    height: 35px;
    top: -4px;
}

.action {
    background: url('../img/offer-bg-new-edit.jpg') 0 0 no-repeat;
    background-size: contain;
    background-origin: border-box;
    margin-bottom: 35px;
    min-height: 571px;
    padding: 0 55px;
    position: relative;
}

.action .circle {
    color: rgb(24 153 60);
    font-size: 2.1rem;
    font-weight: 600;
    text-align: center;
    font-family: Circe;
    margin-block: 0;
    line-height: 1.1;
}

.action .circle .tariff {
    --fontSize: 10rem;
    font-size: var(--fontSize);
    margin-block: 0;
}

.action .circle .rub {
    --fontSize: 5rem;
    font-size: var(--fontSize);
    margin-block: 0;
    margin-bottom: 10px;
}

.action .circle .stopCheck {
    --fontSize: 2.4rem;
    font-size: var(--fontSize);
    margin-block: 0;
    margin-bottom: 10px;
}

.action .circle-main {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-103%);
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 275px;
    max-height: 265px;
}

.action .circle-secondary {
    position: absolute;
    top: 50%;
    left: 32.5%;
    transform: translateX(-130%);
    width: 100%;
    height: 100%;
    max-width: 110px;
    max-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.action .circle-secondary .date {
    --fontSize: 2.25rem;
    font-size: var(--fontSize);
}

.action .offer-text {
    float: left;
    width: 55%;
    margin-top: 50px;
    color: #fff;
    font-size: 43px;
    font-weight: bold;
    text-transform: uppercase;
}

.action .offer-text strong {
    color: #acf33c;
    font-size: 65px;
}

.action .offer-form {
    border: 1px solid #fff;
    float: left;
    margin-top: 56px;
    margin-left: 3%;
    padding: 35px 30px 30px;
    width: 40%;
    border-radius: 40px;
    background-clip: padding-box;
}

.page-hero {
    width: 48%;
    margin-left: auto;
    /* padding: 20px; */
    font-family: Circe;
    padding-left: 10px;
    padding-top: 50px;
}

.page__pre-title {
    color: #18993C;
    font-weight: 800;
    font-size: 3.5rem;
}

.page__title {
    color: #18993C;
    font-weight: 800;
    white-space: nowrap;
    font-size: 3.2rem;
}

.page__title-wrapper {
    width: 105%;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-bottom: 35px;
}

.page-hero__list {
    color: #585858;
    font-weight: 300;
    font-size: 2.7rem;
}

.map-section {
    min-height: 716px;
}

.map-section .map-container {
    float: left;
    margin-left: 30px;
    width: 44%;
}


#bookButtonTop {
    margin-bottom: 3em;
}

.book-btn .btn {
    background-color: #65cb1c;
    border: none;
    border-radius: 28px;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    padding: .5em 1.8em;
}

.book-btn .btn + .btn {
    margin-left: 3em;
}

.book-btn .btn:hover {
    background-color: #18b173;
}


.floor-btns {
    text-align: left;
    margin-left: 10px;
}

.floor-btns .btn {
    background: none;
    padding: .5em 1.8em;
    text-transform: uppercase;
    color: #131515;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #02b0a1;
    border-radius: 25px;
    box-shadow: none;
}

.floor-btns .btn + .btn {
    margin-left: 2em;
}

.floor-btns .btn.active,
.floor-btns .btn:hover {
    outline: none;
    background-color: #02b0a1;
    color: #fff;
}

.floor-btns .btn:focus {
    outline: none;
}

.map-section .floor-container {
    position: relative;
    display: none;
    min-height: 288px;
}

.map-section .floor-container.default {
    display: block;
}

.map-section .map {
    margin-top: 3em;
    position: relative;
}

.map p.label {
    position: absolute;
    margin: 0;
    text-transform: uppercase;
    color: #00a987;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.map p.label.active {
    color: #fff;
}

.map p.label.black {
    color: #000;
}

#cabinet {
    top: 35px;
    left: 20px;
}

#fireplace {
    top: 35px;
    left: 125px;
}

#wc {
    top: 60px;
    left: 250px;
}

#striped {
    top: 35px;
    left: 300px;
}

#bar {
    top: 175px;
    left: 60px;
}

#meeting_room {
    top: 5px;
    left: 8px;
}

#winter {
    position: absolute;
    top: 160px;
    left: 148px;
}

#spring {
    position: absolute;
    top: 160px;
    left: 243px;
}

#autumn {
    position: absolute;
    top: 230px;
    left: 148px;
}

#summer {
    position: absolute;
    top: 230px;
    left: 245px;
}

#hall {
    top: 175px;
    left: 330px;
}

#bordo {
    top: 100px;
    left: 13px;
}

#main {
    top: 100px;
    left: 143px;
}

#lazure {
    top: 100px;
    left: 323px;
}

#wc2 {
    top: 16px;
    left: 263px;
}

.map-section .map-legend {
    margin-right: 30px;
    padding: 28px 0;
    border-bottom: 1px dotted #00aba1;
    text-align: left;
}

.map-section .map-legend .item {
    position: relative;
    color: #626262;
    font-size: 13px;
    padding-left: 60px;
}

.map-section .map-legend .item:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
}

.map-section .map-legend .hostess:before {
    width: 19px;
    height: 19px;
    background: url('../img/ico-hostes.png') 0 0 no-repeat;
}

.map-section .map-legend .tea:before {
    width: 23px;
    height: 21px;
    top: -5px;
    background: url('../img/ico-map-tea.png') 0 0 no-repeat;
}

.map-section .map-legend .wc:before {
    width: 23px;
    height: 11px;
    top: 2px;
    background: url('../img/ico-wc.png') 0 0 no-repeat;
}

.map-section .slider-container {
    float: right;
    width: 510px;
    margin-right: 30px;
}

.slider-container .slider-text {
    font-size: 16px;
}

.slider-nav .slick-slide:focus {
    border: none;
    outline: none;
}

.slider-nav .slick-slide img {
    vertical-align: top;
    border: 2px solid #fff;
}

.slider-nav .slick-slide.slick-current img {
    border: 3px solid #00a987;
}

.map-section .map-container .room-header {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 1em;
    text-align: right;
    margin-right: 20px;
    color: #141516;
}

.links-container {
    border-bottom: 1px dotted #00aba1;
}

.events-section .events-text {
    color: #141516;
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 35px;
}

.events-section .btn {
    background: #648cb7;
    padding: .7em 1.8em;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: none;
}

.events-section .btn + .btn {
    margin-left: 3em;
}

.events-section .btn:hover {
    background: #33529a;
}

.activities-section {
    min-height: 776px;
}

.activities-section .links-container {
    float: left;
    margin-left: 30px;
    border: none;
}

.activities-section .links-container a {
    display: block;
    width: 390px;
    margin-bottom: 15px;
    padding: 1.4em 0;
    padding-left: 5em;
    border: 1px solid #00b0a3;
    border-radius: 43px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    color: #1e1e1e;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 30px 50%;
}

.links-container .cowork-link {
    background-image: url('../img/ico-cowork.png');
}

.links-container .games-link {
    background-image: url('../img/ico-games.png');
}

.links-container .rent-link {
    background-image: url('../img/ico-rent.png');
}

.links-container .tea-link {
    background-image: url('../img/ico-tea.png');
}

.links-container .birthday-link {
    background-image: url('../img/ico-birthday.png');
}

.links-container .tastes-link {
    background-image: url('../img/ico-tasting.png');
}

.links-container a:hover,
.links-container a.active {
    color: #fff;
    background-color: #00b0a3;
    text-decoration: none;
}

.links-container .cowork-link:hover,
.links-container .cowork-link.active {
    background-image: url('../img/ico-cowork-active.png');
}

.links-container .games-link:hover,
.links-container .games-link.active {
    background-image: url('../img/ico-games-active.png');
}

.links-container .rent-link:hover,
.links-container .rent-link.active {
    background-image: url('../img/ico-rent-active.png');
}

.links-container .tea-link:hover,
.links-container .tea-link.active {
    background-image: url('../img/ico-tea-active.png');
}

.links-container .birthday-link:hover,
.links-container .birthday-link.active {
    background-image: url('../img/ico-birthday-active.png');
}

.links-container .tastes-link:hover,
.links-container .tastes-link.active {
    background-image: url('../img/ico-tasting-active.png');
}

.activities-section .gallery-container {
    float: right;
    width: 510px;
    margin-right: 30px;
}

.description-container {
    text-align: left;
}

.gallery-container .description-header {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #1e1e1e;
}

.gallery-container .description-text {
    color: #626262;
    font-size: 16px;
}

.rate-section .rate h3 {
    font-size: 30px;
    color: #1e1e1e;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 1px dotted #8e8e8e;
}

.rate-section .rate {
    position: relative;
    float: left;
    width: 315px;
    margin-top: 50px;
    margin-left: 66px;
    padding: 60px 30px 50px;
    background: #ececec;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

.rate-section .rate:after {
    position: absolute;
    content: '';
    width: 104px;
    height: 104px;
    display: block;
    border-radius: 50%;
    left: 157px;
    margin-left: -52px;
    top: -52px;
}

.rate-section .rate-base:after {
    background: #a9a093 url('../img/ico-rate-base.png') center center no-repeat;
}

.rate-section .rate-tea:after {
    background: #65cb1c url('../img/ico-rate-tea.png') center center no-repeat;
}

.rate-section .rate-coffee:after {
    background: #00b0a3 url('../img/ico-rate-coffee.png') center center no-repeat;
}

.rate-section ul {
    padding-top: 15px;
    padding-bottom: 20px;
    padding-left: 40px;
    list-style-type: none;
    text-align: left;
    font-size: 16px;
    line-height: 2;
    color: #626262;
    border-bottom: 1px dotted #8e8e8e;
}

.rate-section ul li {
    position: relative;
}

.rate-section ul li:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 7px;
    width: 16px;
    height: 20px;
    background: url('../img/ico-rate-list-item.png') 0 0 no-repeat;
}

.rate-section ul li.extra1:before {
    background-image: url('../img/ico-rate-list-item1.png');
}

.rate-section ul li.extra2:before {
    background-image: url('../img/ico-rate-list-item2.png');
}

.rate-section .rate:first-child {
    margin-left: 0;
}

.rate-section .time-block {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #8e8e8e;
    color: #141516;
}

.rate-section .time-block .left-part {
    float: left;
}

.rate-section .time-block .right-part {
    float: right;
}

.rate-section .time-block .left-part,
.rate-section .time-block .right-part {
    color: #464747;
}

.rate-section .time-block .left-part strong,
.rate-section .time-block .right-part strong {
    color: #141516;
}

.rate-section .max-bill {
    padding-top: 15px;
    line-height: 1.2;
    color: #141516;
    font-size: 23px;
}

.rate-section .max-bill strong {
    font-size: 30px;
    font-weight: bold;
}

.foods-section .food-item {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 5px;
    border-radius: 80px;
    text-transform: uppercase;
    color: inherit;
    font-weight: bold;
}

.foods-section .food-item img {
    border-radius: 50%;
}

.foods-section .food-item:hover,
.foods-section .food-item.active {
    text-decoration: none;
    background-color: #00b0a3;
}

.foods-section .food-item .heading {
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #141516;
}

.foods-section .food-item:hover .heading,
.foods-section .food-item.active .heading {
    color: #fff;
}

.foods-section .food-item:last-of-type {
    margin-right: 0;
}

.foods-section .food-description {
    display: none;
    clear: both;
    color: #626262;
    font-size: 16px;
    padding: 0 10px;
}

.foods-section .food-description.default {
    display: block;
}

.rules-section .rule-heading {
    font-weight: bold;
    font-size: 21px;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 40px;
    color: #141516;
}

.rules-section .left-part {
    float: left;
    width: 50%;
    padding-right: 50px;
}

.rules-section .right-part {
    float: right;
    width: 50%;
}

.rules-section .rule {
    position: relative;
    color: #626262;
    font-size: 16px;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 70px;
}

.rules-section .rule:before {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 50px;
    padding-top: 9px;
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: url('../img/ico-rule-item.png') 0 0 no-repeat;
}

.rules-section .rule:last-of-type {
    margin-bottom: 0;
}

.rules-section .rule1:before {
    content: "1";
}

.rules-section .rule2:before {
    content: "2";
}

.rules-section .rule3:before {
    content: "3";
}

.rules-section .rule4:before {
    content: "4";
}

.rules-section .rule5:before {
    content: "5";
}

.rules-section .rule6:before {
    content: "6";
}

.rules-section .rule7:before {
    content: "7";
}

.contacts-section {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.contacts-section .inner-container {
    background: url('../img/map-schema.jpg') 0 0 no-repeat;
    height: 533px;
    padding-left: 600px;
    padding-top: 30px;
    padding-right: 55px;
    padding-bottom: 60px;
}

.contacts-section .contacts-container {
    background-color: #fff;
    padding: 40px;
}

.contacts-section .contacts-item {
    position: relative;
    border-bottom: 1px dotted #0da097;
    padding: 15px 0 20px 50px;
    color: #626262;
    text-align: left;
}

.contacts-section .contacts-item:last-child {
    border: none;
    padding-bottom: 0;
    padding-left: 0;
}

.contacts-section .contacts-item:before {
    content: '';
    display: block;
    position: absolute;
    width: 48px;
    height: 48px;
    left: 5px;
    top: 15px;
}

.contacts-section .address {
    padding-top: 0;
    font-size: 13px;
}

.contacts-section .address h3 {
    margin-top: 0;
    color: #141516;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.contacts-section .address:before {
    top: 0;
    background: url('../img/ico-pin.png') 0 0 no-repeat;
}

.contacts-section .tel {
    font-size: 30px;
    color: #141516;
    text-transform: uppercase;
}

.contacts-section .tel:before {
    top: 28px;
    background: url('../img/ico-tel.png') 0 0 no-repeat;
}

.contacts-section .email {
    font-size: 18px;
    font-weight: bold;
    color: #141516;
    text-transform: uppercase;
}

.contacts-section .email a {
    color: inherit;
}

.contacts-section .email:before {
    top: 20px;
    background: url('../img/ico-email.png') 0 0 no-repeat;
}

.contacts-section .timetable {
    font-size: 18px;
    color: #141516;
    font-weight: bold;
    text-transform: uppercase;
}

.contacts-section .timetable:before {
    background: url('../img/ico-timetable.png') 0 0 no-repeat;
}

.contacts-section .social {
    margin-top: 16px;
}

.contacts-section .contacts-links-container {
    float: right;
}

.contacts-section .social-ico {
    margin-right: 20px;
    text-decoration: none;
}

.contacts-section .social-ico:last-child {
    margin-right: 0;
}

.contacts-section .social-ico:hover {
    text-decoration: none;
}

footer {
    text-align: left;
    background-color: #00b0a3;
    font-size: 13px;
    color: #fff;
    padding: 40px;
    padding-left: 0;
}

footer a {
    color: #fff;
}

footer .footer-text {
    position: relative;
    width: 380px;
    margin-left: 140px;
}

.footer-text:before {
    content: '';
    display: block;
    position: absolute;
    width: 43px;
    height: 84px;
    left: -80px;
    top: -2px;
    background: url('../img/logo-bl.png') 0 0 no-repeat;
    background-size: 43px auto;
}

.tariff-wrapper {
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 25px;
}

.tariff {
    display: block;
    padding: 10px 10px 30px 10px;
    width: 50%;
    text-align: left;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    height: auto;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.04);
}

.tariff-1 {
    float: left;
}

.tariff-2 {
    float: right;
}

.tariff__image {
    width: 100%;
    border-radius: 9px;
    background: #EFF5FA;
    position: relative;
    margin-bottom: 42px;
}

.tariff__image img {
    width: 100%;
    border-radius: 9px;
}

.tariff__image span {
    position: absolute;
    bottom: -22px;
    right: 40px;
    z-index: 5;
    padding: 10px 30px;
    border-radius: 12px;
    border: 1px solid #F3F3F3;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(5px);
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 24px */
    letter-spacing: -0.48px;
}

.tariff__price {
    padding: 0px 20px;
    color: #00A988;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 64px */
    letter-spacing: -1.28px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tariff__price__side {
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tariff__price__count {
    font-size: 64px;
    margin-right: 20px;
}

.tariff__price__rub {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
}

.tariff__description__list {
    margin-top: 40px;
    padding: 0 20px;
}

.tariff__description__list ul {
    list-style-type: none !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
    padding-inline-start: 0 !important;
}

.tariff__description__list ul li {
    color: #294B45;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: -0.4px;
    margin-bottom: 20px;
}

.tariff__description__list ul li:last-child {
    margin-bottom: unset;
}

.tariff__after-content {
    margin-top: 20px;
    padding: 30px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.04);
}

.tariff__after-content p {
    opacity: 0.66;
    color: #294B45;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.4px;
    margin: 0;
    padding: 0;
}

.tariff__about {
    margin-top: 50px !important;
    width: 90%;
    margin: 0 auto;
}

.tariff__about h3 {
    color: #00A988;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
}

.tariff__about p {
    color: #515356;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.4px;
}

/**
 * Thank you page styles
 */
.thx-section .section-header .num {
    font-weight: 300;
}

.thx-section .inner-container {
    font-size: 16px;
    color: #626262;
}

.thx-section .intro {
    margin-top: 25px;
    font-size: 18px;
}

.thx-section .intro strong {
    color: #141516;
}

.thx-section .description {
    margin-top: 25px;
    padding-bottom: 60px;
    border-bottom: 1px dotted #00b0a3;
}

.thx-section .details-container {
    margin-top: 40px;
}

.thx-section .map-container {
    float: left;
    width: 540px;
    height: 480px;
    margin-left: 35px;
    overflow: hidden;
}

.thx-section .map-container img {
    height: 480px;
}

.thx-section .conditions-container {
    float: left;
    width: 460px;
    text-align: left;
    margin-left: 50px;
    font-size: 16px;
    color: #626262;
}

.thx-section .conditions-container .header {
    color: #141516;
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
}

.thx-section .with-tick {
    line-height: 1.4;
    padding-bottom: 1.5em;
    position: relative;
    margin-left: 35px;
    font-size: 14px;
}

.thx-section .with-tick:before {
    position: absolute;
    left: -35px;
    top: 4px;
    content: '';
    display: inline-block;
    width: 16px;
    height: 20px;
    background: url('../img/thx-tick.png') 0 0 no-repeat;
    vertical-align: middle;
}

.thx-section .contacts {
    margin-top: 40px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    text-transform: uppercase;
}

.thx-section .details-container {
    padding-bottom: 30px;
    border-bottom: 1px dotted #00b0a3;
}

.thx-section .expire {
    display: inline-block;
    width: 480px;
    color: #6f6f6f;
    font-size: 18px;
    text-transform: uppercase;
    vertical-align: middle;
    text-align: left;
    padding-top: 1.5em;
}

.thx-section .expire strong {
    color: #141516;
    font-weight: bold;
}

.thx-section .print {
    margin-top: 30px;
    display: inline-block;
    width: 425px;
    vertical-align: middle;
}

.thx-section .print .btn {
    background-color: #65cb1c;
    border: none;
    border-radius: 28px;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    padding: .4em 1em;
    text-align: center;
    text-transform: uppercase;
}

.thx-section .print .btn:hover,
.thx-section .print .btn:active {
    background-color: #18b173;
}

.print-only {
    display: none;
}

@media print {

    /*@page { size: landscape; }*/
    header,
    footer,
    #vkEvents,
    #printBtn {
        display: none;
    }

    .container {
        width: 1000px !important;
    }

    .print-only {
        display: inline;
    }

    .no-print {
        display: none;
    }

    .thx-section .map-container {
        width: 400px !important;
        height: 356px !important;
    }

    .thx-section {
        border: none !important;
    }

    .thx-section .section-header {
        border: none !important;
    }

    .thx-section .conditions-container {
        width: 400px;
        text-align: left;
        margin-left: 20px;
    }
}