.ifuture-notice,
.flavor-notice,
.se-styled-notice {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin: 16px 0;
    border-radius: var(--ns-radius, 10px);
    background: #f8faff;
    border-left: 4px solid #2196F3;
    color: #2196F3;
    box-shadow: var(--ns-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
    position: relative;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 400;
    box-sizing: border-box;
    transition: all .3s ease;
}

.ifuture-notice .notice-icon,
.flavor-notice .notice-icon,
.se-styled-notice .se-notice-icon {
    margin-right: 14px;
    font-size: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: inherit;
}

.ifuture-notice .notice-icon-svg,
.flavor-notice .notice-icon-svg,
.notice-icon-svg,
.se-styled-notice svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 14px;
    flex-shrink: 0;
    fill: currentColor;
    display: block;
}

.ifuture-notice .notice-content,
.flavor-notice .notice-content,
.se-styled-notice .se-notice-content {
    flex: 1;
    min-width: 0;
    color: inherit;
    line-height: 1.55;
}

.ifuture-notice .notice-content strong,
.ifuture-notice .notice-content b,
.flavor-notice .notice-content strong,
.flavor-notice .notice-content b,
.se-styled-notice .se-notice-content strong,
.se-styled-notice .se-notice-content b {
    color: inherit;
    font-weight: 700;
}

.ifuture-notice .notice-close,
.flavor-notice .notice-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 16px;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ifuture-notice .notice-close:hover,
.flavor-notice .notice-close:hover {
    opacity: 1;
}

.notice-dismissible {
    padding-right: 44px;
}

.notice-animated {
    animation: nsSlideIn 0.35s ease-out;
}

@keyframes nsSlideIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
