.flex {
    display: flex;
}

.flex-justify-space-between {
    justify-content: space-between;
}

.flex-justify-space-around {
    justify-content: space-around;
}

.flex-justify-space-evently {
    justify-content: space-evenly;
}

.flex-align-center {
    align-items: center;
}

.flex-align-stretch {
    align-items: stretch;
}

.flex-direction-column {
    flex-direction: column;
}

/* Распололжить в колонку на мобильном */
@media (max-width: 575px) {
    .flex-force-column-in-mobile {
        flex-direction: column;
    }
}

/* Grow */
.flex-grow-unset {
    flex-grow: unset;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-grow-2 {
    flex-grow: 2;
}


/* Gap */
.flex-gap-10 {
    gap: 10px;
}

.flex-gap-20 {
    gap: 20px;
}

.flex-gap-30 {
    gap: 30px;
}

.flex-gap-50 {
    gap: 50px;
}

.flex-gap-75 {
    gap: 75px;
}

/* Basis */
.flex-basis-0 {
    flex-basis: 0;
}

.flex-basis-50-percent {
    flex-basis: 50%;
}

.flex-basis-300 {
    flex-basis: 300px;
}

.flex-wrap {
    flex-wrap: wrap;
}