/* relevant for integration */

.canvas-wrapper #paramBtn {
    width: 120px;
    padding: 5px 10px;
    position: absolute;
    z-index: 2;
    left: 5vw;
    top: 100px;
    display: block;
    cursor: pointer;
    text-align: center;
}

.canvas-wrapper #sliders {
    width: 500px;
    max-width: calc(100% - 10vw);
    position: absolute;
    z-index: 2;
    left: 5vw;
    top: 150px;
    display: none;
}

.canvas-wrapper #sliders.active {
    display: block;
}

.canvas-wrapper #sliders .sliderTitle {
    color: white;
    margin-bottom: 0;
}

.canvas-wrapper #sliders .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    max-height: 5vw;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.canvas-wrapper #sliders .slider:hover {
    opacity: 1;
}

.canvas-wrapper #sliders .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    max-height: 5vw;
    background: #ffffff;
    cursor: pointer;
}

.canvas-wrapper #sliders .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    max-height: 5vw;
    background: #c94752;
    cursor: pointer;
}

