.cart-loader-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
    cursor: wait;
}

.cart-loader-overlay .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 6px solid #f3f3f3;
    /* Light grey */
    border-top: 6px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    margin-top: -25px;
    margin-left: -25px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.cart__total {
    text-align: center;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ccc;
}

.item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#cart-container {
    padding-left: 15px;
    padding-right: 15px;
}

.cart__actions {
    text-align: center;
    padding-bottom: 20px;
}

.cart__action-button {
    font-size: 18px !important;
    float: none !important;
    display: inline-block !important;
}

.cart__continue-shopping {
    font-size: 14px !important;
    margin-top: 15px !important;
}
