#UINotificationCenterView {
    position: fixed;
    box-sizing: border-box;
    z-index: 999999999;
    inset: max(66px, calc(env(safe-area-inset-top) + 15px)) 0 auto;
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    animation: none !important;
    transition: visibility 0s linear 0s;
}

#UINotificationCenterView.UIHide {
    display: flex !important;
    visibility: hidden;
    pointer-events: none;
    animation: none !important;
    transition-delay: .396s;
}

#UINotificationCenterView.UIShow {
    display: flex !important;
    visibility: visible;
    animation: none !important;
}

#UINotificationView {
    position: relative;
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 11px;
    width: min(444px, calc(100vw - 48px));
    min-height: 77px;
    height: auto;
    margin: 0;
    padding: 11px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 9px 31px rgba(20,24,33,.22);
    -webkit-backdrop-filter: saturate(166%) blur(31px);
    backdrop-filter: saturate(166%) blur(31px);
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
    transform-origin: top center;
    transition: transform .396s cubic-bezier(.22,.61,.36,1), opacity .33s ease;
    -webkit-tap-highlight-color: transparent;
}

#UINotificationCenterView.UIHide #UINotificationView {
    opacity: 0;
    transform: translate3d(0,-111px,0) scale(.94);
}

#UINotificationCenterView.UIShow #UINotificationView {
    animation: UINotificationCenterArrival .555s cubic-bezier(.22,.78,.31,1.18) both;
}

.UINotificationIcon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: rgba(255,255,255,.66);
}

.UINotificationIcon img,
.UINotificationClose img {
    width: 27px !important;
    height: 27px !important;
    object-fit: contain;
}

.UINotificationCopy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

#UINotificationTitle,
#UINotificationSubtitle,
#UINotificationAction {
    display: block;
    height: auto !important;
    margin: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

#UINotificationTitle {
    white-space: nowrap;
}

#UINotificationSubtitle {
    color: rgba(22,24,29,.72);
    font-size: .83rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#UINotificationAction {
    color: rgba(22,24,29,.48);
    font-size: .67rem;
    line-height: 1.2;
    letter-spacing: .01em;
}

.UINotificationClose {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    cursor: pointer;
}

#UINotificationView:focus-visible,
.UINotificationClose:focus-visible {
    outline: 3px solid rgba(18,116,255,.36);
    outline-offset: 3px;
}

@keyframes UINotificationCenterArrival {
    0% { opacity: 0; transform: translate3d(0,-111px,0) scale(.94); }
    72% { opacity: 1; transform: translate3d(0,3px,0) scale(1.012); }
    100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

@media (max-width: 575px) {
    #UINotificationCenterView { padding: 0 15px; }
    #UINotificationView { width: calc(100vw - 30px); }
}

@media (prefers-reduced-motion: reduce) {
    #UINotificationView,
    #UINotificationCenterView.UIShow #UINotificationView {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}
