@font-face {
    font-family: 'SF Pro Display Regular', sans-serif;
    src: url("fonts/SF-Pro-Display-Regular.otf") format("opentype");
}

@font-face {
    font-family: 'SF Pro Display Medium', sans-serif;
    src: url("fonts/SF-Pro-Display-Medium.otf") format("opentype");
}

@font-face {
    font-family: 'SF Pro Display Black', sans-serif;
    src: url("fonts/SF-Pro-Display-Black.otf") format("opentype");
}

:root {
    --form_color: #F8EF00;
    --second_color: #6D6D6D;
    --stroke_color: #D9D9D9;
    --bg_color: #EAEBEC;
    --white_color: #FFFFFF;
    --black_color: #000000;
}
/* The container */
.container2 {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 105px;
}

/* Hide the browser's default radio button */
.container2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #D9D9D9;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container2:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container2 input:checked ~ .checkmark {
    background-color: #FFE800;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container2 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container2 .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFE800;
}

.cent{
    cursor: pointer;
}

body {
    background-color: var(--bg_color);
    font-family: 'SF Pro Display Regular', sans-serif;
    font-size: 20px;
}

.h1 {
    font-size: 44px;
}

.h2 {
    font-size: 40px;
    font-weight: 800;
}
label {
    margin: 0px;
}
p {
    margin: 0px;
}

.h3 {
    font-size: 36px;
}

.title {
    font-size: 28px;
    line-height: 28px;
}

.title2 {
    font-size: 40px;
    line-height: 28px;
    margin: 0 0 15px 0!important;
    padding: 0!important;

}
.rotate {
    transform: rotate(-180deg);
    /*transform: rotate(180deg);*/
    transition: .3s;
}
.rotate-reset {
    transform: rotate(0deg);
    transition: .3s;
}
.rotate1 {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.rotate2 {
    -webkit-transform: rotate(-180deg) translate3d(0, 0, 0);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.card_title {
    font-size: 26px;
    line-height: 34px;
}

.subtitle {
    font-size: 28px;
    line-height: 28px;
}

.regular_thin {
    font-weight: 300;
}

.medium {
    font-weight: 500;
}

.heavy_medium {
    font-family: 'SF Pro Display Medium', sans-serif;
    font-weight: 600;
}

.heavy_medium2 {
    font-family: 'SF Pro Display Medium', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.semibold_italic {
    font-style: italic;
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.heavy_bold {
    font-family: 'SF Pro Display Black', sans-serif;
    font-weight: 800;
}

.text {
    font-size: 20px;
    line-height: 24px;
}

.text_radio_card {
    font-size: 16px;
    line-height: 19px;
}

* {
    margin: 0;
    padding: 0;
}

.body_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 90px;
}

.nav_page {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back_to {
    font-family: 'SF Pro Display Regular', sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: var(--second_color);
}

.location {
    max-width: 546px;
    width: 100%;
    margin: 9px 0;
}

.location input[type=radio] {
    display: none;
}

.location input[type=radio]:checked + label {
    width: 100%;
    border: none;
    background-color: var(--form_color);
    font-size: 16px;
    font-weight: 600;
}

.select_radio {
    width: 100%;
    display: flex;
}

.label_stella {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top-left-radius: 36px;
    border-bottom-left-radius: 36px;
    background-color: var(--white_color);
    font-size: 16px;
    font-weight: 400;
    padding: 18px 0;
}

.label_nord {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
    background-color: var(--white_color);
    padding: 18px 0;
    font-size: 16px;
    font-weight: 400;
}


.tab {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.tab-nav > input[type="radio"] {
    display: none;
}

.tab_content {
    display: none;
}

#content-1:has(~ .tab-nav > #tab-btn-1:checked),
#content-2:has(~ .tab-nav > #tab-btn-2:checked),
#content-3:has(~ .tab-nav > #tab-btn-3:checked) {
    display: flex;
}

.tab-nav {
    display: flex;
    max-width: 408px;
    width: 100%;
    order: -1;
    background-color: var(--white_color);
    border-radius: 36px;
    padding: 6px;
}


.tab-nav > label {
    padding: 11px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 136px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    -webkit-appearance: button;
}

.tab-nav > input[type="radio"]:checked + label {
    background-color: var(--form_color);
    font-weight: 600;
    cursor: default;
    border-radius: 24px;
}




#content-1 .inner_tab {
    display: flex;
    column-gap: 20px;
    width: 100%;
}

#content-1 .type_subscription {
    background-color: var(--white_color);
    border: 2px solid var(--form_color);
    border-radius: 36px;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#content-1 .form_radio {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

#content-1 .form_radio input[type="radio"] {
    display: none;
}

#content-1 .form_radio label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 34px;
    line-height: 24px;
    user-select: none;
}

#content-1 .form_radio label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: var(--bg_color);
    border-radius: 50%;
    border: 3px solid var(--stroke_color);
}

/* Checked */

#content-1 .form_radio input[type=radio]:checked + label:before {
    background-color: var(--form_color);
}

img {
    width: 100%;
}

#content-1 .description_subscription {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#content-1 .important_info {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

#content-1 .included {
    display: flex;
    flex-direction: column;
    row-gap: 12px;

    .subtitle {
        max-width: 455px;
    }
}

#content-1 .list_included {
    padding-left: 30px;
}


#content-1 .price_subscription {
    background-color: var(--white_color);
    border: 2px solid var(--form_color);
    border-radius: 36px;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#content-1 .payment_schedule {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#content-1 .sale {
    display: flex;
    flex-direction: column;
    row-gap:20px;
    justify-content: space-between;
    align-items: left;
    background-color: var(--bg_color);
    color: var(--black_color);
    border: none;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    img {
        height: 24px;
        width: 24px;
    }
}

#content-1 .sale_price {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

#content-1 .custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

#content-1 .custom-checkbox + label {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
    justify-content: flex-start;
}

#content-1 .custom-checkbox + label::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 4px;
    margin-right: 10px;
    background: var(--bg_color) no-repeat center center;
    background-size: 50% 50%;
}

#content-1 .custom-checkbox:checked + label::before {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--bg_color);
    background-color: var(--form_color);
    background-image: url("image/check.svg");
    background-size: 90%;
}

#content-1 .payment_schedule > form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#content-1 .btn_price_subscription {
    background-color: var(--form_color);
    color: var(--black_color);
    border: none;
    border-radius: 36px;
    padding: 16px 56px;
    max-width: 211px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
#content-1 .btn_price_subscription:hover{
    background-color:#fff169;
}

/*  CONTENT 2 */

#content-2 .club_cards {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 30px;
    justify-content: space-between;
    width: 100%;
    background-color: var(--white_color);
    border-radius: 36px;
    border: 2px solid var(--form_color);
}

#content-2 .nav_page_club_cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#content-2 .select-css {
    display: block;
    font-size: 18px;
    font-family: sans-serif;
    /*font-weight: 700;*/
    color: black; /*цвет текста*/
    line-height: 22px;
    padding: 10px 20px;
    width: 100%; /*ширина select*/
    max-width: 199px;
    box-sizing: border-box;
    margin: 0;
    /*border: 1px solid #aaa;*/
    border: none;
    border-radius: 24px;
    /*box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);*/
    /*border-radius: .5em;*/
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--bg_color);
    background-image: url('data:image/svg+xml,\
  <svg width="35" height="21" viewBox="0 0 35 21" fill="none" xmlns="http://www.w3.org/2000/svg">\
    <path d="M1.5 2L17.5 18L33.5 2" stroke="black" stroke-width="6"/>\
    </svg>');, linear-gradient(to bottom, #ffffff 0 %, #e5e5e5 100 %); /*картинка стрелочки в svg*/
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

#content-2 .select-css::-ms-expand {
    display: none;
}

#content-2 .select-css:hover {
    border-color: black;
}

#content-2 .select-css:focus {
    border-color: white;
    /*box-shadow: 0 0 1px 3px rgba(233, 85, 34, 1); !*цвет рамки селект при выборе*!*/
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}

#content-2 .select-css option {
    font-weight: normal;
}

*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}

#content-2 .carts {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 15px;
    width: 100%;
}

#content-2 .basic {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    background-color: var(--bg_color);
    border-radius: 24px;
    padding: 20px 30px;
    width: 49%;
    /*max-width: 470px;*/
    height: fit-content;
}

#content-2 .basic_carts_title_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#content-2 .basic_info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#content-2 .basic_chevron > img {
    width: 32px;
    height: 16px;
    transition: .5s;
    cursor: pointer;
}

#content-2 .basic_title_time {
    font-size: 18px;
    line-height: 22px;
}

#content-2 .list_included {
    padding-left: 30px;
}

#content-2 .buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    width: 100%;
}

#content-2 .btn_buy {
    background-color: var(--form_color);
    color: var(--black_color);
    border: none;
    border-radius: 24px;
    padding: 16px 71px;
    max-width: 194px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
#content-2 .btn_buy:hover{
    background-color:#fff169;
}

#content-2 .discount {
    font-size: 14px;
    line-height: 17px;
    font-weight: 300;
    max-width: 264px;
    width: 100%;
}

#content-2 span {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
}

/* CONTENT 3 */

.services {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 30px;
    justify-content: space-between;
    width: 100%;
    background-color: var(--white_color);
    border-radius: 36px;
    border: 2px solid var(--form_color);
}

.service_carts {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 15px;
    width: 100%;
}

.service_card {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    background-color: var(--bg_color);
    border-radius: 24px;
    padding: 20px 30px;
    width: 100%;
    max-width: 49%;
    height: fit-content;
}

.service_carts_title_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.service_chevron {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    cursor: pointer;
}

.form_radio_service {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.form_radio_service input[type="radio"] {
    display: none;
}

.form_radio_service label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 34px;
    line-height: 24px;
    user-select: none;
}

.form_radio_service label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: var(--bg_color);
    border-radius: 50%;
    border: 3px solid var(--stroke_color);
}

/* Checked */

.form_radio_service input[type=radio]:checked + label:before {
    background-color: var(--form_color);
}

.additional_info {
    font-size: 18px;
    line-height: 22px;
}

.btn_service {
    background-color: var(--form_color);
    color: var(--black_color);
    border: none;
    border-radius: 24px;
    padding: 16px 51px;
    max-width: 194px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn_service{
    background-color:#fff169;
}
.btn_buy {
    background-color: var(--form_color);
    color: var(--black_color);
    border: none;
    border-radius: 24px;
    padding: 16px 51px;
    max-width: 194px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-top: 20px;*/
}
.btn_buy:hover{
    background-color:#fff169;
}
.list_time {
    list-style: none;
    margin-bottom: 15px;
}

.service_card_two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
    background-color: var(--bg_color);
    border-radius: 24px;
    padding: 20px 30px;
    width: 100%;
    /*max-width: 470px;*/
    /*height: 191px;*/
}

.service_card_three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
    background-color: var(--bg_color);
    border-radius: 24px;
    padding: 20px 30px;
    width: 100%;
    /*max-width: 470px;*/
    height: 150px;
}



@media screen and (max-width: 1200px) {
    .wrapper {
        /* max-width: 868px;*/
    }

    .inner_tab {
        flex-direction: column;
    }

    .type_subscription {
        border-bottom: none !important;
        border-bottom-left-radius: unset !important;
        border-bottom-right-radius: unset !important;
        padding: 0;
    }

    .type_subscription, .price_subscription {
        width: unset !important;
    }

    .price_subscription {
        border-top: none !important;
        border-top-left-radius: unset !important;
        border-top-right-radius: unset !important;
        row-gap: 15px;
        padding: 0;
    }

    .basic {
        /*width: 49%;
        max-width: 334px !important;*/
    }

    .buy {
        flex-direction: column;
        row-gap: 12px;
    }

    .discount, .btn_buy {
        max-width: unset !important;
    }

    .service_card, .service_card_two, .service_card_three {
        /*max-width: 334px !important;*/
    }

    .form_radio_service {
        flex-direction: column;
        row-gap: 15px;
    }

    .form_radio_service label {
        padding-left: 44px !important;
    }
}

@media screen and (max-width: 900px) {
    .wrapper {
        max-width: 90%;
    }

    .nav_page {
        flex-direction: column;
        row-gap: 30px;
    }

    .page_info {
        width: 100%;
        align-items: flex-start;
    }

    .location {
        max-width: unset;
    }

    .inner_tab {
        flex-direction: column;
    }

    .tab {
        align-items: center;
    }

    .basic {
        width: 100%!important;
        /*max-width: 444px !important;*/
    }

    .discount {
        max-width: 435px !important;
    }

    .service_card, .service_card_two, .service_card_three {
        /*max-width: 444px !important;*/
    }

    .form_radio_service {
        flex-direction: unset !important;
    }

    .form_radio_service label {
        padding-left: 34px !important;
    }
}

@media screen and (max-width: 600px) {
    * {
        font-size: 16px;
    }

    .h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .title {
        font-size: 28px;
        line-height: 28px;
    }

    .card_title {
        font-size: 26px;
        line-height: 34px;
    }

    #content-2 .subtitle {
        font-size: 24px;
        line-height: 29px;
    }

    .text, .text_radio_card {
        font-size: 16px;
        line-height: 19px;
    }

    .wrapper {
        max-width: 90%;
        width: 100%;
    }

    .select-css {
        max-width: 100px !important;
    }

    .back_to {
        font-size: 18px;
        line-height: 21px;
    }

    .location input[type=radio]:checked + label {
        font-size: 15px;
        line-height: 18px;
    }

    .type_subscription, .price_subscription {
        padding: 20px !important;
    }

    .club_cards, .basic {
        padding: 20px !important;
    }

    .sale > img {
        height: 16px !important;
        width: 16px !important;
    }

    .btn_price_subscription {
        max-width: unset !important;
    }

    .custom-checkbox + label::before {
        margin-right: 8px !important;
    }

    .basic {
        width: 100%!important;
        max-width: 600px !important;
    }

    .buy {
        align-items: flex-start !important;
    }

    .discount {
        max-width: 216px !important;
    }

    .services {
        padding: 20px !important;
    }

    .service_card {
        padding: 20px !important;
    }

    .service_card, .service_card_two, .service_card_three {
        max-width: 600px !important;
    }

    .form_radio_service {
        flex-direction: column !important;
    }

    .form_radio_service label {
        padding-left: 44px !important;
    }

    .btn_service {
        max-width: unset !important;
    }
}

.p2 {
    display: none !important;
}

.form-item {
    width: 100%;
}

.form-item-custom-search-types select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.custom-search-selector {
    width: 100%;
    background: url(/t_prices/image/Polygon%2017.svg) no-repeat right;
    background-size: 5%;
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.carts .card {
    display: none;
}

.form_radio_b {
    display: flex;
    row-gap: 5px;
    column-gap: 13px;
    flex-wrap: wrap;
}

.grafik1 .sale_price {
    margin-bottom: 20px;
}

.grafik2 .sale_price {
    margin-bottom: 20px;
}

.grafik_img1, .grafik_img2 {
    position: absolute;
    right: 20px;
    transform: rotate(-180deg);
    transition: .3s;
}

.grafik_img1.rotate, .grafik_img2.rotate {
    transform: rotate(0deg);
    transition: .3s;
}

.tab-nav > label {
    cursor: pointer;
}

.marg {
    margin-bottom: 10px;
}

.discount2 {
    font-size: 12px;
    line-height: 17px;
    font-weight: 300;
    max-width: 264px;
    width: 100%;
}

.buy2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    width: 100%;
}

.medium_2 {
    font-size: 22px !important;
}

.gray {
    color: #666;
}

.pos {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

@media screen and (max-width: 760px) {
    .form_radio_b {
        display: flex;
        gap: 5px;
        flex-direction: column;
    }

    .service_card {
        max-width: 100% !important;
    }

    .buy2 {
        flex-direction: column;
        row-gap: 10px;
    }

    #content-1 .custom-checkbox + label {
        font-size: 16px;
    }

    .medium_2 {
        font-size: 16px !important;
        line-height: normal !important;
    }

    .small_2 {
        font-size: 12px !important;
        line-height: normal !important;
    }

    .buy a {
        width: 100% !important;
    }

    .wd-popup-element {
        width: 90% !important;
    }

    .schedule_price {
        font-size: 24px !important;
    }
}

.modal-color-btn {
    color: black!important;
}
.title-modal {
    color: black
}
.dm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
/* активируем модальное окно */

.mfp-content .dm-overlay {
    display: block;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}
/* блочная таблица */

.dm-table {
    display: table;
    width: 100%;
    height: 100%;
}
/* ячейка блочной таблицы */

.dm-cell {
    display: table-cell;
    padding: 0 1em;
    vertical-align: middle;
    text-align: center;
}
/* модальный блок */

.dm-modal {
    display: inline-block;
    padding: 20px;
    max-width: 50em;
    background: white;
    -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    color: #cfd8dc;
    text-align: left;
}
/* изображения в модальном окне */

.dm-modal img {
    width: 100%;
    height: auto;
}
/* миниатюры изображений */

.pl-left,
.pl-right {
    width: 25%;
    height: auto;
}
/* миниатюра справа */

.pl-right {
    float: right;
    margin: 5px 0 5px 15px;
}
/* миниатюра слева */

.pl-left {
    float: left;
    margin: 5px 15px 5px 0;
}
/* встраиваемое видео в модальном окне */

.video {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
}
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* рисуем кнопарь закрытия */

.close {
    z-index: 9999;
    float: right;
    width: 30px;
    height: 30px;
    color: #cfd8dc;
    text-align: center;
    text-decoration: none;
    line-height: 26px;
    cursor: pointer;
}
.close:after {
    display: block;
    border: 2px solid #cfd8dc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: 'X';
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}
/* кнопка закрытия при наведении */

.close:hover:after {
    border-color: #fff;
    color: #fff;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/* варианты фонвой заливки модального блока */

.green {
    background: #388e3c!important;
}
.cyan {
    background: #0097a7!important;
}
.teal {
    background: #00796b!important;
}
/* движуха при появлении блоков с содержанием */

@-moz-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}
@-webkit-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}


.promo-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

#promo-code-before-16,
#promo-code-full{
    width: 100%;
    padding: 20px;
    font-size: 20px;
    line-height: 24px;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: var(--bg_color);
    color: unset;
    transition: border-color 0.3s ease;
}

#apply-promo-before-16:hover,
#apply-promo-full:hover{
    background: transparent;
}

.promo-apply-btn {
    position: absolute;
    right: 4%;
    background: transparent;
    cursor: pointer;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transform: rotate(90deg);
}

.promo-apply-btn img {
    height: 24px;
    width: 24px;
}

#remove-promo-before-16,
#remove-promo-full {
    min-width: unset;
    margin-left: 10px;
}

#promo-message-before-16.error,
#promo-message-full.error {
    color: red;
    font-weight: bold;
    font-size: 14px;
}

.input-error {
    border: 2px solid red !important;
    outline: none;
}




