<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
   /* overflow: hidden; */
    position: relative;
}

#v3d-container {
  /*  position: absolute;*/
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
}
#annotation{
    position: absolute;
    top: 5px;
    left: 5px;
}
#annotation_button{
    position: absolute;
    top: 70px;
    left: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-image: url(annotation.jpg);
    background-size: cover;
}
.fullscreen-button {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
}

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

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

#notation_buttonn {
    position: absolute;
    top: 70px;
    left: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.v3d-annotation {
    background-color: rgba(226, 226, 226, 0.527);
    color: rgb(146, 146, 146);
    border: none;
    width: 20px;
    height: 20px;
    min-width: 0px;
    font-size: 0px;
    padding: 0px;
    top: 0px;
    left: 0px;
    background-image: url(info.svg);
}

.v3d-annotation-dialog {
    background-color: rgba(243, 243, 243, 0.733);
    color: rgba(0, 0, 0, 0.966);
    margin-left: 20px;
    margin-top: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0px;
}

.v3d-annotation-transparent {
    background-color: rgba(173, 173, 173, 0.568);
    opacity: 0.3;
}

Preloader

.container {
    height: 100vh;
    width: 100vw;
    font-family: Helvetica;
  }
  
  .loader {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 1px solid rgb(53, 20, 20);
  }
  .loader--dot:first-child {
    background-color: #252525;
    animation-delay: 0.5s;
  }
  .loader--dot:nth-child(2) {
    background-color: #6e6e6e;
    animation-delay: 0.4s;
  }
  .loader--dot:nth-child(3) {
    background-color: #919191;
    animation-delay: 0.3s;
  }
  .loader--dot:nth-child(4) {
    background-color: #bbbbbb;
    animation-delay: 0.2s;
  }
  .loader--dot:nth-child(5) {
    background-color: #d4d4d4;
    animation-delay: 0.1s;
  }
  .loader--dot:nth-child(6) {
    background-color: #e9e9e9;
    animation-delay: 0s;
  }
  .loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
  }
  .loader--text:after {
    content: "Loading";
    font-weight: bold;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }
  
  .preloader_dev {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #c0c0c0;
    z-index:5;
  }

  @keyframes loader {
    15% {
      transform: translateX(0);
    }
    45% {
      transform: translateX(230px);
    }
    65% {
      transform: translateX(230px);
    }
    95% {
      transform: translateX(0);
    }
  }
  @keyframes loading-text {
    0% {
      content: "Loading";
    }
    25% {
      content: "Loading.";
    }
    50% {
      content: "Loading..";
    }
    75% {
      content: "Loading...";
    }
  }

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
#v3d-container, .battery-inactive{
  position: relative;
}
.v3d-canvas, .sppb-addon-wrapper .preloader_dev{
    position: static;
}
.battery-inactive #v3d-container{
    height: auto;
}
.battery-inactive #v3d-container .v3d-canvas{
    min-height: 370px;
}
</pre></body></html>