@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* =========================
   TOOLTIP РЕЙТИНГА AUTOHUB
   ========================= */

.ah-rating-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    vertical-align: middle;
    font-family: Montserrat, sans-serif;
}

.ah-rating-tooltip__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    padding: 0;

    border: 1px solid #d9d9d9;
    border-radius: 50%;

    background: #fff;

    color: #777;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

.ah-rating-tooltip__trigger:hover {
    border-color: #EA6129;
    color: #EA6129;
    background: #FFF7F3;
}


/* Панель */

.ah-rating-tooltip__panel {
    position: absolute;
    top: calc(100% + 10px);

    display: block;

    width: 350px;
    max-width: calc(100vw - 24px);

    padding: 18px;

    border: 1px solid #ececec;
    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, .12),
        0 2px 8px rgba(0, 0, 0, .05);

    color: #282828;

    text-align: left;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-4px);

    pointer-events: none;

    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease;
}


/* Позиционирование */

.ah-rating-tooltip--right .ah-rating-tooltip__panel {
    right: 0;
}

.ah-rating-tooltip--left .ah-rating-tooltip__panel {
    left: 0;
}

.ah-rating-tooltip--center .ah-rating-tooltip__panel {
    left: 50%;
    transform: translate(-50%, -4px);
}


/* Открытие */

.ah-rating-tooltip:hover .ah-rating-tooltip__panel,
.ah-rating-tooltip:focus-within .ah-rating-tooltip__panel,
.ah-rating-tooltip.is-open .ah-rating-tooltip__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ah-rating-tooltip--center:hover .ah-rating-tooltip__panel,
.ah-rating-tooltip--center:focus-within .ah-rating-tooltip__panel,
.ah-rating-tooltip--center.is-open .ah-rating-tooltip__panel {
    transform: translate(-50%, 0);
}


/* Верх */

.ah-rating-tooltip__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 17px;
}

.ah-rating-tooltip__title {
    font-size: 15px;
    font-weight: 600;
}

.ah-rating-tooltip__total {
    white-space: nowrap;

    color: #282828;

    font-size: 21px;
    line-height: 1;
    font-weight: 700;
}

.ah-rating-tooltip__total small {
    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 12px;
    font-weight: 500;

    text-align: right;
}


/* Факторы */

.ah-rating-tooltip__factors {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ah-rating-tooltip__factor {
    display: block;
}

.ah-rating-tooltip__factor-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 6px;

    font-size: 14px;
}

.ah-rating-tooltip__factor-head strong {
    font-weight: 600;
}

.ah-rating-tooltip__factor-head b {
    font-weight: 600;
    white-space: nowrap;
}

.ah-rating-tooltip__bar {
    display: block;

    height: 5px;

    border-radius: 10px;

    background: #f1f1f1;

    overflow: hidden;
}

.ah-rating-tooltip__bar>span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: linear-gradient(90deg,
            #EA6129,
            #F38A5E);
}

.ah-rating-tooltip__meta {
    display: block;

    margin-top: 5px;

    color: #888;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}


/* Голоса */

.ah-rating-tooltip__votes {
    display: flex;
    justify-content: space-between;

    margin-top: 16px;
    padding-top: 13px;
  font-weight: 400;
    border-top: 1px solid #eee;

    font-size: 14px;
}

.ah-rating-tooltip__votes .is-positive {
    color: #16994B;
}

.ah-rating-tooltip__votes .is-negative {
    color: #D64242;
}


/* Почему рейтинг такой */

.ah-rating-tooltip__insights {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-top: 14px;
    padding: 11px 12px;

    border-radius: 9px;
    font-weight: 400px;
    background: #F8F8F8;
}

.ah-rating-tooltip__insight {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.ah-rating-tooltip__insight--positive b {
    color: #16994B;
}

.ah-rating-tooltip__insight--negative b {
    color: #D64242;
}


/* Низ */

.ah-rating-tooltip__footer {
    display: block;

    margin-top: 13px;
    font-weight: 400;

    color: #999;

    font-size: 11px;
    line-height: 12px;
}


/* =========================
   МОБИЛЬНЫЙ TOOLTIP
   ========================= */

@media (max-width: 860px) {

    .ah-rating-tooltip {
        position: relative;
    }

    .ah-rating-tooltip__trigger {
        width: 20px;
        height: 20px;

        font-size: 14px;

        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }


    /* На телефоне панель больше не зависит
       от положения рейтинга внутри карточки */

    .ah-rating-tooltip__panel,
    .ah-rating-tooltip--right .ah-rating-tooltip__panel,
    .ah-rating-tooltip--left .ah-rating-tooltip__panel,
    .ah-rating-tooltip--center .ah-rating-tooltip__panel {

        position: fixed;

        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;

        width: calc(100vw - 30px);
        max-width: 370px;

        max-height: calc(100dvh - 40px);

        padding: 17px;

        border-radius: 16px;

        overflow-x: hidden;
        overflow-y: auto;

        -webkit-overflow-scrolling: touch;

        z-index: 100001;

        transform: translate(-50%, calc(-50% + 8px));

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        box-sizing: border-box;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, .22),
            0 3px 12px rgba(0, 0, 0, .08);
    }


    /* Открытый tooltip */

    .ah-rating-tooltip.is-open .ah-rating-tooltip__panel,
    .ah-rating-tooltip--right.is-open .ah-rating-tooltip__panel,
    .ah-rating-tooltip--left.is-open .ah-rating-tooltip__panel,
    .ah-rating-tooltip--center.is-open .ah-rating-tooltip__panel {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translate(-50%, -50%);
    }


    /*
     * На touch-устройствах отключаем открытие
     * только от hover / focus.
     * Управление идет через .is-open из JS.
     */

    .ah-rating-tooltip:hover .ah-rating-tooltip__panel,
    .ah-rating-tooltip:focus-within .ah-rating-tooltip__panel {

        transform: translate(-50%, calc(-50% + 8px));
    }

    .ah-rating-tooltip.is-open:hover .ah-rating-tooltip__panel,
    .ah-rating-tooltip.is-open:focus-within .ah-rating-tooltip__panel {

        transform: translate(-50%, -50%);
    }


    /* Верх */

    .ah-rating-tooltip__head {
        gap: 12px;
        margin-bottom: 16px;
    }

    .ah-rating-tooltip__title {
        font-size: 15px;
        line-height: 20px;
    }

    .ah-rating-tooltip__total {
        font-size: 20px;
    }

    .ah-rating-tooltip__total small {
        font-size: 11px;
    }


    /* Факторы */

    .ah-rating-tooltip__factors {
        gap: 13px;
    }

    .ah-rating-tooltip__factor-head {
        gap: 10px;

        font-size: 13px;
        line-height: 18px;
    }

    .ah-rating-tooltip__meta {
        margin-top: 5px;

        font-size: 11px;
        line-height: 15px;
    }

    .ah-rating-tooltip__bar {
        height: 5px;
    }


    /* Голоса */

    .ah-rating-tooltip__votes {
        margin-top: 14px;
        padding-top: 12px;
        font-weight: 400;
        font-size: 13px;
    }


    /* Пояснения */

    .ah-rating-tooltip__insights {
        gap: 7px;

        margin-top: 13px;
        padding: 10px 11px;
    }

    .ah-rating-tooltip__insight {
        gap: 6px;

        font-size: 11px;
        line-height: 15px;
    }


    /* Подпись */

    .ah-rating-tooltip__footer {
        margin-top: 12px;

        font-size: 10px;
        line-height: 14px;
    }
}
/* =========================
   ФОН МОБИЛЬНОГО TOOLTIP
   ========================= */

.ah-rating-tooltip-backdrop {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .38);

    z-index: 100000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .18s ease,
        visibility .18s ease;
}

.ah-rating-tooltip-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Открытый tooltip должен быть выше фона */

@media (max-width: 860px) {

    .ah-rating-tooltip.is-open .ah-rating-tooltip__panel {
        z-index: 100002;
    }

    /*
     * На мобильном не даем focus/hover
     * самостоятельно держать окно открытым.
     * Открытие только через .is-open.
     */

    .ah-rating-tooltip:hover .ah-rating-tooltip__panel,
    .ah-rating-tooltip:focus-within .ah-rating-tooltip__panel {

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translate(-50%, calc(-50% + 8px));
    }

    .ah-rating-tooltip.is-open .ah-rating-tooltip__panel,
    .ah-rating-tooltip.is-open:hover .ah-rating-tooltip__panel,
    .ah-rating-tooltip.is-open:focus-within .ah-rating-tooltip__panel {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translate(-50%, -50%);
    }
     body.ah-rating-tooltip-open {
        overflow: hidden;
    }
}
































.logoCompanyExport {

    font-family: Montserrat;
}

.companyLogoPlaceholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;

    background-color: var(--company-placeholder-color, #475569);
    border-radius: 8px;
    overflow: hidden;
}

.companyLogoPlaceholder__initials {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    user-select: none;
}


/* Montserrat загружается позже через JS */
.fonts-loaded h1,
.fonts-loaded .mainYTP {
    font-family: 'Montserrat', sans-serif;
}

.counterCompare {
    display: flex;
    height: 20px;
    padding: 2px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: #F8743E;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    flex-shrink: 0;
}

.rightArr {
    display: flex;
}

/* SeelectorBlock */
.blockCurrrentRating {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.itemsCurentRating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    background: #FFF8F5;
    border-radius: 8px;
    overflow: hidden;
}

.itemCurrentRating {
    display: flex;
    padding: 12px 4px;
    min-width: 125px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    box-sizing: border-box;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.descArt {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.itemCurrentRating:hover {
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(234, 97, 41, 0.14) 0%, rgba(211, 69, 10, 0.14) 100%);
}

.itemCurrentRating.active {
    border-radius: 8px;
    color: #FFF;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
}

/*  */
/* .adsCardColor {
    background: #FFF8F5 !important;
} */

.blockInfoRightParts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.adsRightPart {
    margin-right: 12px;
}

.adsMarkText {
    position: absolute;
    color: #636363;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);

    writing-mode: vertical-rl;

    text-orientation: mixed;

    font-weight: 400;
    letter-spacing: 0.12em;
    opacity: .7;
}


/* Quiz Compnay */
.quizWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 46px 0;
    box-sizing: border-box;
}

.rightPartQuiz {
    height: 100%;
    display: flex;
}

.rightPartQuiz img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --- NEW: стартовая кнопка как кликабельная --- */
.btnStartQuiz {
    cursor: pointer;
}

/* --- NEW: состояния кнопок квиза --- */
.nextButton.is-disabled {
    opacity: .45;
    pointer-events: none;
    cursor: not-allowed;
}

.nextButton.is-loading {
    opacity: .8;
    pointer-events: none;
}

.nextButton.is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    animation: quizSpin .8s linear infinite;
}

@keyframes quizSpin {
    to {
        transform: rotate(360deg);
    }
}

.varQuiz.is-active {
    outline: 2px solid #F25C05;
    outline-offset: -1px;
}

.field-error {
    border-color: #E53935 !important;
    outline: 1px solid #E53935;
}

.fieldErrorText {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #E53935;
}

.itemInputEnd.field-error {
    padding: 6px;
    border-radius: 8px;
    background: rgba(229, 57, 53, .06);
}

.sendLead.is-loading {
    opacity: .75;
    cursor: wait;
}

/* --- NEW: toast справа --- */
.quizToastContainer {
    position: fixed;
    right: 20px;
    color: #282828;
    font-weight: 400;
    line-height: 20px;
    bottom: 20px;
    font-size: 15px;
    z-index: 9999;
    font-family: Montserrat;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 24px));
}

.quizToast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    background: #1f1f1f;
    color: #fff;
    transform: translateX(120%);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
}

.quizToast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.quizToast.is-success {
    background: #1f7a3f;
}

.quizToast.is-error {
    background: #b3261e;
}

.quizToast__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 20px;
}

.quizToast__text {
    font-size: 14px;
    line-height: 1.35;
    flex: 1;
}

.quizToast__close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: .85;
}

.quizToast__close:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .quizToastContainer {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }
}


.startQuizBlock {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1240px;
    justify-content: space-between;
    border-radius: 16px;
    align-items: flex-end;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    background: linear-gradient(147deg, #E55A21 5.78%, #E24D10 96.25%);
}

.leftPArtQuizStart {
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.titleQuizStart {
    color: #FFF;
    font-family: "Montserrat Alternates";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.descQuizStart {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-top: -18px;
}

.btnStartQuiz {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #FFF;
    display: flex;
    max-width: 496px;
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    cursor: pointer;
    height: 44px;
    font-weight: 500;
    line-height: 20px;

}

.arrowNextBtn {
    position: absolute;
    right: 4px;
}

.btnStartQuiz:hover {
    background: #ff8b5e;
    color: #fff;
}

.btnStartQuiz span {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.arrowNextBtn {
    border-radius: 8px;
    background: #F56023;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.quizBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.inQuizBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 1240px;
}

.itemQuiz {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    width: 100%;
    padding: 32px 24px;
    box-sizing: border-box;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.titleQuiz {
    width: 100%;
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.blockVarsQuiz {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.varQuiz {
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    display: flex;
    height: 52px;
    cursor: pointer;
    padding: 16px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    transition: 0.24s;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
}

.varQuiz:hover {
    background: #DADADA;
}

.blockButtons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    align-items: center;

}

.backButton {
    border-radius: 12px;
    background: #F56023;
    display: inline-flex;
    padding: 14px;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.24s;
}

.backButton:hover,
.nextButton:hover {
    background: #f87643;
}

.nextButton {
    display: flex;
    width: 140px;
    padding: 4px 4px 4px 20px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
}

.arrowNext {
    border-radius: 12px;
    background: #F56023;
    display: inline-flex;
    padding: 14px;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.24s;
}

.descQuiz {
    width: 100%;
    color: #282828;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -24px;
}

.blockVarsQuiz textarea {
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    color: #282828;
    padding: 16px 10px;
    box-sizing: border-box;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-height: 216px;
}

.contactData {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.itemInput {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.itemInput label {
    color: #282828;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.colorRed {
    color: #E55B22;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.itemInput input {
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    padding: 12px 10px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    color: #282828;

    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    outline: none;
}

.itemQuiz form {
    width: 100%;
}

.itemInput textarea {
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    min-height: 110px;
    padding: 12px 10px;
    color: #282828;

    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}

.itemInputEnd {
    display: flex;
    gap: 4px;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.sendLead {
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    height: 44px;
    padding: 12px 4px 12px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.24s;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    border: none;
}

.sendLead:hover {
    background: linear-gradient(90deg, #fa7642 0%, #f7692d 100%);

}

/* --- NEW: states for quiz logic --- */
.nextButton.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.nextButton.is-loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.nextButton.is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    animation: quizSpin .8s linear infinite;
}

@keyframes quizSpin {
    to {
        transform: rotate(360deg);
    }
}

/* выбранный вариант */
.varQuiz.is-active {
    outline: 2px solid #F25C05;
    /* оставил ваш оранжевый акцент */
    outline-offset: -1px;
}

/* ошибки */
.field-error {
    border-color: #E53935 !important;
    outline: 1px solid #E53935;
}

.fieldErrorText {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #E53935;
}

.itemInputEnd.field-error {
    padding: 6px;
    border-radius: 8px;
    background: rgba(229, 57, 53, .06);
}

.sendLead.is-loading {
    opacity: .75;
    cursor: wait;
}

/* _____________ */
/* headerMoreItems */
.exportvars {
    display: flex;
    flex-direction: column;
    position: relative;
}

.firstElemExportCar {
    cursor: pointer;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    transition: 0.24s;
}

.firstElemExportCar span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.openMainPopupReq {
    cursor: pointer;
}

.itemMenu {
    display: flex;
    gap: 4px;
}

.itemAdded {
    transition: 0.24s;
    display: flex;
    gap: 6px;
    align-items: center;
    width: max-content;
}

.firstElemExportCar:hover,
.itemAdded:hover {
    transform: scale(1.05);
}

.varsItemsExport {
    width: 100%;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 48px;
    left: 0;
}

.varsItemsExport.active {
    display: flex;
}

.itemExportVar {
    padding: 10px 20px;
    box-sizing: border-box;
    color: #000 !important;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    background: #fff;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.itemExportVar:hover {
    background: #EDEDED;
}

/* ________ */
/* Button more rating */
.blockButtonsRating {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.websiteButtonRating,
.telegramButtonRating,
.whatsappButtonRating,
.maxButtonRating {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
    height: 100%;
    background: #E6E6E6;
    transition: 0.24s;
}

.whatsappButtonRating {
    border-radius: 8px;
    background: linear-gradient(91deg, #6EEA78 6.14%, #46CA4F 88.49%);
}

.websiteButtonRating {
    background: #E1561D;
}

.maxButtonRating {
    border-radius: 8px;
    background: linear-gradient(91deg, #5451F6 6.14%, #8371E1 88.49%);
}

.webistehover:hover {
    background: #f88051;
}

.maxhover:hover {
    border-radius: 8px;
    background: linear-gradient(91deg, #706eec 6.14%, #9b8ceb 88.49%);
}

.wahover:hover {
    border-radius: 8px;
    background: linear-gradient(91deg, #89fc93 6.14%, #68db6f 88.49%);
}

.tghover:hover {
    background: linear-gradient(91deg, #53c5fa 6.14%, #39b1f1 88.49%);

}

.telegramButtonRating {
    background: linear-gradient(91deg, #2EA5DE 6.14%, #0B78B2 88.49%);
}



.tghover:hover svg path {
    fill: #fff;
}


/*_______*/
/* Form add compnay */
.blockAddCompanyForm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.inBlockAddCompnayForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #FFF;
    height: auto;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    width: 100%;
    max-width: 1240px;
}

.leftPartAddCompanyForm {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    background: linear-gradient(147deg, #E55A21 5.78%, #E24D10 96.25%);
    padding: 32px 24px;
    box-sizing: border-box;
    border-bottom-left-radius: 16px;
    overflow: hidden;

}

.rightPartAddCompnay {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;

    padding: 32px 24px;
    box-sizing: border-box;
}

.imageAddCompnay {
    position: absolute;
    left: -12px;
    bottom: -12px;
}

.titleAddCompany {
    color: #FFF;
    font-family: "Montserrat Alternates";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.descAddCompnay {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.rightPartAddCompnay form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.itemInputsForm {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.titleInput {
    color: #282828;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;

}

.blockAddCompanyForm .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.3;
    box-sizing: border-box;
}

/* Убираем дефолтные жирные рамки CF7 */
.blockAddCompanyForm .wpcf7 form .wpcf7-response-output {
    border-width: 1px !important;
}

.blockAddCompanyForm .cf7ResponseHere .wpcf7-response-output {
    margin: 10px 0 !important;
}

.itemInputsForm input {
    border-radius: 12px;
    width: 100%;
    border: 1px solid #DADADA;
    background: #FFF;
    padding: 12px 10px;
    box-sizing: border-box;
    color: #282828;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
}

.itemInputsForm select {
    border-radius: 12px;
    width: 100%;
    border: 1px solid #DADADA;
    background: #FFF;
    padding: 12px 10px;
    box-sizing: border-box;
    color: #282828;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
}

.blockItemSelectMessanger {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    background: #F2F2F2;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
    gap: 8px;
}

.itemSelectMessenger {
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    box-sizing: border-box;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;

    border-radius: 8px;
}

.itemSelectMessenger:hover {
    background: linear-gradient(90deg, #fd885a 0%, #ff8049 100%);
    color: #fff2fb;
}

.itemSelectMessenger.active {

    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    color: #FFF7FC;
}

.itemInputsForm label {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.blockCheckBoxAddCompnay {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Montserrat;
}

.btnAddCompany {
    border: none;
    display: flex;
    height: 44px;
    padding: 12px 4px 12px 16px;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.btnAddCompany:hover {
    background: linear-gradient(90deg, #fd753f 0%, #f35c1b 100%);

}

/*  */
/* new cards category */
.categoriesRatings {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 48px;
    margin-bottom: 48px;
}

.inCategoryRaiting {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blockRatingsCards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topCardsRating {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bottomCardsRating {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.itemCardRating {
    display: flex;
    position: relative;
    padding: 12px;
    flex-direction: column;
    max-height: 505px;
    min-height: 400px;
    box-sizing: border-box;
    border-radius: 16px;
    background: #414141;
    overflow: hidden;
    justify-content: space-between;
    transition: 0.24s;
    cursor: pointer;
}

.itemCardRating:hover {
    transform: scale(1.02);
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.shadowCardImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    align-items: center;
    justify-content: center;
}

.shadowCardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.backIMageRatingCard {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.backIMageRatingCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blockInfoTextRating {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.titleTopRating {
    color: #FFF;

    font-family: "Montserrat Alternates";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* 125% */
}

.amountCompanies {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.buttonMoreExporters {
    border-radius: 8px;
    border: 1px solid #EA6028;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 4;
    transition: 0.24s;

}

.blurbtn {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    filter: blur(1px);
    z-index: 1;
    left: 0;
    background: rgba(255, 255, 255, 0.10);

}

.buttonMoreExporters:hover {
    background: #E0571E;
}

.itemCardRating:hover>.buttonMoreExporters {
    background: #E0571E;
}

.textBtn {
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* ______________ */
/* mainArea */
.mainArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 97px;
}

.descFaq {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.boxBread {
    max-width: 1260px;
    width: 100%;
    display: flex;
}

.BreadcrumbList a {
    color: inherit;
    text-decoration: none;
}

.itemBread:hover {
    background: #d3d3d3;
}

.BreadcrumbList {
    width: 100%;
    max-width: 1260px;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}

.itemBread {
    border-radius: 4px;
    background: #E6E6E6;
    display: flex;
    padding: 6px 8px 8px 8px;
    justify-content: center;
    align-items: flex-end;
    gap: 1px;
    display: flex;
    align-items: center;
    gap: 1px;
}

.itemBread span {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.itemBread span svg path {
    fill: #282828;
}

.btnMoreMobile {
    display: none;
}

.leftCardExporterMobile,
.btnToExportersMobile {
    display: none;
}

/* .leftCardExporterMobile,
.leftCardExporter {
    position: relative;
} */


.inMainArea {
    max-width: 1240px;
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.mainSwiperPredl {
    overflow: hidden;
    width: 100%;
}

.swiperWrapperPredl {
    width: max-content;
    display: flex;

}

.swiper-slide {
    height: auto;
}

.leftPartInfo {
    max-width: 660px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.boxInfoText {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    gap: 16px;
    border-left: 6px solid #E35418;
}

.mainYTP {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    margin: 0;
    padding: 0;
}

.smallDescInfo {
    max-width: 535px;
    width: 100%;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.btnsMainInfo {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 56px;
}

.btnToExport {
    display: flex;
    width: auto;
    padding: 4px 4px 4px 16px;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    font-family: Montserrat;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    box-sizing: border-box;
    transition: 0.24s;
    border-radius: 8px;
    border: 2px solid #EA6129;
    color: #282828;
    gap: 24px;
    transition: 0.24s;
}

.btnToExport:hover {
    background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
    color: white;
}

.digitInfo {
    display: flex;
    align-items: center;
    gap: 62px;
    margin-bottom: 91px;
}

.itemInfDigit {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itemDigitText {
    color: #F65B1A;
    text-align: center;
    font-family: "Montserrat";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.itemSmallText {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.rightOartInfo {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 16px;

    padding: 16px 12px;
    box-sizing: border-box;
    gap: 8px;
}

.rightOartInfo .wpcf7 {
    width: 100%;
}

.boxMainOrangeInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    padding: 24px 24px;
    box-sizing: border-box;

}

.grecaptcha-badge {
    display: none;
}

.titleBoxOrangeInfo {
    color: #FFF;
    text-align: center;

    font-family: "Montserrat";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.bottomBoxImage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}

.podborAutoH2 {
    color: #282828;
    font-family: Montserrat;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: 0.24s;
    margin: 0px;
}

.descPodbor {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.bottomBoxImage img {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Форма */
.formAreaCatalogInputs {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 24px;

}

.inFormAreaCatalog {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border-radius: 24px;
    background: #FFF;

    /* card-shadow */
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    padding: 24px 20px;
    box-sizing: border-box;

}

.inFormAreaCatalog form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.topBlockSelector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.blockInput {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blockInput label {
    color: #282828;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blockInput select {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;

    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 #DADADA;
    box-sizing: border-box;
    color: #282828;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}



.blockInput select:focus-visible {
    outline: none;
}

.bottomBlockInputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.firstInputArea {
    border-radius: 16px 0 0 16px;

}

.secondInputArea {
    border-radius: 0 16px 16px 0;
}

.blockInputData {
    display: flex;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 #DADADA;
    border-radius: 16px;
    border: 1px solid #DADADA;
    justify-content: space-between;
}

.inputArea {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    box-sizing: border-box;
    align-items: center;
    border: none;
    outline: none;
}

.inputArea input {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

    background: #FFF;

    width: 100%;
    border: none;
}

.inputArea input:focus-visible {
    outline: none;
}

.preDataName,
.afterDataName {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.blockBtnsAndDesc {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 8px;
}

.textBtnForm {
    color: #282828;
    font-family: "Montserrat";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blockBtnForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    justify-items: end;
}


.clearFilter {
    display: flex;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 16px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #EA6129;
    cursor: pointer;
    align-items: center;
    text-align: center;
    width: 202px;
    transition: 0.24s;
}

.clearFilter:hover {
    background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
    color: #fff;
}

.btnSort {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    width: 375px;
    font-weight: 500;

    line-height: 20px;
    display: flex;
    box-sizing: border-box;
    padding: 12px 16px 12px 16px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    transition: 0.24s;
    border: none;
    box-shadow: none;
}

.btnSort:hover {

    background: #f17038;
}

.areaCardsCarCatalog {
    margin-top: 116px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.inCardsCarCatalog {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.topAreaSliderCatalog {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.nameCatalogSlider {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    color: #282828;
    font-family: "Montserrat";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.arrowsBlockSlider {
    display: flex;
    gap: 16px;
}

.arrowSlider {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 50px;
    height: 50px;
    padding: 11px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #CACACA;
    transition: 0.24s;
}

.arrowSlider:hover {
    border-radius: 50px;
    background: linear-gradient(180deg, #EA6128 0%, #D3450B 100%);
}

.arrowSlider:hover svg path {
    fill: white;
}

.blockItemsCardCar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

.itemCardCar {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #414141;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}

.topAreaImageCard {
    display: flex;
    flex-direction: column;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    height: 178px;

}

.topAreaImageCard img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.topIconsCard {
    display: flex;
    width: 100%;
    z-index: 3;
    justify-content: space-between;
}

.leftIndicator {
    display: flex;
    color: #282828;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    padding: 2px 8px 3px 8px;
    border-radius: 31px;
    background: linear-gradient(90deg, #377D30 0%, #1B9E0F 100%);
    align-items: center;
}

.rightIndicator {
    padding: 4px;
    border-radius: 8px;
    background: rgba(183, 43, 0, 0.27);
}

.bottomInfoCardCar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.boxInfoCar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    box-sizing: border-box;
}

.nameCar {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.descCar {
    color: #282828;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.boxInfoCarBottom {
    display: flex;
    gap: 24px;
    background: #3B3B3B;
    padding: 10px 12px;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.leftLogoCarCard {
    display: flex;
    gap: 6px;
}

.imageLogoCar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    overflow: hidden;
    border-radius: 50%;
    height: 32px;
}

.imageLogoCar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nameLogoCar {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.rightPriceMainCardCar {
    color: #282828;
    text-align: right;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.cardsActii {
    display: flex;
    width: 100%;
    overflow: hidden;
    gap: 16px;
}

.cardsActii .swiper-wrapper {
    display: flex;
    width: max-content;

}

.itemActii {
    display: flex;
    padding: 12px 12px 10px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #414141;
}

.descAkcii {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    max-width: 273px;
}

.logoItemCompanyAkcii {
    color: #282828;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    gap: 6px;
    display: flex;
    align-items: center;
}

.logoItemCompanyAkcii img {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.threeBlockBuy {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 118px;
}

.inThreeBlockBuy {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.titleThreeBlockBuy {
    color: #282828;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.itemsThreeBlock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    justify-content: space-between;
}

.itemThreeBlock {
    position: relative;
    display: flex;
    height: 427px;
    overflow: hidden;
    border-radius: 16px;
}

.backImageThreeBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.backImageThreeBlock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blockIconAndInfo {
    display: flex;
    z-index: 2;
    flex-direction: column;
    padding: 0 24px 32px 24px;
    box-sizing: border-box;
    align-items: center;
    justify-content: end;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);

}

.iconThreeBlock {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;

}

.iconThreeBlock span {
    width: 113px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 4px 7.6px 0 rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(21.149999618530273px);
}

.bottomThreeBlockText {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;

}

.titleThreeCard {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;

}

.descThreeeCard {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.bannerAutoHub {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
}

.bannerAreaAutoHub {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.itemsBannerAutoHub {
    display: flex;
    width: 100%;
    height: 329px;
    overflow: hidden;
    border-radius: 24px;

}

.wrapperAutoHubBanner {
    display: flex;
    width: 100%;
    height: 100%;
}

.itemBannerAutoHub {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #0F0F0F;
    padding: 56px 40px;
    box-sizing: border-box;
}

.leftPartBannerAutoHub {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titleAutoHubBanner {
    color: #FFF;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;

}

.descAutoHubBanner {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    max-width: 672px;
}

.btnAutoHubBanner {
    display: flex;
    width: 375px;
    padding: 12px 4px 12px 16px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    justify-content: center;
    cursor: pointer;
    transition: 0.24s;
}

.btnAutoHubBanner:hover {
    color: #E0571E;
    background: #FFF;
}

.rightPartAutoHubBanner {
    max-width: 296px;
    width: 100%;
}

.rightPartAutoHubBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.areaStages {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 118px;

}

.inAreaStages {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.areaStageInfoText {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.titleStageMain {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.itemsStage {
    display: flex;
    flex-direction: column;

    gap: 12px;

}

.numStage {
    color: #282828;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;

}

.boxStageInfo {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 16px 20px;
    border-radius: 12px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.boxTextStage {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.titleStage {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.descStage {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.topStagesBlock {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr 0.2fr;
    gap: 12px;
}

.bottomStagesBlock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.boxStageInfo img {
    max-height: 192px;

}

.boxStageInfo.imageStage {
    padding: 0;
}

.exportersArea {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.inExportersArea {
    max-width: 1240px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-top: 48px;
    gap: 12px;
}

.titleExportersInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.textExporterBlock {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: clamp(24px, 3vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btnToExporters {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 20px;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    width: max-content;
}

.btnToExporters:hover {
    background: linear-gradient(90deg, #f57949 0%, #fa6424 100%);

}

.btnToExporters span {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemsExportersCards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.itemCardExportersCar {
    position: relative;
}

.itemCardExporter {
    display: flex;
    gap: 24px;
    width: 100%;
    border-radius: 12px;
    padding: 16px 24px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    height: auto;
    justify-content: space-between;
    position: relative;
}

.blockRatingMore {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: end;
}

.itemRating {
    display: flex;
    align-items: center;
    gap: 4px;

    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    color: #282828;
    font-weight: 400;
    line-height: 20px;
    justify-content: flex-end;
}

.itemRating svg path {
    fill: #d74a0f;
}

.itemRating img {
    width: 20px;
    height: 20px;
}

.blockIksYandex {
    border-radius: 2px;
    background: #EAE7E7;
    display: flex;
    padding: 0 6px 0 1px;
    box-sizing: border-box;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    gap: 6px;

}

.blockImgYzndex {
    box-sizing: border-box;
    display: flex;
    width: 18px;
    height: 18px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: #FFF;
}

.textIks {
    color: #000;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}

.blockImgYzndex img {
    width: 14px;
    height: 14px;
}

.relatedCompanyRatings {
    display: flex;
    align-items: center;
    font-family: Montserrat;
    font-size: 14px;
    color: #282828;
    gap: 8px;
}

.relatedRatingItem {
    display: flex;
    align-items: center;
    gap: 4px;
}

.relatedRatingItem img {
    width: 20px;
    height: 20px;
}


.itemVote {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    justify-content: flex-end;
}

.leftCardExporter {
    display: flex;
    gap: 31px;
}

.logoCompanyExport {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.24s;

}

.logoCompanyExport:hover {
    transform: scale(1.02);
}

.place {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: Montserrat;
    background: #282828;
    color: #fff;
    width: 16px;
    font-size: 14px;
    height: 16px;
    font-weight: 600;

    /* z-index: 5; */
    /* box-sizing: border-box; */
    z-index: 999;
    box-shadow: 1px 1px 1px #00000024;
}

.adsPlace {
    background: #FF4800 !important;
}

.dirdelta {

    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 8px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    display: flex;
    gap: 2px;
    background: white;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    /* background: #282828; */
    color: #282828;
    min-width: 16px;
    width: auto;
    font-weight: 600;
    height: 16px;
    /* z-index: 5; */
    /* box-sizing: border-box; */
    z-index: 999;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.greenArrow {
    color: #0DA200;
}

.redArrow {
    color: rgb(221, 79, 79);
}

.logoCompanyExport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.boxAreaInformationExport {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 540px;
}

.nameExporter {
    color: #282828;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: 0.24s;
    margin: 0;
}

.nameExporter:hover {
    color: #E1561D;
}

.locationsExporter {
    color: #4c4c4c;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    gap: 4px;
    align-items: start;
    line-height: 20px;
}

.locationsExporter span {
    height: auto;
    display: flex;
}


.locationsExporter span svg path {
    fill: #4c4c4c;
}

.descExporterInfo {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* display: -webkit-box; */
    display: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tagsCompany {
    display: flex;
    gap: 6px;
    align-items: center;


}

.tagCompany {
    border-radius: 31px;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: flex;
    padding: 4px 16px 6px 16px;
    align-items: center;
    box-sizing: border-box;
}

.orangeColor {
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
}

.greenColor {
    background: linear-gradient(90deg, #0DA200 0%, #0B8600 100%);
}

.rightPartExporters {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.daysDeliever {
    display: flex;
    flex-direction: column;
    gap: 4px;

}

.counterDaysDel {
    color: #282828;
    text-align: right;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;

}

.descDelieverText {
    color: #636363;
    text-align: right;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

}

.btnMoreExporter {
    border-radius: 8px;

    padding: 10px 16px;
    color: #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    cursor: pointer;
    font-size: 15px;
    font-style: normal;

    box-sizing: border-box;
    font-weight: 500;
    line-height: 20px;
    transition: 0.24s;
    background: linear-gradient(91deg, #E0561E 6.14%, #CA450E 88.49%);
}

.btnMoreExporter:hover {
    background: linear-gradient(91deg, #f37340 6.14%, #f07743 88.49%);

}

.lastNews {
    width: 100%;
    margin-top: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 134px;
}

.inLastNews {
    display: flex;
    max-width: 1240px;
    width: 100%;
    flex-direction: column;
    gap: 74px;
}

.areaNews {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 100%;
}

.titleNews {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nameCategory {
    color: #282828;
    font-family: Montserrat;
    font-size: clamp(24px, 2vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.btnMore {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    cursor: pointer;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: 0.24s;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
}

.btnMore:hover {
    background: linear-gradient(90deg, #eb784b 0%, #ec6125 100%);

}

.btnMore span {
    height: 100%;
    display: flex;
    align-items: center;
}

.itemsNews {
    display: flex;
    width: 100%;
    /* overflow: hidden; */
}

.wrapperNews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

}

.itemNews {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border-radius: 12px;
    background: #FFF;

    /* card-shadow */
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    max-height: 360px;
    width: 100% !important;
}

.imageNews {
    display: flex;
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
}

.imageNews img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.boxTextNews {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px 16px 12px;
    box-sizing: border-box;
}

.titleNewsCard {
    color: #282828;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.bottomInfoNews {
    display: flex;
    gap: 14px;
}

.counterViewer,
.dateNews {
    gap: 4px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #636363;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.counterViewer span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemSmallText {
    text-align: center;
}

.btnCompare {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    font-family: Montserrat;
    color: #6b6b6b;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    justify-content: flex-end;
}

.btnCompare .btnCompareIcon {
    font-size: 16px;
    transition: .2s;
}

/* hover */
.btnCompare:hover {
    color: #E25B2D;
}

/* активное состояние */
.btnCompare.is-compare-active {
    color: #E25B2D;

}














/* ---- Compare toast ---- */
.ahx-compare-toast {
    position: fixed;
    right: 18px;
    color: #282828;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    bottom: 110px;
    z-index: 99999;
    width: min(360px, calc(100vw - 24px));
    background: #fff7f4;
    border: 1px solid rgba(226, 91, 45, .22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    border-radius: 14px;
    padding: 14px 16px;
    opacity: 0;
    transform: translateY(-10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.ahx-compare-toast.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ahx-compare-toast__title {
    font-size: 16px;
    max-width: 85%;
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.ahx-compare-toast__link {
    display: inline-block;
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 600;
    color: #E25B2D;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ahx-compare-toast__close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: .55;
    transition: .15s;
}

.ahx-compare-toast__close:hover {
    opacity: .9;
}

.ahx-compare-toast__close:before {
    content: "✕";
    font-size: 16px;
    line-height: 28px;
}




/* Адаптация поисковика на главной */
.ah-delivery__finder,
.ah-delivery__finder * {
    box-sizing: border-box;
}

.ah-delivery__finder {
    position: relative;
    width: 100%;
    padding: 26px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #ffffff;
    color: #282828;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    font-family: Montserrat, Arial, sans-serif;
}

.ah-delivery__ai-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 8px;
    background: linear-gradient(92deg, #4b27e9, #9238ff);
    color: #ffffff;
    font-family: "Montserrat Alternates", Montserrat, Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.ah-delivery__finder h3 {
    margin: 12px 0 8px;
    color: #282828;
    font-family: "Montserrat Alternates", Montserrat, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}

.ah-delivery__finder>p {
    margin: 0 0 18px;
    color: #636363;
    font-size: 14px;
    line-height: 1.55;
}

.ah-delivery__finder label {
    display: block;
    margin-bottom: 7px;
    color: #282828;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.ah-delivery__finder-input-wrap {
    position: relative;
}

.ah-delivery__finder-input {
    width: 100%;
    height: 52px;
    padding: 12px 15px;
    border: 1px solid #dadada;
    border-radius: 12px;
    background: #ffffff;
    color: #282828;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ah-delivery__finder-input::placeholder {
    color: #8a8a8a;
}

.ah-delivery__finder-input:focus {
    border-color: #7b1fff;
    box-shadow: 0 0 0 3px rgba(123, 31, 255, 0.1);
}

.ah-delivery__finder-results {
    position: absolute;
    z-index: 50;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.ah-delivery__finder-results[hidden] {
    display: none;
}

.ah-delivery__finder-result {
    width: 100%;
    display: block;
    padding: 11px 12px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #282828;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition:
        color 0.15s ease,
        background-color 0.15s ease;
}

.ah-delivery__finder-result:hover,
.ah-delivery__finder-result.is-active {
    background: #f5f2ff;
    color: #5c04f4;
}

.ah-delivery__finder-result--empty {
    color: #777777;
    cursor: default;
}

.ah-delivery__finder-result--empty:hover {
    background: #ffffff;
    color: #777777;
}

.ah-delivery__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.ah-delivery__btn--ai {
    width: 100%;
    margin: 12px 0;
    background: linear-gradient(90deg, #7c42ed, #df79dc);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 66, 237, 0.24);
}

.ah-delivery__btn--ai:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(124, 66, 237, 0.3);
}

.ah-delivery__btn--ai:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.ah-delivery__btn--ai:focus-visible,
.ah-delivery__finder-result:focus-visible,
.ah-delivery__text-link:focus-visible {
    outline: 3px solid rgba(123, 31, 255, 0.25);
    outline-offset: 2px;
}

.ah-delivery__text-link {
    display: inline-block;
    color: #de5219;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
}

.ah-delivery__text-link:hover {
    color: #b83c0a;
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
    .ah-delivery__finder {
        padding: 20px 16px;
        border-radius: 15px;
    }

    .ah-delivery__finder h3 {
        font-size: 21px;
    }

    .ah-delivery__finder>p {
        font-size: 13px;
    }

    .ah-delivery__finder-input {
        height: 48px;
        font-size: 14px;
    }

    .ah-delivery__btn {
        min-height: 48px;
        font-size: 14px;
    }
}


/* адаптация под мобилу: внизу по центру */
@media (max-width: 640px) {
    .ahx-compare-toast {
        right: 12px;

        top: auto;
        bottom: 16px;
        width: auto;
    }
}








@media screen and (max-width: 1280px) {

    .inMainArea,
    .inCardsCarCatalog,
    .threeBlockBuy {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .quizWrap {
        padding: 46px 16px;
        box-sizing: border-box;
    }




    .btnToExport {
        font-size: clamp(13px, 1vw, 15px);
        padding: 2px 2px 2px 8px;
    }

    .leftPartInfo {
        max-width: 660px;
    }

    .mainYTP {
        font-size: clamp(28px, 3.2vw, 40px);
        line-height: normal;
        max-width: 75%;
    }

    .smallDescInfo {
        font-size: clamp(13px, 1vw, 15px);
    }

    .bottomBoxImage img {
        width: clamp(480px, 55vw, 636px);
    }

    .digitInfo {
        gap: clamp(24px, 4vw, 62px);
    }

    .itemDigitText {
        font-size: clamp(24px, 3vw, 32px);
    }

    .formAreaCatalogInputs {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .blockItemsCardCar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .nameCatalogSlider {
        font-size: clamp(24px, 4vw, 32px);
    }

    .titleThreeBlockBuy {
        font-size: clamp(24px, 4vw, 32px);
    }

    .arrowSlider {
        width: 38px;
        height: 38px;
        padding: 6px;
    }

    .backImageThreeBlock {
        display: none;
    }

    .blockIconAndInfo {
        border-radius: 12px;
        background: linear-gradient(136deg, #EA6128 1.3%, #D3450A 97.81%);
        padding: 18px 16px 18px 16px;
        gap: 8px;
    }

    .bannerAutoHub {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .itemBannerAutoHub {
        padding: clamp(32px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .titleAutoHubBanner {
        font-size: clamp(24px, 3vw, 32px);
    }

    .descAutoHubBanner {
        font-size: clamp(12px, 2vw, 15px);
    }


    .inExportersArea {
        padding: 0 16px;
        box-sizing: border-box;
        margin-top: 0;
    }

    .boxAreaInformationExport {
        max-width: clamp(420px, 45vw, 540px);
    }

    .boxBread {

        padding: 0 16px;
        box-sizing: border-box;
    }

    .btnToExportersMobile {
        display: none;
        gap: 4px;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 8px;
        background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
        padding: 12px 16px;
        color: #fff;
        font-family: Montserrat;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .btnToExportersMobile span {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .lastNews {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .categoriesRatings {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .inAreaStages {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .areaStageInfoText {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .blockAddCompanyForm {
        padding: 48px 16px;
        box-sizing: border-box;
    }
}


@media screen and (max-width: 1080px) {
    .topCardsRating {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .bottomBoxImage {
        position: relative;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .bottomBoxImage img {
        width: 100%;
    }

    .inMainArea {
        padding: 0 16px;
        box-sizing: border-box;
        flex-direction: column;
    }

    .rightOartInfo {
        display: flex;
        max-width: 100%;
    }

    .rightOartInfo .wpcf7 {
        width: 100%;
    }

    .leftPartInfo {
        max-width: 100%;
    }

    .bottomBoxImage img {
        position: unset;

        width: 55%;
    }


    .boxMainOrangeInfo {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
        width: 100%;
        height: 100%;
        padding: 24px 24px;
        box-sizing: border-box;
    }

    .mainArea {
        margin-top: clamp(24px, 7vw, 97px);
    }

    .btnsMainInfo a {
        width: 100%;
    }

    .btnToCatalog,
    .btnToExport {
        padding: 4px 4px 4px clamp(4px, 3vw, 85px) !important;
        width: 100%;
        display: flex;
        font-size: clamp(13px, 1vw, 15px) !important;
        justify-content: space-between !important;
    }

    .digitInfo {
        display: flex;
        align-items: center;
        gap: 62px;
        margin-bottom: clamp(32px, 6vw, 91px);
        justify-content: center;
    }

    .bottomBlockInputs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .blockBtnsAndDesc {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: flex-start;
        margin-top: 8px;
        gap: 8px;
        flex-direction: column;
    }

    .blockBtnForm {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-content: space-between;
        align-items: center;
        justify-items: start;
        width: 100%;
    }

    .clearFilter,
    .btnSort {
        width: 100%;
    }

    .blockItemsCardCar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .itemsThreeBlock {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }

    .itemThreeBlock {
        height: auto;
    }

    .iconThreeBlock {
        position: unset;
    }

    .iconThreeBlock span {
        width: clamp(80px, 15vw, 113px);
        height: clamp(80px, 15vw, 113px);

    }

    .iconThreeBlock span svg {
        width: clamp(48px, 15vw, 53px);
        height: clamp(48px, 15vw, 53px);

    }

    .rightPartAutoHubBanner {
        display: none;
    }

    .inAreaStages {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .areaStageInfoText {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .leftPartBannerAutoHub {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
    }

    .itemsBannerAutoHub {
        height: auto;
    }

    .areaStages {
        margin-bottom: clamp(64px, 5vw, 118px);
        margin-top: clamp(64px, 5vw, 118px);
    }

    .titleStageMain {
        font-size: clamp(24px, 4vw, 32px);
        line-height: normal;
    }

    .imageStage {
        display: none;
    }

    .topStagesBlock {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bottomStagesBlock {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .numStage {
        font-size: clamp(36px, 3vw, 48px);
    }

    .titleStage {
        font-size: clamp(18px, 2vw, 20px);
    }

    .descStage,
    .btnToExporters,
    .locationsExporter,
    .descExporterInfo,
    .tagCompany,
    .btnMoreExporter {
        font-size: clamp(12px, 1vw, 15px);
    }

    .nameExporter {
        font-size: clamp(18px, 2vw, 24px);
    }

    .itemCardExporter {
        padding: clamp(24px, 2vw, 34px) clamp(18px, 2vw, 24px);
    }

    .logoCompanyExport {
        width: clamp(81px, 15vw, 146px);
        height: clamp(81px, 15vw, 146px);
    }

    .btnMoreMobile {
        display: flex;
    }

    .btnMore {
        display: none;
    }

    .btnMoreMobile {
        display: flex;
        width: auto;
        padding: 16px;
        box-sizing: border-box;
        justify-content: space-between;
        align-items: center;
        border-radius: 8px;
        background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
        color: #FFF;
        gap: 21px;
        font-family: Montserrat;
        cursor: pointer;
        font-size: 15px;
        align-items: center;
        justify-content: center;
        font-style: normal;
        font-weight: 500;
        height: 44px;
        line-height: 20px;
        box-sizing: border-box;
        transition: 0.24s;
    }

    .titleAddCompany {
        font-size: 28px;

    }

    .descAddCompnay {
        font-size: 16px;

    }

    .rightPartQuiz {
        display: none;
    }

    .btnStartQuiz {
        max-width: 100%;
    }

    .titleQuizStart,
    .titleQuiz {
        font-size: clamp(22px, 3vw, 28px);
        line-height: normal;
    }

    .descQuizStart,
    .descQuiz {
        font-size: clamp(14px, 2vw, 18px);
        line-height: normal;
    }

    .varQuiz {
        height: clamp(42px, 3vw, 52px);
        font-size: clamp(14px, 2vw, 18px);
    }
}

@media screen and (max-width: 860px) {
    .btnCompare {
        justify-content: flex-start
    }

    .blockButtonsRating {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .inBlockAddCompnayForm {
        grid-template-columns: repeat(1, 1fr);
    }

    .imageAddCompnay {
        display: none;
    }

    .itemCardExporter {
        display: flex;
        flex-direction: column;
        gap: 18px;
        height: auto;
    }

    .leftCardExporter {
        display: flex;
    }

    /* .leftCardExporterMobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
    } */

    .blockMobileTopExporter {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .wrapperNews {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;

    }

    .logoCompanyExport {
        width: 80px;
        height: 80px;
    }

    .locationsExporter {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        max-width: 100%;
    }

    .areaExporterMobileInfo {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .itemRating {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #282828;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        justify-content: flex-start;
    }

    .itemVote {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #282828;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        justify-content: flex-start;
    }

    .rightPartExporters {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .counterDaysDel {
        font-size: clamp(14px, 2vw, 18px);
    }

    .descDelieverText {
        font-size: 14px;
    }

    .daysDeliever {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .locationMogileExporter {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .btnToExporters span {
        width: max-content;
    }

    .tagsCompany {
        display: flex;
        gap: 6px;
        align-items: center;
        flex-wrap: wrap;
    }

    .btnToExporters {
        display: none;
    }

    .btnToExportersMobile {
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }

    .imageNews {
        height: 161px;
    }

    .titleNewsCard {
        font-size: 18px;
    }

    .dirdelta {
        left: inherit;
        right: 12px;
    }

    .blockRatingMore {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: end;
        width: 98%;
    }



}

@media screen and (max-width: 780px) {
    .itemsCurentRating {
        display: flex;
        flex-wrap: wrap;
    }

    .topBlockSelector {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .bottomBlockInputs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .blockBtnForm {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        justify-content: space-between;
        align-items: center;
        justify-items: start;
        width: 100%;
    }

    .topAreaImageCard {
        height: 195px;
    }

    .nameCatalogSlider {
        line-height: normal;
    }

    .btnAutoHubBanner {
        width: 100%;
        padding: 6px 4px 6px 8px;
        font-size: 13px;
    }

    .topStagesBlock {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
        width: 100%;
    }

    .bottomStagesBlock {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
        width: 100%;
    }

    .boxStageInfo {
        width: 100%;
        box-sizing: border-box;
    }

    .itemsStage {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .topCardsRating,
    .bottomCardsRating {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

}

@media screen and (max-width: 660px) {
    .btnsMainInfo {
        flex-direction: column;
        gap: 8px;
    }

    .mainYTP {
        font-size: clamp(28px, 3.2vw, 40px);
        line-height: normal;
        max-width: 100%;
    }

    .boxInfoText {
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        gap: 16px;
        border-left: 6px solid #E35418;
    }

    .digitInfo {
        flex-direction: column;
        gap: 20px;
    }

    .btnsMainInfo {
        margin-bottom: 20px;
    }

    .blockInput label,
    .textBtnForm {
        font-size: clamp(15px, 2vw, 17px);
    }

    .blockInput select {
        display: flex;
        padding: 5px 10px;
        font-size: clamp(13px, 2vw, 15px);
    }

    .preDataName,
    .afterDataName {
        font-size: 13px;
    }

    .clearFilter,
    .btnSort {
        padding: 6px 8px;
    }

    .inputArea {
        padding: 5px 10px;
    }

    .wrapperNews {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;

    }

    .inputArea input {
        font-size: 13px;
    }

    .blockItemsCardCar {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .nameCar {
        font-size: 15px;
    }

    .boxInfoCar {
        gap: 2px;
        padding: 10px;
    }

    .bottomInfoCardCar {
        gap: 12px;
    }

    .rightPriceMainCardCar,
    .nameLogoCar {
        font-size: 14px;
    }

    .imageLogoCar {
        width: 28px;
        height: 28px;
    }

    .leftIndicator {
        display: flex;
        color: #282828;
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 12px;
        padding: 2px 8px 3px 8px;
        border-radius: 31px;
        background: linear-gradient(90deg, #377D30 0%, #1B9E0F 100%);
        align-items: center;
    }

    .rightIndicator svg {
        width: 22px;
        height: 22px;
    }

    .itemsThreeBlock {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }


    .logoCompanyExport {
        width: 60px;
        height: 60px;
    }

    .locationsExporter {
        display: flex;
        align-items: flex-start;
        gap: 4px;

    }

    .place {
        position: absolute;
        top: 8px;
        left: 8px;
        padding: 8px;
        border-radius: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-family: Montserrat;
        background: #000000;
        color: #fff;
        width: 14px;
        font-weight: 600;
        height: 14px;
        /* z-index: 5; */
        /* box-sizing: border-box; */
        z-index: 999;
        box-shadow: 1px 1px 1px #00000024;
    }

    .dirdelta {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 14px;
        height: 14px;
        padding: 8px;
        font-size: 12px;
        left: inherit;
    }

    .titleAddCompany {
        font-size: 24px;
        font-weight: 600;
    }

    .descAddCompnay {
        font-size: 14px;
        font-weight: normal;
    }

    .blockItemSelectMessanger {

        grid-template-columns: repeat(1, 1fr);
        border-radius: 8px;

        padding: 4px;

        gap: 4px;
    }

    .titleInput {
        color: #282828;
        font-family: Montserrat;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .itemInputsForm {
        gap: 4px;
    }

    .itemInputsForm input {
        border-radius: 8px;
        width: 100%;
        border: 1px solid #DADADA;
        background: #FFF;
        padding: 10px;
        box-sizing: border-box;
        color: #282828;
        box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    }

    .itemSelectMessenger {
        display: flex;
        padding: 10px;
        justify-content: center;
        align-items: center;
        flex: 1 0 0;
        box-sizing: border-box;
        color: #282828;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        cursor: pointer;
        border-radius: 8px;
    }

    .blockCheckBoxAddCompnay label {
        font-size: 14px;
        line-height: normal;
    }

    .blockCheckBoxAddCompnay {
        align-items: flex-start;
    }

    .btnAddCompany {
        border: none;
        display: flex;
        height: 38px;
        padding: 10px 4px;
        font-size: 14px;
    }



    .websiteButtonRating,
    .telegramButtonRating,
    .whatsappButtonRating,
    .maxButtonRating {
        width: 100%;
    }

    .blockButtonsRating {
        flex-direction: column;
        justify-content: flex-end;
    }

    .companyLogoPlaceholder__initials {
        font-size: 24px;
    }

    .leftCardExporter {

        gap: 12px;
    }

    .relatedCompanyRatings {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .relatedRatingItem img {
        height: 16px;
        width: 16px;
    }

    .btnCompare {
        font-size: 12px;
    }
}