.flex {
    display: flex;
}

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

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

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

.justify-start {
    justify-content: flex-start;
}

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

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

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

.w-full {
    width: 100%;
}

.mr-1 {
   margin-right: 7px;
}

.mr-2 {
    margin-right: 14px;
}

.mr-3 {
    margin-right: 21px;
}

.ml-1 {
    margin-left: 7px;
}

.ml-2 {
    margin-left: 14px;
}

.ml-3 {
    margin-left: 21px;
}

.ml-auto {
    margin-left: auto;
}

.m-0 {
    margin: 0;
}

.mt-1 {
    margin-top: 7px;
}

.mb-1 {
    margin-bottom: 7px;
}

.mb-2 {
    margin-bottom: 14px;
}

.mb-05 {
    margin-bottom: 4px;
}

.none {
    display: none;
}

.cursor {
    cursor: pointer;
}