/**
 * Nextcloud - Files_PhotoSpheres
 *
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Robin Windey <ro.windey@gmail.com>
 *
 * @copyright Robin Windey 2019
 */

#photo-sphere-viewer-loader {
    width: 100vw;
    height: calc(100vh - 50px);
    transition: width 0.5s, top 0.5s, height 0.5s, left 0.5s;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
  }

/* force full height on public template */
.app-files_sharing {
    height: 100%;
}
.ie #body-public .full-height {
    display: block;
}

#photo-sphere-viewer-frame {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 9998;
}

/* Hide scrollbars when showing viewer frame (fullscreen) */
.showing-photo-sphere-viewer-frame {
    overflow: hidden;
}

/* "close"-button */
#close-photosphere-viewer {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
}
