::-webkit-scrollbar-track {
    background: #F6F5F4;
}

::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 50px;
}

::-webkit-scrollbar {
    width: 9px;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.main {
    overflow-x: hidden;
}

body .container--page {
    transition: opacity .2s ease;
}

body.loading {
    cursor: wait;
}

body.loading .container--page {
    opacity: .5;
}

body.loading>* {
    pointer-events: none;
}

.scrollable-table {
    overflow-x: auto;
    width: 100%;
    display: flex;
}

.woocommerce-page .container.container--page {
    width: var(--container-width-product);
    max-width: 100%;
}

.wp-block-heading {
    margin: 0 0 15px 0;
}

.wp-block-list {
    padding-left: 20px;
    margin: 0 0 20px 0;
    color: var(--text-light);
}

.container--page {
    >p:not( :last-child) {
        margin-bottom: 20px;
    }

    >h2,
    >h3 {
        margin: 0 0 15px 0;
    }
}

.auth-page .sitewide-notice {
    display: none;
}

.sitewide-notice {
    padding: 10px;
    text-align: center;
    background-color: #212121;
}

.sitewide-notice p,
.sitewide-notice a {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}


@media(max-width:767px) {
    .sitewide-notice {
        font-size: var(--font-size-xsmall);
    }
}