/* ---------- HEADER ---------- */

#km-header{
    width: 100%;
    border-bottom: 1.5px solid #008cdc;
    padding: 0.5% 0%;
    overflow: hidden;
    position: fixed;
    height: 100px;
    background-color: #fff;
    z-index: 2;
}

#km-header-left{
    float: left;
    padding: 0 7.5px;
}

#km-header-right{
    float: right;
    padding: 0 15px;
}

#km-header-left img{
    width: 240px;
}

#km-user-name{
    font-weight: 600;
    color: #008cdc;
}

#km-user-company{
    font-weight: 600;
}

#km-user-logout{
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* ---------- SIDEBAR ---------- */

#km-sidebar{
    height: 100vh;
    width: 10%;
    background-color: #008cdc;
    overflow: hidden;
    display: inline-block;
    float: left;
    position: fixed;
    top: 115px;
    left: 0px;
}

#km-sidebar ul {
    list-style-type: none; 
    padding: 0px;
}

.km-sidebar-button{
    width: 80%;
    padding: 20px 10%;
    color: #fff !important;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#km-sidebar ul li a {
    text-decoration: none;
    color: white !important;
}

.km-sidebar-button:hover{
    background-color: #fbb223 !important;
    cursor: pointer;
}

.km-sidebar-button i{
    margin-right: 10px;
}

#km-mobile-nav{
    display: none;
}

/* ---------- MAIN AREA ---------- */

#km-main{
    height: auto;
    background-color: #f7f7f7;
    padding: 2.5% 5%;
    display: inline-block;
    width: 80%;
    overflow: hidden;
    float: left;
    position: relative;
    left: 150px;
    top: 116.5px;
}

#km-main-login{
    height: auto;
    background-color: #f7f7f7;
    padding: 0%;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    float: none;
    position: relative;
}

.km-options{
    padding: 5px 15px 2em 15px;
    background-color: #fff;
    border-top: 2.5px solid #008cdc;
    box-shadow: 0 0 2px 0 rgba(27,34,46,.12), 0 2px 4px 0 rgba(27,34,46,.2);
    overflow: hidden;
    margin-bottom: 2.5%;
    height: auto;
}

#km-options-chevron-down{
    display: none;
}

h2 span.chevron{
    float: right;
    cursor: pointer;
}

#km-timeframe button{
    background-color: #008cdc;
    border: none;
    color: #fff;
    padding: 5px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#km-timeframe button:hover{
    background-color: #fbb223;
    color: #fff;
    cursor: pointer;
}

#km-timeframe p{
    display: inline-block;
}

#km-timeframes p{
    font-size: 0.7em;
    background-color: #008cdc;
    color: #fff;
    padding: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#km-timeframes p:hover{
    background-color: #fbb223;
    color: #fff;
    cursor: pointer;
}

#km-timeframe-chevron-down{
    display: none;
}

.km-selectables{
    display: inline-block;
    vertical-align: top;
    padding-right: 15%;
}

#km-buttons{
    font-size: 0.75em;
    color: #bf0000;
}

#km-buttons p span{
    float: right;
    color: #000;
    text-decoration: underline;
}

#km-table{
    width: 100%;
    background-color: #fff;
    overflow-x: scroll;
    border: 2px solid #333;
    padding: 0;
}

#km-table table tr td{
    padding: 10px;
    border: 0.5px solid #333;
    min-width: 85px;
    font-size: 0.8em;
}

#km-headers td{
    background-color: grey;
    color: #fff;
    font-weight: 600;
}

/* ---------- MOBILE ---------- */

/* Phone */

@media screen and (min-width: 0px) and (max-width: 767px) {
   
    #km-header{
        display: block;
        position: static;
        height: auto;
        font-size: 0.8em;
    }
    
    #km-header-right{
        text-align: right;
    }
    
    #km-header-left{
        padding: 7.5px;
    }
    
    #km-header-left img{
        width: 130px;
    }
    
    #km-sidebar{
        display: none;
        float: none;
        height: auto;
        width: 100%;
        position: static;
    }
    
    #km-main{
        width: 90%;
        float: none;
        position: static;
    }
    
    #km-mobile-nav{
        display: block;
        text-align: center;
        padding: 20px 0;
        color: #fff;
        background-color: #008cdc;
    }
    
    #km-timeframes p{
        padding: 7.5px;
    }
    
    #km-timeframe-hide p{
        font-size: 0.75em;
    }
    
    #km-timeframe-hide input{
        width: 25%;
    }
    
    #km-options-hide{
        font-size: 0.8em;
    }
    
}

/* Tablet */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    
    
    
}