#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: 4rem;
    width: 300px;
    left : 50%;
    transform: translate(-50%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all ease .5s;
}

#pan_slider_container.show {
    visibility: visible;
    opacity: 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: 0.5em 1.5em;
    font-weight: bold;
    position: fixed;
    left: 2rem;
    bottom: 6rem;
    min-width: auto;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all ease 1s;
}

#toogle-label-button.show {
    visibility: visible;
    opacity: 1;
}

#toogle-plots-label-button
{
    color: #fff;
    border : 1px solid #fff;
    background-color: transparent;
    border-radius: 2em;
    padding: 0.5em 1.5em;
    font-weight: bold;
    position: fixed;
    left: 9.5rem;
    bottom: 2rem;
    min-width: auto;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all ease 1s;
}

#toogle-plots-label-button.show {
    visibility: visible;
    opacity: 1;
}

#masterplan-button
{
    color: #fff;
    border : 1px solid #fff;
    background-color: transparent;
    border-radius: 2em;
    padding: 0.5em 1.5em;
    font-weight: bold;
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    min-width: auto;
    z-index: -1;
    transition: all ease 1s;
}
.legacy_text
{
    position: fixed;
    bottom: 1.7rem;
    width: 900px;
    left : 50%;
    color:#fff;
    transform: translateX(-50%);
    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;
    }
}

#mobile_alert {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--primary-color);
    z-index: 999;
}
#mobile_alert_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    color : white;
    font-size:1.5rem;
    text-align: center;

}
.no_mobile_icon {
    display: block;
    width: 10rem;
    height: 10rem;
    background: white;
    -webkit-mask-image: url('../img/icon-no-mobile.svg');
    mask-image: url('../img/icon-no-mobile.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 10rem;
    mask-size: 10rem;
    margin-bottom:1.5rem

}
@media(max-width:1023px) {
    #main_container,#root,#container360 {display: none}
    #mobile_alert {display: block}

}
#compass {
    position: fixed;
    left: 2rem;
    top: 2rem;
    z-index: -1;
    transform-origin: center center;

}
#compass img {
    width: 100px;
    opacity: .7;
}
#zone-button-container
{

    position: fixed;
    left: 2rem;
    bottom: 2rem;
    min-width: auto;
    z-index: -1;

}

#zone-button-container button {
    color: #fff;
    border : 1px solid #fff;
    background-color: transparent;
    border-radius: 2em;
    padding: 0.5em 1.5em;
    font-weight: bold;
    transition: all ease .3s;
    margin-bottom: 15px;
}

#zone-button-container button:hover,
#zone-button-container button.active{
    background: white;
    color: var(--primary-color);
}

.wizio-btn
{
    position: fixed;
    display: block;
    padding: 10px;
    bottom: 0.4rem;
    left : 50%;
    color:#fff;
    transform: translateX(-50%);
    z-index: -1;
    font-size:11px;
    font-weight: bold;
    text-align: center;
}
.wizio-btn img {
    width: 25px;
}

.modal-dialog-centered.modal-bottom {
    display: flex;
    align-items: flex-end;
    min-height: calc(100% - 1rem);
    padding-bottom: 10rem;
}