/* Util classes */

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Width */

.w-85 {
    width: 85% !important;
}

/* Margin */

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

.mb-12px {
    margin-bottom: 12px !important;
}

.p-2rem {
    padding: 2rem !important;
}

@media (min-width: 768px) {
    .p-md-2rem {
        padding: 2rem !important;
    }
}

/* FS */

.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 12px !important;
}