.banner {
    z-index: 999999999 !important;
    position: sticky !important;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 10px;
}

.banner.hide {
    display: none !important;
}

.banner .banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
}

.banner .banner-content .banner-label-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.banner .banner-content .banner-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner.banner-start .banner-content {
    justify-content: start !important;
}

.banner.banner-center .banner-content {
    justify-content: center !important;
}

.banner.banner-end .banner-content {
    justify-content: end !important;
}

.banner.banner-between .banner-content {
    justify-content: space-between !important;
}

.banner.banner-info, .banner.banner-info a, .banner-floating.banner-info {
    background-color: var(--bs-info);
    color: white !important;
}

.banner.banner-danger, .banner.banner-danger a, .banner-floating.banner-danger {
    background-color: var(--bs-danger);
    color: white !important;
}

.banner.banner-warning, .banner.banner-warning a, .banner-floating.banner-warning {
    background-color: #FCF1E3;
    color: var(--bs-dark) !important;
}

.banner.banner-success, .banner.banner-success a, .banner-floating.banner-success {
    background-color: var(--bs-success);
    color: white !important;
}

.banner.banner-primary, .banner.banner-primary a, .banner-floating.banner-primary {
    background-color: var(--bs-primary);
    color: white !important;
}

.banner.banner-secondary, .banner.banner-secondary a, .banner-floating.banner-secondary {
    background-color: var(--bs-secondary);
    color: white !important;
}

.banner.banner-info .banner-icon, .banner-floating.banner-info .banner-icon {
    color: var(--bs-info) !important;
}

.banner.banner-danger .banner-icon, .banner-floating.banner-danger .banner-icon {
    color: var(--bs-danger) !important;
}

.banner.banner-warning .banner-icon, .banner-floating.banner-warning .banner-icon {
    color: var(--bs-warning) !important;
}

.banner.banner-success .banner-icon, .banner-floating.banner-success .banner-icon {
    color: var(--bs-success) !important;
}

.banner.banner-primary .banner-icon, .banner-floating.banner-primary .banner-icon {
    color: var(--bs-primary) !important;
}

.banner.banner-secondary .banner-icon, .banner-floating.banner-secondary .banner-icon {
    color: var(--bs-secondary) !important;
}

.banner .banner-icon, .banner-floating .banner-icon {
    font-size: 1.5rem;
}

.banner-floating {
    position: fixed;
    padding: .625rem;
    border-radius: 4px;
    z-index: 999999999;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #FCF1E3;
    cursor: pointer;
}

.banner-floating-unset {
    border: unset !important;
    z-index: unset !important;
    position: unset !important;
    background-color: transparent !important;
    display: flex !important;
}

.banner-floating.hide {
    display: none !important;
}

.banner .banner-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.banner .banner-tooltip {
    background: #3D7ED1;
    color: white;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner-tooltip:before {
    content: '\003F';
}

.banner .banner-clickable {
    cursor: pointer;
}

.banner .banner-button {
    background-color: white !important;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    padding: 0.5em 0.75em;
    font-size: 0.875em;
    line-height: 1;
    white-space: nowrap;
    margin-left: auto;
}

.banner .banner-dismissible:before {
    content: '\2715';
    font-size: 1.15em;
    line-height: 0;
    vertical-align: middle;
    font-weight: 100;
}

.tooltip.banner-tooltip-rendered {
    z-index: 9999999999 !important;
}

.tooltip.banner-tooltip-rendered .tooltip-inner {
    max-width: 350px;
    text-align: start;
    color: #3D7ED1;
    padding: 1rem 1.25rem;
}

#toastr-container {
    z-index: 999999999 !important;
}


@media (min-width: 768px) {
    .banner {
        position: fixed !important;
        font-size: 12px;
    }

    .banner.banner-non-sticky {
        position: unset !important;
    }

    .banner-floating:not(.hide) {
        display: flex;
    }

    .banner .banner-content {
        gap: 0.5rem;
    }

    .banner .banner-content .banner-label-wrapper {
        flex-direction: row;
        flex-grow: 0;
        gap: 1rem;
    }
}
