/* classic uMIS' master css, adapted for new uMIS */
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

@supports not (display: flex) {
    body {
        font-family: "Inter", sans-serif;;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: "Inter", sans-serif;
        font-weight: 800;
    }
    .post {
        display: block;
        float: left;
        width: 100%;
    }
}
body {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
body.loaded {
    opacity: 1;
}

.roundImage {
    border-radius: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.dropdown-toggle::after {
    display: none;
}