#app {
    transition: 0.5s;
}

body {
    position: relative;
    height: 100%;
}



.cart[data-state="off"]>.cart-body {
    opacity: 0;
    transition: 0.1s ease-in-out;
}


.cart[data-state="on"]>.cart-body {
    opacity: 1;

    transition: 0.1s ease-in-out .4s;
}

.cart[data-state="off"] {
    height: 0%;
    width: 0%;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #fff !important;
    overflow: hidden;
    transition: width 0.5s;
    padding-top: 60px;

}

.cart[data-state="on"] {
    height: 100%;
    width: 40%;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #fff !important;
    overflow-x: hidden;
    transition: width 0.5s;
    padding-top: 60px;

}

@media only screen and (max-width: 600px) {
    .cart[data-state="on"] {

        width: 80%;

    }
}



#main {
    transition: margin-left .5s;
    padding: 16px;
}


#cartbutton {
    box-shadow: rgba(0, 0, 0, .7) 0px 5px 15px;
    border: 1px solid #000;
    border-radius: 10%;
    transition: 0.6s ease-in-out;
    position: fixed;
    z-index: 200;
    bottom: 20px;
    right: 20px;

}

.cart-body {
    position: relative;

}

.overlay {
    z-index: 100 !important;
    display: block !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
    background-color: rgba(0, 0, 0, .7);
    transition: .2s;
}