#toolbar {
    background-color: #f2f2f2;
    padding:5px;
}

#toolbar .section {
    display: flex; 
}

#toolbar button {
    padding: 13px;
}

#toolbar label {
    display: flex;
    padding-top: 5px;
    margin: 5px;
}

 canvas {
     border: 1px solid #ccc;
 }

 #canvasContainer {
    width: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
 }
 #divHidden{
    display: none;
    zoom: .3; 
 }

 #layerListContainer
 {
    z-index: 90;
    position: absolute;
    left: 4vw;
    padding: 15px;
    filter: opacity(0.7);
    min-width: 100px;
    max-width: 150px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
 }
 #holder_bar{
    display: flex;
    background: grey;
    color: white;
    border-radius: 3px;
    width: 100%;
    padding: 2px;
    justify-content: center;
    cursor: move;
}
#holder{
    display: inline-block;  
    transform: rotate(90deg);
}
 
ul#layerList {
    margin: 0;
    padding: 0;    
}


#toolbar .btn svg{
    height: 24px;
    margin-top: 5px;
}

.modal .btn svg{
    height: 48px;
    margin: 5px;
}

span.tooltip-visible {
    border-radius: 5px;
    text-align: center;
    background: #d1ecf1;
    color: #0c5460;
    padding: 1vh;
    max-width: 250px;
    position: absolute;
    transform: translateX(-50%) translateY(-70%);
    z-index: 5;
}

span.tooltip-visible.left:before{
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(90%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #d1ecf1;
}