/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

#container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#gui {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
}
#fullscreen_button{
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: inline-block;
}
#vr{
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: inline-block;
    background-image: url('media/icons8-virtual-reality-96.png');
    visibility: visible;
}

.fullscreen-open {
    background-image: url('media/baseline-fullscreen-24px.svg');
}

.fullscreen-close {
    background-image: url('media/baseline-fullscreen_exit-24px.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

.target {
    display: block;
    position: absolute;
    transform: translateX(-50%) translateY(-50%) scale(1);
    user-select: none;
    pointer-events: none;
    border: 2px solid azure;
    border-radius: 50%;
    transition: 0.1s all ease-out;
}
#scale_bennu_interface {
    position: absolute;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

  @keyframes pulse-ring {
    0% {
      transform: scale(.5);
    }
    80%, 100% {
      opacity: 0;
    }
  }
