.d-none {
    display: none !important
}

.d-block {
    display: block !important
}

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

.d-flex {
    display: flex !important
}

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

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

.justify-content-start {
    justify-content: start !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-end {
    justify-content: end !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: start !important
}

.align-items-center {
    align-items: center !important
}

.align-items-end {
    align-items: end !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.mb-0 {
    margin-bottom: 0 !important
}

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

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mt-0 {
    margin-top: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.25rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.text-center {
    text-align: center !important
}

.text-end {
    text-align: end !important
}

.w-100 {
    width: 100% !important
}