.flex {
    display: flex;
}
.flex > *, .flex-inline > * {
    min-width: 0;
}
.flex-inline {
    display: inline-flex;
}
.flex.wrap {
    flex-wrap: wrap;
}
.flex.align-center {
    align-items: center;
}
.flex.align-start {
    align-items: flex-start;
}
.flex.align-end {
    align-items: flex-end;
}
.flex.justify-space-between {
    justify-content: space-between;
}
.flex.justify-start {
    justify-content: flex-start;
}
.flex.justify-end {
    justify-content: flex-end;
}
.flex.gap-5 {
    gap: 5px;
}
.flex.gap-10 {
    gap: 10px;
}
.flex.gap-15 {
    gap: 15px;
}
.flex.gap-20 {
    gap: 20px;
}
.flex.gap-25 {
    gap: 25px;
}
.flex.gap-30 {
    gap: 30px;
}

.m-0 {
    margin: 0;
}
.mt-20 {
    margin-top: 20px!important;
}
.mt-15 {
    margin-top: 15px!important;
}
.mt-10 {
    margin-top: 10px!important;
}
.mt-5 {
    margin-top: 5px!important;
}
.mb-5 {
    margin-bottom: 5px!important;
}
.mb-10 {
    margin-bottom: 10px!important;
}
.mb-15 {
    margin-bottom: 15px!important;
}
.mb-20 {
    margin-bottom: 20px!important;
}
.mb-25 {
    margin-bottom: 25px!important;
}
.mb-30 {
    margin-bottom: 30px!important;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-15-600 {
    font-size: 15px;
    font-weight: 600;
    line-height: 150%;
}