@media (min-width: 577px) {
    .area {
        position: static;
        height: calc(100vh - 4.5rem);
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }
}

.area {
    margin: 0;
    padding: 15px;
}

#ajax-loader {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    text-align: center;
    display: none;
}

.loader {
    position: absolute;
    top: 35%;
    left: 45%;
    padding: 2px;
    z-index: 9999;
    opacity: 1;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.snackbar {
    visibility: hidden;
    min-width: 250px;
    position: fixed;
    z-index: 99999999;
    right: 10px;
    top: 65px;
    font-size: 17px;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 65px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 65px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 65px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 65px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

.inlineRadioButtons {

}

.inlineRadioButtons label {
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-left: 5px;
    margin-right: 15px !important;
}

a {
    text-decoration: none;
}

.calendarDay {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-uni {
    background: #2d3748 url("/jakarta.faces.resource/bg.svg.xhtml") repeat;
}

.login_bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/jakarta.faces.resource/bg.jpg.xhtml");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #999;
}