.site-screen-alerts {
    position: relative;
    z-index: 170;
    width: 100%;
    padding: 4px 0;
    overflow: hidden;
    color: #344054;
    background: #f8fafc;
    border-bottom: 1px solid #ffd4ba;
}

.site-screen-alerts__shell {
    display: grid;
    width: min(100% - 32px, 1280px);
    min-height: 50px;
    margin-inline: auto;
    padding-inline: 4px;
    grid-template-columns: 30px 34px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 9px;
}

.site-screen-alerts__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ff6508;
    background: #fff1e8;
    border-radius: 50%;
    font-size: 19px;
}

.site-screen-alerts__viewport {
    min-width: 0;
    padding: 2px 6px;
    overflow: hidden;
}

.site-screen-alerts__item {
    display: flex;
    min-height: 46px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    direction: rtl;
    text-align: right;
}

.site-screen-alerts.is-ready .site-screen-alerts__item {
    display: none;
}

.site-screen-alerts.is-ready .site-screen-alerts__item.is-active {
    display: flex;
    animation: site-alert-in .3s ease-out;
}

.site-screen-alerts__item b,
.site-screen-alerts__item p {
    display: block;
    width: 100%;
    margin: 0;
    text-align: right;
}

.site-screen-alerts__item b {
    overflow: hidden;
    color: #1d2939;
    font-size: 12px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-screen-alerts__item p {
    overflow: hidden;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-screen-alerts__nav {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    color: #98a2b3;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.site-screen-alerts__nav:hover {
    color: #ff6508;
    background: #fff1e8;
}

.site-screen-alerts__nav .material-symbols-rounded {
    font-size: 19px;
}

.site-screen-alerts:not(.is-ready) .site-screen-alerts__nav {
    visibility: hidden;
}

@keyframes site-alert-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
    .site-screen-alerts {
        padding: 3px 0;
    }

    .site-screen-alerts__shell {
        width: calc(100% - 16px);
        min-height: 48px;
        padding: 0;
        grid-template-columns: 27px 30px minmax(0, 1fr) 27px;
        gap: 5px;
    }

    .site-screen-alerts__icon {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    .site-screen-alerts__nav {
        width: 27px;
        height: 27px;
    }

    .site-screen-alerts__item b {
        font-size: 11px;
    }

    .site-screen-alerts__item p {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-screen-alerts.is-ready .site-screen-alerts__item.is-active {
        animation: none;
    }
}
