p{
    margin-bottom: 10px;
}
a{
    text-decoration: none;
    font-size: 14px;
}
.loader{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
}
.loader.hide{
    display: none !important;
}
.loader.show{
    display: flex !important;
}
.loader img{
    width: 84px;
}
.notif{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3c3c3e3;
    z-index: 9999;
    display: none;
}
.notif>div{
    position: relative;
    width: 400px;
    background: white;
    z-index: 10000;
    box-shadow: 1px 1px 4px 2px #d5d5d5;
    border-radius: 5px;
    max-width: 94%;
}
.notif.hide{
    display: none;
}
.notif.show{
    display: flex;
}
.notif h6{
    padding: 15px;
    font-size: 18px;
    background: #f3f3f3;
    margin-bottom: 0px;
}
.notif p{
    padding:10px 15px 15px 15px;
}
.notif p button{
    margin-top: 5px;
}
.notif .opts{
    margin-bottom: 0px;
}
.notif .opts button{
    padding-left: 15px;
    padding-right: 15px;
}
.notif .success p, .notif .success h6{
    color:green
}
.notif .warning p, .notif .warning h6{
    color:rgb(231, 131, 0)
}
.notif .danger p, .notif .danger h6{
    color:rgb(180, 2, 2)
}
.inline-flex-c{
    display: inline-flex;
    align-items: center;
}
.lh-24{
    line-height: 24px;
}
.btn-light{
    border:solid 1px #b1b1b1;
}
.btn-light:hover{
    border:solid 1px #646464;
}

.section{
    margin-bottom: 30px;
}

.section>.container, .section>.container>.row{
    height: 100%;
}
.section.login .img-side{
    align-items: center;
    display: flex;
}

.login .img-side img{
    max-width: 100%;
    max-height: calc(100vh - 50px);
}

.login-side{
    display: flex;
    height: calc(100vh - 100px);
    align-items: center;
}
.login-side>div{
    width: 100%;
}

.login-side .logo img{
    max-height: 100px;
    max-width: 75%;
    margin-bottom: 20px;
}

.login-side form{
    padding: 30px;
    border: solid 1px #bbd2f5;
    border-radius: 5px;
}



header{
    border-bottom: solid 1px #dbdbdb;
    box-shadow: 0px 1px 3px 0px #ebebeb;
    height: 75px;
}

header .brand-logo{
    height: 100%;
    display: flex;
    align-items: center;
}

header .brand-logo img{
    max-height: 90%;
}
.btn-logout{
    padding: 2px 10px;
    border-color: #e5e5e5;
    margin-left: 15px;
    /* margin-top: -3px; */
    /* margin-bottom: 5px; */
}

footer{
    position: fixed;
    width: 100%;
    bottom: 0px;
    margin: 0px;
    background: #eceff1;
    font-size: 12px;
    height: 30px;
    margin-bottom: 0px !important;
}

.card-test{
    border: solid 1px #cfcfcf;
    border-radius: 3px;
    box-shadow: 1px 1px 3px 0px #dbdbdb;
    margin-bottom: 25px;
}
.card-test>div{
    padding:10px 15px;
}
.card-test .title{
    padding-top: 15px;
    border-bottom: solid 1px #cfcfcf;
}
.card-test .info{
    font-size: 14px;
}
.card-test .opts{
    background-color: #e5f5ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-test .opts>span{
    font-size: 10px;
}
.card-test .opts .btn-text{
    padding-left: 0px;
    cursor: text;
}

.notif .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}