/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


.update_btn {
    display: none;
}

.side-cart {
    display: block;
    position: fixed;
    top: 0;
    right: -550px;
    height: 100%;
    width: 500px;
    z-index: 100;
    background-color: white;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.active {
    right: 0;
}

.indy-product-container {
    border-bottom: 1px black solid;
}

.indy-product-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-wrapper-small {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-wrapper-column {
    display: flex;
    flex-direction: column;
}

.product-quantity {
    width: 40px;
    height: 25px;
    text-align: center;
}

.close-cart {
    cursor: pointer;
    float: right;  /*  Yes, i'm just lazy. Silence is golden...  */
}

.small {
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.grandtotal {
    display: flex;
    align-self: end;
}