/* SLIDER */

.fullSliderOuter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    box-sizing: border-box;
    background-color: #fff;

    .fullSliderContainer {
        z-index: 50;
        background-color: #fff;

        .fullSliderImage {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fullSliderImage.floorplan {
            object-fit: contain;
        }

        .fsImageContainer {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
        }

        #fsImageContainerSecond {
            z-index: 999;
        }

        #fsImageContainerFirst {
            z-index: 50;
        }

        #iframe3D {
            display: block;
            width: 100%;
            height: 100%;
            border: none;
        }
    }

    .fsArrow,
    #fullSliderHide {
        z-index: 9999;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        text-decoration: none;
        width: 50px;
        height: 50px;
        color: #fff;
        background-color: #394A40;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        transition: all 500ms;
    }

    #fullSliderHide {
        left: initial;
        top: 0;
        right: 0;
        transform: none;
        font-size: 50px;
    }

    .fsArrow:hover {
        opacity: 0.5;
    }

    #fullSliderNext {
        left: initial;
        right: 0;
    }
}

#fullscreenButton {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background-color: #394A40;
    background-image: url('fullscreen.svg');
    background-size: 80% 80%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 20;
}

@media all and (max-width: 479px) {
    #fullscreenButton {
        width: 30px;
        height: 30px;
    }
}