.calculator-page {
    margin: 80px 0;
}
.calculator-page h2 {
    color: #646565;
    font-weight: 300;
    margin-bottom: 40px;
}
.calc-form {
    box-shadow: 0 0 16px 0 rgba(100, 101, 101, .2);
    padding: 90px 28px;
    border-radius: 8px;
}
.calc-form__inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.calc-row {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
}
.calc-row__label {
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #91B130;
    margin-bottom: 8px;
}
.calc-row::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #91B130;
}
.calc-row::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 11.5px;
    width: 1px;
    height: 60px;
    background-color: #91B130;
}
.calc__total-price {
    font-size: 28px;
    line-height: 32px;
    color: #91B130;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.delete-program-wrap span {
    font-size: 31px;
    color: #91B130;
    transform: rotate(45deg);
}
.calc-form__row {
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 0 16px 0 rgba(100, 101, 101, .2);
    padding: 10px;
    font-size: 18px;
    line-height: 24px;
}
.calc-form__row .input-text {
    width: 100%;
    border: none;
}
.calc-form__row input[type=checkbox] {
    display: none;
}
.calc-form__row .checkbox-label {
    display: block;
    padding-left: 30px;
    position: relative;
}
.calc-form__row .checkbox-label::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 1px;
    box-shadow: 0 0 16px 0 rgba(100, 101, 101, .2);
    position: absolute;
    top: 0;
    left: 0;
}
.calc-form__row input[type=checkbox]:checked ~ .checkbox-label::after {
    content: "";
    width: 12px;
    height: 9px;
    background-image: url("images/icon-checkbox.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 5px;
}
.calc-form__row .checkbox-label a {
    color: #91B130;
    text-decoration: underline;
}
.checkbox-wrap {
    max-width: 320px;
    font-size: 12px;
    line-height: 18px;
}
.mega-design {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.mega-design .calc-form__row {
    box-shadow: none;
}
.mega-design-right {
    display: flex;
}
.mega-design-right .calc__total-price {
    margin-top: auto;
    margin-left: auto;
    margin-bottom: auto;
}
.calc__total-price__old {
    font-size: 17px;
    line-height: 32px;
    white-space: nowrap;
    text-decoration: line-through;
    color: #646565;
    margin-right: 8px;
}
.mega-design-left--special {
    font-size: 14px;
    line-height: 18px;
    color: #646565;
}
.mega-design-left--special > * {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.program-description-link {
    text-decoration: underline;
    color: inherit;
}
.calc-form-submit {
    margin-left: auto;
    margin-bottom: auto;
}
.calc-form-submit:disabled {
    pointer-events: none;
    opacity: .3;
}
.calculator-page .hidden {
    display: none !important;
}

.custom-range {
    width: 100%;
    max-width: 800px;
    padding: 24px 0;
    user-select: none;
    margin-bottom: 40px;
    position: relative;
    touch-action: none;
}
.custom-range__title {
    font-size: 12px;
    line-height: 24px;
    position: absolute;
    top: 2px;
    left: 6px;
}
.custom-range__under {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    line-height: 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
}
.custom-range__track-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.custom-range__track {
    position: relative;
    height: 1px;
    background: #d9d9d9;
    cursor: pointer;
}
.custom-range__progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #91B130;
}
.custom-range__thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #91B130;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.custom-range__above-thumb {
    font-size: 18px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    white-space: nowrap;
}
#offer-name {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#offer-name::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #91B130;
    margin-right: 20px;
}
#offer-name span:last-child {
    margin-left: auto;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
    border-color: #91B130;
    background: #91B130;
}

@media screen and (max-width: 800px) {
    .calculator-page {
        margin: 40px 0;
    }
    .calculator-page h2 {
        margin-bottom: 20px;
    }
    .calc-row::before {
        top: 5px;
    }
    .calc-row__label {
        font-size: 18px;
        line-height: 24px;
    }
    .calc-pli__price {
        margin-right: 0;
    }
    .mega-design {
        grid-template-columns: 1fr;
    }
    .mega-design-right .calc__total-price,
    .calc-form-submit {
        margin-left: 0;
        margin-bottom: 0;
    }
    .mega-design-right {
        flex-direction: column;
    }
    .calc-form {
        padding: 20px 28px;
    }
}