

/* Start:/local/components/str2020/calculator.floor/templates/.default/style.css?17225106615845*/
/* clf - calculator linoleum form */
.clf {
    font-family: "Gilroy";
    line-height: 1.2;
    letter-spacing: .2px;
    margin-bottom: 24px;
}

.clf .clf__title {
    font-weight: 600;
    font-size: 16px;
    color: rgb(51, 51, 51);
    margin-bottom: 24px;
}

.clf .clf__form-group {
    display: grid;
    grid-template-columns: 1fr 1fr 140px;
    gap: 16px;
}

@media (max-width: 425px) {
    .clt .clt__tables {
        grid-template-columns: repeat(1, 1fr);
    }

    .clf .clf__form-group {
        grid-template-columns: 1fr;
    }
}

.clf .clf__form-group .clf-form-group__input {
    position: relative;
    height: 48px;
}

.clf .clf__form-group .clf-form-group__input .clf-form-group__question {
    position: absolute;
    height: 24px;
    width: 24px;
    top: calc(50% - 12px);
    right: 14px;
    cursor: pointer;
    background-image: url(/local/includes/assets/images/sprite.svg#question);
    background-position: center;
    background-repeat: no-repeat;
}

.clf .clf__form-group .clf-form-group__input input {
    height: 100%;
    width: 100%;
    background-color: #fff;
    color: rgb(51, 51, 51);
    border: 1px solid rgb(182, 181, 181);
    border-radius: 4px;
    padding: 10px 16px 0 16px;
    font-size: 16px;
    font-weight: 400;
}
.clf .clf__form-group .clf-form-group__input input[type='number']::-webkit-outer-spin-button,
.clf .clf__form-group .clf-form-group__input input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.clf .clf__form-group .clf-form-group__input input[type='number'] {
    -moz-appearance: textfield;
}

.clf .clf__form-group .clf-form-group__input label {
    position: absolute;
    top: calc(50% - 8px);
    left: 16px;
    color: rgb(119, 119, 119);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: text;
    line-height: 1;
}

.clf .clf__form-group .clf-form-group__input input:not(:placeholder-shown) + label,
.clf .clf__form-group .clf-form-group__input input:focus + label {
    top: 7px;
    left: 16px;
    font-size: 12px;
}

.clf .clf__form-group .clf-form-group__input input:focus {
    border: 1px solid rgb(0, 120, 215);
}

.clf .clf__form-group .clf-form-group__input .clf-form-group__btn {
    color: #fff;
    margin: 0;
    padding: 16px 0px;
    background-color: rgb(0, 120, 215);
    border: 0;
    outline: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.clf .clf__form-group .clf-form-group__input .clf-form-group__btn:hover,
.clf .clf__form-group .clf-form-group__input .clf-form-group__btn:focus {
    background-color: rgb(59, 158, 235);
}

/* clt - calculator linoleum tables */
.clt {
    font-family: "Gilroy";
    line-height: 1.2;
    letter-spacing: .2px;
    margin-bottom: 40px;
}

.clt .clt__title {
    font-weight: 600;
    font-size: 18px;
    color: rgb(51, 51, 51);
    margin-bottom: 24px;
}

.clt sup {
    top: -0.6em;
    font-size: 0.6em;
}

.clt .clt__tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 414px) {
    .clt .clt__tables {
        grid-template-columns: 1fr;
    }
}

.clt .clt__tables .clt-tables__item {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgb(182, 181, 181);
    position: relative;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__info {
    position: absolute;
    background-image: url(/local/includes/assets/images/sprite.svg#info);
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    right: 24px;
    top: 22px;
    cursor: pointer;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__title {
    font-size: 16px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    margin-bottom: 35px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    padding: 0;
    margin: 0;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table th {
    color: rgb(119, 119, 119);
    font-size: 14px;
    font-weight: 600;
    width: 25%;
    text-align: left;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table td {
    color: rgb(51, 51, 51);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

@media (max-width: 414px) {
    .clt .clt__tables .clt-tables__item .clt-tables-item__table td {
        font-size: 14px;
        font-weight: 600;
    }
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr {
    cursor: pointer;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr td:first-child {
    border-top-left-radius: 4px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr td:last-child {
    border-top-right-radius: 4px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr td:first-child {
    border-bottom-left-radius: 4px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr td:last-child {
    border-bottom-right-radius: 4px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table tbody tr:hover td {
    background-color: rgb(242, 242, 242);
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table .clt-tables-item-table__delimiter {
    height: 32px;
}

.clt .clt__tables .clt-tables__item .clt-tables-item__table td {
    position: relative;
}
.clt .clt__tables .clt-tables__item .clt-tables-item__table .clt-td__tooltip {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.clt-td--gray {
    color: rgb(189, 189, 189) !important;
}

.clt-td--red {
    color: rgb(255, 0, 0) !important;
}

.clt-td--green {
    color: rgb(97, 165, 53) !important;
}

.clt-td--blue {
    color: rgb(0, 120, 215) !important;
}

.clt-td--pl-2 {
    padding-left: 8px !important;
}

/* End */
/* /local/components/str2020/calculator.floor/templates/.default/style.css?17225106615845 */
