/* fix top status boxes  */
@media only screen and (max-width: 1900px) and (min-width: 992px) {
    .col-xl-2, .col-xl-3 {
        max-width: 50%;
        flex: 1 1 50%;
    }
}

/* LAPTOP SIZING */
@media only screen and (max-width: 1600px) and (min-width: 1201px) {
    /* INDEX / SIGN IN */
    .auth-brand #login-logo {
        height: 175px;
    }
    
    .auth-fluid .custom-control {
        min-height: 0;
    }
    
    .auth-fluid .auth-fluid-right  .tracking-text {
        margin-bottom: 50px !important;
    }
    
    /* DASHBOARD */
    .container-fluid.dashboard .col-lg-2 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        
        .card {
            height: 80px;
        }
    }
     .container-fluid.dashboard .col-lg-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        
        .card {
            height: 80px;
        }
    }
    
    .inbox-widget .inbox-item {
        padding: 1.3rem 0 0.5rem;
        
        .inbox-item-date {
            top: -7px;
        }
    }
}

/* SMALL SCREEN SIZING */
@media only screen and (max-width: 1200px) and (min-width: 1025px){
     /* INDEX / SIGN IN */
     .auth-brand {
         margin-bottom: 0;
     }
     
    .auth-brand #login-logo {
        height: 175px;
    }
        .auth-fluid .custom-control {
        min-height: 0;
    }
    .auth-fluid .auth-fluid-right {
        background-position: 50%;
    }
    
   .auth-fluid .auth-fluid-right  .tracking-text {
        margin-bottom: 50px !important;
    }
    
    /* DASHBOARD */
    .container-fluid.dashboard .col-lg-2 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        
        .card {
            height: 65px;
            h4 {
                font-size: 0.9rem;
            }
        }
    }
     .container-fluid.dashboard .col-lg-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        
        .card {
            height: 65px;
            
            h4 {
                font-size: 0.9rem;
            }
        }
    }
    
    .inbox-widget .inbox-item {
        padding: 1.3rem 0 0.5rem;
        
        .inbox-item-date {
            top: -7px;
        }
    }
    
    #top-calc-link {
        margin-top: 4px;
    }
}

/* NOTEBOOK/TABLET SIZING */
@media only screen and (max-width: 1024px) and (min-width: 768px) and (orientation: portrait){
    /* INDEX / SIGN IN */
    .auth-fluid {
        h4 {
            font-size: 1.5rem;
        }
        
        label {
            font-size: 1.3rem;
        }
        p {
            font-size: 1.3rem;
        }
        
        .form-control {
            font-size: 1.3rem;
            height: 45px;
        }
        
        .btn {
            font-size: 1.4rem;
        }
    }
    
    .auth-fluid .auth-fluid-right {
        background-position: 30%;
    }
    
   .auth-fluid .auth-fluid-right  .tracking-text {
        margin-bottom: 480px !important;
    }
    
    /* DASHBOARD */
    .side-nav {
        position: fixed;
    }
    
    #top-calc-link {
        margin-top: 4px;
    }
    
    .content-page {
        padding: 0 12px 65px;
        
        .card-body h4 {
            margin: 5px 0;
        }
    }
    
    .navbar-custom {
        display: none;
    }
}

/* landscape small screen */
@media only screen and (max-width: 1200px) and (min-width: 1024px) and (orientation: landscape){
    .form-control {
        font-size: 0.9rem;
    }
    
    .form-group .btn {
        font-size: 1rem;
    }
    
    .text-muted {
        margin: 0 !important;
    }
    
    .auth-brand #login-logo {
        height: 140px;
    }
    
    .auth-fluid p {
        font-size: 1rem;
    }
    
    .auth-fluid h4 {
        font-size: 1.1rem;
    }
    
    .auth-fluid .btn {
        font-size: 1rem;
    }
    
    .custom-control {
        height: 0;
        min-height: unset;
    }
    
    .auth-brand {
        margin-bottom: 10px;
    }
    
       .auth-fluid .auth-fluid-right  .tracking-text {
        margin-bottom: 50px !important;
    }
}

/* TABLET SIZING */
@media only screen and (max-width: 767px) and (min-width: 545px) {
    /* INDEX / SIGN IN */
    .auth-brand #login-logo {
        height: 175px;
    }
    
    
}

/* PHONE SIZING */
@media only screen and (max-width: 544px) {
        /* INDEX / SIGN IN */
    .auth-brand #login-logo {
        height: 175px;
    }
    
    .auth-fluid {
        overflow: hidden;
    }
    
    .custom-control.custom-checkbox {
        display: none;
    }
    
    .form-group .btn {
        margin: 25px auto;
    }
    
    /* DASHBOARD */
    .inbox-widget .inbox-item {
        padding: 1.2rem 0 0;
        
        .inbox-item-date {
            top: -7px;
        }
    }
}


