.label__blue{
    border-radius: 0 3px 3px 0 ;
    background: var(--main-blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 8px 24px;
    position: absolute;
    top: 20px;
    height: fit-content;
    width: fit-content;
}
.label__gray{
    border-radius: 46px;
    background: var(--line-color);
    display: inline-flex;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.label__white{
    border-radius: 46px;
    background: var(--white);
    color: var(--text-color);
    display: inline-flex;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.blue-text{
    color: var(--main-blue);
}
.gray-text{
    color: var(--grey-text);
}
@media screen and (max-width: 1200px) {
    .label__blue{
        font-size: 12px;
        line-height: 16px;
        padding: 4px 12px;
    }
    .label__gray{
        padding: 2px 8px;
        font-size: 10px;
    }
}


.label__list{
    position: absolute;
    top: 20px;
    left: 0;
    /* height: fit-content; */
    display: grid;
}
.label__list .label__blue{
    position: static;
}
