.d-flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

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




/* Margin */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.pl-0 {
    padding-left: 0px !important;
}


/* Color */

.text-green {
    color: green !important;
}

.text-orange {
    color: #fcb038 !important;
}
.text-blue {
    color: #4007fd !important;
}
.text-red {
    color: #fd0707 !important;
}


.text-secondory {
    color: gray;
    font-size: 12px;
    text-transform: initial;
}