

/* Start:/local/components/aft/calc.leftover/templates/.default/style.css?17645921209192*/
.calc {
    --border-color: #e3e3e3;
    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__title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}
.calc__sub-title {
    text-align: center;
}
.calc__table {
    width: 100%;
}
.calc__table tbody tr {
    border-bottom: 1px solid var(--border-color);
}
.calc__table tbody tr:last-child {
    border: none;
}
.calc__table thead th {
    font-size: 13px;
    font-weight: normal;
    vertical-align: top;
}
.calc__table th, .calc__table td {
    text-align: center;
}
.calc__table td {
    padding: 2px 10px;
    text-align: center;
}
.calc__table td:first-child, .calc__table th:first-child {
    text-align: left;
}
.calc__table th {
    padding: 5px 10px;
    position: relative;
}
.calc__table tbody div {
    color: #fff;
    padding: 5px;
    white-space: nowrap;
}
.calc__table tfoot td {
    padding-bottom: 11px;
    padding-top: 13px;
}
.calc__table tfoot tr {
    border-top: 1px solid var(--border-color);
}
.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--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__note {
    color: #4b4f54;
    font-size: 2rem;
    margin: 20px 0;
    text-align: center;
}
.calc__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 30px;
    width: 100%;
}
.calc__label {
    display: block;
    font-weight: 500;
    margin: 0 0 10px;
    text-align: center;
    width: 100%;
}
.calc__input input {
    border: none;
    border-bottom: 1px solid #4b4f54;
    outline: none;
    padding: 5px;
    text-align: center;
    width: 100%;
}
.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__input-wrap {
    position: relative;
    width: 100%;
}
.calc__info-note {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(176, 176, 176, 0.5);
    font-size: 14px;
    opacity: 0;
    padding: 10px;
    position: absolute;
    text-align: center;
    top: calc(100% + 5px);
    transition-duration: 0.2s;
    width: 100%;
    visibility: hidden;
    z-index: 10;
}
.calc__info-note--show {
    opacity: 1;
    visibility: visible;
}
.calc__info-btn {
    background-image: url('/local/templates/aft/img/ic-info.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 24px;
    margin-left: auto;
    width: 24px;
}
.calc__drop {
    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__drop--show {
    opacity: 1;
    visibility: visible;
}
.calc__drop-wrap {
    height: 100%;
    overflow: scroll;
    scrollbar-color: var(--color-black) transparent;
    scrollbar-width: thin;
    width: 100%;
}
.calc__drop-wrap::-webkit-scrollbar {
    background-color: transparent;
    width: 6px;
}
.calc__drop-wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-black);
    border-radius: 39px;
}
.calc__list li {
    margin-bottom: 5px;
}
.calc__drop-btn {
    padding: 5px 0;
    text-align: left;
    width: 100%;
}
.calc__table .calc__btn-round {
    margin-left: auto;
}
.calc__input-row {
    margin-bottom: 40px;
}
.calc__table input {
    border: none;
    border-bottom: 1px solid #4b4f54;
    outline: none;
    padding: 5px;
    text-align: center;
    width: 100%;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.copied .modal__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.copied .container {
    transform: translateY(calc(-3rem - 31px));
}
.copied__content {
    background-color: var(--color-app__bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 100%;
}
@media (min-width: 768px) {
    .calc .page-caption {
        margin-bottom: 6rem;
    }
    .calc__wrap {
        border-radius: 44px;
        padding: 42px 50px 115px;
    }
    .calc__back {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    .calc__title {
        font-size: 5rem;
        line-height: normal;
        margin-bottom: 41px;
    }
    .calc__sub-title {
        margin-bottom: 35px;
    }
    .calc__table thead th {
        font-size: 18px;
        padding: 21px 54px 48px;
    }
    .calc__table tbody td {
        font-size: 26px;
        padding: 31px 37px 37px;
    }
    .calc__table tbody tr:first-child td {
        padding-top: 8px;
    }
    .calc__table tfoot td {
        padding: 31px 39px;
    }
    .calc__btn-round {
        width: 45px;
        height: 45px;
    }
    .calc__rounded {
        margin-bottom: 44px;
        margin-top: 37px;
    }
    .calc__note {
        font-size: 15px;
        margin-top: 28px;
        margin-bottom: 89px;
    }
    .calc__btn {
        font-size: 18px;
        padding: 27px 81px;
        width: fit-content;
    }
    .calc__input {
        margin-bottom: 42px;
    }
    .calc__label {
        line-height: normal;
        margin-bottom: 19px;
    }
    .calc__input input {
        font-size: 26px;
        line-height: normal;
        padding: 12px;
    }
    .calc__table {
        table-layout: fixed;
    }
    .calc__table tbody div {
        font-size: 17px;
        min-width: 100%;
        padding: 23px 17px;
        width: min-content;
    }
    .calc__table tbody td:first-child {
        padding-right: 10px;
    }
    .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__drop {
        height: 350px;
        font-size: 1.8rem;
        padding: 22px 36px;
    }
    .calc__drop-btn {
        padding: 11px 4px;
    }
    .calc__info-note {
        font-size: 18px;
        min-width: 25ch;
        padding: 22px 30px;
        top: calc(100% + 15px);
        left: 50%;
        transform: translateX(-50%);
    }
    .calc__table input {
        font-size: 26px;
        line-height: normal;
        padding: 12px;
    }
    .calc__input-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        margin-bottom: 45px;
        margin-top: 48px;
    }
    .calc__input-row .calc__input {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        width: 28.5%;
    }
    .calc__info-btn {
        margin-bottom: 9px;
    }
    .calc__table .calc__info-btn {
        bottom: 3px;
        margin-bottom: 0;
        position: absolute;
        right: 8px;
    }
    .calc__input:first-child .calc__info-note {
        left: 0;
        transform: translateX(0);
    }
    .calc__input:last-child .calc__info-note {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
}

/* End */
/* /local/components/aft/calc.leftover/templates/.default/style.css?17645921209192 */
