/* ==========================================================================
CUSTOM RESPONSIVE CSS
========================================================================== */

/* Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { ... }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .nav-tabs .nav-item {
        width: auto;
    }

    .nav-tabs .nav-link {
        width: auto;
    }

    .access-page-logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Max height */
@media (max-height: 400px) {
    .full-screen-height {
        height: auto;
    }
}