﻿
@font-face {
    font-family: "slick";
    src: url("../fonts/slick/slick.eot");
    src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.b-help-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.b-help-tabs__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 349px;
    padding-top: 40px;
    padding-bottom: 28px;
    padding-right: 8px;
    border-right: 1px solid #EDEEF0;
}

    .b-help-tabs__nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Центрирование текста и стрелки */
        padding: 12px 8px 12px 16px;
        font-size: 16px;
        font-weight: 500;
        line-height: 22.4px;
        color: #266C29;
        border-radius: 6px;
        position: relative;
        padding-right: 40px; /* Добавлен отступ для текста, чтобы он не пересекался со стрелкой */
    }


        .b-help-tabs__nav .nav-link:after {
            content: "";
            width: 24px;
            height: 24px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M17 10L12 15L7 10" stroke="%23266C29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            right: 16px; /* Позиция стрелки справа */
            top: 50%;
            transform: translateY(-50%);
        }

        .b-help-tabs__nav .nav-link:hover {
            background: #F3F7F3;
        }

        .b-help-tabs__nav .nav-link.active {
            background: #EAF3EB;
        }

            .b-help-tabs__nav .nav-link.active:after {
                transform: translateY(-50%) rotate(180deg); /* Ротация стрелки для активного состояния */
            }

.b-help-tabs__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(100% - 349px);
    padding-top: 40px;
    padding-bottom: 28px;
    padding-left: 60px;
}

.b-help-tabs__list {
    font-weight: 500;
}

    .b-help-tabs__list li {
        padding-top: 6px;
        padding-bottom: 6px;
    }

.b-help-tabs__title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    color: #1C2229;
}

@media (max-width: 767.98px) {
    .b-help-tabs {
        display: block;
    }

    .b-help-tabs__nav, .b-help-tabs__main {
        width: 100%;
    }

    .b-help-tabs__main {
        padding-left: 0;
        padding-top: 0;
    }

    .b-help-tabs__title {
        margin-bottom: 20px;
        font-size: 28px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .b-help-tabs__title {
        font-size: 24px;
    }
}


@media (max-width: 1024px) {
    #currentBreadcrumb {
        padding-left: unset !important;
        white-space: normal !important;
    }
}

.b-help-accordion .card {
    border: none;
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.b-help-accordion .card-header {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
    cursor: pointer;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 48px;
}

    .b-help-accordion .card-header .btn-link {
        all: unset;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

        .b-help-accordion .card-header .btn-link:after {
            content: "";
            width: 24px;
            height: 24px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M17 10L12 15L7 10" stroke="%23266C29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .b-help-accordion .card-header .btn-link.collapsed:after {
            transform: translateY(-50%) rotate(180deg);
        }

.b-help-accordion .card-body {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

    .b-help-accordion .card-body ul {
        padding-left: 0;
        margin: 0;
        list-style: none;
    }

        .b-help-accordion .card-body ul li {
            margin: 0;
            padding: 8px 0;
            position: relative;
        }

            .b-help-accordion .card-body ul li:not(:last-child):after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: rgba(0, 0, 0, 0.1);
            }

            .b-help-accordion .card-body ul li a {
                text-decoration: none;
                color: #266C29;
                font-weight: 500;
                transition: color 0.2s, text-decoration 0.2s;
            }

                .b-help-accordion .card-body ul li a:hover {
                    text-decoration: underline;
                    color: #184d1f;
                }


/*   */
.whatsapp {
    font-weight: bold;
    color: #25D366; /* WhatsApp  */
}

.viber {
    font-weight: bold;
    color: #7360F2; /* Viber  */
}

.telegram {
    font-weight: bold;
    color: #0088CC; /* Telegram  */
}

.slack {
    background: linear-gradient(90deg, #4A154B, #36C5F0, #2EB67D, #E01E5A);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


.ui-color_csat {
    fill: #F25F0D;
    filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(2314%) hue-rotate(358deg) brightness(98%) contrast(94%);
    stroke: #F25F0D;
}
.ui-color_nps {
    fill: #F2370D;
    filter: brightness(0) saturate(100%) invert(40%) sepia(86%) saturate(5649%) hue-rotate(356deg) brightness(95%) contrast(99%);
    stroke: #F2370D;
}
.ui-color_ces {
    fill: #F2110D;
    filter: brightness(0) saturate(100%) invert(49%) sepia(80%) saturate(7457%) hue-rotate(347deg) brightness(86%) contrast(129%);
    stroke: #F2110D;
}
.ui-color_enps {
    fill: #E87902;
    filter: brightness(0) saturate(100%) invert(54%) sepia(26%) saturate(6608%) hue-rotate(7deg) brightness(98%) contrast(98%);
    stroke: #E87902;
}
.ui-color_pmf {
    fill: #C98A00;
    filter: brightness(0) saturate(100%) invert(61%) sepia(43%) saturate(7045%) hue-rotate(23deg) brightness(103%) contrast(101%);
    stroke: #C98A00;
}
.ui-color_surveys {
    fill: #01B1A7;
    filter: brightness(0) saturate(100%) invert(51%) sepia(29%) saturate(6995%) hue-rotate(147deg) brightness(100%) contrast(99%);
    stroke: #01B1A7;
}
.ui-color_rating {
    fill: #4D53DD;
    filter: brightness(0) saturate(100%) invert(37%) sepia(38%) saturate(2140%) hue-rotate(213deg) brightness(87%) contrast(99%);
    stroke: #4D53DD;
}
.ui-color_widget {
    fill: #C257DC;
    filter: brightness(0) saturate(100%) invert(48%) sepia(69%) saturate(1304%) hue-rotate(243deg) brightness(85%) contrast(104%);
    stroke: #C257DC;
}
.ui-color_payment {
    fill: #57A332;
    filter: brightness(0) saturate(100%) invert(53%) sepia(85%) saturate(395%) hue-rotate(56deg) brightness(88%) contrast(83%);
    stroke: #57A332;
}
.ui-color_feedback {
    fill: #0573C7;
    filter: brightness(0) saturate(100%) invert(30%) sepia(62%) saturate(4568%) hue-rotate(191deg) brightness(91%) contrast(96%);
    stroke: #0573C7;
}
.ui-color_online {
    fill: #DC578F;
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(6051%) hue-rotate(302deg) brightness(90%) contrast(90%);
    stroke: #DC578F;
}
.ui-color_online-text {
    fill: #9780F1;
    filter: brightness(0) saturate(100%) invert(57%) sepia(58%) saturate(4026%) hue-rotate(220deg) brightness(104%) contrast(89%);
    stroke: #9780F1;
}

.custom-benefit-padding {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.b-price-3-card{
    width: 280px!important;
}

.b-price-3__group{
    justify-content: center;
}

/* Стандартные стили для градиентов текста */
.brand-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Цвета для каждого бренда */
.booking {
    font-weight: bold; color: #003580; /* Booking темно-синий */
}

.tripadvisor {
    font-weight: bold; color: #00B7B7; /* Tripadvisor бирюзовый */
}

.instagram {
    font-weight: bold; color: #E1306C; /* Instagram розово-фиолетовый */
}

.trustpilot {
    font-weight: bold;
    color: #00B67A; /* Trustpilot зелёный */
}

.facebook {
    color: #1877F2; /* Facebook синий */
    font-weight: bold; color: #1877F2; /* Facebook синий */
}


.brand-glovo {
    color: #fdbd00;
    font-weight: bold;
}

.brand-wolt {
    color: #00b2e1;
    font-weight: bold;
}

.brand-ubereats {
    color: #06c167;
    font-weight: bold;
}

.brand-liferaldo {
    color: #d81b60;
    font-weight: bold;
}

.brand-delivery {
    color: #ff5000;
    font-weight: bold;
}

.brand-foodora {
    color: #d70f64;
    font-weight: bold;
}

@keyframes wiggle {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    75% {
        transform: translateX(-10px);
    }
}

.wiggle-button.wiggling {
    animation: wiggle 0.5s ease-in-out;
}


.week-button {
    border-radius: .625rem !important;
    min-height: 3.5rem !important;
    min-width: 3.5rem !important;
}
.google-logo {
    background: linear-gradient(90deg, #4285F4 14%, #EA4335 31%, #FBBC05 65%, #34A853 90%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.brand-gradient.facebook {
    color: #1877F2;
    font-weight: bold;
}

.brand-gradient.instagram {
    background: linear-gradient(90deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.modal-img .modal-lg {
    max-width: 90%!important;
}
#fqm-start-csat iframe {
    width: 100% !important;
}
.b-price-3-card__total-row {
    display: flex;
    justify-content: space-between;
}
.b-price-3-card__info-column {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.b-price-3-card__info-column:first-child {
    text-align: left;
}

.b-price-3-card__info-column:last-child {
    text-align: right;
}
.b-price-3-card__info{
    font-size:11px!important;
}

.ui-subtitle {
    font-weight: normal;
}

.b-price-4__price-new{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Скрыть стрелки для Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

@media (max-width: 600px) {
    .b-price-4__price-new {
        width: auto;
    }
}

.ui-badge-type{
    background: #FFFFFF !important;
    color: black!important;
    font-weight: bold;
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 30px;
    max-width: 560px;
    margin: auto;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-body {
    padding: 0;
}

.card-img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.list-green li::marker {
    color: green;
}

.rounded-custom {
    border-radius: 1.25rem !important;
}



.row.text-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap; 
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}




@media (min-width: 768px) and (max-width: 885px) {
    .payment-icon {
        width: 50px;
        height: 50px;
    }

    .mastercard-icon {
        height: 23px;
        width: 40px;
    }
    .custom-style-photo {
        max-width: 131px !important;
    }
}

@media (max-width: 1165px) {
    .custom-img-size-responsive {
       /* max-width: 150px !important;*/
        /*max-height: 150px !important;*/
    }
    .three-mb-response {
        margin-bottom: 1rem !important;
    }
}

.custom-block-paying-the-bill {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.custom-paragraph-paying-the-bill {
    flex-grow: 1;
}

@media (max-width: 1105px) {
    .unique-workflow-block {
        width: 100%;
    }

    .unique-workflow-row {
        flex-direction: column;
        align-items: center;
    }

    .unique-workflow-img {
        max-width: 46% !important;
    }

    .unique-workflow-img-response {
        max-width: 31% !important;
    }

    .arrow-svg {
        display: none !important;
    }
}


@media (max-width: 767px) {
    .payment-icon {
        width: 60px;
        height: 60px;
    }

    .mastercard-icon {
        height: 33px;
        width: 50px;
    }
    .arrow-svg-2 {
        display: none !important;
    }
        .unique-order-block {
            width: 100%;
        }

        .unique-order-row {
            flex-direction: column;
            align-items: center;
        }

        .unique-order-img {
            max-width: 80% !important;
        }

    .seven-mb-response {
        margin-bottom: 1rem !important;
    }
    }


@media (min-width: 768px) and (max-width: 1165px) {
    .no-col-md-6 {
        flex: none !important;
        max-width: none !important;
    }
    .custom-online-menu-wrapper {
        margin-left: 50px;
    }

    .how-work-img,
    .online-order-img,
    .custom-online-menu-phone {
        width: 200px !important;
        height: 400px !important;
    }
}

.tariff-service-bg {
    background-color: white;
    border-radius: 1.25rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .tariff-service-bg:hover {
        transform: translateY(-5px);
    }
/* Увеличиваем размер чекбоксов */
.select-all-services-tariffs-checkbox {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid #ccc;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    appearance: none; /* Убираем стандартный стиль чекбокса */
    cursor: pointer;
    background-color: #f3f5f7;
    position: absolute !important;
    margin-top: -0.1rem !important;
    margin-left: -2.25rem !important;
}

.select-rounded-services-tariffs-checkbox {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid #ccc;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    appearance: none; /* Убираем стандартный стиль чекбокса */
    cursor: pointer;
    background-color: #f3f5f7;
    position: absolute !important;
    margin-top: -0.1rem !important;
    margin-left: 0rem !important;
}

/* Делаем границу более выраженной при наведении */
.select-all-services-tariffs-checkbox:hover {
    border-color: #777;
}

/* Окрашивание чекбокса при выборе */
    .select-all-services-tariffs-checkbox:checked {
        background-color: #28a745;
        border-color: #28a745;
    }

    /* Стили для текста рядом с чекбоксом */
        .select-all-services-tariffs-checkbox:checked + label {
            color: #28a745;
            font-weight: bold;
        }

/* Увеличиваем размер чекбоксов */
.services-tariffs-checkbox {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid #ccc;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    appearance: none; /* Убираем стандартный стиль чекбокса */
    cursor: pointer;
    background-color: #f3f5f7;
    position: absolute !important;
    margin-top: -0.8rem !important;
    margin-left: -1.25rem !important;
}

.select-rounded-services-tariffs-checkbox:hover,
.services-tariffs-checkbox:hover {
    border-color: #777;
}

.select-rounded-services-tariffs-checkbox:checked,
.services-tariffs-checkbox:checked {
    background-color: #28a745;
    border-color: #28a745;
}

        /* Стили для текста рядом с чекбоксом */
        .services-tariffs-checkbox:checked + label {
            color: #28a745;
            font-weight: bold;
        }
.services-tariffs-item .services-tariffs-price {
    font-weight: bold;
}
/* Курсор для лейблов */
.services-tariffs-price,
.services-tariffs-label {
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Исправляем порядок вложенности */
.services-tariffs-item input:checked ~ .services-tariffs-label {
    color: #28a745;
    font-weight: bold;
}

/* Стиль для всех элементов в строке */
.services-tariffs-item {
    display: flex;
    align-items: center;
}

.select-rounded-services-tariffs-checkbox:checked::before,
.services-tariffs-checkbox:checked::before {
    content: "✔";
    color: white;
    font-size: 13px;
    text-align: center;
    display: block;
}


.select-all-services-tariffs-checkbox:checked::before {
    content: "✔";
    color: white;
    font-size: 13px;
    text-align: center;
    display: block;
}

@media (max-width: 767px) {
    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .services-tariffs-label {
        width: 100px;
    }
    .services-tariffs-checkbox {
        z-index: 1;
    }
}

@media (min-width: 768px) and (max-width: 950px) {
    .services-tariffs-item .toggle-row::before {
        top: 0 !important;
        left: -45px !important;
    }
    .services-tariffs-checkbox {
        margin-top: -19px !important;
        margin-left: -48px !important;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 149px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -221px !important;
    }
}

@media (min-width: 640px) and (max-width: 699px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 111px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -221px !important;
    }
}

@media (min-width: 600px) and (max-width: 639px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 111px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -197px !important;
    }
}

@media (min-width: 575px) and (max-width: 599px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 111px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -176px !important;
    }
}

@media (min-width: 535px) and (max-width: 574px) {
    .services-tariffs-item .toggle-row::before {
        top: 16px !important;
        left: 100px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -160px !important;
    }
}

@media (min-width: 520px) and (max-width: 534px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 85px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -160px !important;
    }
}

@media (min-width: 490px) and (max-width: 519px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 70px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -160px !important;
    }
}

@media (min-width: 460px) and (max-width: 489px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 65px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -145px !important;
    }
}

@media (min-width: 445px) and (max-width: 459px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 60px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -130px !important;
    }
}
@media (min-width: 418px) and (max-width: 444px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 50px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -130px !important;
    }
}

@media (min-width: 400px) and (max-width: 417px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 37px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -130px !important;
    }
}

@media (max-width: 399px) {
    .services-tariffs-item .toggle-row::before {
        top: 13px !important;
        left: 37px !important;
    }

    .services-tariffs-checkbox {
        margin-top: 13px !important;
        margin-left: -130px !important;
    }
}

@media (max-width: 1340px) {
    .text-3-row-response {
        display: none !important;
    }
}

    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc,
    .VIpgJd-ZVi9od-aZ2wEe-OiiCO VIpgJd-ZVi9od-aZ2wEe-OiiCO-ti6hGc,
    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
        display: none !important;
    }


.custom-online-menu-wrapper {
    position: relative;
    width: 550px; /* Фиксированная ширина */
    height: 600px; /* Фиксированная высота */
}

.custom-online-menu-phone {
    position: absolute;
    width: 211px;
    height: 424px;
    transition: all 0.3s ease;
}

.custom-online-menu-phone-1 {
    top: 110px;
    left: -5%;
    transform: rotate(-10deg);
    z-index: 2;
}

.custom-online-menu-phone-2 {
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.custom-online-menu-phone-3 {
    top: 149px;
    left: 65%;
    transform: rotate(10deg);
}

.case-qr-card {
    padding: 10px !important;
    border: none;
    background-color: #f9f9f9 !important;
    border-radius: 15px;
    max-width: none !important;
}

.case-qr-card img {
    height: 250px;
}

.highlight-error {
    animation: shake 0.5s ease;
    background-color: rgba(255, 0, 0, 0.2);
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.case-qr-div {
    display: none; 
}

    .case-qr-div.visible {
        display: block;
    }


/* На экранах 1920px и выше */
@media (min-width: 1920px) {
    .img-fluid-online-menu {
        width: 211px !important;
        height: 424px !important;
    }
    .arrow-svg-online-menu {
        width: 70.91px !important;
        height: 70.91px !important;
    }
    .arrow-service-waiter {
        margin-bottom: 90px;
    }
    .arrow-tip-payment,
    .arrow-bill-payment {
        margin-bottom: 140px;
    }
    .arrow-table {
        margin-bottom: 120px;
    }
    .arrow-online-order {
        margin-bottom: 40px;
    }
}

/* На экранах от 1200px до 1919px (обычно для ноутбуков и небольших мониторов) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .custom-online-menu-phone-1 {
        top: 110px;
        left: -5%;
    }
    .custom-online-menu-phone-2 {
        top: 30px;
        left: 42%;
    }
    .custom-online-menu-phone-3 {
        top: 149px;
        left: 55%;
    }

    .custom-online-menu-phone,
    .img-fluid-online-menu {
        width: 180px !important;
        height: 360px !important;
    }
    .arrow-svg-online-menu {
        width: 70.25px !important;
        height: 70.25px !important;
    }
    .arrow-service-waiter {
        margin-bottom: 90px;
    }
    .arrow-tip-payment,
    .arrow-bill-payment {
        margin-bottom: 140px;
    }
    .arrow-table {
        margin-bottom: 120px;
    }
    .arrow-online-order {
        margin-bottom: 40px;
    }
}

/* На экранах от 992px до 1199px (обычно для планшетов в горизонтальной ориентации) */
@media (min-width: 992px) and (max-width: 1199px) {
    .custom-online-menu-phone-1 {
        top: 90px;
        left: -5%;
    }

    .custom-online-menu-phone-2 {
        top: 30px;
        left: 35%;
    }

    .custom-online-menu-phone-3 {
        top: 115px;
        left: 46%;
    }
    .custom-online-menu-phone,
    .img-fluid-online-menu {
        width: 150px !important;
        height: 300px !important;
    }
    .arrow-svg-online-menu {
        width: 68px !important;
        height: 68px !important;
    }
    .arrow-service-waiter {
        margin-bottom: 110px;
    }
    .arrow-tip-payment,
    .arrow-bill-payment {
        margin-bottom: 140px;
    }
    .arrow-table {
        margin-bottom: 120px;
    }
    .arrow-online-order {
        margin-bottom: 50px;
    }
}

/* На экранах от 768px до 991px (планшеты в вертикальной ориентации) */
@media (min-width: 768px) and (max-width: 991px) {
    .custom-online-menu-phone-1 {
        top: 86px;
        left: 16%;
    }

    .custom-online-menu-phone-3 {
        top: 120px;
        left: 57%;
    }
    .custom-online-menu-phone,
    .img-fluid-online-menu {
        width: 130px !important;
        height: 260px !important;
    }
    .arrow-svg-online-menu {
        width: 64.31px !important;
        height: 64.31px !important;
    }
    .arrow-service-waiter {
        margin-bottom: 130px;
    }
    .arrow-bill-payment {
        margin-bottom: 110px;
    }
    .arrow-tip-payment {
        margin-bottom: 200px;
    }
    .arrow-table {
        margin-bottom: 120px;
    }
    .arrow-online-order {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .choice-tariff-button {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .select-rounded-services-tariffs-checkbox {
        margin-left: -20rem !important;
    }
    .service-description {
        flex: 2;
    }
    .choice-tariff-div {
        flex-direction: column;
    }
    .service-option-header {
        flex-direction: column;
    }
    .fix-row-phone {
        display: block;
        width: 100%;
    }
    .fa-description-phone {
        display: none !important;
    }
    .img-not-phone {
        height: 500px !important;
    }
    .svg-arrow-down {
        width: 59px;
        height: 59px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .target-slider .slider-container {
        display: flex;
        flex-wrap: wrap;
    }

    .target-slider .slider-item {
        width: 32% !important;
        margin-bottom: 20px;
        flex: 1 1 auto;
    }

    .target-slider .slider-btn {
        top: 50%;
        transform: translateY(-50%);
    }

    .arrow-target-slider {
        display: none !important;
    }

    .fa-col-unset,
    .fa-2-phones {
        flex: unset !important;
        max-width: unset !important;
    }
}

@media (min-width: 818px) and (max-width: 940px) {
    .arrow-tip-payment {
        margin-bottom: 240px !important;
    }
}

@media (min-width: 768px) and (max-width: 817px) {
    .arrow-tip-payment {
        margin-bottom: 280px !important;
    }
}

@media (max-width: 1023.98px) {
    .h2, h2 {
     text-align: center;
    }
}

.has-discount {
    color: green;
}

.img-qr-copy {
    width: 500px;
    height: auto;
}

@media (max-width: 1050px) {
    .img-qr-copy {
        width: 300px !important;
        height: auto;
    }
}

.arrow-icon {
    width: 16px; 
    height: auto;
    margin-left: 5px; 
    vertical-align: middle;
}

.rotate-180 {
    transform: rotate(180deg);
}

.svg-arrow-down {
    transform: rotate(90deg);
    display: block;
    margin: 10px auto 0; 
}

.cta-green-text {
    text-shadow: 0 0 5px rgba(47, 135, 51, 0.5);
    font-weight: bold;
    color: #2F8733;
}
.footer__notice {
    font-size: 0.7rem; /* Небольшой размер текста */
    color: #ffffff; /* Цвет текста, как у остального футера */
    opacity: 0.8; /* Лёгкая прозрачность для ненавязчивости */
    margin-top: 15px; /* Отступ сверху */
    line-height: 1.5; /* Удобочитаемость */
}


@media (max-width: 410px) {
    .select-rounded-services-tariffs-checkbox {
        margin-left: -18rem !important;
    }
}


#bwc-wrap {
    display: none !important;
}

.custom-ai-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff; /* Белый фон */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Лёгкая тень */
    color: #000000; /* Чёрная стрелка */
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}


@media (min-width: 1650px) and (max-width: 1920px) {
    .b-slider_3 {
        display: none;
    }
}


@media (max-width: 500px) {
    .accordion .card-body {
        font-size: 14px !important;
    }

    .accordion .card-title {
        font-size: 19px !important;
    }

    .b-posts__title {
        font-size: 19px !important;
    }

    .ui-title {
        font-size: 19px;
    }

    .b-article .ui-title-page {
        font-size: 18px;
    }

    body,
    .btn {
        font-size: 14px !important;
    }

    .h3,
    h3 {
        font-size: 18px !important;
    }

    .h4,
    h4 {
        font-size: 17px !important;
    }

    .ui-header-subtitle,
    .ui-subtitle-tarif,
    .ui-subtitle {
        font-size: 17px !important;
    }

    .h5-tarif,
    .h5,
    h5 {
        font-size: 15px !important;
    }
}

@media (max-width: 380px) {
    .accordion .card-body {
        font-size: 14px !important;
    }

    .accordion .card-title {
        font-size: 16px !important;
    }

    .b-posts__title {
        font-size: 16px !important;
    }

    .ui-title {
        font-size: 16px;
    }

    .b-article .ui-title-page {
        font-size: 17px;
    }


    body,
    .btn {
        font-size: 14px !important;
    }

    .h3,
    h3 {
        font-size: 17px !important;
    }

    .h4,
    h4 {
        font-size: 16px !important;
    }

    .ui-header-subtitle,
    .ui-subtitle-tarif,
    .ui-subtitle {
        font-size: 15px !important;
    }

    .h5-tarif,
    .h5,
    h5 {
        font-size: 15px !important;
    }
}

.custom-ai-btn:disabled {
    background-color: #f5f5f5; /* Светло-серый фон для неактивных кнопок */
    color: #bdbdbd; /* Серый цвет стрелки */
    cursor: not-allowed;
    box-shadow: none; /* Убираем тень для неактивных кнопок */
}

.custom-ai-btn:hover:not(:disabled) {
    background-color: #e6ffe6; /* Светло-зелёный фон при наведении */
    color: #28a745; /* Тёмно-зелёный цвет стрелки */
}


.language-select {
    position: relative;
    width: 200px;
    font-family: Arial, sans-serif;
}

.language-select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
}

    .language-select-header:hover {
        background-color: #e2e2e2;
    }

.language-arrow {
    margin-left: 5px;
}

.language-select-list {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .language-select-list input {
        width: 100%;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
        box-sizing: border-box;
    }

.language-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .language-options li {
        display: flex;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .language-options li:hover {
            background-color: #f1f1f1;
        }

    .language-options img {
        width: 20px;
        height: 15px;
        margin-right: 10px;
        border-radius: 2px;
    }

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    vertical-align: middle;
}

.language-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .language-options li {
        display: flex;
        align-items: center;
        padding: 5px 10px;
        cursor: pointer;
    }

        .language-options li:hover {
            background-color: #f0f0f0;
        }

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #419f46;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Скрываем только основной контент */
.content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .content.loaded {
        visibility: visible;
        opacity: 1;
    }

/* Стили для лоадера */
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


@media (max-width: 1400px) {
    #selectedLanguage:focus {
        box-shadow: none !important;
    }
}

@media (max-width: 800px) {
    .header__logo source {
        width: 50px;
        height: 50px;
    }

    .header__logo img {
        width: 50px;
        height: 50px;
        padding: 5px;
    }
}

.custom-list-block-onlmenu,
.custom-list-block,
.custom-list-header {
    list-style: none !important;
    padding-left: 0;
    margin-left: 0 !important;
}

    .custom-list-header li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .custom-list-header li::before {
            content: "✔";
            color: green;
            position: absolute;
            left: 0;
            top: 10px;
        }

    .custom-list-block-onlmenu li,
    .custom-list-block li {
        position: relative;
        padding-left: 20px;
    }

        .custom-list-block li::before {
            content: "✔";
            color: green;
            position: absolute;
            left: 0;
        }

        .custom-list-block-onlmenu li::before {
            content: "✔";
            color: #2F8733;
            position: absolute;
            left: 0;
        }

.timeline {
    position: relative;
    padding-left: 40px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 59px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #79ab7f;
    }

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.timeline-number {
    width: 41px;
    height: 41px;
    color: #186d1b;
    background: #f5faf6;
    border: 2px solid #79ab7f;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    line-height: 40px;
    margin-right: 70px;
    font-size: 1.65em;
    flex-shrink: 0;
    position: relative;
}

    .timeline-number::after {
        content: "";
        position: absolute;
        left: -20px;
        top: 50%;
        width: 59px;
        height: 2px;
        background: #79ab7f;
        transform: translateX(100%);
    }



.laptops-ai-container {
    height: 300px; /* Высота контейнера для позиционирования */
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-ai {
    width: 150px; /* Базовый размер ноутбуков */
    height: auto;
    transition: all 0.3s ease-in-out;
}

.laptop-center-ai {
    z-index: 1;
    transform: scale(3.1) translateY(-1px); /* Увеличение центрального ноутбука */
}

.laptop-left-ai {
    z-index: 2;
    transform: scale(2.1) translate(-91px, 55px); /* Смещение левого ноутбука */
}

.laptop-right-ai {
    z-index: 2;
    transform: scale(2.3) translate(68px, 32px); /* Смещение правого ноутбука */
}

@media (max-width: 1150px) {
    .no-col-md {
        flex: unset !important;
        max-width: unset !important;
    }
}

@media (max-width: 488px) {
    .laptops-ai-container {
        margin-right: 60px;
    }
}

@media (max-width: 778px) {
    .laptop-left-ai {
        transform: scale(1.6) translate(-91px, 55px);
    }

    .laptop-center-ai {
        transform: scale(2.4) translateY(-1px);
    }

    .laptop-right-ai {
        transform: scale(1.8) translate(68px, 32px);
    }
}

@media (max-width: 635px) {
    .laptop-left-ai {
        transform: scale(1) translate(-91px, 55px);
    }

    .laptop-center-ai {
        transform: scale(1.8) translateY(-1px);
    }

    .laptop-right-ai {
        transform: scale(1.2) translate(68px, 32px);
    }
}

@media (max-width: 428px) {
    .laptop-left-ai {
        transform: scale(0.9) translate(-91px, 55px);
    }

    .laptop-center-ai {
        transform: scale(1.4) translateY(-1px);
    }

    .laptop-right-ai {
        transform: scale(1) translate(68px, 32px);
    }
}

@media (max-width: 392px) {
    .asset-img-positive {
        width: 190px;
    }
}

.b-how-work-default {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}



.border-bottom-tariff {
    border-bottom: 1px solid #79ab7f;
}

.ui-subtitle-tarif {
    font-size: 23px;
    line-height: 1.5;
}

.h5-tarif {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.tariff-service-bg {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: white;
    border-radius: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-block-tariff {
    background-color: #f5faf6;
    border: 2px solid #79ab7f;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-wiggle-tariff {
    height: 60px;
    width: 180px;
    font-weight: 600;
}


@media (max-width: 767px) {
    .cta-section-tariff {
        margin-bottom: 1rem;
    }
    .timeline {
        padding-left: 0px;
    }

        .timeline::before {
            left: 20px;
        }

    .timeline-number::after {
        left: 20px;
        width: 20px;
    }

    .timeline-number {
        margin-right: 30px;
    }
}

.discount-block {
    border-radius: 30px;
    padding: 25px;
}

@media (max-width: 960px) {
    .btn-group-tariff {
        display: none; /* Скрываем кнопки на экранах <= 960px */
    }

    #paymentPeriodDropdown {
        outline: none;
        border: none;
        display: block;
        width: 100%;
        padding: 10px;
    }
}

@media (min-width: 961px) {
    #paymentPeriodDropdown {
        display: none; /* Скрываем дропдаун на больших экранах */
    }
}


@media (min-width: 961px) {
    .d-md-none-tarif {
        display: none;
    }
}

@media (min-width: 961px) {
    .d-md-inline-flex-tarif {
        display: inline-flex !important;
    }
}

.tariff-dropdown {
    border: 2px solid #2F8733;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

    .tariff-dropdown:active {
        border: 2px solid #2F8733;
    }


.btn-tariff.active {
    color: #fff;
    background-color: #2F8733;
    border-color: #2F8733;
}


.tariff-dropdown select {
    appearance: none; /* Убираем стандартные стили */
    -webkit-appearance: none; /* Для Safari */
    -moz-appearance: none; /* Для Firefox */
    background: none; /* Убираем фон */
    border: none; /* Убираем рамку */
    outline: none; /* Убираем обводку */
    width: 100%;
    padding: 10px;
    padding-right: 30px; /* Добавляем отступ справа для стрелки */
    color: #000; /* Цвет текста */
    font-size: 16px; /* Размер шрифта */
}

    .tariff-dropdown select::-ms-expand {
        display: none; /* Скрываем стрелку в IE */
    }

    .tariff-dropdown select:focus {
        border: none; /* Убираем рамку при фокусе */
        outline: none; /* Убираем обводку при фокусе */
    }

/* Стиль для стрелки */
.tariff-dropdown::after {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #222 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 10px; /* Позиционируем стрелку внутри дропдауна */
    transform: translateY(-50%);
    pointer-events: none; /* Чтобы стрелка не мешала кликам */
}

.ui-header-subtitle {
    font-size: 20px;
}

.cta-block-main-tariff {
    background-color: #e2efe2;
    border: 4px solid #337c35;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-14 {
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.reviews-slider-2__item {
    text-align: center;
}

.reviews-slider-2__logo {
    width: 100%;
    max-width: 80px; /* Максимальная ширина логотипа */
    height: auto; /* Сохраняем пропорции */
    display: block;
    margin: 0 auto;
}

.reviews-slider-2__wrap {
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 5px;
}


@media (max-width: 767px) {
    .h2-free-mobile {
        text-align: center;
    }
}

.spacing {
    display: inline-block;
    width: 150px; /* Укажи нужный размер отступа */
}


.cta-block {
    background-color: #f5faf6; /* Светло-серый фон */
    border: 2px solid #79ab7f; /* Тёмно-зелёный для рамки */
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.cta-block-main {
    background-color: #e2efe2; /* Светло-серый фон */
    border: 4px solid #337c35; /* Тёмно-зелёный для рамки */
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1.05); /* Увеличение карточки */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Более сильная тень */
}


.ui-subtitle-tarif {
    font-size: 23px;
    line-height: 1.5;
}

.h5-tarif {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.btn-tarif-white {
    background: white;
}

.discount-block {
    border-radius: 30px;
    padding: 25px;
}

.discount-option {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px;
}

    .discount-option.active {
        background-color: #e6f9eb; /* Мягкий зелёный фон */
        border: 2px solid #28a745; /* Яркая зелёная рамка */
        color: #28a745; /* Текст скидки остаётся зелёным */
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Лёгкая тень */
        transform: scale(1.05); /* Легкое увеличение блока */
    }

    .tariff-card {
        padding-right: 5px;
        padding-left: 5px;
    }
.tariff-card-main {
    padding-left: 11px !important;
}

@media (max-width: 1024px) {
    .tariff-card {
        margin-bottom: 2rem !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .tariff-card-main {
        padding-left: 12px !important;
    }
}

@media (max-width: 767px) {
    .discount-options {
        flex-direction: column;
        border-bottom: none;
    }

    .tariff-card {
        padding-right: unset !important;
        padding-left: unset !important;
    }
}

.btn-tariff.active {
    color: #fff;
    background-color: #2F8733;
    border-color: #2F8733;
}

@media (max-width: 960px) {
    .btn-group-tariff {
        display: none; /* Скрываем кнопки на экранах <= 960px */
    }

    #paymentPeriodDropdown {
        outline: none;
        border: none;
        display: block;
        width: 100%;
        padding: 10px;
    }
}

@media (min-width: 961px) {
    #paymentPeriodDropdown {
        display: none; /* Скрываем дропдаун на больших экранах */
    }
}


@media (min-width: 961px) {
    .d-md-none-tarif {
        display: none;
    }
}

@media (min-width: 961px) {
    .d-md-inline-flex-tarif {
        display: inline-flex !important;
    }
}

.tariff-dropdown {
    border: 2px solid #2F8733;
}

    .tariff-dropdown:active {
        border: 2px solid #2F8733;
    }

.btn-wiggle-tariff {
    height: 60px;
    width: 180px;
    font-weight: 600;
}


.tariff-dropdown {
    border: 2px solid #2F8733;
    border-radius: 4px; /* Добавляем скругление углов */
    overflow: hidden; /* Скрываем стандартные стили дропдауна */
    position: relative; /* Добавляем относительное позиционирование для стрелки */
}

    .tariff-dropdown select {
        appearance: none; /* Убираем стандартные стили */
        -webkit-appearance: none; /* Для Safari */
        -moz-appearance: none; /* Для Firefox */
        background: none; /* Убираем фон */
        border: none; /* Убираем рамку */
        outline: none; /* Убираем обводку */
        width: 100%;
        padding: 10px;
        padding-right: 30px; /* Добавляем отступ справа для стрелки */
        color: #000; /* Цвет текста */
        font-size: 16px; /* Размер шрифта */
    }

        .tariff-dropdown select::-ms-expand {
            display: none; /* Скрываем стрелку в IE */
        }

        .tariff-dropdown select:focus {
            border: none; /* Убираем рамку при фокусе */
            outline: none; /* Убираем обводку при фокусе */
        }

    /* Стиль для стрелки */
    .tariff-dropdown::after {
        content: ' ';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        border-color: #222 transparent transparent transparent;
        position: absolute;
        top: 50%;
        right: 10px; /* Позиционируем стрелку внутри дропдауна */
        transform: translateY(-50%);
        pointer-events: none; /* Чтобы стрелка не мешала кликам */
    }



/* Новые стили для ссылок */
.b-posts__item a:not(.btn) {
    text-decoration: none !important;
    transition: color 0.3s ease;
}

    .b-posts__item a:not(.btn):hover {
        color: #1b4e1e !important;
    }

.b-posts__item a:hover .article-item {
    color: #1b4e1e !important;
}

.b-posts__btn:hover {
    color: #1b4e1e !important;
}

.b-posts__title:hover {
    color: #1b4e1e !important;
}


.case-qr-div.preview {
    display: block !important;
    max-height: 60px; /* Высота для отображения заголовка */
    overflow: hidden;
    position: relative;
    opacity: 0.8;
    margin-bottom: 10px;
}

    .case-qr-div.preview::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, #f9f9f9 100%);
    }

@media (max-width: 768px) {
    .case-qr-div.preview {
        max-height: 40px;
        margin-bottom: 5px;
    }

        .case-qr-div.preview::after {
            height: 15px;
        }

        /* Добавляем отступ только для последнего превью */
        .case-qr-div.preview:last-child {
            margin-bottom: 15px;
        }
}

@media (max-width: 767px) {
    .close-container-hidden, .close-container {
         top: 0% !important;
    }
    .title-img-logo {
        font-size: 0.9rem;
    }
}

.ui-header-subtitle {
    font-size: 20px;
}

.accordion-header {
    font-weight: 600 !important;
}
}
#selectedLanguageDisplay:hover, selectedLanguage:hover {
    color: #2f8733 !important;
}
.cms-page-content ul {
    list-style: disc !important;
}

ul {
    padding-left: 20px;
}

@media (max-width: 1160px) and (min-width: 768px) {
    .footer__group {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .footer__logo__img {
        width: 310px;
        height: auto;
    }
}
@media (min-width: 1024px) {
    #tariff-block .container {
        padding: 1rem;
    }
}

.meta-border {
    display: inline-block;
    border: 1px solid black;
    border-radius: 20px;
    padding: 6px 12px;
    text-align: center;
}

.web-develop-menu-block {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 3rem 1rem;
    margin-top: 200px;
    border-radius: 16px;
    overflow: visible;
}
.text-web-develop {
    display: flex;
    flex-direction: column;
}
.images-web-develop {
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.web-develop-phone-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 140%; /* Это позволяет изображению "вылезать" сверху и снизу */
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-image-wrapper {
    max-width: 100%;
    width: 370px;
}

    .web-develop-menu-block .stretched-link {
        z-index: 3; 
    }

.phone-image {
    width: 100%;
    height: auto;
}

.loyalty-image {
    width: 543px;
}

@media (max-width: 1301px) {

    .phone-image {
        top: -24%;
        right: -13%;
        width: 400px;
    }
    .loyalty-image {
        width: 450px !important;
    }
    .digital-call {
        width: 400px;
    }
    .phone-image-reviews {
        top: -27%;
        right: -21%;
        width: 500px;
    }
}

@media (max-width: 992px) {
    .web-develop-menu-block {
        padding: 3rem 1.5rem !important; 
        overflow: hidden; 
        height: auto;
        margin-top: auto;
    }
    .web-develop-phone-images {
        position: static !important;
        height: auto !important;
        transform: none !important;
        display: flex;
        justify-content: center;
    }


        .web-develop-menu-block .col-md-6 {
        max-width: 100%;
        flex: auto;
        }

        .web-develop-menu-block .order-md-1 {
            order: 2;
        }

        .phone-image {
            position: static !important;
            width: 100% !important;
            max-width: 280px !important;
            height: auto;
            margin: -10px auto 20px !important;
            transform: none !important;
            right: auto !important;
            top: auto !important;
            pointer-events: none;
        }
        .digital-call {
            width: 100% !important;
            max-width: 280px !important;
            height: auto !important;
        }

   
    .phone-image-wrapper {
        text-align: center;
    }
    .text-web-develop {
        align-items: center;
    }
       
}



@media (max-width: 1023.98px) and (min-width: 768px) {
    .web-develop-menu-block h2 {
        text-align: left !important;
    }
}

.svg-inline--fa {
    color: #2F8733;
}

.gradient-text-title {
    margin-bottom: 20px;
}

.onlmenu-svg-inline--fa {
    color: #2F8733;
}

.onl-menu-section-tarif .text-success {
    color: #ff6f00 !important;
}

.onl-menu-section-tarif .cta-block {
    background: #f2f0ec;
    border: 2px solid #ffb300;
}

.onl-menu-section-tarif .cta-block-main {
    background: #f2eddf;
    border: 4px solid #ff9800;
}

.onl-menu-section-tarif .btn-tariff.active {
    color: #fff;
    background-color: #2F8733;
    border-color: #2F8733;
}

.onl-menu-section-tarif .btn-outline-success {
    color: #2F8733;
    border-color: #2F8733;
}

    .onl-menu-section-tarif .btn-outline-success:hover {
        color: #fff;
        background-color: #2F8733;
        border-color: #2F8733;
    }

.onl-menu-section-tarif .tariff-dropdown {
    border: 2px solid #2F8733;
}

.bg-onlmenu {
    background: #f2f0ec;
}

.faq-onlmenu .accordion .card-title:hover {
    color: #2F8733;
}

.faq-onlmenu .accordion .card-title:before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="28" viewBox="0 0 16 28" fill="none"><path d="M1 14H15" stroke="%23fd7e14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 14L15 14" stroke="%23fd7e14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.faq-onlmenu .accordion .card-title.collapsed:before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="28" viewBox="0 0 16 28" fill="none"><path d="M1 14H15" stroke="%23fd7e14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 21L8 7" stroke="%23fd7e14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.timeline-onlmenu .timeline-number::after {
    background: #2F8733;
}

.timeline-onlmenu .timeline::before {
    background: #2F8733;
}

.timeline-onlmenu .timeline-number {
    border: 2px solid #2F8733;
    color: #6b3509;
}

.slider-onlmenu .ui-slider-2 .slick-arrow:not(.slick-disabled):hover {
    background: #2F8733;
}

.highlight-text-benefit {
    font-size: 40px;
    font-weight: bold;
    color: #2F8733;
    display: block;
}

@media (max-width: 1330px) and (min-width: 1099px) {
    .highlight-text-benefit {
        font-size: 35px;
    }
}

@media (max-width: 1098px) and (min-width: 769px) {
    .section-company .col-md-4 {
        max-width: 100%;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .highlight-text-benefit {
        font-size: calc(1.325rem + .9vw);
    }
}

/* Заголовок секции */


/* Верхний ряд: две карточки (меньшая и растянутая) */
.qr-top-row {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Меньшая занимает 1/3, большая — 2/3 */
    gap: 30px; /* Расстояние между карточками */
    margin-bottom: 30px; /* Отступ снизу до нижнего ряда */
}

/* Нижний ряд: три карточки равной ширины */
.qr-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Три равные колонки */
    gap: 30px; /* Расстояние между карточками */
}

/* Общие стили для карточек */
.qr-card-rest {
    background-color: #fff; /* Белый фон */
    border-radius: 10px; /* Скругленные углы */
    padding: 30px; /* Внутренние отступы */
    text-align: left; /* Текст слева */
}



    .rest-qr-card-icon img {
        width: 48px; /* Ширина иконки */
        height: 48px; /* Высота иконки */
    }



/* Адаптивность */
@media (max-width: 991px) {
    .qr-top-row,
    .qr-bottom-row {
        grid-template-columns: 1fr; /* Одна колонка на маленьких экранах */
    }
}

/* Стили для больших экранов (от 1200px и шире) */
@media (min-width: 1200px) {
    .qr-top-row {
        display: flex; /* Карточки в ряд */
        justify-content: space-between; /* Распределяем пространство между ними */
    }

        .qr-top-row .rest-qr-card-small {
            width: 540px; /* Первая карточка */
        }

        .qr-top-row .rest-qr-card-large {
            width: 726px; /* Вторая карточка */
        }
}

/* Стили для маленьких экранов (меньше 1200px) */
@media (max-width: 1199px) {
    .qr-top-row {
        display: flex;
        flex-direction: column; /* Карточки друг под другом */
        gap: 30px; /* Расстояние между карточками */
    }

        .qr-top-row .qr-card-rest {
            width: 100%; /* Карточки занимают всю ширину контейнера */
        }
}

.web-develop-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.web-develop-product-image {
    border-radius: 1rem;
}

.left-green-border {
    border-left: 3px solid #2F8733;
    padding-left: 1.5rem;
}


.bg-light-custom {
    background-color: #F3F5F7;
    border-radius: 20px;
}

.onl-menu-see-qr-wrapper {
    max-width: 170px;
}

.onl-menu-see-qr {
    border: 1px solid #E7EBEF;
    border-radius: 10px;
    background: #FCFCFD;
    padding: 20px;
}

.circle-bg {
    position: absolute;
    width: 733px;
    height: 702px;
    background-color: #E4EBF1;
    border-radius: 50%;
    bottom: -357px;
    right: 66px;
    transform: translateX(30%);
    z-index: 0;
}

.phone-img {
    position: relative;
    max-width: 270px;
    height: auto;
    border-radius: 2rem;
    z-index: 1;
}

@media (max-width: 1024px) {
    .onlmenu-how-section .col-md-6 {
        max-width: 100%;
        flex: 100%;
    }
    .onlmenu-how-section .onlmenu-how-text-block {
       display: flex;
       flex-direction: column;
       margin-block: 1rem;
       align-items: center;
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    border-radius: 16px;
    background: #F9F9FB;
    border: 1px solid #EBECED;
}




.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-header {
    cursor: pointer;
    font-weight: bold;
}

.accordion-list {
    list-style-type: none;
    padding-left: 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .accordion-header::before {
        content: "+";
        font-size: 20px;
        color: green;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .accordion-header.active::before {
        content: "-";
        color: green;
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 30px; /* To align text with headers */
}

.web-develop-online-menu {
margin-top: 95px;
}

.first-three {
    color: #ec008d;
}

.second-three {
    color: #01aced;
}

.third-three {
    color: #f7953b;
}

.digital-call {
    width: 370px;
    height: auto;
}

.accordion-restaurant .accordion-header::before,
.accordion-restaurant .accordion-header.active::before {
    color: #2F8733;
}

ol {
    padding-left: 20px;
}

.section-company-onlrest .highlight-text-benefit {
    color: #2F8733;
}

.section-service {
    padding-bottom: 60px;
}

@media (max-width: 411px) {
    .b-analysis__img {
        width: 120px;
    }
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,.2);
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

#showDetailsLink {
    color: #28a745;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-consent-bar button,
#modalAcceptBtn {
    background-color: #4CAF50;
    border: none;
    padding: 10px 25px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content {
    border-radius: 8px;
}

.modal-body {
    font-size: 14px;
}

.modal-header .close {
    font-size: 28px;
}

.cookie-container {
    display: flex;
    justify-content: space-around;
}

#cookieModal .nav-item {
    width: 33%;
    font-size: 24px;
    font-weight: bold;
}

#cookieModal .modal-header {
    padding: 30px 0 0 0 !important;
}

#cookieModal .modal-dialog {
    text-align: center;
    display: flex;
    justify-content: center;
}

#cookieModal .modal-content {
    width: 100%;
}

#cookieModal .card-header {
    display: flex;
    justify-content: space-evenly;
}

#cookieModal p {
    font-size: 15px;
    font-weight: 500;
}

#cookieModal .modal-footer .btn {
    margin-right: 10px;
}

#cookieModal .card-header a {
    font-size: 18px;
    font-weight: 500;
}

#cookieModal .card {
    border: none !important;
    box-shadow: none;
    padding: 0;
    margin: 15px;
}

#cookieModal .modal-body {
    height: 240px;
    overflow: auto;
}


#cookieModal input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    display: grid;
    place-content: center;
}

    #cookieModal input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
    }

    #cookieModal input[type="checkbox"]:checked::before {
        background: #2a692d;
        transform: scale(1);
        color: #2F8733;
        margin: 0;
        text-align: center;
        transform: translateX(0.03em);
    }

#cookieModal input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #2F8733;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #2F8733;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
}

.form-control + .form-control {
    margin-top: 1em;
}

.ul-list-unstyled {
    list-style: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1380px) {
    .main-image-resp {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 1381px) {
    .main-image-resp {
        width: 587px !important;
        height: 587px !important;
    }
}


.section-about-us-info {
    font-size: 4.1875rem;
    color: #2F8733;
}

.ttn {
    text-transform: none !important;
    display: inline-block;
}

.logo-gdpr-block {
gap: 30px;
}