/* MINIMUM ORDER MODULE by DGNET */

.loader-minimumorder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 15, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
    border: 0.4em solid #007bff;
    border-top: 0.4em solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

.cart-item :has(.minimum-order-warning-icon) {
    background-color: rgb(255, 224, 224) !important;
}