.header-line {
    display: flex;
    justify-content: space-between;
    padding-top: 6px;
}

.header-top {
    padding-top: 12px;
}

.header-line__address, .header-line__clock {
    padding: 6px 22px 6px 28px;
    border-radius: 8px;
    background: #f5f7fa;
    position: relative;
}

.header-line__address:before, .header-line__clock:before {
    content: "";
    display: block;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}

.header-line__address:before {
    background: url(/catalog/view/theme/top-mechanics/image/map.svg);
}

.header-line__clock:before {
    background: url(/catalog/view/theme/top-mechanics/image/time.svg);
}
.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    border: none;
    border-radius: 4px;
    background: #17b3c2;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.footer-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-col {
    width: calc(25% - 18px);
}

.footer-col__title {
    font-weight: 600;
    color: black;
    margin-bottom: 4px;
    font-size: 18px;
}
.footer-nav>ul {
    column-count: 1;
}
.footer-logo {
    margin-bottom: 12px;
    max-width: 240px;
}
.footer-link {
    color: #57677a;
}
.sitemap-link__main {
    font-size: 18px;
}

.sitemap-link__main + ul {
    padding-left: 20px;
}
.cookie-warning {
    position: fixed;
    bottom: 8px;
    transform: translateX(-50%);
    left: 50%;
    display: none;
    justify-content: space-between;
    width: 100%;
    padding: 32px;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: white;
    color: rgb(0, 0, 0);
    max-width: 836px;
    box-shadow: 0 0 16px 0 rgb(0, 0, 0, 0.2);
}

.cookie-warning--active {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.cookie-warning__text {
    font-size: 16px;
    line-height: 160%;
    margin-right: 30px;
    max-width: 630px;
}

.cookie-warning__text a {
    color: inherit;
}

.cookie-warning__read {
    display: block;
    margin-left: 15px;
    color: white;
    text-decoration: underline;
}

.cookie-warning__apply {
    cursor: pointer;
    padding: 8px 18px;
    background-color: #17b3c2;
    border: none;
    border-radius: 4px;
    color: white;
}

.form-check-input {
    -webkit-appearance: auto;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: unset;
}

#customer_privacy_ok {
    -webkit-appearance: auto;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: unset;
}

.form-privacy {
    display: flex;
    gap: 8px;
    line-height: 1;
    align-items: center;
    padding-bottom: 8px;
}

#customer_privacy_ok {
    -webkit-appearance: auto;
}

.row-customer_privacy .checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-form__col.required.row-customer_privacy {
    width: 100%;
}

@media (max-width: 1024px) {
    .footer-col {
        width: calc(50% - 12px);
    }
    .header-line {
        display: none;
    }
    .footer-nav>ul {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col__title {
        margin-bottom: 10px;
    }
    .cookie-warning--active {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 8px;
        bottom: 0;
        padding: 16px 12px 12px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cookie-warning__text {
        margin-right: 0;
        font-size: 14px;
    }

    .cookie-warning__apply {
        width: 100%;
    }
}