.site-flash {
    position: relative;
    z-index: 50;
    padding: 14px 0;
    border-bottom: 1px solid #cfe4da;
    background: #eff8f4;
}

.site-flash__box {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 46px;
    padding: 13px 16px;
    border-left: 4px solid #168158;
    background: #fff;
    box-shadow: 0 5px 18px rgba(27, 55, 43, 0.08);
}

.site-flash__icon {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #168158;
}

.site-flash__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-flash__content {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 3px;
    color: #39423e;
    font: 500 14px/1.55 Lato, Arial, sans-serif;
    overflow-wrap: anywhere;
}

.site-flash__content > :first-child {
    margin-top: 0;
}

.site-flash__content > :last-child {
    margin-bottom: 0;
}

.site-flash__content a {
    color: #126d4a;
    font-weight: 700;
    text-decoration: underline;
}

.site-flash__close {
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: -1px -3px 0 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #69716d;
    font: 300 25px/1 Arial, sans-serif;
    cursor: pointer;
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}

.site-flash__close:hover,
.site-flash__close:focus {
    background: #e5f2ec;
    color: #126d4a;
    outline: none;
}

.site-flash[hidden] {
    display: none;
}

@media (max-width: 575px) {
    .site-flash {
        padding: 10px 0;
    }

    .site-flash__box {
        gap: 9px;
        padding: 11px 12px;
    }

    .site-flash__content {
        font-size: 13px;
    }
}
.site-flash__messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-flash__box {
    --flash-color: #168158;
    border-left-color: var(--flash-color);
}

.site-flash__icon {
    color: var(--flash-color);
}

/* Úspěch */

.site-flash__box.success,
.site-flash__box.ok {
    --flash-color: #168158;
}

/* Chyba */

.site-flash__box.error,
.site-flash__box.chyba,
.site-flash__box.danger {
    --flash-color: #b34234;
}

/* Upozornění */

.site-flash__box.warning,
.site-flash__box.varovani {
    --flash-color: #b27616;
}

/* Informace */

.site-flash__box.info {
    --flash-color: #2875a7;
}
