.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-items-center {
    align-items: center;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-between {
    justify-content: space-between;
}
.gap-1 {
    gap: 0.6rem;
}
.gap-2 {
    gap: 1rem;
}
.ma-0 {
    margin: unset!important;
}

.my-0 {
    margin-top: unset!important;
    margin-bottom: unset!important;
}
.mx-0 {
    margin-left: unset!important;
    margin-right: unset!important;
}

.my-1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.mt-1 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 1rem;
}
.mt-5 {
    margin-top: 2.5rem; 
}
.mt-10 {
    margin-top: 5rem; 
}
.mb-2 {
    margin-bottom: 0.875rem;
}

.mb-10 {
    margin-bottom: 3rem;
}
.mx-1 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.my-2 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
}
.mx-2 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
}
.ml-2 {
    margin-left: 0.875rem;
}

.mr-1 {
    margin-right: 0.5rem;
}
.mr-2 {
    margin-right: 0.875rem;
}
.px-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}
.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.pa-5 {
    padding: 2.5rem !important;
}
.pa-10 {
    padding: 4rem !important;
}
.font-weight-bold {
    font-weight: bold;
}
.rounded-border {
    border: 1px solid #d2d3d6;
    border-radius: 5px;
}