.modal-order-list {
    position: fixed;
    top: 1rem;
    right: 1rem;
    /*background-color: rgba(0, 0, 0, 0.8);*/
    background-color:#0000CD;
    opacity: 0.8;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}


#item-list-loading-icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}
.add-cart-button-loding {
    width: 20px;
    height: 20px;
    border: 3px solid #fffff0;
    border-top: 3px solid #87CEEB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}
.jan-list-hoamany-cart-text-1{
    bottom: -1.1rem;
    right: 0;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}