.ah-company-business-tools {
    width: 100%;
    margin: 32px 0 40px;
    font-family: Montserrat, sans-serif;
    color: #282828;
}

.ah-company-owner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    background: #fff;
}

.ah-company-owner__icon,
.ah-company-growth-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: #fff1eb;
    color: #e94f17;
}

.ah-company-owner__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ah-company-owner__content strong {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.ah-company-owner__content span {
    max-width: 700px;
    color: #777;
    font-size: 14px;
    line-height: 1.55;
}
.ah-company-growth-card__button{
    text-decoration: underline;
}
.ah-company-owner__button,
.ah-company-growth-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #e94f17;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
  
    cursor: pointer;
    transition: .2s ease;
}
.ah-company-owner__button{
    text-decoration: underline;
}


.ah-company-growth {
    margin-top: 26px;
    padding: 24px;
    border-radius: 16px;
    background: #fffaf7;
}

.ah-company-growth__head {
    margin-bottom: 18px;
}

.ah-company-growth__head>span {
    display: block;
    margin-bottom: 5px;
    color: #e94f17;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.ah-company-growth__head h2 {
    margin: 0;
    color: #202020;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.ah-company-growth__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ah-company-growth-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #fff;
}

.ah-company-growth-card__body {
    min-width: 0;
}

.ah-company-growth-card__label {
    display: block;
    margin-bottom: 4px;
    color: #e94f17;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.ah-company-growth-card h3 {
    margin: 0 0 5px;
    color: #202020;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.ah-company-growth-card p {
    max-width: 720px;
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.55;
}


/* POPUP */

.ah-company-update-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: Montserrat, sans-serif;
}

.ah-company-update-modal.is-open {
    display: flex;
}

.ah-company-update-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .58);
    backdrop-filter: blur(3px);
}

.ah-company-update-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.ah-company-update-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #f5f5f5;
    color: #555;
    font-size: 24px;
    cursor: pointer;
}

.ah-company-update-modal__label {
    margin-bottom: 6px;
    color: #e94f17;
    font-size: 12px;
    font-weight: 700;
}

.ah-company-update-modal h2 {
    margin: 0 48px 6px 0;
    font-size: 24px;
    line-height: 1.3;
}

.ah-company-update-modal__desc {
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.55;
}

.ah-company-update-modal__company {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff3ed;
    color: #d94a14;
    font-size: 14px;
    font-weight: 600;
}

.ah-company-update-modal .ah-company-update-field {
    display: block;
    margin-bottom: 14px;
}

.ah-company-update-modal .ah-company-update-field>span {
    display: block;
    margin-bottom: 6px;
    color: #444;
    font-size: 14px;
    font-weight: 600;
}

.ah-company-update-modal input[type="text"],
.ah-company-update-modal textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    outline: none;
}

.ah-company-update-modal textarea {
    min-height: 120px;
    resize: vertical;
}

.ah-company-update-modal input:focus,
.ah-company-update-modal textarea:focus {
    border-color: #e94f17;
}

.ah-company-update-modal input[type="submit"] {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border: 0;
    border-radius: 10px;
    background: #e94f17;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 700px) {
    .ah-company-business-tools {
        margin: 24px 0 30px;
    }

    .ah-company-owner {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 16px;
    }

    .ah-company-owner__button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .ah-company-growth {
        padding: 16px;
    }

    .ah-company-growth__head h2 {
        font-size: 20px;
    }

    .ah-company-growth-card {

        padding: 16px;
    }

    .ah-company-growth-card__button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .ah-company-growth-card h3 {
        font-size: 16px;
    }

    .ah-company-update-modal {
        align-items: flex-end;
        padding: 14px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }

    .ah-company-update-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 28px);
        padding: 24px 16px 18px;
        border-radius: 20px;
    }

    .ah-company-update-modal h2 {
        font-size: 20px;
    }
}






.companyCities {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.companyCities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.companyCityLink {
    display: inline-flex;
    align-items: center;

    color: #DE5219;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;

}

.companyCityLink:hover {
    color: #ee8052;
}

.companyCitiesMore {
    margin: 0;
}

.companyCitiesMore summary {
    width: fit-content;
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    color: #777;
}

.companyCitiesMore summary::-webkit-details-marker {
    display: none;
}

.companyCitiesMore summary::after {
    content: " ↓";
}

.companyCitiesMore[open] summary::after {
    content: " ↑";
}

.companyCitiesMore[open] summary {
    margin-bottom: 7px;
}

.companyCitiesMore[open] summary {
    font-size: 0;
}

.companyCitiesMore[open] summary::before {
    content: "Скрыть города";
    font-size: 13px;
}

.companyCitiesMore[open] summary::after {
    font-size: 13px;
}

/* Plugin AI */
.ahx-ai-report-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ahx-ai-report-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.ahx-ai-report-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: 600;
}

.titleAI .iconAI {
    color: #FFF;
    font-family: "Montserrat Alternates";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: linear-gradient(92deg, #4B27E9 3.92%, #9238FF 99.23%);
    box-sizing: border-box;
}

.titleAIModal .iconAIModal {
    color: #FFF;
    font-family: "Montserrat Alternates";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: linear-gradient(92deg, #4B27E9 3.92%, #9238FF 99.23%);
    box-sizing: border-box;
}

.titleAIModal span {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.titleAI,
.titleAIModal {
    display: flex;
    gap: 4px;
    align-items: center;

}

.titleAI span {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.ahx-ai-buy {
    display: flex;
    max-width: 789px;
    padding: 16px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-family: Montserrat;
    border-radius: 8px;
    background: #EEF0FF;
    box-sizing: border-box;
}

.ahx-ai-full-offer {
    font-family: Montserrat;
}


.descriptionAI {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.textNoteAI {
    color: #555555;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.ahx-ai-buy p {
    margin: 4px 0;
}

.ahx-ai-buy-btn {
    display: flex;
    padding: 12px 4px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    box-sizing: border-box;
    border-radius: 8px;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    background: linear-gradient(90deg, #5C04F4 0%, #D00AD3 100%);
    box-shadow: 0 2px 8.3px 1px rgba(150, 7, 227, 0.30);
    cursor: pointer;
    transition: 0.24s;
}

.ahx-ai-buy-btn:hover {
    background: linear-gradient(90deg, #6610fc 0%, #ec15f0 100%);
    box-shadow: 0 4px 8.4px 1.2px rgba(150, 7, 227, 0.30);

}

.aiDesc {
    color: rgba(40, 40, 40, 0.60);
    text-align: start;
    font-family: Montserrat;
    font-size: 14px;
    display: flex;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 12px;
}

.consent-box {
    padding: 4px 0;
    box-sizing: border-box;
}

.blockPayBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.consent-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #2c2c2c;
    margin: 0;
    position: relative;
}

.consent-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 6px;
    background: #7b1fff;
    position: relative;
    display: inline-block;
}

.consent-label input:not(:checked)+.consent-check {
    background: #ffffff;
    border: 2px solid #cfcfe8;
}

.consent-label input:checked+.consent-check::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.consent-text a {
    color: #4a4a4a;
    text-decoration: underline;
    text-underline-offset: 3px;
}















.ahx-ai-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .50);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px
}

.ahx-ai-modal.is-open {
    display: flex
}

.ahx-ai-modal__dialog {
    width: min(980px, 100%);
    max-height: min(90vh, 980px);
    overflow: auto;
    border-radius: 16px;
    background: #EEF0FF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    position: relative
}

.ahx-ai-modal__header {
    padding: 28px 30px 0
}

.ahx-ai-modal__title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #282828;
    margin: 0
}

.ahx-ai-modal__close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    color: #282828;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.ahx-ai-modal__body {
    padding: 24px 30px 30px
}

.ahx-ai-panel {
    background: #fff;
    border: 1px solid rgba(40, 40, 40, .08);
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    margin-bottom: 18px
}

.ahx-ai-panel h3,
.ahx-ai-panel h2 {
    margin: 0 0 10px;
    font-family: 'Montserrat Alternates', sans-serif;
    color: #282828;
    font-weight: 800;
    line-height: 1.25
}

.ahx-ai-panel p {
    padding: 0;
    margin: 0;
}

.ahx-ai-panel p,
.ahx-ai-panel li,
.ahx-ai-panel div,
.ahx-ai-panel span {
    font-family: 'Montserrat', sans-serif;
    color: #282828
}

.ahx-ai-panel p {
    line-height: 1.8
}

.ahx-ai-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f6f7fb;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    color: #282828
}

.ahx-ai-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 16px
}

.ahx-ai-pay-btn,
.ahx-ai-open-btn,
.ahx-ai-ghost-btn {
    display: flex;
    height: 44px;
    padding: 12px 4px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    box-sizing: border-box;
}

.textPay {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.ahx-ai-pay-btn,
.ahx-ai-open-btn {
    border-radius: 8px;
    background: linear-gradient(90deg, #5C04F4 0%, #D00AD3 100%);
    box-shadow: 0 2px 8.3px 1px rgba(150, 7, 227, 0.30);
}

.ahx-ai-ghost-btn {
    background: #fff;
    color: #282828;
    border: 1px solid rgba(40, 40, 40, .14)
}

.ahx-ai-input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid rgba(40, 40, 40, .14);
    background: #fff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #282828
}

.ahx-ai-progress {
    display: grid;
    gap: 12px
}

.ahx-ai-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(40, 40, 40, .08)
}

.ahx-ai-step.is-active {
    border-radius: 16px;
    border: 2px solid #5C03F4;
}

.ahx-ai-step.is-active .ahx-ai-step__icon {
    border-radius: 8px;
    background: linear-gradient(129deg, #5D03F3 9.6%, #CF0AD3 93.99%);
}

.ahx-ai-step.is-done .ahx-ai-step__icon {
    border-radius: 8px;
    background: #008300;
}


.ahx-ai-step.is-done {
    border-radius: 16px;
    border: 1px solid #008300;
}

.ahx-ai-step__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #B8B8B8;
    flex: 0 0 36px
}

.ahx-ai-step__content strong {
    display: block;
    color: #282828;
    margin-bottom: 4px;
    font-family: 'Montserrat Alternates', sans-serif
}

.ahx-ai-step__content span {
    display: block;
    color: #5f5f5f;
    font-size: 13px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif
}

.ahx-ai-step-spinner,
.ahx-ai-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, .14);
    border-top-color: #282828;
    border-radius: 50%;
    animation: ahxSpin .7s linear infinite;
    display: inline-block
}

.ahx-ai-spinner {
    border-color: rgba(255, 255, 255, .35);
    border-top-color: #fff;
    width: 16px;
    height: 16px
}

.ahx-ai-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.ahx-ai-muted {
    color: #6b6b6b;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif
}

.ahx-ai-report-page {
    max-width: 1120px;
    margin: 36px auto;
    padding: 0 16px
}

.priceAI {
    color: #FFF7FC;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    color: #FFF7FC !important;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    border-radius: 4px;
    background: rgba(200, 200, 200, 0.22);
}

.ahx-ai-doc {
    background: inherit;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none
}

.ahx-ai-doc__sheet {
    background: #fff;
    border-radius: 26px;
    padding: 34px 36px;
    border: 1px solid rgba(40, 40, 40, .08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .04)
}

.ahx-ai-doc__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 26px
}

.ahx-ai-doc__brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid rgba(40, 40, 40, .08)
}

.ahx-ai-doc__brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #282828;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .5px
}

.ahx-ai-doc__brand-text {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #282828;
    letter-spacing: .2px
}

.ahx-ai-doc__header {
    border-bottom: 1px solid rgba(40, 40, 40, .08);
    padding-bottom: 18px;
    margin-bottom: 24px
}

.ahx-ai-doc__title {
    margin: 0 0 10px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #282828
}

.ahx-ai-doc__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.ahx-ai-doc__meta-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f8f8f8;
    border: 1px solid rgba(40, 40, 40, .08);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #282828
}

.ahx-ai-report-body {
    font-family: 'Montserrat', sans-serif;
    color: #282828;
    font-size: 16px;
    line-height: 1.95
}

.ahx-ai-report-body h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    color: #282828;
    margin: 34px 0 14px
}

.ahx-ai-report-body h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #282828;
    margin: 24px 0 10px
}

.ahx-ai-report-body p {
    margin: 0 0 16px
}

.ahx-ai-report-body ul {
    margin: 0 0 18px 0;
    padding-left: 22px
}

.ahx-ai-report-body li {
    margin: 0 0 8px
}

.ahx-ai-report-body strong {
    font-weight: 700
}

.ahx-ai-report-body a {
    color: #282828;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word
}

.ahx-ai-report-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 40, 40, .15), transparent);
    margin: 28px 0
}



/* Related companies block */
.relatedCompaniesBlock {
    margin-bottom: 48px;
    margin-top: 48px;
}

.inRelatedCompaniesBlock {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.relatedCompaniesList {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.relatedCompanyCard {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease;
    border: 1px solid #f0f0f0;
}

.relatedCompanyCard:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.relatedCompanyLogo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #f4efec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.relatedCompanyLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.relatedCompanyLogoPlaceholder {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #DE5219;
}

.relatedCompanyInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.relatedCompanyName {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #282828;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.relatedCompanyPlace {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #DE5219;
    background: #fdf0eb;
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
}

.relatedCompanyRatings {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.relatedRatingItem {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #282828;
}

.relatedRatingItem img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.relatedCompanyArrow {
    flex-shrink: 0;
    opacity: 0.5;
}


@media (max-width: 767px) {
    .ahx-ai-modal__dialog {
        width: 100%;
        max-height: 100vh;
        border-radius: 20px
    }

    .ahx-ai-modal__header {
        padding: 20px 18px 0
    }

    .ahx-ai-modal__body {
        padding: 18px
    }

    .ahx-ai-doc {
        padding: 14px;
        border-radius: 22px
    }

    .ahx-ai-doc__sheet {
        padding: 22px 18px;
        border-radius: 20px
    }

    .ahx-ai-doc__title {
        font-size: 28px
    }

    .ahx-ai-doc__brand-text {
        font-size: 16px
    }

    .ahx-ai-report-body {
        font-size: 15px
    }

    .ahx-ai-report-body h2 {
        font-size: 22px
    }

    .ahx-ai-report-body h3 {
        font-size: 18px
    }
}



















/*  */
.desctopAdsCompany {
    display: flex;
}

.mobileAdsCompany {
    display: none;
}

.btnReview {
    background: linear-gradient(90deg, #E0571E 0%, #C9440E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 16px;
    box-sizing: border-box;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    gap: 8px;
    cursor: pointer;
    width: max-content;
}

.mobileADS {
    display: none !important;
}

.btnReview:hover {
    background: linear-gradient(90deg, #f07e4d 0%, #f37848 100%);
}

.btnToFullExports {
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainAreaExporter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 140px;
}

body {
    max-width: 100% !important;
}

.blockRevArea {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mapYandex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
}

.mapYandex div {
    width: 100% !important;
    border: 1px solid #DADADA;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    overflow: hidden;

}

.mapYandex div iframe {
    width: 100% !important;

}

.inMainAreaExporter {
    max-width: 1240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 24px;
}

.blockYandexReviewsModule {
    width: 100%;
    max-width: 1240px;
    margin-top: 48px;

}

.blockYandexReviewsModule div {
    width: 100% !important;
    height: 500px !important;
}

.badge {
    width: 100% !important;
    max-width: 100% !important;
}

.areaCardCompany {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
}

.inAreaCardCompany {
    display: flex;
    max-width: 1240px;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.topAreaCompany {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.blocklogoCompany {
    display: flex;
    gap: 2px;
    flex-direction: column;

    align-items: start;
}

.logoCompanyCard {
    width: 92px;
    height: 92px;
    border-radius: 200px;
    overflow: hidden;
}

.logoCompanyCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blockTitleCompnay {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.titleCompany {
    color: #282828;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    margin: 0;
}

.tagsCompnay {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.itemTagCompany {
    display: flex;
    padding: 4px 16px 6px 16px;
    align-items: center;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 31px;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.colorGreen {
    background: linear-gradient(90deg, #0DA200 0%, #0B8600 100%);
}

.colorOrange {
    border-radius: 31px;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
}

.likeSislike {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btnLike {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #008300;
    padding: 10px 16px;
    box-sizing: border-box;
    color: #FFF7FC;
    font-family: Montserrat;
    width: max-content;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    gap: 8px;
    cursor: pointer;
}

.btnDisLike {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #C30000;
    padding: 10px 16px;
    box-sizing: border-box;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    gap: 8px;
    cursor: pointer;
}

.blockInfoCompanyCard {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inBlockINfoCompanyCard {
    display: grid;
    grid-template-columns: 0.67fr 0.33fr;
    width: 100%;
    max-width: 1240px;
    align-items: start;
    gap: 24px;

}

.leftPartCardCompany {
    border-radius: 12px;
    background: #FFF;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.blockCopmanyLeftTop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.blockImageCompany {
    width: 100%;
    border-radius: 8px;
    max-height: 280px;
    height: 100%;
    overflow: hidden;
    display: none;
}

.blockImageCompany img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.blockInfoCardCompany {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titleCard {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.blockItemsParamsCompany {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 8px;
}

.itemCompanyParam {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.nameParamCompany {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

}

.blockOrgProf {
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    padding: 8px;
    background: #346df112;
}

.smallTextProf {
    font-size: 11px;
    font-family: Montserrat;
    line-height: 13px;
    color: gray;
}

.valueParamCompany {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.smallTextProf svg {
    width: 10px;
    height: 10px;

}

.smallTextProf:hover {
    color: #36a0da;
}

.blockDescCompanyCard {
    display: flex;
    margin-top: 24px;
    flex-direction: column;
    width: 100%;
}

.inblockDescCompanyCard {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.descCard {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.cardsReviews {
    display: flex;
    max-width: 1240px;
    margin-top: 24px;
    width: 100%;
    flex-direction: column;
}

.inCardsReviews {
    max-width: 1240px;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    display: flex;
}

.cardsReviewsCompany {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    width: 100%;
}

.itemReviewCompany {
    display: flex;
    padding: 16px 20px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #DADADA;
    box-sizing: border-box;
}

.titleReviewsCompany {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blockReviewsParams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px 0 24px;
    margin: 0;
}

.blockReviewsParams li {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}

.blockReviewsParams li::before {
    gap: 2px;
}

.infoUpdateCard {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #636363;
    font-family: Montserrat;
    font-size: 12px;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.rightPartCardCompany {
    display: flex;
    flex-direction: column;
    align-items: start;
    align-self: stretch;
}

#yandex_rtb_R-A-17755925-20 {
    position: sticky;
    top: 124px;
}

.buttonsSocials {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.inRightPartCardCompany {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
    max-height: inherit;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}



.titleRightPart {
    color: #282828;

    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blockItemsParamsCompany {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blockCompanyRating {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.blockRatingCards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;

}

#getInfoRating:hover>.blockStatusValues {
    display: flex;
}

.topCardsCompany {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

#mobileRating {
    display: none !important;
}

#desctopRating {
    display: flex !important;
}

.itemValueParam {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blockStatusValues {
    position: absolute;
    bottom: 52px;
    z-index: 8;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: #FFF;
    padding: 16px;
    box-sizing: border-box;
}

.colorGreenText {
    color: #15B300;
}

.colorOrangeText {
    color: #EFBF00;
}

.colorRedText {
    color: #FF7A27;
}


.itemCardCompany {
    display: flex;
    width: 100%;
    height: 44px;
    padding: 10px 4px 10px 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
}

.valueRatingCompnay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logoRating {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoRating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bottomCardsCompany {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.blockBtnsUrls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.btnWeb {
    display: flex;
    padding: 12px 4px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    box-sizing: border-box;
    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;
}

.btnTelegram {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    background: linear-gradient(91deg, #2EA5DE 6.14%, #0B78B2 88.49%);
    box-sizing: border-box;
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    cursor: pointer;
    font-weight: 500;
    line-height: 20px;

}

.btnTelegramNew {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(91deg, #2EA5DE 6.14%, #0B78B2 88.49%);
}

.btnTelegramNew:hover {
    background: linear-gradient(91deg, #50bcee 6.14%, #299bd8 88.49%);
}

.btnMax {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(91deg, #5451F6 6.14%, #8371E1 88.49%);
}

.btnMax:hover {
    background: linear-gradient(91deg, #7976f8 6.14%, #9b8bec 88.49%);

}

.btnWhatsapp {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1 0 0;
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(91deg, #6EEA78 6.14%, #46CA4F 88.49%);
}

.btnWhatsapp:hover {
    background: linear-gradient(91deg, #88f191 6.14%, #6de275 88.49%);

}

.btnWeb:hover {
    background: linear-gradient(90deg, #f06832 0%, #e45316 100%);

}

.btnTelegram:hover {
    background: linear-gradient(91deg, #3eacdf 6.14%, #1786c2 88.49%);
}





.commenctsCompanies {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 48px;
}

.inCommenctsCompanies {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
}

.topBlockTitleComments {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.blockTitleComments {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.titleComments {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.amountComments {
    color: #636363;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.sorterComments {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    border: 1px solid #DADADA;
    padding: 8px 32px;
    gap: 4px;
    box-sizing: border-box;
}

.sorterComments:hover {
    background: #bdbdbd;
}

.currentSelector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.currentSelector span {
    gap: 4px;
}

.selectSorterComments {
    display: none;
    position: absolute;
    width: 100%;
    top: 42px;
    left: 0;
    flex-direction: column;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.selectSorterComments.active {
    display: flex;
}

.currentSelector svg {
    transition: transform .15s ease;
}

.selectSorterComments.active~.currentSelector svg {
    transform: rotate(180deg);
}


.itemselectSortComments {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    line-height: 20px;
    display: flex;
    box-sizing: border-box;
    padding: 8px 0;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    align-self: stretch;

}

.itemselectSortComments:hover {
    background: #F6F6F6;
}

.blockCardsCheckReviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.cardReviewItem {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 4px;
    box-sizing: border-box;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
}

.cardReviewItem:hover {
    background: #d8d8d8;
}

.imageRev {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 200px;
}

.imageRev img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nameReview {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

}

.blockItemsReviews {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.itemReview {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.topAreaReview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.blockUserInfoRev {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logoRevType {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoRevType img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.nameUserReview {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.dateReview {
    color: #636363;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.amountStars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottomAreaTextComment {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.paginationCommanents {
    margin-top: 20px;
    display: flex;
    width: 100%;
    align-items: center;
}

.inPagComments {
    display: flex;
    width: 100%;
    gap: 4px;
    align-items: center;

}

.firstPageArrow,
.prevPageArrow,
.nextPageArrow,
.itemPage {
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 41px;
    height: 38px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #E34F13;
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.firstPageArrow:hover,
.prevPageArrow:hover,
.itemPage:hover,
.nextPageArrow:hover {
    color: white;
    background: #E34F13;
}

.separatorPag {
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.blockPagePagComments {
    display: flex;
    gap: 4px;
    align-items: center;
}

.sendCommentAbouCompany {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.inSendCommentAboutCompany {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 48px;
    box-sizing: border-box;
    padding: 16px 20px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.titleSendComment {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.formSendComment {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
    flex-direction: column;
}

.topInputs input {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    color: #282828;

    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.bottomAreaInput {
    margin-top: 16px;
}

.bottomAreaInput textarea {
    border-radius: 12px;
    border: 1px solid #DADADA;
    background: #FFF;
    padding: 12px 20px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    color: #282828;

    font-family: Montserrat;
    font-size: 15px;
    box-sizing: border-box;
    font-style: normal;
    display: flex;
    width: 100%;
    font-weight: 400;
    line-height: 20px;
}

.topInputs {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.selectStarAndBtnSend {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.selectStars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.btnSendComment {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    max-width: 307px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 12px 4px;
    border: none;
    align-items: center;
    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;
}

.btnSendComment:hover {
    background: linear-gradient(90deg, #eb6936 0%, #d45b26 100%);
}

button.btnSendCode {
    background: #5f8b5a;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px 12px;
    box-sizing: border-box;
    border: none;
    height: 32px;
}

button.btnSendCode:hover {
    background: #70a76a;
}

.inputConfirmCode {
    border: 1px solid #DADADA;
    background: #FFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 4px 12px;
    height: 32px;
    font-family: Montserrat;
    font-size: 13px;
    box-sizing: border-box;
}

.selectStars {
    display: flex;
    gap: 6px;
    align-items: center;
}

.staritemSelect {
    cursor: pointer;
    user-select: none;
    line-height: 0;
}

.staritemSelect .svgFilled,
.staritemSelect .svgEmpty {
    display: block;
}

.staritemSelect .svgFilled {
    display: none;
}

/* по умолчанию пустая */
.staritemSelect .svgEmpty {
    display: block;
}

.staritemSelect.is-active .svgFilled {
    display: block;
}

/* активная = заполненная */
.staritemSelect.is-active .svgEmpty {
    display: none;
}

.staritemSelect:hover {
    transform: translateY(-1px);
    transition: transform .12s ease;
}

.reviewsWrap.is-loading {
    opacity: .6;
    pointer-events: none;
}

.reviewsAjaxTarget,
.reviewsWrap {
    width: 100%;
}

.company-votes__message {
    margin-top: 10px;
    font-size: 14px;
    opacity: .9;
}

.counterLike.is-bumped,
.counterDis.is-bumped {
    transform: scale(1.15);
    transition: transform .2s ease;
}

.company-votes__message {
    margin-top: 10px;

    line-height: 1.3;
    opacity: .9;
    font-family: Montserrat;
    font-size: 13px;
}

.counterLike.is-bumped,
.counterDis.is-bumped {
    transform: scale(1.15);
    transition: transform .2s ease;
}

.blockLikesFlex {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-votes__buttons {
    display: flex;
    gap: 12px;
}

.btnLike,
.btnDisLike {
    border: none;
}

.confirmCodeRow {
    display: flex;
    gap: 4px;
    width: 100%;
}













/* Рекомендация */
.mainAreaMiniADS {

    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    background: #161616;
    height: auto;
    padding: 20px 16px;
    position: relative;
    box-sizing: border-box;
    justify-content: space-between;
}

.adsMiniCompany {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.adsMiniCompany__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.adsMiniCompany__label {
    position: absolute;
    top: inherit;
    bottom: 0;
    width: max-content;
    height: auto;
    right: 16px;
    padding: 0 12px;
    border-radius: 8px;
    /* background: #FF4800; */
    padding: 6px;
    box-sizing: border-box;
    color: #ffffff82;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.adsMiniCompany__logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #535353;
}

.adsMiniCompany__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.adsMiniCompany__title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    max-width: 174px;
}

.adsMiniCompany__title:hover {
    color: #f7dcd1;
}

.adsMiniCompany__right {
    max-width: 118px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.adsMiniCompany__socials {
    display: flex;
    flex-wrap: wrap;
    width: 72px;
    grid-template-columns: repeat(2, 34px);
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
}

.adsMiniCompany__social {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adsMiniCompany__social.wa {
    background: linear-gradient(91deg, #6EEA78 6.14%, #46CA4F 88.49%);
}

.adsMiniCompany__social.max {

    background: linear-gradient(91deg, #5451F6 6.14%, #8371E1 88.49%);
}

.adsMiniCompany__social.web {
    background: linear-gradient(91deg, #E0561E 6.14%, #CA450E 88.49%);
}

.adsMiniCompany__social.tg {
    background: linear-gradient(91deg, #2EA5DE 6.14%, #0B78B2 88.49%);
}

.adsMiniCompany__btn {
    display: flex;
    width: 100%;
    padding: 11px 16px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    color: #0D0D0D;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    background: #FFF;
    cursor: pointer;
}

.adsMiniCompany__btn:hover {
    background: rgb(236, 236, 236);
}

.blockRatingData {
    margin-top: 10px;
}

.tagRating {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ratingTag {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    border-radius: 7px;

    background: #f4f5f7;
    border: 1px solid #e6e8eb;
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 1;

    white-space: nowrap;
}

.ratingTag:hover {
    background: #f1f5fe;
}

.ratingCountry {
    font-weight: 400;
    color: #555;
}

.ratingPosition {
    font-weight: 600;
    color: #111;
}












@media screen and (max-width: 1280px) {
    .mainAreaExporter {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .inBlockINfoCompanyCard {
        display: grid;
        grid-template-columns: 0.8fr 0.45fr;
        width: 100%;
        max-width: 1240px;
        align-items: start;
        gap: 24px;

    }
}

@media screen and (max-width: 1120px) {
    .inBlockINfoCompanyCard {
        display: grid;
        grid-template-columns: 1fr 0.45fr;
        width: 100%;
        max-width: 1240px;
        align-items: start;
        gap: 24px;

    }

    .mainAreaMiniADS {
        max-width: 100%;
    }

    .desctopAdsCompany {
        display: none;
    }

    .mobileAdsCompany {
        display: flex;
    }
}

@media screen and (max-width: 1120px) {
    .inBlockINfoCompanyCard {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        max-width: 1240px;
        align-items: start;
        gap: 24px;
    }


    #mobileRating {
        display: flex !important;
    }

    #desctopRating {
        display: none !important;
    }

    .mobileADS {
        display: flex !important;
    }

    .ahx-ai-buy {
        max-width: 100%;
        margin-bottom: 24px;
    }
}


@media screen and (max-width: 860px) {
    .ahx-ai-modal__title span {
        font-size: clamp(20px, 1vw, 28px);
    }

    .ahx-ai-modal__body {
        padding: 12;
    }

    .ahx-ai-doc {
        padding: 0;
    }

    .company-votes__buttons {
        display: flex;
        flex-direction: column;
    }

    .btnLike,
    .btnReview {
        width: 100%;
    }

    .inBlockINfoCompanyCard {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        max-width: 1240px;
        align-items: start;
        gap: 24px;
    }

    .ahx-ai-input {
        padding: 6px 10px;
        box-sizing: border-box;
    }

    .blockImageCompany {
        max-height: inherit;
    }

    .blockCopmanyLeftTop {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .cardsReviewsCompany {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        width: 100%;
    }

    .titleCard,
    .titleRightPart {
        font-size: 18px;
    }

    .nameParamCompany,
    .descCard,
    .blockReviewsParams li,
    .nameParamCompany,
    .valueParamCompany {
        font-size: 14px;
        line-height: normal;
    }

    .titleReviewsCompany {
        font-size: 16px;
    }

    .infoUpdateCard {
        font-size: 11px;
    }

    .titleCompany {
        font-size: 32px;
        line-height: normal;
    }

    .ahx-ai-modal {
        padding: 8px;
    }
}

@media screen and (max-width: 670px) {
    .company-votes__buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .likeSislike {

        width: 100%;
    }

    .topBlockTitleComments {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .blockCardsCheckReviews {
        grid-template-columns: repeat(1, 1fr);
    }

    .selectStarAndBtnSend {
        display: flex;
        gap: 22px;
        align-items: flex-start;
        justify-content: flex-end;
        width: 100%;
        flex-direction: column;
    }

    .blockRevArea {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .btnSendComment {
        max-width: 100%;
    }

    .topInputs {
        flex-direction: column;
    }

    .confirmCodeRow {
        display: flex;
        gap: 4px;
        flex-direction: column-reverse;
    }

    .topAreaCompany {
        display: flex;
        gap: 24px;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 24px;
        flex-direction: column;
    }

    .logoCompanyCard {
        width: 74px;
        height: 74px;
        border-radius: 200px;
        overflow: hidden;
    }

    .titleCompany {
        font-size: 28px;
        line-height: normal;
    }

    .inRightPartCardCompany {
        max-height: max-content;
    }
}

@media screen and (max-width: 450px) {
    .topAreaReview {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 4px;
        flex-direction: column;
    }

    .btnDisLike {
        font-size: 14px;
        gap: 4px;
    }

    .itemCompanyParam {
        display: flex;
        gap: 4px;
        flex-direction: column;
    }

    .cardsReviews {
        margin-top: 12px;
    }

    .itemReviewCompany {
        font-size: 8px;
    }

    .itemReviewCompany {
        padding: 8px 12px;
    }

    .mapYandex {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        box-sizing: border-box;
        border-radius: 16px;
        overflow: hidden;
    }
}


.inAreaCardCompany,
.topAreaCompany,
.blockTitleCompnay,
.blockInfoCompanyCard,
.inBlockINfoCompanyCard,
.leftPartCardCompany,
.rightPartCardCompany,
.inRightPartCardCompany,
.blockCopmanyLeftTop,
.blockInfoCardCompany,
.blockItemsParamsCompany,
.itemCompanyParam,
.blockDescCompanyCard,
.inblockDescCompanyCard,
.cardsReviews,
.inCardsReviews,
.cardsReviewsCompany,
.itemReviewCompany,
.blockCompanyRating,
.blockRatingCards,
.topCardsCompany,
.bottomCardsCompany,
.buttonsSocials,
.tagRating,
.company-votes__buttons,
.likeSislike {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}


/* Длинные значения, ссылки, email, адреса */
.valueParamCompany,
.nameParamCompany,
.descCard,
.titleCompany,
.titleCard,
.titleRightPart,
.titleReviewsCompany,
.infoUpdateCard,
.bottomAreaTextComment,
.blockReviewsParams li {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* Особенно важно для ссылок */
.valueParamCompany a,
.descCard a,
.itemCompanyParam a,
.blockInfoCardCompany a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* Grid не должен брать min-content как минимальную ширину */
.inBlockINfoCompanyCard>*,
.blockCopmanyLeftTop>*,
.cardsReviewsCompany>*,
.bottomCardsCompany>*,
.blockCardsCheckReviews>* {
    min-width: 0;
}


/* Теги рейтинга */
.ratingTag {
    max-width: 100%;
}


/* =====================================================
   TABLET
   ===================================================== */

@media screen and (max-width: 1120px) {

    .inBlockINfoCompanyCard {
        grid-template-columns: minmax(0, 1fr);
    }

}



@media screen and (max-width: 670px) {

    .inBlockINfoCompanyCard,
    .blockCopmanyLeftTop,
    .cardsReviewsCompany,
    .blockCardsCheckReviews {
        grid-template-columns: minmax(0, 1fr);
    }



    .ratingTag {
        white-space: normal;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }



    .titleCompany {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }



    .itemCompanyParam {
        width: 100%;
        min-width: 0;
    }

    .valueParamCompany {
        min-width: 0;
        max-width: 100%;
    }



    .buttonsSocials {
        min-width: 0;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .buttonsSocials>* {
        min-width: 0;
    }


    /* Карточки рейтинга */
    .bottomCardsCompany {
        grid-template-columns:
            minmax(0, 1fr) minmax(0, 1fr);
    }

    .itemCardCompany {
        min-width: 0;
        max-width: 100%;
    }

}


@media screen and (max-width: 420px) {

    .bottomCardsCompany {
        grid-template-columns: minmax(0, 1fr);
    }

}