

/* Start:/local/templates/keramin-artano/css/calculator.css?17798031089067*/
:root {
    --pink: #e71f5b;
    --text: #30303a;
    --muted: #626472;
    --line: #dedfe7;
    --soft: #f6f6fc;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrapper {
    width: 1280px;
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e9e9ef;
}

.header-top {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    color: #565866;
    line-height: 1.2;
    width: 360px;
}


.logo-mark {
    font-size: 20px;
}

.header-icons {
    display: flex;
    gap: 14px;
    color: var(--pink);
    font-size: 20px;
    align-items: center;
    width: 360px;
    justify-content: flex-end;
}

.burger {
    display: none;
    border: 0;
    background: none;
}

.burger img {
    width: 24px;
}

.main-nav {
    border-top: 1px solid #eeeef3;
}

.nav-inner {
    height: 45px;
    display: flex;
    justify-content: center;
    gap: 34px;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #595b68;
    letter-spacing: 0.03em;
    white-space: nowrap;
}


.info-page .calculator-page h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 26px;
    letter-spacing: 0.01em;
    text-transform: none;
}

.calculator-layout {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.calculator-main {
    width: 870px;
    flex: 0 0 870px;
}

.calculator-sidebar {
    width: 330px;
    flex: 0 0 330px;
}

.notice {
    background: var(--soft);
    padding: 17px 22px 18px;
    margin-bottom: 15px;
    color: #4e505d;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.notice img,
legend img,
.result-card h2 img {
    width: 18px;
    height: 18px;
}

.notice p {
    margin: 4px 0;
    font-size: 16px;
    line-height: 1.25;
}

.card {
    border: 1px solid var(--line);
    border-radius: 3px;
    margin: 0 0 15px;
    padding: 23px 22px 24px;
}

.card legend {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: var(--pink);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    float: none;
    width: auto;
}

.walls-grid {
    display: flex;
    gap: 50px;
}

.wall-group {
    flex: 1 1 0;
}

.wall-group h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: #373945;
}

.fields-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.fields-row label,
.select-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
    line-height: 1.15;
    color: #555866;
}

input,
select {
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    padding: 0 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    min-width: 0;
}

input {
    width: 130px;
}

select {
    width: 105px;
}

.floor-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hint {
    width: 250px;
    background: var(--soft);
    padding: 15px 17px;
    font-size: 15px;
    line-height: 1.22;
    color: #4d4f5d;
    position: relative;
}

.hint:after {
    content: '';
    position: absolute;
    right: -4px;
    top: -19px;        
    width: 16px;
    height: 16px;
    background-image: url('/local/templates/keramin-artano/css/../images/icons/material-symbols_info-outline.svg');
    background-size: cover;
}

.layout-preview {
    display: flex;
    flex-wrap: wrap;
    width: 58px;
    gap: 4px;
    margin: 0 0 15px;
}

.layout-preview.layout-preview-rotate {
	transform: rotate(45deg);
	margin-bottom: 25px;
    position: relative;
    top: 7px;
}

.layout-preview span {
    width: 16px;
    height: 16px;
    background: #c7c7c7;
}

.layout-preview.layout-preview-rotate span {
	width: 12px;
	height: 12px;
}

.radio-row,
.check-row {
    display: flex;
    gap: 58px;
    align-items: center;
    font-size: 17px;
    line-height: 1.2;
}

.radio-row input,
.check-row input {
    width: auto;
    height: auto;
    margin-right: 8px;
    accent-color: var(--pink);
}

.result-card,
.help-card {
    background: var(--soft);
    padding: 21px 20px;
}

.info-page .result-card h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: none;
}

.result-list,
.subresult dl {
    margin: 0;
}

.result-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #dcdee8;
    padding: 11px 0;
}

.result-list dt,
.subresult dt {
    color: #555765;
    font-size: 15px;
    line-height: 1.2;
}

.result-list dd,
.subresult dd {
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
    font-size: 15px;
}

.subresult {
    margin-top: 14px;
}

.subresult h3 {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 9px;
    color: #4b4d5b;
}

.subresult dl {
    background: #fff;
    padding: 12px 15px;
}

.subresult div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 58px 0 15px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.total-row strong {
    color: var(--pink);
    font-size: 20px;
}

.request-btn {
    width: 100%;
    height: 42px;
    border: 0;
    background: var(--pink);
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: center;
    line-height: 2.5;
}

a.request-btn:hover {
    color: #fff;
}

.help-card {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.25;
}

.info-page .help-card h2 {
    font-size: 19px;
    line-height: 1.18;
    margin: 0 0 14px;
    font-weight: 700;
    text-transform: none;
}

.help-card h3 {
    font-size: 16px;
    line-height: 1.2;
    margin: 13px 0 5px;
    font-weight: 700;
}

.info-page .help-card p {
    margin: 0 0 9px;
    line-height: 1.2;
}

.site-footer {
    background: #f4f4f8;
    margin-top: 36px;
    padding: 32px 0 17px;
    color: #555866;
    font-size: 16px;
}

.footer-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-grid > div {
    width: 25%;
}

.site-footer h3 {
    margin: 0 0 11px;
    font-size: 19px;
    color: #2f2f36;
}

.site-footer a {
    display: block;
    margin: 0 0 8px;
}

.site-footer p {
    margin: 0 0 8px;
}

.copyright {
    border-top: 1px solid #dddde5;
    margin-top: 23px;
    padding-top: 15px;
    font-size: 15px;
}

@media (max-width: 1320px) {

    .wrapper {
        width: calc(100% - 40px);
    }

    .calculator-main {
        width: calc(100% - 364px);
        flex-basis: calc(100% - 364px);
    }
}

@media (max-width: 980px) {

    .calculator-layout {
        flex-direction: column;
    }

    .calculator-main,
    .calculator-sidebar {
        width: 100%;
        flex-basis: auto;
    }

    .calculator-sidebar {
        display: flex;
        gap: 20px;
    }

    .result-card,
    .help-card {
        width: 50%;
        margin-top: 0;
    }

    .nav-inner {
        gap: 17px;
        font-size: 13px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-grid > div {
        width: calc(50% - 15px);
    }
}

@media (max-width: 680px) {

    body {
        font-size: 17px;
    }

    .wrapper {
        width: calc(100% - 28px);
    }

    .header-top {
        height: auto;
        min-height: 68px;
    }

    .phones,
    .header-icons,
    .main-nav {
        display: none;
    }


    .burger {
        display: block;
    }

    .calculator-page h1 {
        font-size: 27px;
    }

    .walls-grid,
    .floor-content,
    .calculator-sidebar {
        flex-direction: column;
    }

    .walls-grid {
        gap: 20px;
    }

    .fields-row {
        flex-wrap: wrap;
    }

    .result-card,
    .help-card {
        width: 100%;
    }

    .radio-row,
    .check-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-grid > div {
        width: 100%;
    }

    .card {
        padding: 20px 15px;
    }

    .notice {
        padding: 15px;
    }

    .calculator-page {
        padding-top: 25px;
    }

    .floor-content {
        align-items: flex-start;
    }

}
/* End */
/* /local/templates/keramin-artano/css/calculator.css?17798031089067 */
