﻿/* Utilities */

.center {
    display: block !important;
    margin: auto;
}

.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fit {
    width: fit-content;
}

.no-margin {
    margin: 0 !important;
}

.fill-content {
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}