#container-float-cart {
    z-index: 10000;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    max-height: 317px;
    width: 320px;
    margin-top: 210px;
    margin-right: 6px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: white;
    overflow-y: scroll;
}

.shopping-cart-items {
    list-style: none;
    padding: 0;
}

.shopping-cart-items li {
    padding: 9px 0px;
    border-bottom: solid 0.5px rgb(235, 235, 235);
}

.shopping-cart-items li:last-child {
    border: none;
}

.shopping-cart-items img {
    float: left;
    margin-right: 12px;
}

.shopping-cart-items .item-name {
    display: block;
    padding-top: 0px;
    font-size: 16px;
}

.shopping-cart-items .item-price {
    color: #6394f8;
    margin-right: 8px;
}

.shopping-cart-items .item-quantity {
    color: #abb0be;
}

.shopping-cart-items .item-days {
    display: block;
    color: #abb0be;
}

/* .button {
    background: #ffc72c;
    color: rgb(54, 54, 54);
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
} */

.button:hover {
    background: #fcd15d;
    color: rgb(54, 54, 54);
    text-decoration: none;
}

.badge {
    background-color: #ffc72c;
    border-radius: 10px;
    color: rgb(36, 36, 36);
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.shopping-cart-total {
    font-weight: bold;
    font-size: 1.1em;
}

#formDestroyCart {
    margin-top: 3px;
}

#container-float-cart::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#container-float-cart::-webkit-scrollbar-thumb {
    background: rgb(56, 56, 56);
}

#container-float-cart::-webkit-scrollbar-track {
    background: #c0c0c0;
}

@media only screen and (max-width: 360px) {
    #container-float-cart {
        margin-top: 196px !important;
    }
}

@media only screen and (max-width: 300px) {
    #container-float-cart {
        margin-top: 191px !important;
    }
}
