body{
    margin: 0px;
    padding: 0px;
}

.pf-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index:1000000;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.nav-icon-bar{
    background-color: #3498db;
    color: #fff;
    border: 1px solid #fff;
    outline: none;
    padding: 3px 7px;
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
    display: block;
    margin: 20px auto;
}

.tab{}

.tab-links > ul{
    list-style: none;
    padding: 0px;
    font-size: 16px;
}

.tab-links > ul > li.active, .tab-links > ul > li > a:hover{
    background-color: #f7f9fa;
}

.tab-links > ul > li.active{
    border-left: 5px solid #333;
}

.tab-links > ul > li > a{
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    margin-left: 5px;
    margin-bottom: 2px;
}

.disable{
    pointer-events: none;
    opacity: .7;
}

.modal textarea{
    overflow: hidden;
    resize: none;
}

.col{
    margin-bottom: 20px;
}

.modal-header > button.close{
    opacity: .8;
    outline: none;
}

.modal-header > button.close:hover{
    opacity: 1;
}

.modal-footer{
    text-align: center;
}

.modal button, .modal button:focus{
    border: none;
    outline: none;
}

#light-modal .close{
    font-size: 25px;
}

textarea{
    min-height: 100px;
}

.pager > li:first-child{
    margin-right: 10px;
}

.lr-modal .form-group > input{
    padding: 10px 20px;
    display: block;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
    outline: none;
}

.toggle-password{
    border-radius: 4px;
    border: 1px solid #ccc;
    clear: both;
}

.lr-modal .toggle-password > [type=password], .lr-modal .toggle-password > [type=text]{
    margin-right: 30px;
    display: inline-block;
    width: 70%;
    border: none;
    outline: none;
}

.toggle-password > .icofont{
    float: right;
    font-size: 25px;
    display: inline-block;
    margin-top: 8px;
    margin-right: 15px;
}

.toggle-password > .icofont:hover{
    cursor: pointer;
}

.lr-modal{
    padding: 20px;
}

.lr-modal > .links{
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

form > #forgot-password{
    display: inline-block;
    font-size: 13px;
    margin-bottom: 5px;
    outline: none;
    float: right;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1050;
    overflow: hidden;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin: -35px 0px 0px -50px;
    border: 15px solid #f3f3f3;
    border-radius: 50%;
    border-top: 15px solid #3498db;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10000;
    margin-left: -25px;
    margin-top: -25px;
    display: block;
    font-size: 50px;
    animation: spin 1.2s linear infinite;
}

.btn-capsule{
    border-radius: 20px;
}

.pis-label-info{
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
}

#notify-wrapper{
    position: fixed;
    color: #333;
    right: 20px;
    bottom: 20px;
    width: 350px;
}

.notify{
    background-color: #fff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    position: relative;
    right: 0px;
}

.notify > span{
    display: table-cell;
    vertical-align: middle;
}

.notify.error{
    border-left: 5px solid #ED3237;
}

.notify.error > .notify-status{
    color: #ED3237;
}

.notify.success{
    border-left: 5px solid #00b396;
}

.notify.success > .notify-status{
    color: #00b396;
}

.notify > .notify-status{
    font-size: 25px;
}

.notify > .notify-content{
    padding-left: 15px;
    padding-right: 15px;
}

.notify > .notify-close{
    font-size: 20px;
    cursor: pointer;
}

.hide{
    display: none;
}

@keyframes spin {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@media (min-width: 480px){
    .hide-sm{
        display: none;
    }
}

@media (min-width: 768px){
    .hide-md{
        display: none;
    }
}

@media (min-width: 992px){
    .hide-lg{
        display: none;
    }
}


@media (max-width: 480px){
    
}

@media (max-width: 767px){
    
}

@media (max-width: 991px){
    
}