/*******right sliding cart*********/

.shopping-cart-wrapper {
    position: fixed;
    width: 0%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1053
}

.shopping-cart-panel {
    width: 400px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    right: -400px;
    transition: all 0.2s
}

.shopping-cart-wrapper.active .shopping-cart-panel {
    right: 0px;
}

.shopping-cart-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1052
}

.shopping-cart-backdrop.active {
        opacity: 0.5
}

.collapse-shopping-cart {
    width: 18px;
    height: 18px;
    right: 0;
}

.collapse-shopping-cart span {
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        border-radius: 100px;
        background-color: #666;
        transform: rotate(45deg);
        cursor: pointer;
        transition: all 0.2s
}

.collapse-shopping-cart span:last-child {
            transform: rotate(-45deg)
}

.collapse-shopping-cart:hover span {
        background-color: #000
}

.view-cart {
    cursor: pointer
}
