

/* ===== */
/* ALERT */

#alert {
    position: fixed;
    top: 100px;
    right: 5%;
    max-width: 945px;
    z-index: 100;
    opacity: 0.95;
    cursor: pointer;
}

@media (min-width: 1050px) {
    #alert {
        right: calc(50px + ((100vw / 2) - 525px));
    }
}

@media (max-width: 991.98px) {
    #alert {
        top: 15vw;
    }
}

.alert-success {
    background-color: #85c667;
    border-color: #85c667;
}

.alert-warning {
    background-color: #ffecb3;
    border-color: #ffecb3;
}

/* Cart item alerts */

.cart-alerts {
    margin-top: 0;
    width: 100%;
    font-size: 80%;
}

.cart-alerts.success {
    color: #85c667;
}

.cart-alerts.warning {
    color: #ff8000;
}

.cart-alerts.danger {
    color: #dc3545;
}