#main_container {
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: -1;

}
#slide{
    width:100%;
    height:100%;
}
canvas {
    touch-action: none !important;
}
.zoom-effect
{
    transition: transform .4s;
    transition-timing-function: ease;
}

#pan_slider_container
{
    position: fixed;
    bottom: 3rem;
    width: 300px;
    left : 50%;
    transform: translate(-50%);
    z-index: -1;
}

#pan_slider {
    width: 100%;
    overflow: hidden;
    border-radius: 2rem;
    -webkit-appearance: none;
    background-color: transparent;
    border:1px solid #fff;
    outline: none;
    transition: background 450ms ease-in;

}

#pan_slider::-webkit-slider-runnable-track {
    height: 20px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
    border-radius: 2rem;
}

#pan_slider::-webkit-slider-thumb {
    width: 20px;
    border-radius: 50%;
    -webkit-appearance: none;
    height: 20px;
    cursor: ew-resize;
    background: #fff;

}

#toogle-label-button
{
    color: #fff;
    border : 1px solid #fff;
    background-color: transparent;
    border-radius: 2em;
    padding: 1em 2em;
    font-weight: bold;
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    min-width: 10rem;
    z-index: -1;
}

.legacy_text
{
    position: fixed;
    bottom: 0.7rem;
    width: 900px;
    left : 50%;
    color:#fff;
    transform: translateX(-55%);
    z-index: -1;
    font-size:11px;
    font-weight: bold;
    text-align: center;
}

@media(max-width:1399px) {
    #pan_slider_container
    {
        bottom:4rem;
    }
    .legacy_text {
        bottom: 1rem;
        max-width: 450px;
        font-size:10px;
    }
}