/* =================================================================
   bip-toast.css
   Centered overlay "toast" — actually a full-screen modal-style
   notification card. Driven entirely by JS (assets/js/bip-toast.js);
   the HTML is created on first call and reused.
   ================================================================= */

.bip-toast {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}
.bip-toast.is-open { display: block; }

.bip-toast-body {
    background: #fff;
    margin: 15% auto;
    padding: 50px;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.bip-toast-close {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1;
    font-size: 24px;
    height: 36px;
    width: 36px;
    border: 1px solid lightgray;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
}
.bip-toast.has-close .bip-toast-close { display: flex; }
.bip-toast-close:hover { background: #f5f5f5; }

.bip-toast-icon {
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 1;
}
.bip-toast-icon .fa-cog,
.bip-toast-icon .fa-info-circle    { color: #1590C5; }
.bip-toast-icon .fa-check-square,
.bip-toast-icon .fa-check-circle   { color: #00af00; }
.bip-toast-icon .fa-exclamation-triangle { color: orange; }

.bip-toast-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2em;
    color: #1a1a1a;
}
.bip-toast-description {
    font-size: 18px;
    color: #444;
    line-height: 1.4;
}
/* Hide the description block when there's no text in it. */
.bip-toast-description:empty { display: none; }

@media (max-width: 767px) {
    .bip-toast-body {
        padding: 50px 20px;
        max-width: 95%;
    }
    .bip-toast-title       { font-size: 22px; }
    .bip-toast-description { font-size: 16px; }
}
