.d-flex {
    display: flex;
}

@font-face {
    font-family: Nunito;
    src: url(/fonts/Nunito/static/Nunito-Regular.ttf);
}

body {
    font-family: Nunito !important;
}

.items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

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

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

.text-center {text-align: center;}

.mobile-view-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .mobile-view-only {
        display: block;
    }
}


.h-28   {height: 28px !important;}
.w-28   {width: 28px !important;}
.b-r-50 {border-radius: 50% !important;}
