.drawMap {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* CONTAINER */
.drawMap .mapContainer {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    background: black;

}

.drawMap .mapContainer .mapObjectOverlay {
    position:absolute;
    border: none;
    outline: none;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.drawMap .mapContainer .mapObjectOverlay .mapObject {
    box-sizing: border-box;
}

/* BUTTONS */
.drawMap .mapButtons {
    width: auto;
    position: absolute;
    bottom:0;
    right:40px;
    transform: translate(0,-50%);
    z-index: 4;
}

.drawMap .mapButtons button {
    cursor: pointer;
    background: none;
    display: inline-block;
    vertical-align: top;
    border: 0px;
    margin: 0px;
    padding: 0px;
    text-transform: none;
    appearance: none;
    position: relative;
    user-select: none;
    overflow: hidden;
    width: 40px;
    height: 40px;
    top: 0px;
    left: 0px;
}

.drawMap .mapButtons button:disabled {
    cursor: default;
}
.drawMap .mapButtons button > svg{
    box-sizing:content-box;
    display:none;
    left:50%;
    pointer-events:none;
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    cursor: pointer;
}
.drawMap .mapButtons button > svg:nth-child(1){
    display:block
}

.drawMap .mapButtons button:hover > svg:nth-child(1),
.drawMap .mapButtons button:active > svg:nth-child(1),
.drawMap .mapButtons button:disabled > svg:nth-child(1){
    display:none;
}

.drawMap .mapButtons button:hover > svg:nth-child(2),
.drawMap .mapButtons button:active > svg:nth-child(3),
.drawMap .mapButtons button:disabled > svg:nth-child(4){
    display:block;
}

.drawMap .mapButtons .mapMinusMore {
    user-select: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    border-radius: 2px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    width: 40px;
    height: 81px;
}

.drawMap .mapButtons .mapCentLine {
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 1px;
    margin: 0px 5px;
    background-color: rgb(230, 230, 230);
    top: 0px;
}