.comparison__calcs-bottom {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 30px;
}

.comparison__calc-btn {
    text-align: center;
    border: none;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 24px;
    background: #960A18;
    text-decoration: none;
    transition: all 0.2s ease-out;
    cursor: pointer;
    line-height: 1;
    opacity: 1;
}

.comparison__calc-btn:hover {
    background: #960A18;
    color: #fff;
}

.comparison__calc-btn.is-active {
    background: #960A18;
    color: #fff;
    opacity: 1;
}

.comparison__calc-btn.is-active:hover {
    background: #960A18;
    color: #fff;
}

.comparison__calc-switcher {
    margin-top: 40px;
}

.comparison__calc-switcher.is-hidden {
    display: none;
}

.comparison__calc-pane {
    display: none;
}

.comparison__calc-pane.is-active {
    display: block;
}

.calc.calc_inline {
    padding: 0;
}

.calc.calc_inline .calc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    height: 31px;
    margin-bottom: 24px;
}

.calc.calc_inline .calc__title {
    width: 100%;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
}

.calc.calc_inline .calc__close {
    width: 32px;
    height: 31px;
    background: transparent;
    border: 0;
    padding: 0;
    position: relative;
    opacity: .6;
    cursor: pointer;
    flex: 0 0 auto;
}

.calc.calc_inline .calc__close:before,
.calc.calc_inline .calc__close:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    border-top: 1px solid #fff;
    transform-origin: center;
}

.calc.calc_inline .calc__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.calc.calc_inline .calc__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.calc.calc_classic {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.calc.calc_classic .calc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    height: 31px;
}

.calc.calc_classic .calc__title {
    width: 100%;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
}

.calc.calc_classic .calc__close {
    width: 32px;
    height: 31px;
    background: transparent;
    border: 0;
    padding: 0;
    position: relative;
    opacity: .6;
    cursor: pointer;
}

.calc.calc_classic .calc__close:before,
.calc.calc_classic .calc__close:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    border-top: 1px solid #fff;
    transform-origin: center;
}

.calc.calc_classic .calc__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.calc.calc_classic .calc__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.calc.calc_classic .calc__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.calc.calc_classic .calc__grid {
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 60px;
    row-gap: 40px;
    box-sizing: border-box;
}

.calc.calc_classic .calc__field {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.calc.calc_classic .calc__label {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
}

.calc.calc_classic .calc__input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc.calc_classic .calc__input::after {
    content: "";
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.calc.calc_classic .calc__input .input,
.calc.calc_classic .calc__input select.input {
    width: 100%;
    height: 22px;
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
    opacity: .6;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    appearance: none;
    cursor: pointer;
    min-width: 0;
}

.calc.calc_classic .calc__input_select {
    position: relative;
}

.calc.calc_classic .calc__input_select:before {
    content: "";
    position: absolute;
    right: 0;
    top: 2px;
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .6;
    clip-path: polygon(50% 65%, 0 15%, 100% 15%);
    pointer-events: none;
}

.calc.calc_classic .calc__input_select select.input {
    padding-right: 20px;
    color-scheme: dark;
}

.calc.calc_classic .calc__input_select select.input option {
    background: #0e0e0e;
    color: #fff;
}

.calc.calc_classic .calc__toggles {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.calc.calc_classic .calc__toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 36px;
    cursor: pointer;
    position: relative;
}

.calc.calc_classic .calc__toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc.calc_classic .calc__toggle-ui {
    width: 36px;
    height: 36px;
    position: relative;
    flex: 0 0 auto;
}

.calc.calc_classic .calc__toggle-ui::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 16px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .10);
}

.calc.calc_classic .calc__toggle-ui::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #FFFFFF;
    margin-left: -7px;
    transition: margin-left .18s ease, background .18s ease, opacity .18s ease;
}

.calc.calc_classic .calc__toggle-input:checked + .calc__toggle-ui::before {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.calc.calc_classic .calc__toggle-input:checked + .calc__toggle-ui::after {
    background: #000000;
    margin-left: 7px;
    opacity: 1;
}

.calc.calc_classic .calc__toggle-text {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
}

.calc.calc_classic .calc__footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.calc.calc_classic .calc__params {
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc.calc_classic .calc__params-title {
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #fff;
}

.calc.calc_classic .calc__info {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
    opacity: .6;
}

.calc.calc_classic .calc__right {
    width: 600px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
}

.calc.calc_classic .calc__total {
    width: 100%;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}

.calc.calc_classic .calc__button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.calc.calc_classic .calc__button .button {
    width: 600px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #960A18;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1199px) {
    .calc.calc_classic .calc__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 32px;
    }

    .calc.calc_classic .calc__params,
    .calc.calc_classic .calc__right {
        width: 100%;
    }

    .calc.calc_classic .calc__button .button {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .comparison .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .comparison__calc-switcher {
        margin-left: -24px;
        margin-right: -24px;
    }

    .comparison__calc-pane.is-active {
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .comparison__calcs-bottom {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .comparison__calc-btn {
        width: 100%;
        display: block;
    }

    .comparison .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .comparison__calc-switcher {
        margin-left: -16px;
        margin-right: -16px;
    }

    .comparison__calc-pane.is-active {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .calc.calc_inline .calc__title {
        font-size: 18px;
    }

    .calc.calc_classic {
        gap: 30px;
    }

    .calc.calc_classic .calc__header {
        gap: 20px;
        height: auto;
    }

    .calc.calc_classic .calc__title {
        font-size: 18px;
    }

    .calc.calc_classic .calc__grid {
        padding: 24px;
        grid-template-columns: 1fr;
        row-gap: 24px;
        column-gap: 0;
    }

    .calc.calc_classic .calc__label {
        font-size: 16px;
    }

    .calc.calc_classic .calc__input .input,
    .calc.calc_classic .calc__input select.input {
        font-size: 16px;
    }

    .calc.calc_classic .calc__footer {
        flex-direction: column;
        gap: 24px;
    }

    .calc.calc_classic .calc__right {
        align-items: flex-start;
    }

    .calc.calc_classic .calc__button {
        justify-content: flex-start;
    }

    .calc.calc_classic .calc__total {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .calc.calc_classic .calc__grid {
        padding: 18px;
    }

    .calc.calc_inline .calc__title {
        font-size: 16px;
    }

    .calc.calc_classic .calc__title {
        font-size: 16px;
    }
}
