

/* Start:/local/components/aft/calc.mix/templates/.default/style.css?17645921208632*/
.calc {
    margin-bottom: 15px;
}
.calc__wrap {
    border-radius: 30px;
    background-color: var(--color-white);
    padding: 20px;
}
.calc__back {
    color: var(--color-app__text);
    display: block;
    margin-bottom: 20px;
    text-align: right;
    position: relative;
}
.calc__back-wrap {
    display: inline;
    position: relative;
}
.calc__back .icon-arrow-wrp {
    margin-left: 0;
    margin-right: 0.3em;
}
.calc__back .icon-arrow-wrp .icon-arrow {
    right: 0;
}
.calc__back .icon-arrow-wrp svg {
    left: 0;
    right: auto;
}
.calc__content {
    margin: 0 auto;
    max-width: 794px;
    width: 90%;
}
.calc__rounded {
    --border-color: #e3e3e3;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}
.calc__table {
    width: 100%;
}
.calc__title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
.calc__sub-title {
    text-align: center;
}
.calc__table thead th {
    font-size: 13px;
    font-weight: normal;
}
.calc__table th, .calc__table td {
    padding: 5px 10px;
}
.calc__table th:first-child, .calc__table td:first-child {
    text-align: left;
}
.calc__table th:last-child, .calc__table td:last-child {
    text-align: right;
}
.calc__table tfoot tr {
    border-top: 1px solid var(--border-color);
}
.calc__table td:last-child .calc__btn-round {
    margin-left: auto;
}
.calc__table tfoot td {
    padding-bottom: 11px;
    padding-top: 13px;
}
.calc__btn-round {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}
.calc__btn-round span {
    display: block;
    height: 40%;
    position: relative;
    width: 40%;
}
.calc__btn-round--minus span {
    background-color: #4b4f54;
    height: 1px;
}
.calc__btn-round--close span {
    transform: rotate(45deg);
}
.calc__btn-round--close span::before,
.calc__btn-round--close span::after {
    background-color: #4b4f54;
    content: '';
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
}
.calc__btn-round--close span::before {
     height: 1px;
     width: 100%;
}
.calc__btn-round--close span::after {
     height: 100%;
     width: 1px;
}
.calc__btn {
    border: 1px solid var(--color-app__text);
    border-radius: 100vmax;
    color: var(--color-app__text);
    display: block;
    font-size: 14px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}
.calc__btn--green {
    background-color: #73bc25;
    border: none;
    color: var(--color-white);
}
.calc__add {
    border: 1px solid #4b4f54;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    line-height: normal;
    justify-content: flex-start;
    font-size: 2rem;
    padding: 5px 15px;
}
.calc__add span {
    font-size: 3rem;
    padding-right: 5px;
}
.calc__note {
    color: #4b4f54;
    font-size: 2rem;
    margin: 20px 0;
    text-align: center;
}
.calc__products {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(176, 176, 176, 0.5);
    height: 250px;
    opacity: 0;
    padding: 15px;
    position: absolute;
    top: calc(100% + 15px);
    transition-duration: 0.2s;
    width: 100%;
    visibility: hidden;
    z-index: 100;
}
.calc__products--show {
    opacity: 1;
    visibility: visible;
}
.calc__products-wrap {
    height: 100%;
    overflow: scroll;
    scrollbar-color: var(--color-black) transparent;
    scrollbar-width: thin;
    width: 100%;
}
.calc__products-wrap::-webkit-scrollbar {
    background-color: transparent;
    width: 6px;
}
.calc__products-wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-black);
    border-radius: 39px;
}
.calc__list li {
    margin-bottom: 5px;
}
.calc__product {
    padding: 5px 0;
    text-align: left;
    width: 100%;
}
.calc-table__content {
    background-color: var(--color-app__bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 95vh;
    overflow: hidden;
    padding: 20px;
}
.calc-table__table td, .calc-table__table th {
    border: none;
    padding: 10px;
}
.calc-table__wrap {
    overflow-y: scroll;
    scrollbar-color: var(--color-black) transparent;
    scrollbar-width: thin;
}
.calc-table__wrap::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
}
.calc-table__wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-black);
    border-radius: 39px;
}
.calc-table .warning, .calc .warning {
    border: 1px solid var(--color-red);
    border-radius: 3.5rem;
    color: var(--color-red);
    padding: 3.1rem 6.8rem 2.9rem 11rem;
    margin: 6rem 0;
}
.calc-table .modal__close {
    opacity: 0.5;
}
.calc-table .modal__close svg {
    fill: currentColor;
    stroke: transparent;
}
.calc-table .modal__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}
.calc-table .h3 {
    margin: 5px 0 20px;
}
.calc-table__line {
    margin: 0 0 20px;
    padding: 0 0 25px;
    position: relative;
}
.calc-table__line::after {
    background-color: #e3e3e3;
    bottom: 0;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
}
.calc-table__head td {
    border: none;
    font-weight: bold;
    padding: 10px 0 15px;
}
.calc-table p:last-child {
    margin-bottom: 0;
}
.calc-table__title {
    font-weight: bold;
    margin: 20px 0 25px;
}
.calc-table .warning .block_icon-warning, .calc .warning .block_icon-warning {
    top: 3.1rem;
    transform: translateY(0);
}
.calc-table .warning ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.calc-table .warning ul li:last-child {
    margin-bottom: 0;
}
.calc-table__block {
    overflow: hidden;
    padding-bottom: 20px;
}
.calc-table .modal__close {
    margin-top: 5px;
}
.calc-table__table {
    font-weight: bold;
}
.calc-table__table tr:not([class]) {
    border: 1px solid #dbdbdb;
}
@media (min-width: 768px) {
    .calc .page-caption {
        margin-bottom: 6rem;
    }
    .calc__wrap {
        border-radius: 44px;
        padding: 42px 50px 100px;
    }
    .calc__back {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    .calc__title {
        font-size: 5rem;
        line-height: normal;
        margin-bottom: 38px;
    }
    .calc__sub-title {
        margin-bottom: 38px;
    }
    .calc__table thead th {
        font-size: 18px;
        padding: 21px 36px;
    }
    .calc__table tbody td {
        font-size: 26px;
        padding: 12px 35px;
    }
    .calc__table tfoot td {
        padding: 29px 35px;
    }
    .calc__btn-round {
        width: 46px;
        height: 46px;
    }
    .calc__add {
        font-size: 1.8rem;
        padding: 11px 27px 11px 15px;
    }
    .calc__add span {
        font-size: 4rem;
        padding-right: 10px;
        font-weight: 100;
        line-height: 0;
        transform: translateY(-0.2rem);
    }
    .calc__rounded {
        margin-bottom: 50px;
    }
    .calc__note {
        font-size: 15px;
        margin-top: 28px;
        margin-bottom: 69px;
    }
    .calc__btn {
        font-size: 18px;
        padding: 27px 71px;
        width: fit-content;
    }
    .calc__products {
        height: 400px;
        font-size: 1.8rem;
        padding: 22px 36px;
    }
    .calc__product {
        padding: 11px 4px;
    }
    .calc-table .warning, .calc .warning {
        margin: 30px 0;
        padding: 28px 6.8rem 25px 10.4rem;
    }
    .calc-table__content {
        border-radius: 45px;
        padding: 33px 36px;
    }
    .calc-table .h3 {
        margin: 27px 0 50px;
    }
    .calc-table__wrap {
        margin: 0 auto;
        padding: 0 25px;
        width: 74%;
    }
    .calc-table__head:first-child td {
        padding-top: 10px;
    }
    .calc-table__head td {
        padding: 42px 0 44px;
    }
    .calc-table__table tr:not([class]) td, .calc-table__table tr:not([class]) th {
        font-size: 2.6rem;
        padding: 30px 87px 33px 34px;
    }
    .calc-table__line {
        margin-bottom: 48px;
        padding-bottom: 101px;
    }
    .warning .block_text {
        font-size: 17px;
    }
    .calc-table .warning .block_icon-warning, .calc .warning .block_icon-warning {
        top: 30px;
    }
    .calc-table__title {
        margin: 48px 0 38px;
    }
}
@media (min-width: 1000px) {
    .calc-table .h3 {
        font-size: 56px;
    }
}

/* End */
/* /local/components/aft/calc.mix/templates/.default/style.css?17645921208632 */
