

/* Start:/local/components/aft/calc.nozzles/templates/.default/style.css?17645921205184*/
.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;
}
.calc__table th, .calc__table td {
    text-align: center;
}
.calc__table td {
    padding: 2px 10px;
    text-align: center;
}
.calc__table th {
    padding: 5px 10px;
}
.calc__table tbody tr:last-child td {
    padding-bottom: 10px;
}
.calc__table tbody div {
    color: #fff;
    padding: 5px;
    white-space: nowrap;
}
.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--plus span::before,
.calc__btn-round--plus span::after {
    background-color: #4b4f54;
    content: '';
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
}

.calc__btn-round--plus span::before {
     height: 1px;
     width: 100%;
}
.calc__btn-round--plus 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__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 20px;
    width: 100%;
}
.calc__label {
    display: block;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
}
.calc__input input {
    border: none;
    border-bottom: 1px solid #4b4f54;
    outline: none;
    padding: 5px;
    text-align: center;
    width: calc(100% - 80px);
}
.calc-table__content {
    background-color: var(--color-app__bg);
    border-radius: 20px;
    padding: 20px;
}
.calc-table__table td, .calc-table__table th {
    border: 1px solid var(--color-app__text);
    padding: 5px 10px;
}
.calc-table__wrap {
    overflow-x: scroll;
}
@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: 38px;
    }
    .calc__table thead th {
        font-size: 18px;
        padding: 21px 36px 24px;
    }
    .calc__table tbody td {
        font-size: 26px;
        padding: 2px 44px;
    }
    .calc__table tbody tr:last-child td {
        padding-bottom: 20px;
    }
    .calc__btn-round {
        width: 79px;
        height: 79px;
    }
    .calc__rounded {
        margin-bottom: 32px;
        margin-top: 49px;
    }
    .calc__note {
        font-size: 15px;
        margin-top: 28px;
        margin-bottom: 69px;
    }
    .calc__btn {
        font-size: 18px;
        padding: 25px 81px;
        width: fit-content;
    }
    .calc__input {
        margin-bottom: 42px;
    }
    .calc__label {
        margin-bottom: 6px;
    }
    .calc__input input {
        font-size: 26px;
        line-height: normal;
        padding: 12px;
        width: calc(100% - 220px);
    }
    .calc__btn-round--minus span {
        height: 3px;
    }
    .calc__btn-round--plus span::before {
        height: 3px;
    }
    .calc__btn-round--plus span::after {
        width: 3px;
    }
    .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: 20px;
    }
    .calc-table__wrap {
        overflow-x: auto;
    }
}

/* End */
/* /local/components/aft/calc.nozzles/templates/.default/style.css?17645921205184 */
