/* Sticky footer styles
-------------------------------------------------- */

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    font-family: 'Open Sans', sans-serif;
    background: url('../img/bg.jpg');
    background-size: cover;
}

#logo {
    position: absolute;
    z-index: 999;
    width: 100px;
    margin: 10px 5px;
}

#leftPanel {
    width: 350px;
    position: absolute;
    z-index: 250;
    left: 0;
    top: 0;
    height: 100%;
    background-color: none;
}

#rightPanel {
    width: 350px;
    position: absolute;
    z-index: 250;
    right: 0;
    top: 0;
    height: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.45);
}

#rightPanel .nano-content {
    padding: 20px 10px;
}


/* Scrollbar */


/*======================================*/

.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nano>.nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nano>.nano-content::-webkit-scrollbar {
    display: none;
}

.nano>.nano-content:focus {
    outline: 0 !important;
}

.nano>.nano-pane {
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 999;
    width: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.nano>.nano-pane>.nano-slider {
    background-color: rgba(40, 173, 30, 0.5);
    position: relative;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
}

.nano-hide.nano>.nano-pane {
    display: none !important;
}

.has-scrollbar>.nano-content::-webkit-scrollbar {
    display: block;
}

.nano:hover>.nano-pane,
.nano-pane.active,
.nano-pane.flashed {
    opacity: 0.99;
}

.btn-switch {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 14px;
    z-index: 500;
}

.btn-pos {
    position: absolute;
    bottom: 5px;
    left: 55px;
    font-size: 14px;
    z-index: 500;
}

.btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 500;
}

#leftPanel .list-group {
    margin: 0!important;
    /* background-color: rgba(40, 173, 30, 0.05); */
}

#leftPanel .list-group-item {
    background-color: rgba(0, 0, 0, 0.45) !important;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    margin-right: 5px;
    cursor: pointer;
}

#leftPanel .list-group-item:hover {
    background-color: rgba(10, 50, 10, 0.65) !important;
}

@media only screen and (max-width: 767px) {
    /* smartphone */
    #leftPanel {
        width: 100%;
        /*        padding-top: 50px; */
    }
}