html {
    overflow-x: hidden;
}

body {
    overflow-x: visible;
}

.privacy {
    padding: 40px 20px;
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.55;
}

.privacy div {
    margin-top: 36px;
}

.privacy div:first-of-type {
    margin-top: 28px;
}

.privacy .heading {
    margin: 0 0 18px;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.privacy h2.heading {
    margin-bottom: 32px;
    font-size: 34px;
}

.privacy h3.heading {
    font-size: 24px;
}

.privacy p {
    margin: 0 0 14px;
}

.privacy p:last-child {
    margin-bottom: 0;
}

.privacy ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.privacy li {
    margin-bottom: 8px;
}

.privacy li:last-child {
    margin-bottom: 0;
}

.privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy a:hover {
    text-decoration: none;
}

.privacy .trunk {
    font-weight: 600;
    color: #111;
}

.privacy table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
    border: 1px solid #dcdcdc;
}

.privacy td {
    padding: 16px 18px;
    border: 1px solid #dcdcdc;
    vertical-align: top;
}

.privacy td:first-child {
    width: 280px;
    background: #f7f7f7;
}

.privacy td ul {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .privacy {
        padding: 28px 16px;
        font-size: 15px;
    }

    .privacy div {
        margin-top: 30px;
    }

    .privacy h2.heading {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .privacy h3.heading {
        font-size: 21px;
    }

    .privacy table,
    .privacy tbody,
    .privacy tr,
    .privacy td {
        display: block;
        width: 100%;
    }

    .privacy td {
        padding: 14px;
        border-left: 0;
        border-right: 0;
    }

    .privacy td:first-child {
        width: 100%;
    }

    .privacy tr {
        border-bottom: 1px solid #dcdcdc;
    }

    .privacy tr:last-child {
        border-bottom: 0;
    }
}

.catalog-filter-toggle {
    display: none;
}

@media (max-width: 960px) {
    .catalog-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        min-height: 48px;
        margin-bottom: 12px;
        padding: 12px 16px;
        border: 1px solid #222;
        border-radius: 4px;
        background: #fff;
        color: #141414;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
        cursor: pointer;
    }

    .filter.is-open .catalog-filter-toggle {
        background: #ffd706;
        border-color: #ffd706;
    }

    .filter:not(.is-open) .catalog-filter-body {
        display: none;
    }
}