/*
	===    N O V A N E T C M S    ===

	Author:				Patrick Shelley - 27/04/2018
    Desc:               Custom CSS

*/

/* ---------------------------------------------------
    SIDEBAR CSS ...
----------------------------------------------------- */
@media print{
    @page {size: A4 landscape}
    table{width: 100%;}
}
.sidebar-container{
    /* do not use width in here !!! */
    
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #0069d9;
    display: block;
}

.sidebar-mast{
    padding: 10px 20px;
}
.sidebar-mast a{
    color:#DBEEFF;
    font-weight: bolder;
    text-decoration: none;
}

#close-sidebar{
    color:#DBEEFF;
    cursor: pointer;
    font-size: 19px;
    position: absolute;
    right: 20px;
    top: 8px;
}

#open-sidebar{
    color:#DBEEFF;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    left: 15px;
    top: 5px;
    padding: 0 8px 0 8px;
    background-color: #0069d9;
    border-radius: 3px;
}

.sidebar-user{
    padding: 20px;
}

.user-pic {
    float: left;
    width: 60px;
    padding: 0px;
    margin-right: 15px;
    overflow: hidden;
}

.user-pic img{
    height: 60px;
    width: 60px;
    border-radius: 6px;
}

.user-info {
    float: left;
    height: 60px;
}
.user-info>span{
    display: block;
    color: #fff;
}
.user-buttons{
    display: flex;
    height: 34px;
}
.user-button{
    padding: 5px;
    background-color: #014D9E;
    display: inline;
    color: #DBEEFF;
    width: 33.33%;
    text-align: center;
}
.user-button:hover{
    background-color: #012C59;
    cursor: pointer;
}

.dropdown-toggle::after {
    text-align: right;
    float: right;
    /*Chrome IE fix*/
    margin-top: 10px;
}

/* ---------------------------------------------------
    SPINNER LOADER ICON
----------------------------------------------------- */

.loaderIcon {
    display: none;
    position: fixed;
    z-index: 9999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    padding: 15px;
    text-align: center;
    font-size: 10px;
    background-color: rgba(65,131,215,0.7);
    border-radius: 50px;
}

/* ---------------------------------------------------
    PAGE CONTENT CSS
----------------------------------------------------- */

#pageContent{
    margin-top: 80px;
    ==padding: 0 20px 0 20px;
}