#shop-cart #shop-cart-button .shop-cart-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 50%;
    outline: none;
    opacity: .9;
    transition: opacity .1s ease-in-out;
}

#shop-cart #shop-cart-button .shop-cart-button-container:hover {
    opacity: 1;
}

#shop-cart #shop-cart-button .shop-cart-button-container i {
    color: #fff;
    font-size: 20px;
}

#shop-cart.has-items #shop-cart-button .shop-cart-button-container::before {
    content: attr(qtditems);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#shop-cart #shop-cart-button .shop-cart-button-container::after {
    content: "R$ " attr(totalitems);
    color: #fff;
    font-size: 18px;
    display: none;
}

#shop-cart #shop-cart-button .shop-cart-button-container span {
    display: none;
}

#shop-cart.open.has-items #shop-cart-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

#shop-cart #shop-cart-items {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, .8);
    display: none;
}

#shop-cart-items-container .shop-cart-products-list {
    margin-top: 30px;
    height: 85%;
    overflow-x: hidden;
    overflow-y: auto;
}

#shop-cart-items-container .shop-cart-footer button,
#shop-cart-items-container .shop-cart-footer button .payment-button-container {
    width: 100%;
    height: 100%;
}

#shop-cart-items-container .shop-cart-footer button .payment-button-container {
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

#shop-cart-items-container .shop-cart-footer button .payment-button-container span.total-price::after {
    content: "R$ " attr(data-total);
}

#shop-cart-items-container i.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    font-size: 30px;
}

#shop-cart-items-container .shop-cart-product {
    margin: 10px 0;
    border-bottom: 1px solid;
}

#shop-cart-items-container .shop-cart-product .product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
}

#shop-cart-items-container .shop-cart-product .product-info .product-name {
    margin-bottom: 5px;
}

#shop-cart-items-container .shop-cart-product .product-info .product-description,
#shop-cart-items-container .shop-cart-product .product-info .product-observation-wrapper {
    font-size: 12px;
}

#shop-cart-items-container .shop-cart-product .product-info .product-observation-wrapper {
    margin-top: 15px;
    padding: 5px;
    border: 1px dotted;
    padding: 10px 5px;
    border-radius: 3px;
}

#shop-cart-items-container .shop-cart-product .product-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

#shop-cart-items-container .shop-cart-product .product-values .quantity {
    width: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#shop-cart-items-container .shop-cart-product .product-values .quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border-radius: 3px;
}

#shop-cart-items-container .shop-cart-product .product-values .price,
#shop-cart-items-container .shop-cart-product .product-values .quantity i {
    font-size: 20px;
}

@media only screen and (max-width: 640px) {
    #shop-cart-items-container {
        width: 100%;
        height: 100%;
    }

    #shop-cart #shop-cart-button .shop-cart-button-container {
        bottom: 0;
        left: 0;
        border-radius: 0;
        width: 100%;
        height: 60px;
        opacity: 1;
        justify-content: space-between;
        padding: 0 20px;
    }

    #shop-cart.has-items #shop-cart-button .shop-cart-button-container::before {
        bottom: 10px;
        left: 45px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    #shop-cart.has-items #shop-cart-button .shop-cart-button-container::after {
        display: flex;
        font-size: 14px;
    }

    #shop-cart #shop-cart-button .shop-cart-button-container i {
        font-size: 25px;
    }

    #shop-cart #shop-cart-button .shop-cart-button-container span.empty-cart,
    #shop-cart #shop-cart-button .shop-cart-button-container span.see-cart {
        display: flex;
        color: #fff;
        font-size: 14px;
    }

    #shop-cart:not(.has-items) #shop-cart-button .shop-cart-button-container span.see-cart {
        display: none !important;
    }
    
    #shop-cart.has-items span.empty-cart {
        display: none !important;
    }

    #shop-cart-items-container .shop-cart-footer button .payment-button-container {
        font-size: 14px;
    }
}