/* CART SIDE BAR INIT CSS */

.cart-sidebar {
    position: fixed;
    background-color: #fff;
    z-index: 999;
    top: 0;
    right: 0px;
    max-width: 0px;
    height: 100%;
    transition: ease-in .2s;
    overflow: hidden;
}

.cart-sidebar.open {
    max-width: 512px;
}

.cart-background {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    opacity: 0;
    display: none;
    z-index: 3;
}

.cart-background.active {
    display: block;
}


/* CART SIDE BAR END CSS */

.mobilemenu-sidebar {
    position: fixed;
    background-color: #fff;
    z-index: 999;
    top: 0;
    left: 0px;
    max-width: 0px;
    height: 100%;
    transition: ease-in .35s;
    overflow: hidden;
}

.mobilemenu-sidebar.open {
    max-width: 512px;
}

.mobilemenu-background {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    opacity: 0;
    display: none;
    z-index: 3;
}

.mobilemenu-background.active {
    display: block;
}


/* DESKTOP MENU BACKGROUND */
.desktopmenu-background {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    position: fixed;
    opacity: 0;
    display: none;
    z-index: 5;
}

.desktopmenu-background.active {
    display: block;
}