.flash-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 1.25rem 1.25rem;
    background: var(--primary);
}

.flash-banner_text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.flash-banner_head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flash-banner_icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    font-weight: 700;
    color: var(--white-color);
    font-size: 0.85rem;
}

.flash-icon {
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.icon-stroke {
    stroke: var(--white-color);
    stroke-width: 0.5;
}

.flash-banner_title {
    margin: 0;
    color: var(--white-color);
}

.flash-banner_subtitle {
    margin: 0;
    color: var(--white-color);
}

.flash-banner_link {
    color: var(--white-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    cursor: pointer;
}

.flash-banner_link:hover {
    text-decoration-style: solid;
}