.calculator-page {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
}

.calculator-page .breadcrumbs {
    padding: 24px 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    align-self: flex-start;
}

.calculator-page .breadcrumbs .breadcrumbs-sep,
.calculator-page .breadcrumbs a {
    color: #767676;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    line-height: normal;
}

.calculator-page .breadcrumbs .breadcrumbs-current {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
}

.calculator-page .content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 940px;
    padding-bottom: 60px;
}

.calculator-page h1 {
    color: #272727;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.calculator-page .quiz-step-header {
    display: none;
}

.calculator-page .quiz-step-body {
    padding-top: 36px;
}

.calculator-page .quiz-step-body-content {
    gap: 30px;
}

.calculator-page .quiz-step.big .list .item {
    height: auto;
}

.calculator-page .quiz-step.big .list .item > span {
    bottom: 19px;
}

.calculator-page .quiz-step.big .list .item:hover > span {
    bottom: 18px;
}


.loader {
    width: 48px;
    height: 48px;
    display: block;
    margin: 20px auto;
    position: relative;
    border: 3px solid #438A34;
    border-radius: 50%;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}
.loader::after {
    content: '';
    box-sizing: border-box;
    width: 6px;
    height: 24px;
    background: #438A34;
    transform: rotate(-45deg);
    position: absolute;
    bottom: -20px;
    left: 46px;
}

@keyframes animloader {
    0% {
        transform: translate(-10px, -10px);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    75% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(-10px, -10px);
    }
}


.calculator-page .step-load .quiz-step-body-content {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
}

.calculator-page .step-load .quiz-step-body-content p {
    width: 330px;
    color: #272727;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 113.333% */
}

.calculator-page .step-calc .quiz-step-header {
    display: flex;
    height: 136px;
    padding: 0 40px;
    justify-content: space-between;
}

.calculator-page .step-calc .quiz-step-header p {
    color: #272727;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.calculator-page .step-calc .quiz-step-header p span {
    color: #48924E;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
}

.calculator-page .step-calc .quiz-step-header p span.calc-result-label {
    color: #272727;
    text-decoration: underline dashed;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.calculator-page .step-calc .quiz-step-header p span.calc-result-price {
    color: #272727;
}

.calculator-page .step-calc .quiz-step-header img {
    height: 115px;
}

.calculator-page .step-calc .list .item {
    height: 98px;
}

.calculator-page .step-calc .list .item img {
    width: 74px;
    height: 74px;
    aspect-ratio: 1/1;
}

.calculator-page .step-calc .list .item .text-container .text {
    display: none;
}

.calculator-page .step-calc .quiz-step-body-content {
    gap: 16px;
}

.calculator-page .step-calc .quiz-step-body-title {
    align-self: flex-start;
}

.calculator-page .step-calc .quiz-step-body form {
    gap: 38px;
}

.calculator-page .step-calc .quiz-step-body {
    padding-top: 21px;
}

.calculator-page .step-form .quiz-step-body .title-container .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    color: #707070;
    margin-bottom: -15px;
}

.calculator-page .quiz-step-body-content > img {
    display: none;
}


@media (max-width: 1000px) {
    .calculator-page .breadcrumbs {
        padding: 20px 0 17px;
    }

    .calculator-page .content {
        gap: 18px;
        width: 100%;
        max-width: 320px;
    }

    .calculator-page .quiz-step-body {
        padding-top: 18px;
    }

    .calculator-page .quiz-step-body-content {
        gap: 20px;
    }

    .calculator-page .step-load .quiz-step-body-content p {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        width: 234px;
    }

    .calculator-page h1 {
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
    }

    .calculator-page .step-calc .quiz-step-header {
        display: none;
    }

    .calculator-page .step-calc .quiz-step-body-title {
        align-self: center;
    }

    .calculator-page .step-calc .list .item .text-container .text {
        /*display: unset;*/
    }

    .calculator-page .step-form .quiz-step-body-content > img {
        margin-left: -15px;
        width: unset;
        aspect-ratio: unset;
        display: unset;
    }
}
