.d-flex {
    display: flex;
}

.d-none {
    display: none !important;
}

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

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

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

.cursor-normal {
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}