html{
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

.login-wrapper{
   min-height: 100vh;
   min-width: 100vw;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
}

.bg-darkblue {
    background-color: #262A61;
}

.bg-grey {
    background-color: #8D8D8D;
}

.login-logo{
    width: 250px;
    max-width: 100%;
    margin-bottom: 30px;
}

.login-box{
    width: 450px;
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.login-box .card-body{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 30px;
}

#login-form{
    width: 100%;
}

.mb-30{
    margin-bottom: 30px;
}

footer{
    color: #FFF;
    font-size: 12px;
}

.nav-logo{
    height: 50px;
}

.main-content{
    min-height: calc(100vh - 133px);
    padding-top: 30px;
    padding-bottom: 30px;
}

.nav-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu-list{
    display: flex;
    flex-wrap: wrap;
}

.menu-list .nav-sub-menu{
    cursor: pointer;
    position: relative;
}

.menu-list .nav-sub-menu,
.menu-list a{
    color: #FFF;
    text-decoration: unset;
    font-weight: 600;
}

.menu-list > *:not(:first-child){
    margin-left: 30px;
}

.user-icon-box{
    overflow: hidden;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #FFF;
}

.user-icon-box img{
    width: 100%;
}

.user-nav{
    cursor: pointer;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.user-nav i{
    color: #FFF;
    margin-left: 10px;
}

.user-nav-sub{
    position: absolute;
    left: -50px;
    top: calc(100% + 10px);
    width: 150px;
    background-color: #FFF;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.user-nav-sub.companieslist{
    width: 250px;
    left: -100px;
}

.nav-sub-menu:hover .user-nav-sub,
.user-nav:hover .user-nav-sub{
    opacity: 1;
    visibility: visible;
}

.user-nav-sub a{
    display: block;
    padding: 10px 15px;
    color: #000;
    transition: all .3s ease-in-out;
    text-decoration: unset;
}

.user-nav-sub a:hover{
    background-color: #8D8D8D;
    color: #FFF;
}

.text-right{
    text-align: right;
}

.text-center{
    text-align: center;
}

label{
    font-weight: 600;
}

.report-action-btn{
    cursor: pointer;
}

.mr-2{
    margin-right: 10px;
}

.header-title{
    font-size:16px;
}

.table-wrapper{
    padding-bottom: 15px;
    padding-top: 15px;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .table-wrapper{
        overflow-x: unset;
    }
}

.reportstatus{
    margin-left: 10px;
    margin-bottom: 0px;;
}

.opacity-5{
    opacity: 0.5;
}

#table-info-total-records{
    text-align: center;
}

@media (min-width: 768px) {
    #table-info-total-records{
        text-align: left;
    }
}