.cost-calculator {
    display: none;

    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-height: 717px;
    height: 95vh;
    z-index: 10;

}

.cost-calculator__content {
    position: relative;
    width: 100%;
    height: 100%;

    background: #fff;

    border-radius: 40px;

    padding: 45px 101px;

    --pad-h: 101px;
    --pad-v: 45px;

    display: flex;

    flex-direction: column;
}

/* cost calculator hide btn */

.cost-calculator__hide-btn {
    position: absolute;

    right: var(--pad-h);
    top: var(--pad-v);

    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: 0.3s;
}

.cost-calculator__hide-btn:hover {
    transform: rotate(180deg);
}

.cost-calculator__hide-btn-icon {
    font-size: 40px;
}

/* nav btns */

.cost-calculator__nav-btns {
    display: flex;
    height: fit-content;

    column-gap: 24px;

    position: absolute;

    right: var(--pad-h);
    bottom: var(--pad-v);
}

.cost-calculator__nav-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;

    font-size: 36px;

    transition: 0.3s;
}

.cost-calculator__nav-btn:enabled:hover {
    transform: scale(1.05);
}

.cost-calculator__nav-btn:enabled:active {
    transform: scale(0.95);
}


.cost-calculator__nav-btn:disabled {
    cursor: not-allowed;
}

.cost-calculator__btn--next {
    background-color: #FF7000;
    background-image: none;
    color: #ffff;
}

.cost-calculator__btn--next:disabled {
    background-image: url('/static/core/img/ui/background-effect.webp');
    background-color: #292929;
}

.cost-calculator__btn--prev {
    border: 4px solid #2929298c;
    color: #2929298c;
}

/* Progress */

.cost-calculator__progress {
    position: absolute;

    bottom: var(--pad-v);

    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50px;

    background: conic-gradient(
    #ff7000 0deg,
    #2929298c 0deg
    );
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cost-calculator__progress-percentage {
    color: #ff7000;
    font-weight: 600;
    z-index: 2
}

.cost-calculator__progress::after {
    content: "";
    position: absolute;
    inset: 4px;             /* толщина «рамки» = 4px */
    background: #fff;       /* цвет фона внутри круга */
    border-radius: 50%;
    z-index: 1;
    transition: 0.3s;
}

/* Question */

.cost-calculator__question {
    height: fit-content;
    margin-bottom: 45px;
    width: 92%;

    max-height: 108px;
    overflow-y: auto;
}

.cost-calculator__question-text {
    font-weight: 800;
}

/* Answers */

.cost-calculator__answers {
    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 24px;
}

.cost-calculator__answer {
    width: 496px;
    height: 80px;

    border-radius: 50px;

    display: flex;
    align-items: center;
    text-align: left;
    overflow-y: auto;
    white-space: pre;
    overflow-wrap: break-word;

    padding: 12px 40px;
    box-shadow: 0px 4px 10px #4545454d;

    cursor: pointer;
    transition: 0.3s;
}

.cost-calculator__answer:hover {
    background: #292929d9;
}

.cost-calculator__answer-text {
    font-weight: 500;
}

.cost-calculator__answer.selected {
    background-color: #FF7000;
    background-image: none;
}