

/* Start:/local/templates/goodlombard/styles.css?179032473140420*/
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/local/templates/goodlombard/assets/fonts/roboto-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/local/templates/goodlombard/assets/fonts/roboto-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/local/templates/goodlombard/assets/fonts/roboto-black.ttf') format('truetype');
}

:root {
    --gl-container: 1240px;
    --gl-orange: #ff5500;
    --gl-black: #080808;
    --gl-white: #ffffff;
    --gl-muted: #77777d;
    --gl-surface-light: #f3f3f3;
    --gl-line: #dedede;
}

.b24-widget-button-wrapper,
.b24-widget-button-wrapper * {
    animation: none !important;
    transition: none !important;
}

.b24-widget-button-wrapper {
    transform: translateZ(0) !important;
    will-change: transform;
    backface-visibility: hidden;
    isolation: isolate;
}

.gl-footer {
    background: var(--gl-black);
    color: var(--gl-white);
}

.gl-footer__container {
    width: min(var(--gl-container), calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.gl-footer__top {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 64px;
    min-height: 260px;
}

.gl-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.gl-footer__logo {
    display: block;
    width: 272px;
    height: 54px;
    overflow: hidden;
    padding-left: 4px;
}

.gl-footer__logo img {
    display: block;
    width: 268px;
    height: 54px;
    object-fit: contain;
}

.gl-footer__brand p {
    width: 320px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.gl-footer__phone {
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
    white-space: nowrap;
}

.gl-footer__email {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
}

.gl-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 178px);
    justify-content: space-between;
    column-gap: 48px;
    width: 100%;
}

.gl-footer__nav-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.gl-footer__nav-title {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -.3px;
    text-align: left;
    cursor: default;
}

.gl-footer__nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gl-footer__nav-col a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.gl-footer__divider {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    background: #dedede;
}

.gl-footer__bottom {
    display: grid;
    grid-template-columns: 150px 300px minmax(0, 1fr);
    align-items: center;
    column-gap: 90px;
    min-height: 64px;
    margin-top: 40px;
}

.gl-footer__social,
.gl-footer__stores,
.gl-footer__legal {
    display: flex;
    align-items: center;
}

.gl-footer__social {
    width: 150px;
    height: 64px;
    gap: 0;
}

.gl-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 64px;
    padding: 16px 12px 22px;
}

.gl-footer__social img {
    display: block;
    width: 26px;
    height: 26px;
}

.gl-footer__stores {
    width: 300px;
    height: 48px;
    gap: 12px;
    justify-content: center;
}

.gl-footer__stores a {
    display: block;
}

.gl-footer__stores img {
    display: block;
    width: auto;
    height: 37px;
}

.gl-footer__legal {
    justify-content: flex-end;
    gap: 0;
    min-width: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    color: var(--gl-white);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .gl-footer__legal a:first-of-type {
        margin-left: 24px;
    }

    .gl-footer__legal > span:not(:first-child) {
        margin: 0 12px;
    }
}

@media (hover: hover) {
    .gl-footer a {
        transition: color .2s ease;
    }

    .gl-footer a:hover {
        color: var(--gl-orange);
    }
}

@media (max-width: 1279px) {
    .gl-footer__top {
        grid-template-columns: 280px minmax(0, 1fr);
        column-gap: 40px;
    }

    .gl-footer__nav {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
        column-gap: 24px;
    }
}

@media (max-width: 1023px) {
    .gl-footer__top {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .gl-footer__brand,
    .gl-footer__nav,
    .gl-footer__nav-col {
        width: 100%;
        min-height: 0;
    }

    .gl-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 40px;
    }

    .gl-footer__bottom {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .gl-footer__legal {
        justify-content: flex-start;
        flex-wrap: wrap;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .gl-footer {
        border-radius: 0;
    }

    .gl-footer__container {
        width: calc(100% - 28px);
        padding: 48px 0 32px;
    }

    .gl-footer__top {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        min-height: 0;
    }

    .gl-footer__brand {
        width: 100%;
        flex-basis: auto;
        gap: 16px;
    }

    .gl-footer__logo {
        width: 272px;
        height: 54px;
    }

    .gl-footer__logo img {
        width: 268px;
        height: 54px;
    }

    .gl-footer__brand p {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .gl-footer__phone {
        font-size: 19px;
        line-height: 28px;
    }

    .gl-footer__email {
        font-size: 16px;
        line-height: 24px;
    }

    .gl-footer__nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .gl-footer__nav-col {
        position: relative;
        width: 100%;
        min-height: 58px;
        padding-right: 4px;
    }

    .gl-footer__nav-col::after {
        content: "+";
        position: absolute;
        top: 16px;
        right: 4px;
        pointer-events: none;
        color: var(--gl-white);
        font-size: 22px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 0;
    }

    .gl-footer__nav-col.is-open::after {
        content: "−";
    }

    .gl-footer__nav-title {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 58px;
        margin: 0;
        padding: 0 36px 0 0;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: -.3px;
        cursor: pointer;
    }

    .gl-footer__nav-links {
        display: none;
        padding: 0 0 18px;
    }

    .gl-footer__nav-col.is-open .gl-footer__nav-links {
        display: flex;
        gap: 10px;
    }

    .gl-footer__nav-col a {
        display: block;
        font-size: 16px;
        line-height: 22px;
    }

    .gl-footer__divider {
        margin-top: 28px;
    }

    .gl-footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        min-height: 0;
        margin-top: 28px;
    }

    .gl-footer__stores {
        order: 1;
        width: 300px;
        height: 48px;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: flex-start;
    }

    .gl-footer__stores img {
        height: 37px;
    }

    .gl-footer__social {
        order: 2;
        width: 150px;
        height: 64px;
        gap: 0;
        flex-wrap: wrap;
    }

    .gl-footer__social a {
        width: 50px;
        height: 64px;
        padding: 16px 12px 22px;
    }

    .gl-footer__social img {
        width: 26px;
        height: 26px;
    }

    .gl-footer__legal {
        order: 3;
        align-items: flex-start;
        justify-content: flex-start;
        align-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 8px;
        width: 100%;
        height: 80px;
        font-size: 13px;
        line-height: 19px;
        white-space: normal;
    }

    .gl-footer__legal > span:first-child {
        width: 100%;
        margin-bottom: 10px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    font-family: Roboto, Arial, sans-serif;
    color: var(--gl-black);
    background: var(--gl-white);
}

body {
    margin: 0;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.gl-page {
    min-height: 100vh;
    background: var(--gl-white);
}

.gl-header {
    position: relative;
    z-index: 20;
    background: var(--gl-white);
}

.gl-header__container {
    width: min(var(--gl-container), calc(100% - 32px));
    margin: 0 auto;
}

.gl-header__main {
    display: flex;
    align-items: center;
    height: 88px;
    background: var(--gl-white);
}

.gl-header__container--main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    overflow: visible;
}

.gl-header__logo {
    display: flex;
    align-items: flex-start;
    width: 175px;
    height: 56px;
    padding: 0 10px 0 3px;
}

.gl-header__logo img {
    display: block;
    width: 172px;
    height: 41px;
    object-fit: contain;
}

.gl-header__nav {
    width: 430px;
    height: 48px;
    overflow: visible;
}

.gl-header__nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 48px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-header__nav li,
.gl-header__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
}

.gl-header__nav-item {
    position: relative;
}

.gl-header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    padding: 0;
    background: var(--gl-white);
    box-shadow: 0 12px 30px rgba(8, 8, 8, .08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
}

.gl-header__dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 8px;
}

.gl-header__dropdown a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    color: var(--gl-black);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.gl-header__dropdown a:hover {
    color: var(--gl-orange);
    background: var(--gl-surface-light);
}

.gl-header__nav-item--dropdown:hover .gl-header__dropdown,
.gl-header__nav-item--dropdown:focus-within .gl-header__dropdown,
.gl-header__nav-item--dropdown.is-open .gl-header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.gl-header__nav-item--dropdown:hover > .gl-header__link,
.gl-header__nav-item--dropdown:focus-within > .gl-header__link,
.gl-header__nav-item--dropdown.is-open > .gl-header__link {
    color: var(--gl-orange);
}

.gl-header__nav-item--dropdown:hover > .gl-header__link::after,
.gl-header__nav-item--dropdown:focus-within > .gl-header__link::after,
.gl-header__nav-item--dropdown.is-open > .gl-header__link::after {
    transform: rotate(180deg);
}

.gl-header__link--dropdown::after {
    content: "";
    display: block;
    width: 11px;
    height: 6px;
    flex: 0 0 11px;
    background: url("/local/templates/goodlombard/assets/img/chevron.svg") center / 11px 6px no-repeat;
    transition: transform .18s ease;
}

.gl-header__utilities {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: 530px;
    height: 48px;
    overflow: visible;
}

.gl-header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 169px;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.gl-header__phone img {
    width: 20px;
    height: 20px;
}

.gl-header__city {
    position: relative;
    width: 150px;
    height: 40px;
    flex: 0 0 150px;
    overflow: visible;
}

.gl-header__city-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: var(--gl-surface-light);
    color: var(--gl-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    cursor: pointer;
}

.gl-header__city-value {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 24px;
    color: var(--gl-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    pointer-events: none;
}

.gl-header__city-value::after {
    content: "▾";
    font-size: 13px;
    line-height: 24px;
}

.gl-header__city-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 300px;
    padding: 16px;
    border-radius: 20px;
    background: var(--gl-white);
    box-shadow: 0 12px 28px rgba(8, 8, 8, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.gl-header__city.is-open .gl-header__city-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.gl-header__city-title {
    margin: 0;
    color: var(--gl-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.gl-header__city-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 268px;
    height: 48px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--gl-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
}

.gl-header__city-option::before {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: #e8e8e8;
    content: "";
}

.gl-header__city-option.is-active {
    background: #fff1e8;
    color: var(--gl-orange);
    font-weight: 700;
}

.gl-header__city-option.is-active::before {
    background: var(--gl-orange);
}

.gl-header__account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 179px;
    height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--gl-line);
    border-radius: 999px;
    background: var(--gl-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

.gl-header__service {
    display: flex;
    align-items: center;
    height: 64px;
    background: var(--gl-orange);
    color: var(--gl-white);
}

.gl-header__container--service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    overflow: hidden;
}

.gl-header__categories {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 720px;
    height: 48px;
    overflow: hidden;
    white-space: nowrap;
}

.gl-header__categories > span,
.gl-header__categories a span {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: .1px;
}

.gl-header__categories a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

.gl-header__categories a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: color .18s ease, background-color .18s ease;
}

.gl-header__categories a:hover,
.gl-header__categories a:focus-visible {
    background: #fff1e8;
    color: var(--gl-orange);
}

.gl-modal-open {
    overflow: hidden;
}

.gl-modal[hidden] {
    display: none;
}

.gl-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gl-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, .56);
}

.gl-modal__dialog {
    position: relative;
    z-index: 1;
    width: 520px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--gl-line);
    border-radius: 30px;
    background: var(--gl-white);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .08);
}

.gl-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--gl-surface-light);
    cursor: pointer;
}

.gl-modal__close img {
    width: 24px;
    height: 24px;
}

.gl-auth-modal > .gl-modal__close {
    top: 40px;
    right: 40px;
}

.gl-auth-modal {
    padding: 45px;
}

.gl-city-modal {
    padding: 40px;
}

.gl-city-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.gl-auth-modal__field select {
    width: 100%;
    height: 52px;
    padding: 0 44px 0 18px;
    border: 1px solid var(--gl-line);
    border-radius: 14px;
    background: var(--gl-surface-light);
    color: var(--gl-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("/local/templates/goodlombard/assets/img/city-chevron.svg");
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 8px 5px;
}

.gl-header__city select {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.gl-header__city select::-ms-expand {
    display: none;
}

.gl-auth-modal__field select:focus {
    border-color: var(--gl-orange);
    background-color: var(--gl-white);
}

.gl-auth-modal__state {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.gl-modal[data-auth-modal-state="phone"] .gl-auth-modal__state--phone,
.gl-modal[data-auth-modal-state="restore"] .gl-auth-modal__state--restore,
.gl-modal[data-auth-modal-state="phone-error"] .gl-auth-modal__state--phone-error {
    display: flex;
}

.gl-auth-modal__title {
    max-width: calc(100% - 56px);
    margin: 0;
    color: var(--gl-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.gl-auth-modal__text {
    max-width: 440px;
    margin: 0;
    color: var(--gl-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.gl-auth-modal__text a {
    color: var(--gl-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gl-auth-modal__contact {
    margin: 0;
    color: var(--gl-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.gl-auth-modal__phone {
    color: var(--gl-orange);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
}

.gl-auth-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}

.gl-auth-modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gl-auth-modal__field span {
    color: var(--gl-black);
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
}

.gl-auth-modal__field input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--gl-line);
    border-radius: 14px;
    background: var(--gl-white);
    color: var(--gl-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.gl-auth-modal__field input:focus {
    border-color: var(--gl-orange);
    background: var(--gl-white);
}

.gl-auth-modal__field.is-error input {
    border-color: var(--gl-orange);
    background: #fff1e8;
}

.gl-auth-modal__field em {
    color: var(--gl-orange);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

.gl-auth-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 62px;
    margin-top: 0;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--gl-orange);
    color: var(--gl-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
}

.gl-auth-modal__submit:disabled {
    cursor: default;
    opacity: .72;
}

.gl-auth-modal__submit i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: var(--gl-white);
    color: var(--gl-orange);
    font-style: normal;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.gl-auth-modal__submit svg {
    display: block;
    width: 12px;
    height: 5px;
}

.gl-auth-modal__forgot {
    width: 100%;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gl-orange);
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.gl-auth-modal__message {
    margin: 0;
    color: var(--gl-orange);
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.gl-auth-modal__state--restore .gl-auth-modal__message {
    color: var(--gl-black);
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}

.gl-auth-modal__message[hidden] {
    display: none;
}

.gl-header__estimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 220px;
    height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--gl-black);
    color: var(--gl-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

.gl-header__estimate i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: var(--gl-white);
    color: var(--gl-black);
}

.gl-header__estimate i svg,
.gl-header__estimate i img {
    display: block;
    width: 12px;
    height: 5px;
    flex: 0 0 12px;
}

.gl-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gl-black);
    cursor: pointer;
}

.gl-header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--gl-white);
}

#gl-mobile-menu {
    display: none;
}

.gl-main {
    min-height: 400px;
}

@media (hover: hover) {
    .gl-header a,
    .gl-header button {
        transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .gl-header a:hover {
        color: black;
    }

    .gl-header .gl-header__categories a:hover,
    .gl-header .gl-header__categories a:focus-visible {
        background: #fff1e8;
        color: var(--gl-orange);
    }

    .gl-header .gl-header__estimate:hover {
        color: var(--gl-white);
        transform: translateY(-1px);
    }
}

@media (max-width: 1279px) {
    .gl-header__nav {
        display: none;
    }

    .gl-header__utilities {
        width: auto;
    }

    .gl-header__burger {
        display: block;
        flex: 0 0 44px;
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(2) {
        opacity: 0;
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    #gl-mobile-menu {
        position: fixed;
        top: 88px;
        right: 16px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        width: 390px;
        max-width: calc(100% - 32px);
        max-height: calc(100dvh - 104px);
        box-sizing: border-box;
        padding: 28px 14px 32px;
        overflow-y: auto;
        border-radius: 24px;
        background: var(--gl-white);
        box-shadow: 0 18px 50px rgba(8, 8, 8, .16);
        color: var(--gl-black);
        opacity: 0;
        pointer-events: none;
        transform: translateX(16px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .gl-mobile-menu-open {
        overflow: hidden;
    }

    .gl-mobile-menu-open #gl-mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .gl-mobile-menu__screen {
        display: none;
        flex-direction: column;
        gap: 28px;
        flex: 1 1 auto;
        min-height: 0;
    }

    .gl-mobile-menu__screen.is-active {
        display: flex;
    }

    .gl-mobile-menu__categories {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .gl-mobile-menu__categories > span {
        color: var(--gl-muted);
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: .1px;
    }

    .gl-mobile-menu__category-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gl-mobile-menu__category-grid a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__category-grid a.is-active,
    .gl-mobile-menu__category-grid a.is-hovered,
    .gl-mobile-menu__category-grid a:hover,
    .gl-mobile-menu__category-grid a:focus-visible,
    .gl-mobile-menu__category-grid a:active {
        background: #fff1e8 !important;
        color: var(--gl-orange) !important;
    }

    .gl-mobile-menu__nav,
    .gl-mobile-menu__submenu {
        display: flex;
        flex-direction: column;
    }

    .gl-mobile-menu__nav {
        gap: 8px;
    }

    .gl-mobile-menu__nav a,
    .gl-mobile-menu__nav button,
    .gl-mobile-menu__account {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 58px;
        padding: 0 16px 0 18px;
        border: 0;
        border-radius: 18px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        cursor: pointer;
    }

    .gl-mobile-menu__city {
        padding: 0;
        overflow: hidden;
    }

    .gl-mobile-menu__account {
        border: 1px solid var(--gl-surface-light);
        background: var(--gl-white);
        font-size: 16px;
        line-height: 20px;
    }

    .gl-mobile-menu__city select {
        width: 100%;
        height: 48px;
        padding: 0 38px 0 14px;
        border: 0;
        background: transparent url("/local/templates/goodlombard/assets/img/arrow-right.svg") right 14px center / 17px 12px no-repeat;
        color: var(--gl-black);
        font: inherit;
        outline: none;
        cursor: pointer;
        appearance: none;
    }

    .gl-mobile-menu__arrow {
        display: block;
        width: 20px;
        height: 20px;
        flex: 0 0 17px;
    }

    .gl-mobile-menu__back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--gl-orange);
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        cursor: pointer;
    }

    .gl-mobile-menu__back img {
        display: block;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .gl-mobile-menu__title {
        margin: -10px 0 4px;
        color: var(--gl-black);
        font-size: 34px;
        font-weight: 700;
        line-height: 38px;
    }

    .gl-mobile-menu__submenu {
        gap: 8px;
        margin-bottom: auto;
    }

    .gl-mobile-menu__submenu a {
        display: flex;
        align-items: center;
        min-height: 62px;
        padding: 10px 18px;
        border-radius: 18px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__submenu a.is-active {
        background: #fff1e8;
        color: var(--gl-orange);
    }

    .gl-mobile-menu__phone {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 18px;
        background: var(--gl-surface-light);
    }

    .gl-mobile-menu__phone span {
        color: var(--gl-muted);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }

    .gl-mobile-menu__phone strong {
        color: var(--gl-black);
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .gl-mobile-menu__estimate {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        min-height: 60px;
        margin: 0 0 16px;
        padding: 16px 24px;
        border-radius: 999px;
        background: var(--gl-orange);
        color: var(--gl-white);
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__estimate img {
        display: block;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
}

@media (max-width: 1023px) {
    .gl-page,
    .gl-header {
        width: 100%;
        max-width: 100%;
    }

    .gl-page {
        overflow-x: hidden;
    }

    .gl-header {
        overflow: visible;
    }

    .gl-header.gl-city-dropdown-open {
        z-index: 1001;
    }

    .gl-header__city.is-open {
        z-index: 1001;
    }

    .gl-header__container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-right: 24px;
        padding-left: 24px;
        box-sizing: border-box;
    }

    .gl-header__main {
        height: 72px;
    }

    .gl-header__container--main {
        height: 72px;
    }

    .gl-header__logo {
        width: 150px;
        height: 36px;
        padding: 0;
    }

    .gl-header__logo img {
        width: 150px;
        height: 36px;
    }

    .gl-header__phone,
    .gl-header__account,
    .gl-header__service {
        display: none;
    }

    .gl-header__utilities {
        gap: 12px;
        height: 44px;
        overflow: visible;
    }

    #gl-mobile-menu {
        top: 72px;
        max-height: calc(100dvh - 88px);
    }
}

@media (max-width: 767px) {
    .gl-page,
    .gl-header {
        width: 100%;
        max-width: 100%;
    }

    .gl-page {
        overflow-x: hidden;
    }

    .gl-header {
        overflow: visible;
    }

    .gl-header__container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-right: 14px;
        padding-left: 14px;
        box-sizing: border-box;
    }

    .gl-header__main {
        height: 72px;
    }

    .gl-header__container--main {
        justify-content: space-between;
        height: 72px;
    }

    .gl-header__logo {
        width: 124px;
        height: 30px;
        padding: 0;
    }

    .gl-header__logo img {
        width: 124px;
        height: 30px;
    }

    .gl-header__phone,
    .gl-header__account,
    .gl-header__service {
        display: none;
    }

    .gl-header__city {
        width: 136px;
        max-width: 136px;
        flex: 0 0 136px;
        height: 44px;
    }

    .gl-header__city-toggle {
        gap: 6px;
        padding: 0 12px;
        font-size: 13px;
        line-height: normal;
    }

    .gl-header__city-value {
        height: auto;
        gap: 6px;
        font-size: 13px;
        line-height: normal;
    }

    .gl-header__city-value::after {
        font-size: 14px;
        font-weight: 700;
        line-height: normal;
    }

    .gl-header__burger {
        display: block;
        flex: 0 0 44px;
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(2) {
        opacity: 0;
    }

    .gl-mobile-menu-open .gl-header__burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .gl-header__utilities {
        gap: 8px;
        height: 44px;
        overflow: visible;
    }

    .gl-modal {
        align-items: center;
        padding: 16px;
    }

    .gl-auth-modal {
        width: 358px;
        padding: 29px;
    }

    .gl-city-modal {
        width: 358px;
        padding: 24px;
    }

    .gl-modal__close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .gl-auth-modal > .gl-modal__close {
        top: 24px;
        right: 24px;
    }

    .gl-auth-modal__title {
        max-width: calc(100% - 48px);
        font-size: 24px;
        line-height: 30px;
    }

    .gl-auth-modal__text {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    #gl-mobile-menu {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        height: calc(100dvh - 72px);
        width: 100%;
        max-width: none;
        max-height: none;
        box-sizing: border-box;
        padding: 28px 14px 32px;
        overflow-y: auto;
        border-radius: 0;
        background: var(--gl-white);
        box-shadow: none;
        color: var(--gl-black);
        opacity: 0;
        pointer-events: none;
        transform: translateX(16px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .gl-mobile-menu-open {
        overflow: hidden;
    }

    .gl-mobile-menu-open #gl-mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .gl-mobile-menu__screen {
        display: none;
        flex-direction: column;
        gap: 28px;
        flex: 1 1 auto;
        min-height: 0;
    }

    .gl-mobile-menu__screen.is-active {
        display: flex;
    }

    .gl-mobile-menu__categories {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .gl-mobile-menu__categories > span {
        color: var(--gl-muted);
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: .1px;
    }

    .gl-mobile-menu__category-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gl-mobile-menu__category-grid a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__category-grid a.is-active {
        background: #fff1e8;
        color: var(--gl-orange);
    }

    .gl-mobile-menu__category-grid a.is-hovered,
    .gl-mobile-menu__category-grid a:hover,
    .gl-mobile-menu__category-grid a:focus-visible,
    .gl-mobile-menu__category-grid a:active {
        background: #fff1e8 !important;
        color: var(--gl-orange) !important;
    }

    .gl-header .gl-mobile-menu__category-grid a.is-hovered,
    .gl-header .gl-mobile-menu__category-grid a:hover,
    .gl-header .gl-mobile-menu__category-grid a:focus-visible,
    .gl-header .gl-mobile-menu__category-grid a:active {
        background: #fff1e8 !important;
        color: var(--gl-orange) !important;
    }

    .gl-mobile-menu__nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .gl-mobile-menu__nav a,
    .gl-mobile-menu__nav button,
    .gl-mobile-menu__account {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 58px;
        padding: 0 16px 0 18px;
        border: 0;
        border-radius: 18px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        cursor: pointer;
    }

    .gl-mobile-menu__city {
        padding: 0;
        overflow: hidden;
    }

    .gl-mobile-menu__account {
        border: 1px solid var(--gl-surface-light);
        background: var(--gl-white);
        font-size: 16px;
        line-height: 20px;
    }

    .gl-mobile-menu__city select {
        width: 100%;
        height: 48px;
        padding: 0 38px 0 14px;
        border: 0;
        background: transparent url("/local/templates/goodlombard/assets/img/arrow-right.svg") right 14px center / 17px 12px no-repeat;
        color: var(--gl-black);
        font: inherit;
        outline: none;
        cursor: pointer;
        appearance: none;
    }

    .gl-mobile-menu__arrow {
        display: block;
        width: 20px;
        height: 20px;
        flex: 0 0 17px;
    }

    .gl-mobile-menu__back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--gl-orange);
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        cursor: pointer;
    }

    .gl-mobile-menu__back img {
        display: block;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .gl-mobile-menu__title {
        margin: -10px 0 4px;
        color: var(--gl-black);
        font-size: 34px;
        font-weight: 700;
        line-height: 38px;
    }

    .gl-mobile-menu__submenu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: auto;
    }

    .gl-mobile-menu__submenu a {
        display: flex;
        align-items: center;
        min-height: 62px;
        padding: 10px 18px;
        border-radius: 18px;
        background: var(--gl-surface-light);
        color: var(--gl-black);
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__submenu a.is-active {
        background: #fff1e8;
        color: var(--gl-orange);
    }

    .gl-mobile-menu__phone {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 72px;
        padding: 16px 18px;
        border-radius: 18px;
        background: var(--gl-surface-light);
    }

    .gl-mobile-menu__phone span {
        color: var(--gl-muted);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }

    .gl-mobile-menu__phone strong {
        color: var(--gl-black);
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .gl-mobile-menu__estimate {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        min-height: 60px;
        margin-top: 0;
        padding: 16px 24px;
        border-radius: 999px;
        background: var(--gl-orange);
        color: var(--gl-white);
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

    .gl-mobile-menu__estimate img {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        padding: 0 9px;
        border-radius: 999px;
        background: var(--gl-white);
        object-fit: contain;
    }
}

/* End */


/* Start:/local/templates/goodlombard/components/bitrix/breadcrumb/crumb/style.css?1790324731886*/
.gl-breadcrumbs {
    padding: 40px 0 20px;
    color: var(--gl-white);
    background: var(--gl-orange);
    border-top: 1px solid rgba(222, 222, 222, 0.5);
}

.gl-breadcrumbs__container {
    width: min(var(--gl-container), calc(100% - 32px));
    margin: 0 auto;
}

.gl-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gl-breadcrumbs__list li {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
}

.gl-breadcrumbs__list a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 767px) {
    .gl-breadcrumbs--mobile-hidden {
        display: none;
    }

    .gl-breadcrumbs {
        padding: 24px 0 16px;
    }

    .gl-breadcrumbs__container {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
}

/* End */
/* /local/templates/goodlombard/styles.css?179032473140420 */
/* /local/templates/goodlombard/components/bitrix/breadcrumb/crumb/style.css?1790324731886 */
