.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

    .video-container video {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

.rawc-icon-brand .rawc-item-icon {
    position: relative;
    display: flex;
    align-content: space-around;
    height: 160px;
    flex-direction: column;
    justify-content: space-around;
}

    .rawc-icon-brand .rawc-item-icon svg {
        width: 120px;
        height: auto;
    }

.swiper_wrapper {
    height: 100%;
    min-height: 1020px;
}

.swiper-wrapper .rwac-btn-slider {
    padding: .8em 2em;
    font-size: 1.4em;
    margin-top: 1.2rem !important;
}

.section {
    margin: 0 !important;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.is-expanded-menu .full-header .primary-menu .menu-container {
    border-right: none !important;
}

.posts-md > div .entry {
    padding-right: .8em;
    padding-left: .8em;
}

@media (max-width: 1360px) {
    #rawc-button-header {
        display: none;
        opacity: 0;
    }
}

#gotoTop {
    right: 160px !important;
    bottom: 32px !important;
}

    #gotoTop:before {
        color: var(--rawc-themecolor) !important;
    }

.rwa-bullet-icons > li {
    display: flex
}

#page-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
    z-index: 999999;
}

    #page-overlay.show {
        opacity: 1;
        visibility: visible;
    }

#content {
    transition: opacity .35s ease, transform .35s ease;
}

    #content.loading {
        opacity: .15;
        transform: translateY(8px);
        pointer-events: none;
    }

.rwa-loader {
    --color-1: var(--rawc-themecolor);
    --size: 1.1px;
    width: calc(32 * var(--size));
    height: calc(32 * var(--size));
    position: relative;
    border-radius: 50%;
    color: var(--color-1);
    animation: fill 1s ease-in infinite alternate;
}

    .rwa-loader::before,
    .rwa-loader::after {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        border-radius: 50%;
        left: calc(48 * var(--size));
        top: 0;
        animation: fill 0.9s ease-in infinite alternate;
    }

    .rwa-loader::after {
        left: auto;
        right: calc(48 * var(--size));
        animation-duration: 1.1s;
    }

@keyframes fill {
    0% {
        box-shadow: 0 0 0 calc(2 * var(--size)) inset;
    }

    100% {
        box-shadow: 0 0 0 calc(10 * var(--size)) inset;
    }
}

.top-cart-item .remove {
    background: transparent;
    border: none;
    font-size: 0.875rem;
    color: #ff0000;
}

    .top-cart-item .remove:hover {
        text-decoration: none !important;
        color: var(--bs-link-hover-color-rgb);
    }

.top-cart-item .top-cart-item-quantity {
    display: flex;
    align-content: space-around;
    flex-direction: column;
}

.top-cart-number {
    transition: transform .2s ease, background-color .2s ease;
}

    .top-cart-number.animate {
        animation: cartPop .45s cubic-bezier(.18,.89,.32,1.28);
    }

@keyframes cartPop {

    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.45);
        background-color: #ff4d4f;
    }

    55% {
        transform: scale(.88);
    }

    75% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}