@charset "UTF-8";
/* -------- SERVICES -------- */
/*FONTS*/
/*FONTS*/
:root {
    --base-color-1: #ffffff;
    --base-color-2: #F6F6F6;
    --base-color-3: #EBECF2;
    --base-color-4: #CECFD9;
    --base-color-5: #AAAAB2;
    --base-color-6: #85858A;
    --base-color-7: #626366;
    --base-color-8: #333333;
    --base-color-9: #1E1E1E;
    --accent-color-1: #7A998C;
    --accent-color-2: #5A756A;
    --accent-color-3: #3B4C45;
    --accent-color-4: #C7D4CF;
    --accent-color-5: #DCE5E2;
    --accent-color-6: #EFF4F2;
    --accent-color-7: #F5F7F6;
    --additional-1: #C13055;
    --additional-2: #F2CBD5;
    --additional-3: #1A724D;
    --additional-4: #FEC601;
    --text-color: #1E1E1E;
    --site-bg-color: #F5F7F6;
    --btn-text: #ffffff;
    --btn-bg: #7A998C;
    --btn-border: #7A998C;
    --btn-text-hover: #ffffff;
    --btn-bg-hover: #5A756A;
    --btn-border-hover: #5A756A;
    --btn-text-active: #ffffff;
    --btn-bg-active: #3B4D45;
    --btn-border-active: #3B4D45;
    --btn-text-outline: #7A998C;
    --btn-bg-outline: transparent;
    --btn-border-outline: #7A998C;
    --btn-text-outline-hover: #ffffff;
    --btn-bg-outline-hover: #7A998C;
    --btn-border-outline-hover: #7A998C;
    --btn-text-outline-active: #ffffff;
    --btn-bg-outline-active: #5A756A;
    --btn-border-outline-active: #5A756A;
    --border-color: #CECFD9;
    --border-radius: 6px;
    --section-bottom: 60px;
}

/*RESETS*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

menu,
ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

img {
    display: block;
}

article img {
    display: inline;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

/*RESETS*/
/* -------- PLUGINS -------- */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track::before, .slick-track::after {
    content: "";
    display: table;
}
.slick-track::after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir=rtl] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
/* -------- UI -------- */
/*BASE*/
BODY, HTML {
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    min-width: 360px;
    height: 100%;
    color: var(--text-color);
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--site-bg-color);
}

body.overflow {
    overflow: hidden;
}

main {
    flex: 1 0 auto;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=time],
input[type=date],
textarea {
    color: var(--text-color);
    min-width: 1px;
    font-size: 16px;
    padding: 0 20px;
    height: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--base-color-1);
    border-radius: var(--border-radius);
    transition: 0.3s;
}

textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100px;
    resize: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=date]:focus,
textarea:focus {
    outline: none;
    background-color: var(--accent-color-7);
}

*.error > input[type=text],
*.error > input[type=email],
*.error > input[type=number],
*.error > input[type=password],
*.error > input[type=tel],
*.error > input[type=time],
*.error > input[type=date],
*.error > textarea,
input[type=text].error,
input[type=email].error,
input[type=number].error,
input[type=password].error,
input[type=tel].error,
input[type=time].error,
input[type=date].error,
textarea.error {
    border-color: var(--additional-1);
}

input[type=text]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=time]:disabled,
input[type=date]:disabled,
textarea:disabled {
    pointer-events: none;
    background-color: var(--base-color-2);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=time]::placeholder,
input[type=date]::placeholder,
textarea::placeholder {
    color: var(--base-color-5);
}

a {
    color: var(--accent-color-1);
}

a:hover {
    text-decoration: none;
}

article a {
    color: var(--accent-color-1);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: 0.3s;
}

article ul,
article ol {
    padding-left: 26px;
}

article li {
    position: relative;
}

article ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--accent-color-1);
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: 9px;
}

article ol {
    list-style: auto;
}

article li + li {
    margin-top: 6px;
}

a:active {
    color: var(--accent-color-1);
    /* НЕ УДАЛЯТИ */
}

h1,
.H1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h2,
.H2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
}

h3,
.H3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

h4,
.H4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.pattern_tittle {
    display: flex;
    margin-bottom: 25px;
}

.pattern_tittle .H2,
.pattern_tittle .H1,
.pattern_tittle h1,
.pattern_tittle h2 {
    flex: 0 0 auto;
    font-size: 24px;
    max-width: calc(100% - 32px);
    margin-bottom: 0;
    padding-right: 32px;
}

.pattern_tittle h1,
.pattern_tittle .H1 {
    text-transform: uppercase;
    font-size: 28px;
}

.pattern_box {
    flex: 1 1 auto;
    min-width: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    height: 32px;
    overflow: hidden;
}

.pattern_img {
    flex: 0 0 32px;
    height: 32px;
    margin: 0 0 0 5px;
    background-image: url("../images/pattern.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.left_menu .pattern_tittle .H2 {
    flex: 0 0 calc(100% - 32px);
}

article > * {
    margin-bottom: 22px;
}

.centre {
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    max-width: 1332px;
}

.centre.temp-2 {
    max-width: 990px;
}

.close_btn {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    position: relative;
    cursor: pointer;
}

.close_btn::before,
.close_btn::after {
    content: "";
    width: 18px;
    height: 2px;
    background-color: var(--icon-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: background-color 0.3s;
}

.close_btn::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close_btn::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.shadow {
    font-size: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(32, 30, 80, 0.4);
    z-index: 10;
}

.hidden {
    display: none !important;
}

.site_shadow-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(39, 53, 47, 0.7);
    backdrop-filter: blur(5px);
}

/*btn*/
.btn {
    color: var(--btn-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 5px 14px;
    background-color: var(--btn-bg);
    border: 2px solid var(--btn-border);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: 0.3s;
}

.btn:active {
    color: var(--btn-text-active);
    background-color: var(--btn-bg-active);
    border-color: var(--btn-border-active);
}

.btn.btn_outline {
    color: var(--btn-text-outline);
    background-color: var(--btn-bg-outline);
    border-color: var(--btn-border-outline);
}

.btn.btn_outline:active {
    color: var(--btn-text-outline-active);
    background-color: var(--btn-bg-outline-active);
    border-color: var(--btn-border-outline-active);
}

.btn:disabled,
.btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn.big_btn {
    font-size: 16px;
    padding: 8px 24px;
    min-height: 44px;
}

.btn.small_btn {
    font-size: 14px;
    font-weight: 400;
    padding: 4px 20px;
    min-height: 34px;
}

/*btn*/
/*dropdown*/
.dropdown {
    position: relative;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.dropdown.small {
    height: 36px;
}

.dropdown_short {
    width: 68px;
    height: 30px;
    margin: 0 20px;
    color: #1d1d1d;
}

.dropdown.dropdown-open {
    border-color: var(--accent-color-1);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown.dropdown_short.dropdown-open {
    width: 68px;
}

.dropdown .overflow {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 0;
    background-color: #fff;
    position: relative;
    float: left;
    border-radius: 5px;
    transition: 0.3s;
}

.dropdown.small .overflow {
    padding-right: 32px;
}

.dropdown.dropdown-open .overflow {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown.short .overflow {
    width: 138px;
}

.dropdown.dropdown-open .overflow {
    z-index: 10;
}

.dropdown Span {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    height: 100%;
    padding: 0 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
}

.dropdown.small Span {
    font-size: 14px;
    padding: 0 14px;
}

.dropdown_short Span {
    padding: 0 10px;
}

.dropdown UL {
    position: absolute;
    top: 48px;
    right: -1px;
    left: -1px;
    background: var(--base-color-1);
    border: 1px solid var(--border-color);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    z-index: 4;
    padding: 4px 0;
    margin: 0;
    /*max-height: 250px;*/
    /*overflow-y: auto;*/
    transition: border-top-color 0.3s;
    display: none;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
}

.dropdown.small UL {
    top: 34px;
}

.dropdown.dropdown-open UL {
    border-top-color: var(--accent-color-1);
    display: block;
    animation: dropdownOpen 0.25s ease forwards;
}

@keyframes dropdownOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

.dropdown_short ul {
    border: 1px solid #d7d7d7;
    border-radius: var(--border-radius);
    top: 28px;
    overflow: auto;
}

.dropdown UL LI {
    position: relative;
    float: left;
    background: none;
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
}

.dropdown_short UL LI {
    border: none;
}

.dropdown UL LI A {
    width: 100%;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    float: left;
    padding: 8px 24px;
    transition: 0.3s;
}

.dropdown_short ul li a {
    color: #1d1d1d;
    text-align: center;
    padding: 6px 0;
}

.dropdown UL LI.selected A {
    color: var(--accent-color-1);
    background-color: var(--accent-color-6);
}

.dropdown UL LI A.selected {
    display: none;
}

.drop_arrow {
    font-size: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    width: 48px;
    height: 48px;
    transition: 0.3s;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}

.dropdown.small .drop_arrow {
    width: 34px;
    height: 34px;
}

.dropdown.dropdown-open .drop_arrow {
    border-bottom-right-radius: 0;
}

.drop_arrow::after,
.drop_arrow::before {
    content: "";
    width: 1px;
    height: 8px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: bottom;
    transition: 0.3s;
}

.drop_arrow::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drop_arrow::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown.dropdown-open .drop_arrow::after {
    transform-origin: top;
    transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown.dropdown-open .drop_arrow::before {
    transform-origin: top;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dropdown_short .drop_arrow {
    right: -1px;
    top: -1px;
    background-color: #70c46a;
    border-radius: 0 3px 3px 0;
    width: 31px;
    height: 30px;
}

.dropdown_alt {
    width: 100%;
    height: 50px;
    color: #504f4f;
}

.dropdown_alt span {
    font-size: 16px;
}

.dropdown_alt .drop_arrow {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #73c86d;
    width: 50px;
    height: 50px;
    right: -1px;
    top: -1px;
}

.dropdown_alt .drop_arrow:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    margin: -5.5px 0 0 -8px;
}

.dropdown_alt ul {
    border: none;
    top: calc(100% + 1px);
    padding: 4px 0;
}

.dropdown_alt UL LI {
    font-size: 16px;
    border: none;
}

.dropdown_alt UL LI A {
    font-size: 14px;
    background-color: var(--base-color-1);
    color: var(--text-color);
    padding: 8px 24px;
}

.dropdown_alt.dropdown-open {
    width: initial;
}

.dropdown_alt.dropdown-open .drop_arrow {
    border-bottom-right-radius: 0;
}

.dropdown_sm {
    background-color: var(--base-color-1);
    height: 45px;
}

.dropdown_sm .drop_arrow {
    width: 45px;
    height: 45px;
}

.dropdown_sm .drop_arrow:after {
    border-width: 8px 6px 0 6px;
    border-color: var(--base-color-1) transparent transparent transparent;
    margin: -4px 0 0 -6px;
}

.options_dropdown_list UL LI {
    position: relative;
    padding: 0 0 0 10px;
}

.options_dropdown_list UL LI:before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--base-color-9);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 11px;
}

.options_dropdown_list UL LI A {
    text-decoration: none;
    color: var(--accent-color-1);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.options_dropdown_tile UL {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 0 0;
}

.options_dropdown_tile UL LI {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin: 0 3px 3px 0;
}

.options_dropdown_tile UL LI A {
    text-decoration: none;
    background-color: var(--base-color-1);
    color: var(--base-color-9);
    padding: 5px 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.options_dropdown_tile UL LI.disabled {
    opacity: 0.5;
}

.options_dropdown_tile UL LI.disabled a {
    cursor: default;
}

.dropdown.disabled {
    pointer-events: none;
}

.dropdown.disabled .overflow {
    background-color: var(--accent-color-7);
}

.dropdown.disabled .overflow Span {
    color: var(--base-color-4);
}

.dropdown.disabled .drop_arrow::after,
.dropdown.disabled .drop_arrow::before {
    background-color: var(--base-color-4);
}

.dropdown.filled {
    border-color: var(--accent-color-1);
}

.dropdown.filled .overflow {
    background-color: var(--accent-color-1);
}

.dropdown.filled .overflow Span {
    color: var(--base-color-1);
}

.dropdown.filled .drop_arrow::after,
.dropdown.filled .drop_arrow::before {
    background-color: var(--base-color-1);
}

.dropdown.filled.dropdown-open {
    border-color: var(--accent-color-2);
}

.dropdown.filled.dropdown-open .overflow {
    background-color: var(--accent-color-2);
}

.dropdown.filled.dropdown-open UL {
    border-top-color: var(--accent-color-2);
}

.dropdown.filled.disabled {
    border-color: var(--accent-color-5);
}

.dropdown.filled.disabled .overflow {
    background-color: var(--accent-color-5);
}

/*dropdown*/
/*icon*/
.icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: var(--base-color-9);
}

/*icon*/
/*styled input*/
.styled_input {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.styled_label {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 6px;
}

.styled_label i {
    color: var(--additional-1);
    font-style: normal;
    margin-left: 4px;
}

.styled_box {
    position: relative;
    width: 100%;
}

.styled_box input,
.styled_box textarea {
    width: 100%;
}

.input_icon {
    display: none;
    position: absolute;
    top: 14px;
    right: 16px;
    pointer-events: none;
}

.styled_box input.error + .input_icon,
.styled_box textarea.error + .input_icon {
    display: block;
}

.styled_box input.error,
.styled_box textarea.error {
    padding-right: 44px;
}

.styled_box input.error + .input_icon img.error_icon,
.styled_box textarea.error + .input_icon img.error_icon {
    display: block;
}

.styled_info {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 2px;
}

.styled_info.error {
    color: var(--additional-1);
}

/*styled input*/
.up {
    font-size: 0;
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color-4);
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--base-color-1);
    border-radius: 3px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.up::before,
.up::after {
    content: "";
    width: 1px;
    height: 7px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 11px;
    left: 50%;
    transform-origin: top;
}

.up::before {
    transform: translateX(-50%) rotate(-45deg);
}

.up::after {
    transform: translateX(-50%) rotate(45deg);
}

.up.active {
    opacity: 1;
    visibility: visible;
}

/* pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination ul li {
    margin: 0 2px;
}

.pagination ul span,
.pagination ul a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius);
    position: relative;
    transition: 0.3s;
}

.pagination ul span.current {
    background-color: var(--accent-color-5);
}

.pagination ul a.to-start::before,
.pagination ul a.to-start::after,
.pagination ul a.to-end::before,
.pagination ul a.to-end::after,
.pagination ul a.prev::before,
.pagination ul a.next::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) rotate(45deg);
}

.pagination ul a.to-start::before,
.pagination ul a.to-end::before {
    left: 11px;
}

.pagination ul a.to-start::after,
.pagination ul a.to-end::after {
    left: 18px;
}

.pagination ul a.prev,
.pagination ul a.to-start {
    font-size: 0;
}

.pagination ul a.prev span ,
.pagination ul a.to-start span {
    font-size: 0;
}

.pagination ul a.next,
.pagination ul a.to-end {
    font-size: 0;
    transform: rotate(180deg);
}

.pagination ul a.next span ,
.pagination ul a.to-end span {
    font-size: 0;
}

/* breadcrumbs */
.breadcrumbs {
    margin-top: -5px;
    margin-bottom: 24px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul a,
.breadcrumbs ul span {
    text-decoration: none;
    font-size: 12px;
    color: var(--base-color-7);
    transition: 0.3s;
}

.breadcrumbs ul li {
    margin: 0 6px 0 0;
}

.breadcrumbs ul li:not(:last-child)::after {
    content: ">";
    font-size: 12px;
    position: relative;
    margin-left: 6px;
    color: var(--base-color-5);
}

.breadcrumbs ul span {
    color: var(--base-color-5);
}

/*BASE*/
/* -------- COMPONENTS -------- */
/*SITE HEADER*/
.site_header {
    width: 100%;
    margin-bottom: 20px;
    padding: 60px 0 10px 0;
    background-color: var(--base-color-1);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.08);
}

.header_info-row {
    display: none;
}

.top_header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--base-color-1);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0);
    transition: 0.3s;
    z-index: 11;
}

.top_header.shadow {
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.08);
}

.top_header > .centre {
    display: flex;
    align-items: flex-start;
}

.top_mob-logo {
    font-size: 0;
    flex: 0 0 36px;
    display: block;
    width: 36px;
    height: 36px;
}

.top_mob-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top_header-text {
    text-decoration: none;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.top_header .site_name {
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 16px;
}

.top_header .site_name-subtitle {
    font-size: 9px;
    font-weight: 400;
    color: var(--base-color-5);
}

.top_header-btn {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background-color: var(--accent-color-5);
    position: relative;
}

.top_header-btn.active {
    background-color: var(--accent-color-1);
}

.top_header-btn.open-mob_menu {
    margin-left: 16px;
}

.top_header-btn .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: var(--accent-color-1);
    transition: 0.3s;
}

.top_header-btn.active .icon {
    fill: var(--base-color-1);
}

.top_header-btn.open-mob_menu .icon.close_icon {
    opacity: 0;
}

.top_header-btn.open-mob_menu.active .icon.close_icon {
    opacity: 1;
}

.top_header-btn.open-mob_menu.active .icon.menu_icon {
    opacity: 0;
}

.top_header-btn.open-mob_phones .icon.close_icon {
    opacity: 0;
}

.top_header-btn.open-mob_phones.active .icon.close_icon {
    opacity: 1;
}

.top_header-btn.open-mob_phones.active .icon.phone_icon {
    opacity: 0;
}

.top_header .reservation {
    display: none;
}

.top_header .request_call {
    display: none;
}

.mob_catalog-gtn {
    font-size: 14px;
    text-decoration: none;
    color: var(--base-color-1);
    display: flex;
    align-items: center;
    padding: 10px 26px 10px 16px;
    background-color: var(--accent-color-2);
    border-radius: var(--border-radius);
    position: relative;
}

.top_catalog.active .mob_catalog-gtn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.mob_catalog-gtn .icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

.mob_catalog-gtn::before,
.mob_catalog-gtn::after {
    content: "";
    width: 1px;
    height: 8px;
    background-color: var(--base-color-1);
    position: absolute;
    top: 50%;
    right: 18px;
    transform-origin: bottom;
    transition: 0.3s;
}

.mob_catalog-gtn::before {
    transform: translateY(-50%) rotate(-45deg);
}

.mob_catalog-gtn::after {
    transform: translateY(-50%) rotate(45deg);
}

.top_catalog.active .mob_catalog-gtn::before {
    transform-origin: top;
    transform: translateY(-50%) rotate(45deg);
}

.top_catalog.active .mob_catalog-gtn::after {
    transform-origin: top;
    transform: translateY(-50%) rotate(-45deg);
}

.top_catalog-list {
    color: var(--base-color-1);
    display: none;
    flex-direction: column;
    padding: 5px 14px;
    background-color: var(--accent-color-1);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.top_catalog.active .top_catalog-list {
    display: flex;
}

.top_catalog-list li {
    display: flex;
}

.top_catalog-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.top_catalog-list a {
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    padding: 5px 0;
    color: var(--base-color-1);
}

.top_catalog-list a span {
    display: block;
}

.top_catalog-list > li > a.active > span {
    color: var(--additional-4);
    border-bottom: 1px solid var(--additional-4);
}

.mobile_menu {
    font-size: 16px;
    position: fixed;
    top: 56px;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 16px 32px 16px;
    width: 100%;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    background-color: var(--accent-color-7);
    border-top: 1px solid var(--accent-color-4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile_menu.active {
    opacity: 1;
    visibility: visible;
}

.top_header .mobile_menu .reservation {
    display: flex;
}

.mobile-change_lang {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--accent-color-4);
}

.mobile-change_lang a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    flex: 1 1 auto;
}

.mobile-change_lang a.active {
    background-color: var(--accent-color-5);
}

.mobile-change_lang a .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.mob-top_menu {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent-color-4);
}

.mob-top_menu > li {
    display: block;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.mob-top_menu > li.has_drop.opened {
    background-color: var(--base-color-1);
}

.mob-top_menu a {
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 8px;
    position: relative;
    transition: 0.3s;
}

.mob-top_menu a span {
    display: block;
}

.mob-top_menu a.active span {
    color: var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
}

.mob-top_menu > li.has_drop > a {
    padding-right: 28px;
}

.mob-top_menu > li.has_drop.opened > a {
    font-weight: 600;
}

.mob-top_menu > li.has_drop > a::before,
.mob-top_menu > li.has_drop > a::after {
    content: "";
    width: 1px;
    height: 7px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 16px;
    transform-origin: bottom;
    transition: 0.3s;
}

.mob-top_menu > li.has_drop > a::before {
    transform: translateY(-50%) rotate(-45deg);
}

.mob-top_menu > li.has_drop > a::after {
    transform: translateY(-50%) rotate(45deg);
}

.mob-top_menu > li.has_drop.opened > a::before {
    transform-origin: top;
    transform: translateY(-50%) rotate(45deg);
}

.mob-top_menu > li.has_drop.opened > a::after {
    transform-origin: top;
    transform: translateY(-50%) rotate(-45deg);
}

.mob-top_menu > li > ul {
    padding-left: 12px;
    display: none;
}

.mob-top_menu > li.has_drop.opened > ul {
    display: block;
}

.reservation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    margin-top: auto;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--accent-color-4);
}

.reservation_name {
    font-size: 14px;
    text-align: center;
    color: var(--base-color-6);
    margin-bottom: 8px;
}

.reservation_phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.reservation_phones-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px 12px 5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.reservation_phones-messengers {
    display: flex;
    flex-direction: column;
}

.reservation_phones-messengers .icon {
    display: block;
    margin-right: 10px;
    fill: var(--accent-color-1);
}

.reservation_phones-messengers .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reservation_phones-messengers .icon + .icon {
    margin-top: 6px;
}

.reservation_phones-item .text {
    color: inherit;
    text-decoration: none;
}

.reservation .btn {
    min-width: 246px;
}

.mob-menu_email {
    font-size: 14px;
    color: var(--accent-color-1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mob-menu_email .icon {
    fill: var(--accent-color-1);
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.black {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(39, 53, 47, 0.7);
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.black.hidden {
    display: block !important;
    opacity: 0;
    visibility: hidden;
}

.reservation-popup {
    font-size: 16px;
    position: fixed;
    top: 56px;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 16px 16px 16px;
    width: 100%;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    background-color: var(--accent-color-7);
    border-top: 1px solid var(--accent-color-4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.reservation-popup.active {
    opacity: 1;
    visibility: visible;
}

.reservation-popup_name {
    text-align: center;
    font-size: 14px;
    color: var(--base-color-6);
    margin-bottom: 16px;
}

.reservation-popup_phones {
    margin-bottom: 25px;
}

.reservation-popup_phones li {
    display: flex;
    justify-content: center;
}

.reservation-popup_phones li + li {
    margin-top: 16px;
}

.reservation-popup_phones a {
    text-decoration: none;
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-popup_phones a .icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

/*SITE HEADER*/
/*SITE FOOTER*/
.site_footer {
    padding: 20px 0 120px 0;
    background-color: var(--base-color-1);
}

.bottom_inner {
    margin-bottom: 66px;
}

.bottom_menu {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-color-4);
}

.bottom_menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 10px;
}

.bottom_menu ul a {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
    display: block;
    transition: 0.3s;
}

.bottom_copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rest_treatment {
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--base-color-7);
}

.rest_treatment a {
    color: var(--base-color-7);
    text-decoration: none;
    transition: 0.3s;
}

.site_footer .contract {
    font-size: 12px;
    color: var(--accent-color-2);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 16px;
}

.site_footer .contract a {
    text-decoration: none;
    transition: 0.3s;
}

.sufix-link {
    text-decoration: none;
    font-size: 12px;
    color: var(--accent-color-2);
    text-align: center;
    line-height: 1.3;
}

.sufix-link a {
    text-decoration: none;
    color: var(--accent-color-2);
    transition: 0.3s;
}

.reservation_box {
    font-size: 16px;
    color: var(--base-color-1);
    background-color: var(--accent-color-2);
    padding: 10px 0 12px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.reservation_box .centre {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 12px;
}

.reservation-title {
    margin-bottom: 10px;
    padding: 0 4px;
}

.reservation-item {
    display: inline-block;
    padding: 0 4px;
}

.reservation-item span {
    font-size: 14px;
}

.reservation-item a {
    text-decoration: none;
    color: var(--base-color-1);
    font-weight: 500;
    margin-left: 5px;
    transition: 0.3s;
}

/*SITE FOOTER*/
/*SEARCH BOX*/
.search_box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 18px 0;
    padding: 40px 16px 60px 16px;
    width: 100%;
}

.centre.site_grid .search_box {
    width: calc(100% + 32px);
    margin: 0 -16px 18px -16px;
}

.centre.site_grid .search_box:nth-child(1) {
    margin-top: -20px;
}

.centre.site_grid .content .search_box {
    display: none;
}

.search_box-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: var(--border-radius);
    top: 0;
    left: 0;
    z-index: -1;
}

.centre.site_grid .search_box-bg {
    border-radius: 0;
}

.search_box .H1 {
    text-align: center;
    margin-bottom: 25px;
}

.search_row {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.search_row input[type=text] {
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.2);
}

.search_row .btn {
    text-align: start;
    justify-content: flex-start;
    margin-top: 6px;
}

.quick_search {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 10px 0 10px;
    width: 100%;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 2;
    background-color: var(--base-color-1);
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.08);
}

.quick_search > li {
    display: flex;
    flex: 0 0 calc((100% / 2) - (10px / 2));
    margin-bottom: 10px;
}

.quick_search > li:nth-child(2n) {
    margin-left: 10px;
}

.quick_search .search_results-item {
    width: 100%;
    display: flex;
    align-items: center;
}

.quick_search .search_results-item figcaption {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick_search .search_results-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*SEARCH BOX*/
/*CATALOG 2-3 LVL*/
.catalog_2-3lvl {
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}

.catalog_2-3lvl > li + li {
    margin-top: 5px;
}

.catalog_2-3lvl > li > a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    padding: 10px;
    background-color: var(--accent-color-5);
    border-radius: var(--border-radius);
    position: relative;
    transition: 0.3s;
}

.catalog_2-3lvl > li.has_drop > a {
    padding-right: 26px;
}

.catalog_2-3lvl > li.has_drop.active > a {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.catalog_2-3lvl > li.has_drop > a::before,
.catalog_2-3lvl > li.has_drop > a::after {
    content: "";
    width: 1px;
    height: 8px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 18px;
    transform-origin: bottom;
    transition: 0.3s;
}

.catalog_2-3lvl > li.has_drop > a::before {
    transform: translateY(-50%) rotate(-45deg);
}

.catalog_2-3lvl > li.has_drop > a::after {
    transform: translateY(-50%) rotate(45deg);
}

.catalog_2-3lvl > li.has_drop.active > a::before {
    transform: translateY(-50%) rotate(45deg);
    transform-origin: top;
}

.catalog_2-3lvl > li.has_drop.active > a::after {
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: top;
}

.catalog_2-3lvl > li > ul {
    display: none;
    flex-direction: column;
    margin-bottom: 16px;
    background-color: var(--base-color-1);
    border-left: 1px solid var(--accent-color-5);
    border-right: 1px solid var(--accent-color-5);
}

.catalog_2-3lvl > li.has_drop.active > ul {
    display: flex;
}

.catalog_2-3lvl > li > ul > li {
    border-bottom: 1px solid var(--accent-color-5);
}

.catalog_2-3lvl > li > ul > li > a {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    text-decoration: none;
    color: var(--base-color-7);
    padding: 10px;
    transition: 0.3s;
}

.catalog_2-3lvl > li > ul > li > a:active {
    color: var(--accent-color-1);
    background-color: var(--accent-color-5);
}

.catalog_2-3lvl > li > ul > li > a span.name {
    font-size: 14px;
    line-height: 22px;
    flex: 1 1 auto;
    text-align: start;
    padding-right: 5px;
}

.catalog_2-3lvl > li > ul > li > a span.status {
    font-weight: 500;
    font-size: 10px;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 2px 0 2px 4px;
}

/*CATALOG 2-3 LVL*/
.catalog_2-3lvl > li > ul > li > ul > li {
    border-top: 1px solid var(--accent-color-5);
}

.catalog_2-3lvl > li > ul > li > ul > li > a {
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--base-color-7);
    padding: 6px 20px;
    transition: 0.3s;
}

/*LAST NEWS*/
.last_news {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.left_menu .last_news {
    display: none;
}

.last_news-slider {
    margin-bottom: 30px;
    width: calc(100% + 16px);
    max-width: calc(100% + 16px);
    margin-right: -16px;
}

.last_news-slider .slick-track {
    display: flex;
}

.slick-dots {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
}

.slick-dots button {
    font-size: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    background-color: transparent;
    border: none;
    position: relative;
    cursor: pointer;
}

.slick-dots button::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color-4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.slick-dots li.slick-active button::before {
    background-color: var(--accent-color-1);
}

.last_news-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.last_news-slider:not(.slick-initialized) .last_news-item {
    flex: 0 0 274px;
    margin-right: 16px;
}

.last_news-item {
    flex: 0 0 274px;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
    background-color: var(--base-color-1);
    overflow: hidden;
}

.slick-initialized .slick-slide.last_news-item {
    display: flex;
}

.last_news-img {
    position: relative;
    height: 0;
    padding-bottom: 66%;
    border-bottom: var(--accent-color-4);
}

.last_news-img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.last_news-item figcaption {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
}

.last_news-item time {
    font-size: 12px;
    line-height: 14px;
    color: #85858A;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.last_news-item time .icon {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    fill: #85858A;
}

.last_news-title {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    min-height: 66px;
    transition: 0.3s;
}

.last_news-swipe {
    display: none;
    width: 24px;
    height: 24px;
    margin-top: -54px;
    margin-bottom: 30px;
}

.last_news-slider.slick-initialized + .last_news-swipe {
    display: block;
}

/*LAST NEWS*/
/*SEARCH LEFT MENU*/
.search_left-menu {
    margin-bottom: 20px;
}

.search_left-menu .pattern_tittle {
    margin-bottom: 16px;
}

.search_left-menu .pattern_tittle .H2 {
    font-size: 20px;
}

.search_left-inner {
    position: relative;
}

.search_left-inner > input[type=text] {
    width: 100%;
    height: 40px;
    padding-right: 50px;
}

.search_left-inner .btn {
    font-size: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.search_left-inner .btn .icon {
    width: 16px;
    height: 16px;
    fill: var(--base-color-1);
}

.search_result-counter {
    font-size: 12px;
    color: var(--base-color-7);
    display: block;
    margin-top: -14px;
    margin-bottom: 20px;
}

/*SEARCH LEFT MENU*/
/*GRID SLIDER*/
.grid_slider {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-bottom);
}

.grid_slider-slick {
    width: calc(100% + 16px);
    margin-right: -16px;
}

.grid_slider-slick:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.grid_slider-slick .slick-track {
    display: flex;
}

.grid_slider-slide {
    display: flex;
    flex-direction: column;
    margin-right: 16px;
    flex: 0 0 272px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--base-color-1);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0);
    transition: 0.3s;
}

.grid_slide-img {
    display: block;
    padding-bottom: 75%;
    width: 100%;
    height: 0;
    position: relative;
}

.grid_slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.grid_slider-slide figcaption,
.grid_slider-slide .figcaption {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 8px 10px 16px 10px;
}

.grid_slide-time {
    font-size: 12px;
    line-height: 1.3;
    color: var(--base-color-6);
    display: flex;
    align-content: center;
    margin-bottom: 10px;
}

.grid_slide-time .icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.grid_slide-title {
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 6px;
    transition: 0.3s;
}

.grid_slide-title.center-pos {
    text-align: center;
}

.grid_slide-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 1.3;
    color: var(--base-color-6);
    margin-bottom: 23px;
}

.grid_slide-link {
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: var(--accent-color-1);
    align-self: flex-start;
    margin-top: auto;
    padding: 3px 22px 3px 6px;
    background-color: var(--accent-color-6);
    position: relative;
    transition: 0.3s;
}

.grid_slide-link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.3s;
}

.grid_slider-slick.two-rows .grid_slider-slide {
    flex: 0 0 214px;
}

.grid_slider-slick.two-rows .grid_slide-title.center-pos {
    margin-bottom: 0;
}

.grid_slider-swipe {
    display: none;
    width: 24px;
    height: 24px;
    margin-top: -24px;
}

.grid_slider-slick.slick-initialized + .grid_slider-swipe {
    display: block;
}

/*GRID SLIDER*/
/*MAIN ARTICLE*/
.main_article {
    margin-bottom: var(--section-bottom);
    user-select: none;
}

.article_content > * {
    margin-bottom: 22px;
}

.image_resized {
    float: left;
    margin: 0 20px 20px 0 ;
    max-width: 100%;
    height: auto;
}

.image.image_resized {
    float: none;
    display: flex;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.image.image_resized img {
    max-width: 100%;
    height: auto;
}

.image.image_resized.image-style-side {
    display: inline;
    float: right;
    margin: 0 0 20px 20px ;
}

.main_article time {
    font-size: 12px;
    color: #85858A;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.main_article time .icon {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    fill: #85858A;
}


article .invisible {
    display: none;
}

article .overflow {
    height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
}

/*MAIN ARTICLE*/
/*READ MORE*/
.read_more {
    margin-bottom: 40px;
}

.read_more-top {
    display: flex;
    margin-bottom: 16px;
}

.read_more-top .H3 {
    flex: 1 1 auto;
    margin-bottom: 0;
    color: var(--accent-color-2);
}

.read_more-link {
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: var(--accent-color-1);
    align-self: flex-start;
    margin-top: auto;
    padding: 3px 22px 3px 6px;
    background-color: var(--accent-color-6);
    position: relative;
    transition: 0.3s;
}

.read_more-link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(-45deg);
}

.read_more-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin-bottom: 15px;
}

.read_more-img {
    width: 100%;
    /* padding-bottom: 35%; */
    height: auto;
    position: relative;
}

.read_more-img {
    grid-column: 1/3;
}

.read_more-img:nth-child(1) {
    grid-column: 1/2;
    /* padding-bottom: 52%; */
}

.read_more-img:nth-child(2) {
    grid-column: 2/3;
    /* padding-bottom: 52%; */
}

.read_more-img img {
    display: block;
    /* position: absolute;
    top: 0;
    left: 0; */
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    /* height: 100%; */
    object-fit: cover;
}

.read_more-text {
    font-size: 16px;
}

/*READ MORE*/
/*POPUP BOX*/
.popup_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    height: calc(100% - 56px);
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 10;
    background: rgba(39, 53, 47, 0.7);
    border-top: 1px solid var(--accent-color-4);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup_box.active {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}

.popup {
    display: none;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    padding: 16px;
    background-color: var(--accent-color-7);
}

.popup.active {
    display: flex;
}

.popup .H2 {
    text-align: center;
}

.popup-inner {
    display: flex;
    flex-direction: column;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.popup_shadow {
    content: "";
    flex: 0 0 20px;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(251, 171, 0, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.popup_shadow.active {
    opacity: 1;
}

.popup_shadow.before-shadow {
    margin-bottom: -20px;
}

.popup_shadow.after-shadow {
    margin-top: -20px;
    transform: rotate(-180deg);
}

.popup_pattern {
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px auto;
}

.popup_text {
    font-size: 14px;
    color: var(--base-color-7);
    text-align: center;
    margin-bottom: 20px;
}

.popup .styled_input {
    margin-bottom: 10px;
}

.popup .btn {
    width: 100%;
    margin-bottom: 16px;
}

.popup_bottom-info {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--base-color-5);
}

.popup_bottom-info a {
    text-decoration: none;
    color: var(--accent-color-1);
}

.close_popup {
    font-size: 12px;
    color: var(--accent-color-1);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-right: 30px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    min-width: 30px;
    height: 30px;
    position: relative;
}

.close_popup::before,
.close_popup::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 7px;
}

.close_popup::before {
    transform: translateY(-50%) rotate(-45deg);
}

.close_popup::after {
    transform: translateY(-50%) rotate(45deg);
}

.reservation_grid .styled_input {
    margin-bottom: 16px;
}

.reservation_grid {
    margin-bottom: 6px;
}

.reservation_grid-item {
    display: flex;
}

.reservation_grid-item > .styled_input {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
}

.reservation_grid-item > .styled_input + .styled_input {
    margin-left: 16px;
}

/*POPUP BOX*/

.popup.invite_popup {
    max-width: 480px;
}

.popup.invite_popup .invite_text {
    font-weight: 400;
}

.popup.invite_popup .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.popup.invite_popup .social_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 8px;
    transition: 0.3s;
}

.popup.invite_popup .social_button:hover {
    opacity: 0.7;
}

.popup.invite_popup .social_button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*RESORTS LIST*/
.resorts_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-bottom);
}

.resorts_list-rows {
    display: flex;
    flex-direction: column;
}

.resort_item {
    display: flex;
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--site-bg-color);
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0);
    transition: 0.3s;
}

.resort_item + .resort_item {
    margin-top: 6px;
}

.resort_item > .col:nth-child(1) {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    position: relative;
}

.resort_item-img {
    display: flex;
    margin-bottom: 16px;
}

.resort_item-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 5px 5px 5px 5px;
    object-fit: cover;
}

.resort_item .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.resort_item .rating .star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.resort_item .rating svg.star {
    fill: #cecfd9;   
}

.resort_item .rating svg.star.active {
    fill: #fec601;
}

.resort_item .rating .star img {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.resort_item .response-counter {
    font-size: 12px;
    color: var(--base-color-6);
    text-align: center;
}

.resort_item > .col:nth-child(2) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.resort_link {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color-1);
    text-decoration: none;
    margin-bottom: 18px;
    transition: 0.3s;
}

.resort_preference {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.resort_preference li {
    font-size: 12px;
    color: var(--base-color-7);
    margin: 0 6px 3px 0;
}

.resort_preference li + li::before {
    content: "•";
    margin-right: 6px;
}

.resort_description {
    font-size: 12px;
    color: var(--base-color-7);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.resort_item > .col:nth-child(3) {
    display: none;
}

/*RESORTS LIST*/
/*HOTEL DETAIL*/
.hotel_details {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-bottom);
}

.hotel_details .H1 {
    margin-bottom: 30px;
}

.hotel_details-inner {
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-4);
    overflow: hidden;
    width: calc(100% + 32px);
    margin: 0 -16px 20px -16px;
    background-color: var(--base-color-1);
}

.details_slider {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.statuses_place {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.statuses_place .status {
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 4px;
}

.statuses_place .status + .status {
    margin-top: 6px;
}

.big_slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.big_slider:not(.slick-initialized) .big_slider-item {
    flex: 0 0 100%;
}

.big_slider-item {
    display: block;
}

.big_slider-img {
    height: auto;
    position: relative;
}

.big_slider-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.big_slider-swipe {
    margin: -24px 0 0 24px;
    width: 24px;
    height: 24px;
}

.small_slider {
    display: none;
}

.details_control {
    display: flex;
    flex-direction: column;
    padding: 0 16px 30px 16px;
}

.details_info {
    order: -1;
    margin-bottom: 30px;
}

.details_rating {
    display: flex;
    align-items: center;
    padding: 0 10px 10px 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--accent-color-4);
}

.details_rating .rating {
    display: flex;
}

.details_rating .star {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details_rating svg.star {
    fill: #cecfd9;
}

.details_rating svg.star.active {
    fill: #fec601;
}

.details_rating .star img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.details_rating .rating_counter {
    font-size: 12px;
    color: var(--base-color-6);
    flex: 1 1 auto;
    padding-left: 20px;
}

.details_info-title {
    font-size: 14px;
    text-align: center;
    color: var(--base-color-6);
    display: block;
    margin-bottom: 8px;
}

.details_phones {
    margin-bottom: 20px;
}

.details_phones li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.details_phones li + li {
    margin-top: 10px;
}

.details_phones li a {
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.details_phones li a .icon {
    margin-right: 16px;
    width: 16px;
    height: 16px;
    fill: var(--accent-color-1);
}

.characteristics li {
    display: flex;
    font-size: 12px;
}

.characteristics li + li {
    margin-top: 14px;
}

.characteristics li .col:nth-child(1) {
    display: flex;
    flex: 0 0 50%;
    padding-right: 5px;
}

.characteristics li .col:nth-child(1) img {
    flex: 0 0 16px;
    display: block;
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.characteristics li .col:nth-child(1) span {
    color: var(--base-color-7);
}

.characteristics li .col:nth-child(2) {
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 0 50%;
    padding-left: 5px;
}

.characteristics .open_map {
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: var(--accent-color-1);
    margin-top: 6px;
    padding: 3px 22px 3px 6px;
    background-color: var(--accent-color-6);
    position: relative;
    transition: 0.3s;
}

.characteristics .open_map::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(-45deg);
}

.hotel_details-tabs {
    width: calc(100% + 32px);
    margin: 0 -16px;
}

article .selector.filled {
    margin-right: -16px;
    padding-right: 16px;
    width: calc(100% + 16px);
    overflow-y: auto;
}

article .selector.filled ul {
    display: flex;
    padding: 0 0 12px 0;
}

article .selector.filled li {
    margin: 0;
}

article .selector.filled li::before {
    display: none;
}

article .selector.filled li a {
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 100%;
    min-height: 26px;
    border-radius: 5px;
    transition: 0.3s;
    border-bottom: none;
}

article .selector.filled li.selected a {
    background-color: var(--accent-color-1);
    color: var(--base-color-1);
}

.tabs_list {
    display: flex;
    overflow-x: auto;
    height: 36px;
    background-color: var(--base-color-1);
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: sticky;
    top: 56px;
    z-index: 2;
}

.tabs_list a {
    white-space: nowrap;
}

.tabs_list a {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 100%;
    border-radius: 5px 5px 0 0;
    transition: 0.3s;
}

.tabs_list a.active {
    background-color: var(--accent-color-1);
    color: var(--base-color-1);
}

.tab_box {
    padding: 40px 16px 0 16px;
}

.hotel_details #tab-3, .hotel_details #tab-0 {
    user-select: none;
}

.hotel_location {
    display: flex;
    flex-direction: column;
}

.hotel_location-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hotel_location iframe {
    width: 100%;
    height: 330px;
    border-radius: var(--border-radius);
}

.hotel_price {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.hotel_price .H2 {
    text-align: center;
    margin-bottom: 30px;
}

.hotel_price-select {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.select_title {
    text-align: center;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

figure.table {
    width: calc(100% + 16px);
    margin-right: -16px;
    overflow-x: auto;
    padding-bottom: 10px;
}

article figure.table {
    width: calc(100% + 16px) !important;
}

figure.table table {
    font-size: 12px;
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
}

figure.table table table,
figure.table table th,
figure.table table td {
    border: 1px solid var(--accent-color-4);
}

figure.table table td,
figure.table table th {
    padding: 2px 4px;
}

figure.table table th {
    font-weight: 600;
    background-color: var(--base-color-1);
}

.hotel_price .last_change {
    font-size: 12px;
    margin-top: 15px;
    color: var(--base-color-7);
}

.hotel_room-article {
    margin-bottom: 40px;
}

.hotel_room {
    display: flex;
    flex-direction: column;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px;
    background-color: var(--base-color-1);
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
}

.hotel_room + .hotel_room {
    margin-top: 10px;
}

.hotel_room-top {
    margin-bottom: 10px;
}

.hotel_room-title {
    font-size: 20px;
    font-weight: 600;
}

.hotel_room-top .icon {
    display: none;
}

.hotel_room-slider {
    margin-bottom: 10px;
}

.hotel_room-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    margin-left: -3px;
    margin-right: -3px;
}

.hotel_room-image {
    flex: 0 0 156px;
    width: 156px;
    height: 117px;
    margin: 0 3px;
}

.hotel_room-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.hotel_room-description {
    font-size: 16px;
}

.hotel_gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 13px;
    width: calc(100% + 32px);
    margin: 0 -16px;
}

.hotel_gallery-image {
    height: auto;
    /* padding-bottom: 100%; */
    position: relative;
    cursor: pointer;
}

.hotel_gallery-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* position: absolute;
    top: 0;
    left: 0; */
    object-fit: cover;
    border-radius: var(--border-radius);
}

.promotion_article {
    margin-bottom: 40px;
}

.promotion_banner {
    display: block;
    position: relative;
    width: calc(100% + 32px);
    margin: 0 -16px 40px -16px;
}

.promotion_banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(24deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.promotion_banner.dark_theme::before {
    background: linear-gradient(24deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 212, 255, 0) 100%);
}

.promotion_banner img,
.promotion_banner-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.promotion_banner-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 25px;
    left: 16px;
    width: calc(100% - 32px);
    max-width: 400px;
    z-index: 2;
}

.promotion_banner-title {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: #C13055;
    margin-bottom: 10px;
}

.promotion_banner.dark_theme .promotion_banner-title {
    color: var(--base-color-1);
}

.promotion_banner-text {
    font-size: 14px;
}

.promotion_banner.dark_theme .promotion_banner-text {
    color: var(--base-color-1);
}

.comments_list-title {
    display: block;
}

.comments_list {
    display: flex;
    flex-direction: column;
    width: calc(100% + 32px);
    margin: 0 -16px;
}

.comment_item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: var(--border-radius);
    background-color: var(--base-color-1);
    border: 1px solid var(--accent-color-4);
}

.comment_item + .comment_item {
    margin-top: 10px;
}

.comment_top {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.comment_top > .col:nth-child(2) {
    order: -1;
    margin-bottom: 10px;
}

.comment_top .rating {
    display: flex;
}

.comment_top .rating .star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.comment_top .rating svg.star {
    fill: #cecfd9;
}

.comment_top .rating svg.star.active {
    fill: #fec601;
}

.comment_top .rating .star img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.comment_top > .col:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
}

.comment_item-title {
    font-size: 16px;
    font-weight: 600;
    margin-right: 16px;
}

.comment_item-date {
    font-size: 16px;
    color: var(--base-color-5);
}

.comment_text {
    font-size: 14px;
    line-height: 1.3;
}

.comment_form {
    width: calc(100% + 32px);
    margin: 60px -16px 0 -16px;
    padding: 30px 16px;
    background-color: var(--base-color-1);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-4);
}

.comment_form .set_rating {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
}

.comment_form .set_rating i {
    color: var(--additional-1);
    font-style: normal;
}

.comment_form .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comment_form .rating .star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.comment_form .rating svg.star {
    fill: #cecfd9;
}

.comment_form .rating svg.star.active {
    fill: #fec601;
}

.comment_form .rating .star img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.comment_form .btn {
    width: 100%;
}

.details_accordion {
    display: flex;
    flex-direction: column;
}

.details_accordion li {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--accent-color-4);
}

.details_accordion li + li {
    margin-top: 15px;
}

.accordion_title {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding: 0 30px 10px 0;
}

.details_accordion li.active .accordion_title {
    font-weight: 600;
}

.accordion_title::before,
.accordion_title::after {
    content: "";
    width: 14px;
    height: 1px;
    background-color: var(--accent-color-1);
    position: absolute;
    top: 9px;
    right: 2px;
    transition: 0.3s;
}

.accordion_title::after {
    transform: rotate(90deg);
}

.details_accordion li.active .accordion_title::before {
    transform: rotate(45deg);
    background-color: var(--additional-1);
}

.details_accordion li.active .accordion_title::after {
    transform: rotate(135deg);
    background-color: var(--additional-1);
}

.accordion_box {
    display: none;
    font-size: 14px;
    color: var(--base-color-7);
    padding-bottom: 10px;
}

.details_accordion li.active .accordion_box {
    display: block;
}

.hotel_zoom-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px 0 70px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    background:#fff;
    /*background: rgba(39, 53, 47, 0.7);*/
    /*backdrop-filter: blur(5px);*/
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.hotel_zoom-box.active {
    opacity: 1;
    visibility: visible;
}

.hotel_zoom-wrap {
    max-width: 960px;
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
}

.hotel_zoom-wrap .close_btn {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background:#EE3C30;
    border-radius:50%;
}

.hotel_zoom-wrap .close_btn::before,
.hotel_zoom-wrap .close_btn::after {
    background-color: var(--base-color-1);
}

.hotel_zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hotel_zoom .slick-list {
    height: 100%;
}

.hotel_zoom .slick-track {
    height: 100%;
}

.hotel_zoom .slick-arrow {
    font-size: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-color-1);
    border: none;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 1;
    cursor: pointer;
    opacity: 1;
}

.hotel_zoom .slick-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
}

.hotel_zoom .slick-arrow.slick-next {
    left: auto;
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
}

.hotel_zoom .slick-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--base-color-1);
    border-left: 2px solid var(--base-color-1);
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%) rotate(45deg);
}

.hotel_zoom .slick-dots {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
}

.hotel_zoom:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.hotel_zoom:not(.slick-initialized) .hotel_zoom-item {
    flex: 0 0 100%;
}

.hotel_zoom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.slick-initialized .slick-slide.hotel_zoom-item {
    display: flex;
}

.hotel_zoom-item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/*HOTEL DETAIL*/
/*ARTICLES LIST*/
.articles_list {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-bottom);
}

.resort_filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.resort_filter li {
    margin: 0 6px 6px 0;
}

.resort_filter a {
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    color: var(--accent-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid var(--accent-color-1);
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.resort_filter a.active {
    color: var(--base-color-1);
    background-color: var(--accent-color-1);
}

.articles_inner {
    display: flex;
    flex-direction: column;
}

.article_item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--base-color-1);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0);
    transition: 0.3s;
}

.article_item + .article_item {
    margin-top: 16px;
}

.article_item-img {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
    margin-bottom: 10px;
}

.article_item-img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.article_item > .col:nth-child(2) {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.article_item time {
    font-size: 12px;
    color: var(--base-color-6);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.article_item time .icon {
    fill: var(--base-color-6);
    display: block;
    margin-right: 8px;
    width: 14px;
    height: 14px;
}

.article_item-title {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
    transition: 0.3s;
}

.article_item-text {
    color: var(--base-color-6);
    font-size: 12px;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article_item-link {
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: var(--accent-color-1);
    align-self: flex-start;
    padding: 3px 22px 3px 6px;
    background-color: var(--accent-color-6);
    position: relative;
    transition: 0.3s;
}

.article_item-link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(-45deg);
}

/*ARTICLES LIST*/
/*INTERESTED*/
.interested {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.left_menu .interested {
    display: none;
}

.interested_list {
    display: flex;
    flex-direction: column;
}

.interested_item {
    display: flex;
    border: 1px solid var(--accent-color-4);
    background: var(--base-color-1);
    border-radius: var(--border-radius);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
    transition: 0.3s;
}

.interested_item + .interested_item {
    margin-top: 10px;
}

.interested_item > .col:nth-child(1) {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interested_item-img {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 4px;
}

.interested_item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interested_item time {
    font-size: 12px;
    color: var(--base-color-6);
    text-align: center;
}

.interested_item > .col:nth-child(2) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.interested_item-title {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
    transition: 0.3s;
}

.interested_item-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    margin-bottom: 10px;
}

.interested_item-link {
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    color: var(--accent-color-1);
    align-self: flex-start;
    margin-top: auto;
    padding: 3px 22px 3px 6px;
    background-color: var(--accent-color-6);
    position: relative;
    transition: 0.3s;
}

.interested_item-link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.3s;
}

/*INTERESTED*/
/*SEARCH RESULTS*/
.search_results {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-bottom);
}

.search_results-counter {
    font-size: 14px;
    margin-bottom: 26px;
    display: block;
}

.search_results-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}

.search_results-item {
    display: flex;
    flex-direction: column;
    background-color: var(--base-color-1);
    border: 1px solid var(--accent-color-4);
    border-radius: var(--border-radius);
    transition: 0.3s;
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
}

.search_results-img {
    display: block;
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    position: relative;
}

.search_results-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.search_results-item figcaption {
    padding: 10px;
}

.search_results-title {
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    display: block;
    transition: 0.3s;
}

 /* TODO Ivan attention! Add style for popup phone numbers*/
.form_phones {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.form_phones-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

/*SEARCH RESULTS*/

@media only screen and (max-width: 640px) {
    .image_resized {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* 404 */

.text_404_num {
    font-size: 64px;
    line-height: 1;
    text-align: center;
    display: block;
    margin: 0 0 20px 0;
    color: var(--additional-1);
}

.text_404_title {
    text-align: center;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.subtitle_404 {
    text-align: center;
    font-size: 14px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.links_404_title .btn {
    width: fit-content;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

img[src^="data:image"] {
    background: linear-gradient(
            90deg,
            var(--accent-color-5) 25%,
            #d5e3de 37%,
            var(--accent-color-4) 63%
    );
    background-size: 400% 100%;
    animation: skeleton 1.4s ease infinite;
}
@keyframes skeleton { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }