.br-toast-container {
    position: fixed;
    top: 88px;
    right: 20px;
    z-index: 1095;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(390px, calc(100vw - 28px));
    pointer-events: none;
}

.br-toast {
    position: relative;
    display: grid;
    grid-template-columns: 5px 40px minmax(0, 1fr) 30px;
    gap: 11px;
    align-items: start;
    min-height: 76px;
    overflow: hidden;
    padding: 13px 10px 13px 0;
    background: #fff;
    border: 1px solid rgba(22, 55, 44, 0.12);
    border-radius: 12px;
    box-shadow:
        0 16px 38px rgba(12, 35, 28, 0.16),
        0 3px 10px rgba(12, 35, 28, 0.07);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transition:
        opacity 160ms ease,
        transform 160ms ease;
    pointer-events: auto;
}

.br-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.br-toast.is-leaving {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
}

.br-toast-rail {
    align-self: stretch;
    width: 5px;
    border-radius: 0 999px 999px 0;
}

.br-toast-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-top: 4px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 950;
}

.br-toast-copy {
    min-width: 0;
    padding-top: 2px;
}

.br-toast-title {
    display: block;
    color: #102e25;
    font-size: 0.79rem;
    font-weight: 900;
    line-height: 1.25;
}

.br-toast-message {
    margin-top: 4px;
    color: #52625a;
    font-size: 0.72rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.br-toast-close {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #77857e;
    background: transparent;
    border: 0;
    border-radius: 7px;
    font-size: 1.15rem;
    line-height: 1;
}

.br-toast-close:hover,
.br-toast-close:focus {
    color: #102e25;
    background: #f1f4f0;
}

.br-toast-success .br-toast-rail {
    background: #2f7d50;
}

.br-toast-success .br-toast-icon {
    color: #286a44;
    background: #e8f6ed;
}

.br-toast-error .br-toast-rail {
    background: #c13b31;
}

.br-toast-error .br-toast-icon {
    color: #a92e25;
    background: #fff0ed;
}

.br-toast-warning .br-toast-rail {
    background: #c77a18;
}

.br-toast-warning .br-toast-icon {
    color: #a45f0d;
    background: #fff5df;
}

.br-toast-info .br-toast-rail {
    background: #2c6f78;
}

.br-toast-info .br-toast-icon {
    color: #245f67;
    background: #e8f5f6;
}

@media (max-width: 575.98px) {
    .br-toast-container {
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .br-toast {
        grid-template-columns:
            5px 36px minmax(0, 1fr) 28px;
        gap: 9px;
    }

    .br-toast-icon {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .br-toast {
        transition: none;
    }
}


/* -------------------------------------------------------------------------- */
/* Step 26F - Font Awesome toast glyphs                                       */
/* -------------------------------------------------------------------------- */

.br-toast-icon i {
    font-size: 1rem;
    line-height: 1;
}

.br-toast-close i {
    font-size: 0.9rem;
    line-height: 1;
}


/* -------------------------------------------------------------------------- */
/* Step 26H - Cabling Wizards wrapped status edge                             */
/* -------------------------------------------------------------------------- */

.br-toast {
    grid-template-columns:
        40px minmax(0, 1fr) 30px;
    padding-left: 10px;
    border-left-width: 4px;
}

/*
 * The original inner rail is no longer needed. Using the toast's actual
 * left border makes the status color follow the card's rounded corners.
 */
.br-toast-rail {
    display: none;
}

.br-toast-success {
    border-left-color: #2f9e62;
}

.br-toast-error {
    border-left-color: #d64545;
}

.br-toast-warning {
    border-left-color: #d58a22;
}

.br-toast-info {
    border-left-color: #2c7780;
}

@media (max-width: 575.98px) {
    .br-toast {
        grid-template-columns:
            36px minmax(0, 1fr) 28px;
        padding-left: 9px;
    }
}
