
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.content-center {
    justify-content: center;
}

.content-left {
    justify-content: left;
}

.content-right {
    justify-content: right;
}

.content-between {
    justify-content: space-between;
}

.content-around {
    justify-content: space-around;
}

.content-end {
    justify-content: flex-end;
}

.content-start {
    justify-content: flex-start;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.cursor-pointer {
    cursor: pointer;
}

.bgprimary {
    background-color: #1677ff;
}

.bgprimary:hover {
    background-color: #69b1ff !important;
}

.bgsecondary {
    background-color: #007bff;
}

.bgsecondary:hover {
    background-color: #69b1ff !important;
}

.layoutBgColor {
    background-color: #1F1F1F;
}