.flexrow {
    display: flex;
    flex-direction: row;
}

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

.around {
    justify-content: space-around;
}

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

.acenter {
    align-items: center;
}

.jcenter {
    justify-content: center;
}

.flexwrap {
    flex-wrap: wrap;
}

/* Fixes */

.modal {
    top: 50% !important;
    transform: translateY(-50%) !important;
}