.stateBanner {
    border-radius: 100px;
    font: var(--regular-caption);
    color: var(--dark-text);
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.stateBanner.green {
    width: fit-content;
    padding: 0 12px;
    height: 27px;
    background: var(--light-green);
}
.stateBanner.lightBlue {
    width: fit-content;
    padding: 0 12px;
    height: 27px;
    background: var(--state-on-moderation);
}
.stateBanner.gray {
    width: 72px;
    height: 27px;
    background: var(--state-finished);
}
.stateBanner.blue {
    width: 87px;
    height: 27px;
    background: var(--state-complited);
}
.stateBanner.yellow {
    width: 191px;
    height: 27px;
    background: var(--state-pre-moderation);
}
.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;
}