.jvm-container {
    touch-action: none;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.jvm-tooltip {
    border-radius: 3px;
    background-color: #5c5cff;
    font-family: sans-serif;
    font-size: smaller;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
    padding: 3px 5px;
    white-space: nowrap;
    position: absolute;
    display: none;
    color: white;
}

.jvm-tooltip.active {
    display: block;
}

.jvm-zoom-btn {
    border-radius: 3px;
    background-color: #292929;
    padding: 3px;
    box-sizing: border-box;
    position: absolute;
    line-height: 10px;
    cursor: pointer;
    color: #FFF;
    height: 15px;
    width: 15px;
    left: 10px;
}

.jvm-zoom-btn.jvm-zoomin {
    top: 10px;
}

.jvm-zoom-btn.jvm-zoomout {
    top: 30px;
}

.jvm-series-container {
    right: 15px;
    position: absolute;
} 