

/* Start:/local/templates/active/components/bitrix/news/price/style.css?178289530590*/
.calc_container {
    display: flex;
    flex-flow: column;
    align-items: center;
}
/* End */


/* Start:/local/templates/active/components/bitrix/news.detail/price/style.css?1782895305136*/
.calc_container {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.calc_container h2
{
    margin-top: 0;
}
/* End */


/* Start:/local/components/ls/calculator/templates/.default/style.css?178479766017277*/
/* ==========================================================================
   LanServ — IT services calculator redesign
   Scoped to #services-calc / .calc_container
   Template markup is not changed.
   ========================================================================== */

/* ===== Root ===== */

.calc_container {
    width: 100%;
    max-width: none;
}

#services-calc.services-calc {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #162118;
    font-size: 16px;
}

/* ===== Main layout
   Forced because old Bootstrap + Bitrix UI Bootstrap 4 both affect .row/.col-md-*
   ===== */

#services-calc.services-calc>.row {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 24px;
    align-items: stretch;
    width: 100%;
    margin: 0 !important;
}

#services-calc.services-calc>.row>.col-md-8,
#services-calc.services-calc>.row>.col-md-4 {
    float: none !important;
    display: block;
    flex: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    margin: 0;
    padding: 0 !important;
}

/* ===== Left panel ===== */

#services-calc .services-calc__options {
    height: 100%;
    margin: 0;
    padding: 32px;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(28, 70, 35, .10);
}

#services-calc .services-calc__option {
    margin: 0 0 28px;
}

#services-calc .services-calc__option:last-child {
    margin-bottom: 0;
}

#services-calc .services-calc__option-name {
    display: block;
    width: 100%;
    margin: 0 0 13px;
    padding: 0;
    color: #153f22;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}

#services-calc .services-calc__option-controls {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* Service package row contains only select/selectize */
#services-calc .services-calc__option:nth-child(3) .services-calc__option-controls {
    display: block !important;
}

/* ===== Range control layout ===== */

#services-calc .range-control {
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

#services-calc .range-control__min,
#services-calc .range-control__max {
    position: static;
    display: block;
    flex: 0 0 auto;
    width: auto;
    min-width: 20px;
    margin: 0;
    padding: 0;
    color: #8a948d;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

#services-calc .range-control__max {
    min-width: 28px;
}

/* Native range remains available for rangeslider.js, but does not affect layout. */
#services-calc input.range-control__input[type="range"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== rangeslider.js generated DOM ===== */

#services-calc .range-control > .rangeslider,
#services-calc .range-control > .rangeslider--horizontal,
#services-calc .range-control > [id^="js-rangeslider-"] {
    position: relative;
    display: block !important;
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 40px !important;
    max-width: none !important;
    height: 8px;
    margin: 0 !important;
    padding: 0;
    border: 0;
    border-radius: 999px;
    box-sizing: border-box;
    background: #dfeade;
    box-shadow: none;
    cursor: pointer;
    touch-action: none;
}

#services-calc .rangeslider--horizontal {
    height: 8px;
}

#services-calc .rangeslider__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8cc63f, #3f9c35);
    box-shadow: none;
}

#services-calc .rangeslider__handle {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    margin: 0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #3f9c35;
    box-shadow:
        0 0 0 1px rgba(63, 156, 53, .18),
        0 5px 14px rgba(63, 156, 53, .28);
    cursor: grab;
    touch-action: none;
    user-select: none;
    transform: translateY(-50%);
    -webkit-user-select: none;
}

#services-calc .rangeslider__handle:active {
    cursor: grabbing;
}

#services-calc .rangeslider__handle::after {
    display: none;
}

/* ===== Number inputs ===== */

#services-calc input.services-calc__count-field {
    flex: 0 0 72px;
    display: block;
    width: 72px;
    max-width: 72px;
    height: 48px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 14px;
    outline: none;
    background: #f8fbf8;
    box-shadow: none;
    color: #153f22;
    font-size: 16px;
    line-height: 48px;
    font-weight: 800;
    text-align: center;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

#services-calc input.services-calc__count-field:hover {
    border-color: rgba(63, 156, 53, .38);
}

#services-calc input.services-calc__count-field:focus {
    border-color: #3f9c35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .10);
}

/* ===== Native select fallback ===== */

#services-calc select.services-calc__packages {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 0 46px 0 16px;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 16px;
    outline: none;
    background: #fbfdfb;
    color: #354239;
    font-size: 15px;
    line-height: 1.4;
}

/* ===== Selectize generated DOM ===== */

#services-calc .selectize-control.services-calc__packages,
#services-calc .services-calc__option-controls>.selectize-control {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 0;
}

#services-calc .selectize-control .selectize-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 0 46px 0 16px;
    overflow: hidden;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 16px;
    outline: none;
    background: #fbfdfb;
    background-image: none;
    box-shadow: none;
    color: #354239;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

#services-calc .selectize-control .selectize-input:hover {
    border-color: rgba(63, 156, 53, .38);
}

#services-calc .selectize-control .selectize-input.focus,
#services-calc .selectize-control .selectize-input.input-active,
#services-calc .selectize-control.dropdown-active .selectize-input {
    border-color: #3f9c35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .10);
}

/*
 * Critical reset:
 * template_styles.css contains global .item { width:300px; padding:10px; ... }
 * Selectize uses .item for selected value.
 */
#services-calc .selectize-input>.item {
    display: block !important;
    width: auto !important;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    color: inherit;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#services-calc .selectize-input>input {
    width: 1px !important;
    min-width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Arrow */
#services-calc .selectize-control.single .selectize-input::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    margin: -6px 0 0;
    border: 0;
    border-right: 2px solid #3f9c35;
    border-bottom: 2px solid #3f9c35;
    transform: rotate(45deg);
    transition: transform .2s ease, margin .2s ease;
}

#services-calc .selectize-control.single.dropdown-active .selectize-input::after {
    margin-top: -2px;
    transform: rotate(225deg);
}

/* Dropdown */
#services-calc .selectize-dropdown {
    z-index: 30;
    width: 100%;
    margin: 8px 0 0;
    overflow: hidden;
    border: 1px solid rgba(63, 156, 53, .18);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(28, 70, 35, .14);
    color: #405047;
}

#services-calc .selectize-dropdown-content {
    max-height: 260px;
    padding: 8px;
}

#services-calc .selectize-dropdown .option {
    margin: 0;
    padding: 11px 12px;
    border-radius: 10px;
    background: transparent;
    color: #405047;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

#services-calc .selectize-dropdown .option.active,
#services-calc .selectize-dropdown .option:hover,
#services-calc .selectize-dropdown .active {
    background: #eaf5e9;
    color: #153f22;
}

/* ===== Checkbox ===== */

#services-calc label.services-calc__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    color: #56635a;
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
}

#services-calc .checkbox-control__btn {
    position: relative;
    flex: 0 0 22px;
    display: block;
    width: 22px;
    height: 22px;
    margin: 1px 0 0;
    padding: 0;
    border: 1px solid rgba(63, 156, 53, .28);
    border-radius: 7px;
    background: #ffffff;
    box-shadow: none;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

#services-calc .checkbox-control__btn::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(45deg) scale(.7);
    transition: opacity .2s ease, transform .2s ease;
}

#services-calc .checkbox-control__input:checked+.checkbox-control__btn {
    border-color: #3f9c35;
    background: #3f9c35;
    box-shadow: 0 5px 14px rgba(63, 156, 53, .22);
}

#services-calc .checkbox-control__input:checked+.checkbox-control__btn::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

#services-calc .checkbox-control__input:focus-visible+.checkbox-control__btn {
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .12);
}

#services-calc .checkbox-control__label {
    display: block;
    width: auto;
    margin: 0;
    padding: 1px 0 0;
}

/* ===== Right result panel ===== */

#services-calc .services-calc__result {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 32px;
    border: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 8%, rgba(140, 198, 63, .28), transparent 28%),
        linear-gradient(145deg, #112d19 0%, #1f6a2b 100%);
    box-shadow: 0 14px 32px rgba(28, 70, 35, .14);
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.5;
}

#services-calc .services-calc__result::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .28;
    pointer-events: none;
}

#services-calc .services-calc__result>* {
    position: relative;
    z-index: 1;
}

/* ===== Sum ===== */

#services-calc .services-calc__sum {
    display: block;
    margin: 16px 0 28px;
    color: #ffffff;
    line-height: 1;
}

#services-calc .services-calc__sum-number {
    display: inline;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 46px);
    line-height: 1;
    font-weight: 900;
    text-align: left;
}

#services-calc .services-calc__sum>span:last-child {
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    line-height: 1;
    font-weight: 650;
}

/* ===== Result button ===== */

#services-calc .services-calc__result>a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 0;
    min-height: 52px;
    margin: auto 0 0;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    box-shadow: none;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

#services-calc .services-calc__result>a.btn:hover {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .20);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ===== Placeholder ===== */

#services-calc .services-calc__sum-placeholder {
    margin: 18px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 18px;
    background: #eaf5e9;
    color: #153f22;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

#services-calc .services-calc__sum-placeholder.is-hidden {
    display: none;
}

/* ===== Tablet ===== */

@media screen and (max-width: 1000px) {
    #services-calc.services-calc>.row {
        grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
        gap: 20px;
    }

    #services-calc .services-calc__options,
    #services-calc .services-calc__result {
        padding: 28px;
    }
    #services-calc .range-control__min, .range-control__max {
        order: unset !important;
    }
}

/* ===== Mobile ===== */

@media screen and (max-width: 800px) {
    #services-calc.services-calc>.row {
        grid-template-columns: 1fr;
    }

    #services-calc .services-calc__result {
        min-height: 280px;
    }
}

@media screen and (max-width: 560px) {

    #services-calc .services-calc__options,
    #services-calc .services-calc__result {
        padding: 22px 20px;
        border-radius: 24px;
    }

    #services-calc .services-calc__option {
        width: 100%;
        margin-bottom: 24px;
    }

    #services-calc .services-calc__option-controls {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        width: 100%;
        min-width: 0;
    }

    #services-calc .range-control {
        flex: 0 0 100%;
        display: flex !important;
        align-items: center;
        gap: 8px;
        width: 100% !important;
        min-width: 0;
        max-width: 100%;
    }

    #services-calc .range-control__min {
        flex: 0 0 20px;
        min-width: 20px;
    }

    #services-calc .range-control__max {
        flex: 0 0 28px;
        min-width: 28px;
    }

    #services-calc .range-control > .rangeslider,
    #services-calc .range-control > .rangeslider--horizontal,
    #services-calc .range-control > [id^="js-rangeslider-"] {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    #services-calc input.services-calc__count-field {
        flex: 0 0 62px;
        width: 62px;
        max-width: 62px;
    }

    #services-calc .services-calc__option:nth-child(3) .services-calc__option-controls {
        display: block !important;
    }

    #services-calc .services-calc__sum-number {
        font-size: 36px;
    }

    #services-calc .services-calc__result>a.btn {
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    #services-calc .services-calc__options,
    #services-calc .services-calc__result {
        padding-right: 16px;
        padding-left: 16px;
    }

    #services-calc .range-control {
        gap: 6px;
    }

    #services-calc .range-control__min {
        flex-basis: 18px;
        min-width: 18px;
    }

    #services-calc .range-control__max {
        flex-basis: 26px;
        min-width: 26px;
    }
}

.row:has(.services-calc__options):before {
    content: unset !important;
}
/* End */


/* Start:/local/templates/active/components/ms/active.smart.form/homepage_form_new/style.css?178583862820481*/
/* ==========================================================================
   LanServ — contact form redesign
   Layout:
   - left dark information panel
   - right white form panel
   - 2 fields per row
   - textarea full width
   ========================================================================== */

/* ===== Root ===== */

.order-callback-form-container {
    width: 100%;
    margin: 30px 0;
    padding: 0;
}

.order-callback-form-container>.order-callback-form {
    display: grid;
    grid-template-columns: 410px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

/* Reset old Bootstrap columns only inside this form */
.order-callback-form-container .left-side,
.order-callback-form-container .right-side {
    float: none;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* ===== Left information panel ===== */

.order-callback-form-container .left-side {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 8%,
            rgba(140, 198, 63, .26),
            transparent 28%),
        linear-gradient(145deg,
            #112d19 0%,
            #1f6a2b 100%);
    box-shadow: 0 22px 70px rgba(28, 70, 35, .16);
    color: #ffffff;
}

.order-callback-form-container .left-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .055) 1px,
            transparent 1px);
    background-size: 64px 64px;
    opacity: .28;
    pointer-events: none;
}

.order-callback-form-container .left-side>* {
    position: relative;
    z-index: 1;
}

.order-callback-form-container .left-side .title {
    margin: 0;
    padding: 0;
}

.order-callback-form-container .left-side .title h2 {
    margin: 0;
    color: #ffffff;
    line-height: 1.08;
    font-weight: 900;
}

/* Description is moved visually into the left panel */
.order-callback-form-container .left-side .form_descr {
    margin-top: 18px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
}

.order-callback-form-container .left-side .form_descr p {
    margin: 0 0 16px;
    color: inherit;
}

.order-callback-form-container .left-side .form_descr p:last-child {
    margin-bottom: 0;
}

.order-callback-form-container .left-side .form_descr a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .4);
    text-underline-offset: 3px;
}

/* ===== Right form panel ===== */

.order-callback-form-container .right-side {
    padding: 32px;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(28, 70, 35, .10);
}

.order-callback-form-container .right-side>.order-callback-form.form {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hide duplicate description in right panel if it remains in markup */
.order-callback-form-container .right-side .form_descr {
    display: none;
}

/* ===== Form grid ===== */

.order-callback-form-container form.form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    width: 100%;
    margin: 0;
}

/* Default dynamic fields: 2 per row */
.order-callback-form-container form.form>.form-group {
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* Textareas always span full row */
.order-callback-form-container form.form>.field-type-textarea {
    grid-column: 1 / -1;
}

/* Large/special choice controls get full width */
/* ===== Full-width fields ===== */

.order-callback-form-container form.form>.field-type-textarea,
.order-callback-form-container form.form>.field-type-multiselect,
.order-callback-form-container form.form>.field-type-checkbox,
.order-callback-form-container form.form>.field-type-radio {
    grid-column: 1 / -1;
}

/* ===== File upload рядом с Email ===== */

.order-callback-form-container form.form>.field-type-file {
    grid-column: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    align-self: end;
}

.order-callback-form-container .field-type-file .field-content {
    height: 100%;
}

.order-callback-form-container .field-type-file .field-content-in {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 7px;
    height: 100%;
}

/* Кнопка по высоте как обычный input */
.order-callback-form-container .field-type-file .upload-button {
    width: 100%;
    min-height: 52px;
    margin: 0;
}

/* Имя выбранного файла */
.order-callback-form-container .field-type-file .uploaded-file-info {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #667067;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Policy */
.order-callback-form-container .policy_msg {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
}

.order-callback-form-container .lan-contact-form__policy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #68746b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
}

.order-callback-form-container .lan-contact-form__policy-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #3f9c35;
    cursor: pointer;
}

.order-callback-form-container .lan-contact-form__policy-check span {
    min-width: 0;
}

.order-callback-form-container .policy_msg p {
    margin: 0;
    color: #68746b;
    font-size: 13px;
    line-height: 1.5;
}

.order-callback-form-container .policy_msg a {
    color: #3f9c35;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== Labels ===== */

.order-callback-form-container .field-label {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: #354239;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 750;
}

.order-callback-form-container .field-label i {
    display: none;
}

.order-callback-form-container .red_star {
    color: #3f9c35;
}

/* ===== Field content ===== */

.order-callback-form-container .field-content {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.order-callback-form-container .field-content::before,
.order-callback-form-container .field-content::after {
    display: none;
}

/* ===== Inputs ===== */

.order-callback-form-container input.form-control,
.order-callback-form-container textarea.form-control,
.order-callback-form-container select.form-control {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 16px;
    outline: none;
    background: #fbfdfb;
    box-shadow: none;
    color: #263329;
    font-size: 15px;
    line-height: 1.45;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.order-callback-form-container input.form-control {
    height: 52px;
    padding: 0 16px;
}

.order-callback-form-container select.form-control {
    height: 52px;
    padding: 0 44px 0 16px;
    cursor: pointer;
}

.order-callback-form-container textarea.form-control {
    min-height: 136px;
    padding: 15px 16px;
    resize: vertical;
}

/* Placeholder */
.order-callback-form-container input.form-control::placeholder,
.order-callback-form-container textarea.form-control::placeholder {
    color: #9aa49c;
    opacity: 1;
}

/* Hover */
.order-callback-form-container input.form-control:hover,
.order-callback-form-container textarea.form-control:hover,
.order-callback-form-container select.form-control:hover {
    border-color: rgba(63, 156, 53, .38);
}

/* Focus */
.order-callback-form-container input.form-control:focus,
.order-callback-form-container textarea.form-control:focus,
.order-callback-form-container select.form-control:focus {
    border-color: #3f9c35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .10);
}

/* ===== Select ===== */

.order-callback-form-container select.form-control {
    background-color: #fbfdfb;
    background-image:
        linear-gradient(45deg,
            transparent 50%,
            #3f9c35 50%),
        linear-gradient(135deg,
            #3f9c35 50%,
            transparent 50%);
    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 15px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
}

/* ===== Multiselect ===== */

.order-callback-form-container select[multiple].form-control {
    min-height: 132px;
    height: auto;
    padding: 10px;
    background-image: none;
}

.order-callback-form-container select[multiple].form-control option {
    padding: 9px 10px;
    border-radius: 8px;
}

/* ===== Radio / checkbox groups ===== */

.order-callback-form-container .radio,
.order-callback-form-container .checkbox {
    margin: 0 0 10px;
    padding: 0;
}

.order-callback-form-container .radio:last-child,
.order-callback-form-container .checkbox:last-child {
    margin-bottom: 0;
}

.order-callback-form-container .radio label,
.order-callback-form-container .checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 14px;
    background: #f8fbf8;
    color: #4f5d52;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    cursor: pointer;
}

.order-callback-form-container .radio input,
.order-callback-form-container .checkbox input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #3f9c35;
}

/* ===== Validation ===== */

.order-callback-form-container .has-error input.form-control,
.order-callback-form-container .has-error textarea.form-control,
.order-callback-form-container .has-error select.form-control,
.order-callback-form-container .form-control.error {
    border-color: #d95656;
    background: #fffafa;
}

.order-callback-form-container .has-error input.form-control:focus,
.order-callback-form-container .has-error textarea.form-control:focus,
.order-callback-form-container .has-error select.form-control:focus,
.order-callback-form-container .form-control.error:focus {
    box-shadow: 0 0 0 4px rgba(217, 86, 86, .10);
}

.order-callback-form-container .field-error {
    margin-top: 7px;
    color: #c74343;
    font-size: 13px;
    line-height: 1.4;
}

/* ===== File upload ===== */

.order-callback-form-container .field-type-file {
    margin: 0;
}

.order-callback-form-container .field-content-in {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-callback-form-container .upload-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding: 13px 18px;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 999px;
    background: #f8fbf8;
    box-shadow: none;
    color: #153f22;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.order-callback-form-container .upload-button:hover {
    border-color: rgba(63, 156, 53, .42);
    background: #eaf5e9;
    color: #153f22;
    transform: translateY(-1px);
}

.order-callback-form-container .upload-button input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.order-callback-form-container .uploaded-file-info {
    display: inline-block;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    color: #667067;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== Captcha ===== */

.order-callback-form-container .lan-contact-form__captcha {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
}

.order-callback-form-container .lan-contact-form__captcha .captcha-img:not([style*="display:none"]) {
    display: block;
    width: 140px;
    height: 40px;
    object-fit: contain;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 12px;
    background: #ffffff;
}

.order-callback-form-container .lan-contact-form__captcha .captcha-input:not([style*="display:none"]) {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 52px;
    margin-top: 12px;
    padding: 0 16px;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 16px;
    outline: none;
    background: #fbfdfb;
    color: #263329;
}

.order-callback-form-container .lan-contact-form__captcha .captcha-input:not([style*="display:none"]):focus {
    border-color: #3f9c35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .10);
}

.order-callback-form-container .captcha-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0;
}

.order-callback-form-container .captcha-row img {
    flex: 0 0 auto;
    width: 140px;
    height: 40px;
    object-fit: contain;
    border: 1px solid rgba(63, 156, 53, .14);
    border-radius: 12px;
    background: #ffffff;
}

.order-callback-form-container .captcha-row input[type="text"] {
    flex: 1 1 220px;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(63, 156, 53, .20);
    border-radius: 16px;
    outline: none;
    background: #fbfdfb;
    color: #263329;
}

.order-callback-form-container .captcha-row input[type="text"]:focus {
    border-color: #3f9c35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(63, 156, 53, .10);
}

/* ===== Form bottom ===== */

.order-callback-form-container .form-bottom {
    grid-column: 1 / -1;
    float: none;
    width: auto;
    max-width: none;
    margin: 2px 0 0;
    padding: 0;
}

.order-callback-form-container .form-footer {
    margin: 0;
    padding: 0;
}

.order-callback-form-container .col-submit {
    margin: 0;
    padding: 0;
}

/* ===== Submit ===== */

.order-callback-form-container input[type="submit"].btn.custom-style,
.order-callback-form-container input[type="submit"].btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 52px;
    margin: 0;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(135deg,
            #8cc63f 0%,
            #3f9c35 100%);
    box-shadow: 0 14px 34px rgba(63, 156, 53, .24);
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.order-callback-form-container input[type="submit"].btn.custom-style:hover,
.order-callback-form-container input[type="submit"].btn-primary:hover {
    background: linear-gradient(135deg,
            #8cc63f 0%,
            #3f9c35 100%);
    box-shadow: 0 18px 40px rgba(63, 156, 53, .30);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ===== Success state ===== */

.form-success {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 26px;
    border: 1px solid rgba(63, 156, 53, .18);
    border-radius: 22px;
    background: #eaf5e9;
    color: #153f22;
    box-shadow: 0 14px 32px rgba(28, 70, 35, .08);
}

.form-success-icon {
    flex: 0 0 auto;
    color: #3f9c35;
    font-size: 30px;
}

.form-success-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 750;
}

/* ===== Tablet ===== */

@media screen and (max-width: 1000px) {
    .order-callback-form-container>.order-callback-form {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 20px;
    }

    .order-callback-form-container .left-side,
    .order-callback-form-container .right-side {
        padding: 28px;
    }
}

/* ===== Mobile ===== */

@media screen and (max-width: 800px) {
    .order-callback-form-container>.order-callback-form {
        grid-template-columns: 1fr;
    }

    .order-callback-form-container .left-side {
        min-height: 0;
    }
}

@media screen and (max-width: 640px) {
    .order-callback-form-container form.form {
        grid-template-columns: 1fr;
    }

    .order-callback-form-container form.form>.form-group {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 520px) {

    .order-callback-form-container .left-side,
    .order-callback-form-container .right-side {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .order-callback-form-container .left-side .title h2 {
        font-size: 30px;
    }

    .order-callback-form-container .left-side .form_descr {
        font-size: 15px;
    }

    .order-callback-form-container input[type="submit"].btn.custom-style,
    .order-callback-form-container input[type="submit"].btn-primary {
        width: 100%;
    }
}

/* ===== Contact info inside left form panel ===== */

.left-side.lan-contact-form__info .side-info {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin-top: 30px;
}

/* Строка контакта */
.left-side.lan-contact-form__info .side-info>div {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.45;
}

/* Последняя строка без разделителя */
.left-side.lan-contact-form__info .side-info>div:last-child {
    border-bottom: 0;
}

/* Ссылки */
.left-side.lan-contact-form__info .side-info a {
    color: rgba(255, 255, 255, .88);
    font-size: inherit;
    line-height: inherit;
    font-weight: 650;
    text-decoration: none;
    transition:
        color .2s ease,
        opacity .2s ease;
}

/* Адрес: иконка находится внутри ссылки */
.left-side.lan-contact-form__info .side-info>div:first-child>a {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

/* Hover */
.left-side.lan-contact-form__info .side-info a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Иконки */
.left-side.lan-contact-form__info .side-info i {
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .10);
    color: #8cc63f;
    font-size: 17px;
    line-height: 1;
}

/* Не даём длинному email или адресу ломать сетку */
.left-side.lan-contact-form__info .side-info>div,
.left-side.lan-contact-form__info .side-info>div>a {
    overflow-wrap: anywhere;
}

/* Mobile */
@media screen and (max-width: 520px) {
    .left-side.lan-contact-form__info .side-info {
        margin-top: 24px;
    }

    .left-side.lan-contact-form__info .side-info>div {
        gap: 11px;
        padding: 14px 0;
        font-size: 15px;
    }

    .left-side.lan-contact-form__info .side-info i {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 16px;
    }
}

/* End */
/* /local/templates/active/components/bitrix/news/price/style.css?178289530590 */
/* /local/templates/active/components/bitrix/news.detail/price/style.css?1782895305136 */
/* /local/components/ls/calculator/templates/.default/style.css?178479766017277 */
/* /local/templates/active/components/ms/active.smart.form/homepage_form_new/style.css?178583862820481 */
