.left-panel-container {
    z-index: 100000;
    opacity: 0.9;
    background-color: rgb(240,240,240);
}
.left-panel-title {
    text-align: left;
    border-bottom: 0.5px solid gray;
    background-color: lightgray;
}
.left-panel-content {
    padding: 5px;
}
.right-panel-container {
    z-index: 100000;
    opacity: 0.9;
    background-color: rgb(240,240,240);
}
.close-offcanvas {
    position: absolute;
    right: 10px; top: 10px;
    width: 40px;
    height: 40px;
}
.label {
    color: #FFF;
    font-family: sans-serif;
    padding: 2px;
    background: rgba( 0, 0, 0, .6 );
}

.collapsible-panel {
    background-color: lightgray;
    border: 1px solid darkgray;
    border: 1px solid darkgray;
}
.collapsible-panel-title {
    cursor: pointer;
}
.collapsible-panel-title i {
    transition: 0.3s ease-in-out;
}
.collapsible-panel-title i.expanded {
    transform: rotate(90deg);
}
.collapsible-panel-content.expanded {
    opacity: 1;
    display: block;
}
.collapsible-panel-content {
    background-color: white;    
    opacity: 0;
    transition: 0.5s all;
}

.poptip {
    background-color: rgb(40,40,40);
    border: 1px solid white;
    padding: 5px;
    font-size: 0.8em;
    color: white;
    max-width: 200px;
    border-radius: 10px;
}

.time-control {
    _position: absolute;
    padding: 4px;
    border-radius: 0;
    background-color: lightgray;
    border-color: gray;
    display: inline-block;
}
.time-control-label {
    _position: absolute;
    padding: 4px;
    padding-top: 6px;
    border-radius: 0;
    background-color: lightgray;
    border: 1px solid gray;
    font-size: 0.75em;
    text-align: center;
    display: inline-block;
}

.bottom-panel {
    transition: 0.5s all;
    background-color: white;
}
.bottom-panel-header {
    background-color: lightgray;
    border: 1px solid darkgray;
    border-radius: 3px;
    height: 40px;
}