.calcNew__inner {
    padding: 30px 35px;
    background-color: white;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.calcNew__maintag {
    background-color: #0185ca;
    width: fit-content;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
}
.calcNew__maintitle {
    font-weight: 700;
    font-size: 26px;
}
.calcNew__subtitle {
    color: rgba(101, 101, 101, 1);
}
.calcNew__bage {
    border: 1px rgba(1, 133, 202, 0.2) solid;
    padding: 8px 12px;
    border-radius: 100px;
    font-weight: 700;
    color: rgba(1, 133, 202, 1);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: fit-content;
}
.calcNew__bage span {
    color: rgba(50, 213, 131, 1);
}
.calcNew__bages {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.calcNew__test {
    border: 1px rgba(1, 133, 202, 0.2) solid;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.calcNew__slide {
    display: none;
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    opacity: 0;
    flex-direction: column;
    gap: 20px;
    transform: translatey(-10px);
}
.calcNew__slide.active {
    display: flex;
    opacity: 1;
    transform: translatey(0px);
}
.calcNew__progress {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.calcNew__progressSteps {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
}
.calcNew__step {
    background-color: rgba(1, 133, 202, 0.2);
    height: 6px;
    border-radius: 100px;
    display: flex;
    width: 100%;
}
.calcNew__progressCount {
    min-width: 70px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}
.calcNew__slidetitle {
    font-weight: 700;
    font-size: 28px;
}
.calcNew__slidesubtitle {
    color: rgba(101, 101, 101, 1);
}
.calcNew__slide-answer {
    background-color: rgba(1, 133, 202, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 14px;
    position: relative;
    border: 1px transparent solid;
    cursor: pointer;
}
.calcNew__slide-answer:hover {
    border-color: #32d583;
}

.calcNew__slide-answer.selected {
    background-color: #0185ca;
}
.calcNew__slide-answer.selected .calcNew__answertitle, .calcNew__slide-answer.selected .calcNew__answersubtitle {
    color: white;
}
.calcNew__answertitle {
    font-weight: 600;
    font-size: 24px;
    padding-right: 32px;
}
.calcNew__answersubtitle {
    font-size: 14px;
    color: rgba(101, 101, 101, 1);
}
.calcNew__slide-answers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.calcNew__answercheck span {
    width: 14px;
    height: 14px;
    display: flex;
    background-color: white;
    border-radius: 100%;
}
.calcNew__slide-answer.selected .calcNew__answercheck span {
    background-color: #32d583;
}


.calcNew__answercheck {
    width: 22px;
    height: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 100px;
    position: absolute;
    top: 16px;
    right: 12px;
    border: 1px #0185ca solid;
}
.calcNew__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.calcNew__navbtn {
    padding: 16px 28px 18px 28px;
    border: 1px rgba(1, 133, 202, 1) solid;
    border-radius: 10px;
    font-size: 18px;
    line-height: 130%;
    min-width: 200px;
    font-weight: 600;
    color: #0185ca;
}
.calcNew__navbtn:hover {
    background-color: #0185ca;
    color: white;
}
.calcNew__navbtn.disable {
    display: none !important;
}
.calcNew__navbtn.calcNew__navbtn--next, .calcNew__navbtn.calcNew__navbtn--final {
    background-color: #0185ca;
    color: white;
}
.calcNew__navbtn.calcNew__navbtn--next:hover, .calcNew__navbtn.calcNew__navbtn--final:hover {
    background-color: #32d583;
    border-color: #32d583;
}
.calcNew__result-name {
    background: linear-gradient(90deg, rgba(172, 163, 254, 1) 51%, rgba(166, 194, 251, 1) 100%);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    width: 456px;
    max-width: 35%;
}
.calcNew__result-bage {
    font-weight: 700;
    font-size: 14px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-bottom: 10px;
}
.calcNew__result-bage span {
    display: none;
}
.calcNew__result-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: white;
    margin-top: auto;
}
.calcNew__result-text {
    font-size: 14px;
    color: white;
}
.calcNew__result-detailes, .calcNew__result-price {
    background-color: rgba(1, 133, 202, 0.05);
    border: 1px rgba(1, 133, 202, 0.2) solid;
    border-radius: 20px;
    padding: 16px 24px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.calcNew__result-caption {
    font-size: 14px;
    line-height: 120%;
}
.calcNew__result-cost {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}
.calcNew__result-caption.calcNew__result-caption--more {
    font-size: 16px;
        margin-top: auto;
}
.calcNew__result-detail {
    background-color: rgba(255, 255, 255, 1);
    padding: 8px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.calcNew__result-detailes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}
.calcNew__result-price {
    width: 366px;
    max-width: 25%;
}
.calcNew__result-detailes {
    width: 100%;
}
.calcNew__result {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}
.calcNew__result.calculated .calcNew__result-name {
    background: #0185ca;
}
.calcNew__result.calculated .calcNew__result-bage span {
    display: flex;
}
.calcNew__result.calculated .calcNew__result-cost {
    font-size: 32px;
    font-weight: 700;
    color: #0185ca;
}
.calcNew__afterform {
    background-color: rgba(50, 213, 131, 0.1);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    justify-content: space-between;
    border: 1px rgba(1, 133, 202, 0.2) solid;
}

.calcNew__aftertitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
}
.calcNew__aftersubtitle.calcNew__aftersubtitle--last {
    margin-top: auto;
}
.calcNew__aftertext {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 60%;
}
.calcNew__form {
    min-width: 35%;
}
.calcNew__progress-done {
    font-weight: 700;
    color: #0185ca;
}
.calcNew__afterform.disable {
    display: none;
}
.calcNew__slide-answer.error {
    border-color: red;
}
.calcNew__step.done {
    background-color: #0185ca;
}
.calcNew__step.active {
    box-shadow: 0 0 5px #0185ca;
}

@media(max-width: 1024px){
.calcNew__slide-answers {
    flex-direction: column;
    display: flex;
}
.calcNew__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.calcNew__nav > button {
    width: 100%;
}
.calcNew__result.calculated > * {
    flex-basis: 100%;
    max-width: 100%;
}
.calcNew__result.calculated {
    display: flex;
    flex-direction: column;
}
.calcNew__result-detailes-list {
    display: flex;
    flex-direction: column;
}
.calcNew__afterform {
    flex-direction: column;
}
.calcNew__aftertext {
    max-width: 100%;
}
.calcNew__bages {
    flex-wrap: wrap;
}
.calcNew__result > * {
    max-width: 100%;
    width: 100%;
}
}
