.stateBanner {
    border-radius: 100px;
    width: fit-content;
    height: fit-content;
    font: var(--regular-caption);
    padding: 6px 12px;
    color: var(--dark-text);
    display: flex;
    align-content: center;
    justify-content: center;
    white-space: nowrap;
}
.stateBanner.green {
    background: var(--light-green);
}
.stateBanner.lightBlue {
    background: var(--state-on-moderation);
}
.stateBanner.gray {
    background: var(--state-finished);
}
.stateBanner.blue {
    background: var(--state-complited);
}
.stateBanner.yellow {
    background: var(--state-pre-moderation);
}
.stateBanner.yellowBig {
    max-width: 446px;
    background: var(--state-pre-moderation);
    padding: 8px 24px;
    text-align: start;
    border-radius: 22px;
    white-space: wrap;
    flex-direction: column;
    gap: 8px;
}
.stateBanner.lightGreenBig {
    width: 229px;
    height: 46px;
    background: var(--grey-bg);
    border: 1px solid var(--light-green);
    color: #2F9844;
    padding: 0 24px;
    text-align: center;
}
.stateBanner.lightGreenSmall {
    width: 164px;
    height: 26px;
    background: var(--grey-bg);
    border: 1px solid var(--light-green);
    color: #2F9844;
    text-align: center;
}
.stateBanner.blueDot {
    width: fit-content;
    height: 27px;
    background: var(--state-on-moderation);
    gap: 0 6px;
    padding: 0 12px 0 0;
    align-items: center;
    justify-content: flex-start;
}
.stateBanner.blueDot::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--primary);
    border-radius: 100%;
    margin: 0 0 0 10px;
}

@media (max-width: 768px) {
    .stateBanner {
        padding: 4px 8px;
        font: var(--mobile-caption);
    }
    .stateBanner.yellowBig {
        padding: 8px 12px;
        border-radius: 18px;
    }
}