.toast-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem;
}

.toast {
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.toast-header {
    background-color: rgba(0, 0, 0, 0.75);
    border-bottom: none;
    color: white;
}

.toast-body {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
}

.btn-close3 {
    color: white !important;
}

.toast-separator {
    border-top: 2px solid #F1C40F;
    margin: 0;
}


/* Animación para la alerta roja */
.svg-animate-red rect {
    animation: blinkRed 1s infinite;
}

@keyframes blinkRed {

    0%,
    100% {
        fill: #AF0D08;
    }

    50% {
        fill: #F6130C;
    }
}

/* Animación para la alerta amarilla */
.svg-animate-yellow rect {
    animation: blinkYellow 1s infinite;
}

@keyframes blinkYellow {

    0%,
    100% {
        fill: #F3F306;
    }

    50% {
        fill: #FFFFFF;
    }
}

@media (max-width: 576px) {
    .toast-body {
        padding: .6rem;
    }
    .toast {
        font-size: .65rem;
    }
}