.flex{
    display: flex;
}
.color-black{
    color: black;
}
.flex-wrap{
    flex-wrap: wrap;
}
.w-100{
    width: 100%;
}
#text{
    display: none;
}
.justify-space-evenly{
    justify-content: space-evenly;
}

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

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

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

.bold{
    font-weight: bold;    
}

:root{
    --gray-color: rgb(121, 117, 117);
}
.grey{
    color: var(--gray-color);
}

.small-text{
    font-size: smaller;
    color: var(--gray-color);
}

.smaller-text{
    font-size: smaller;
}
.hidden{
    display: none;
}

.medium-text{
    font-size: medium;
}

.large-size{
    font-size: large;
}
.larger-size{
    font-size: larger;
}
.x-large-size{
    font-size: x-large;
}

.red{
    color: rgb(196, 24, 24);
}

.text-transform-none{
    text-transform: none;
}
