@keyframes slide-up {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.section-calculator label::before {
    content: none;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.section-calculator {
    padding: 50px 0;
    overflow: visible
}

.calculator[v-cloak] {
    opacity: 0
}

.calculator__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 65px;
    color: #515151;
    line-height: 120%;
    padding-bottom: 30px
}

.calculator__aside form {
    position: sticky;
    top: 190px
}

.param-calculator {
    margin-bottom: 40px
}

.param-calculator__desc {
    font-size: 13px;
    line-height: 140%;
    background-color: #eee;
    border-left: 3px solid #1db9c3;
    padding: 10px 25px
}

.param-calculator__desc p {
    margin: 7px 0;
    animation: slide-up .3s ease
}

.param-calculator__title {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 20px;
    color: #515151
}

.param-calculator__props {
    display: flex;
    flex-wrap: wrap;
    margin: -5px
}

.param-calculator__props label {
    width: 100%;
    padding: 5px;
    display: block;
    cursor: pointer
}

.param-calculator__props label input {
    display: none
}

.param-calculator__props label input:checked~.checkbox-image {
    border: 2px solid #1db9c3;
    background-color: #eee
}

.param-calculator__props label input:checked~.checkbox-image img {
    transform: scale(1.2)
}

.param-calculator__props label input:checked~.radio-prop {
    border: 1px solid #c16dff;
    background-color: #eee;
    box-shadow: 0 0 4px 1px #b161ed
}

.param-calculator__props label input:checked~.radio-prop .radio-prop__elem::before {
    transform: scale(1);
    transition: .3s ease
}

.param-calculator__input {
    padding: 5px;
    width: 100%
}

.param-calculator__input input {
    height: 55px;
    border: 1px solid #cbcbcb;
    padding-left: 20px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    transition: .3s ease
}

.param-calculator__input input:focus {
    border: 2px solid #1db9c3
}

.pcice-nds {
    font-size: 14px;
    font-weight: 400
}

.checkbox-image {
    background-color: #f5f5f5;
    padding: 10px 10px 10px 10px;
    border: 1px solid #9e9e9e;
    height: 100%;
    border-radius: 5px
}

.checkbox-image:hover {
    border: 1px solid #1db9c3
}

.checkbox-image__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 10px
}

.checkbox-image__desc {
    font-size: 13px;
    line-height: 150%
}

.checkbox-image__image {
    margin-bottom: 25px
}

.checkbox-image__image picture {
    display: block;
    width: 100%;
    padding-top: 90%;
    position: relative
}

.checkbox-image__image picture img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    margin: auto;
    transition: .3s ease
}

.radio-prop {
    border: 1px solid #9e9e9e;
    padding: 5px;
    min-height: 55px;
    background-color: #f5f5f5;
    border-radius: 4px;
    position: relative;
    display: flex
}

.radio-prop:hover {
    border: 1px solid #1db9c3
}

.radio-prop__elem {
    width: 18px;
    height: 18px;
    border: 1px solid #1db9c3;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%)
}

.radio-prop__elem::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1db9c3;
    content: '';
    display: block;
    left: 4px;
    top: 4px;
    position: absolute;
    transform: scale(0)
}

.radio-prop__text {
    flex-grow: 1;
    padding-right: 30px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #515151
}

.radio-prop__color {
    width: 55px;
    margin: -5px;
    border-right: 1px solid #9e9e9e;
    transition: .3s ease
}

.calculator-result {
    background-color: #ececec;
    border-radius: 28px;
    padding: 30px
}

.calculator-result__err {
    font-size: 13px;
    color: #000;
    margin-bottom: 20px;
    background-color: #e0e0e0;
    padding: 7px 10px;
    border-left: 2px solid #df0909
}

.calculator-result__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 41px;
    color: #515151;
    padding-bottom: 10px
}

.calculator-result__desc {
    font-size: 13px;
    padding-bottom: 15px;
    font-weight: 600;
    color: #515151
}

.calculator-result__desc ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #1db9c3;
    padding: 5px 0 7px 0
}

.calculator-result__desc ul li span:last-child {
    font-weight: 400
}

.calculator-result__desc ul li:last-child {
    border-bottom: 0
}

.calculator-result__cost {
    padding-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    color: #515151
}

.calculator-result__submit {
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -30px
}

.calculator-result__submit button {
    background: #b161ed;
    border-radius: 0 28px;
    border: none;
    width: 100%;
    height: 65px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: .3s ease
}

.calculator-result__submit button:hover {
    opacity: .9
}

.calculator-result__form {
    padding-top: 20px;
    padding-bottom: 30px
}

.calculator-result__form .form input {
    height: 50px;
    font-size: 14px;
    padding-left: 20px;
    border-radius: 5px;
    transition: .3s ease
}

.calculator-result__form .form input.err {
    border-color: red
}

.calculator-result__form .form input:focus {
    border-color: #1db9c3
}

.calculator-result__status span {
    text-align: center
}

.calculator-result__status span.err {
    color: red;
    font-size: 13px;
    margin-bottom: 30px;
    display: block
}

.calculator-result__status span.msg {
    color: #07ce00;
    font-size: 13px;
    margin-bottom: 30px;
    display: block
}

.btn.btn-icon.btn-loading::after {
    margin-left: -9px;
}

@media screen and (min-width: 359.98px) {
    .param-calculator__props label {
        width: 50%
    }
}

@media screen and (min-width: 480px) {
    .param-calculator--material .param-calculator__props label {
        width: 33.33%
    }

    .param-calculator__desc {
        font-size: 14px;
        line-height: 140%
    }

    .checkbox-image {
        padding: 10px 20px 10px 20px
    }
}

@media screen and (min-width: 576px) {
    .section-pagination {
        padding: 70px 0
    }

    .param-calculator__input input {
        height: 65px;
        padding-left: 25px;
        font-size: 16px
    }

    .radio-prop__color {
        width: 65px
    }
}

@media screen and (min-width: 767px) {
    .checkbox-image {
        padding: 15px 15px 15px 15px
    }

    .checkbox-image__title {
        font-size: 16px
    }

    .radio-prop {
        min-height: 65px
    }

    .radio-prop__text {
        font-size: 16px
    }

    .calculator-result {
        padding: 15px 30px 30px 30px
    }

    .calculator-result__submit {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: -30px
    }
}

@media screen and (min-width: 992px) {
    .main-slider__slide picture {
        padding-top: 15%
    }

    .section-calculator {
        padding: 40px 0
    }

    .calculator {
        display: flex
    }

    .calculator__title {
        font-size: 36px
    }

    .calculator__main {
        padding-right: 30px;
        width: 68%
    }

    .calculator__aside {
        width: 32%
    }
}

@media screen and (min-width: 1200px) {
    .calculator__main {
        padding-right: 60px
    }
}

@media screen and (min-width: 1376px) {
    .section-calculator .container {
        max-width: 1200px
    }

    .calculator__title {
        font-size: 42px
    }

    .param-calculator__props {
        margin: -15px
    }

    .param-calculator__props label {
        padding: 15px
    }

    .param-calculator__input {
        padding: 15px
    }

    .checkbox-image__desc {
        font-size: 14px
    }

    .calculator-result__title {
        padding-bottom: 25px;
        font-size: 36px
    }

    .calculator-result__desc {
        font-size: 14px;
        padding-bottom: 35px
    }

    .calculator-result__cost {
        font-size: 36px;
        padding-bottom: 20px
    }

    .calculator-result__form .form input {
        height: 55px;
        font-size: 16px
    }
}

@media screen and (min-width: 1440px) {
    .calculator__main {
        padding-right: 130px
    }

    .calculator-result {
        padding: 30px
    }

    .calculator-result__submit {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: -30px
    }
}

@media screen and (max-width: 1376px) {
    .calculator-result__submit button {
        font-size: 18px
    }
}

@media screen and (max-width: 576px) {
    .param-calculator--color .param-calculator__props label {
        width: 100%
    }
}