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

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

.d-flex {
    display: flex!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.mt-1 {
    margin-bottom: .25rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.ms-5 {
    margin-left: 2rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.me-5 {
    margin-right: 2rem;
}

.border {
   border-radius: 8px;
   border-color: rgb(232, 232, 232);
   border-style: solid;
   border-width: thin;
}

.cursor-pointer {
    cursor: pointer;
}

.position-relative {
    position: relative;
}

.horizontal-line-center {
    position: relative;
}

.horizontal-line-center::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 1px;
    border-top: 1px solid;
    color: rgb(232, 232, 232);
}
