*
{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'CabinetGrotesk-Black';
    src: url('../fonts/CabinetGrotesk-Black.woff2') format('woff2'),
         url('../fonts/CabinetGrotesk-Black.woff') format('woff'),
         url('../fonts/CabinetGrotesk-Black.ttf') format('truetype');
         font-weight: 900;
         font-display: swap;
         font-style: normal;
  }


body
{
    overflow: hidden;
    /* cursor: none; */
}

.model-webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}


@keyframes grain {
  0%, 100% {transform: translate(0,0);}
  10% {transform: translate(-5%,-10%);}
  30% {transform: translate(3%,-15%);}
  50% {transform: translate(12%,9%);}
  70% {transform: translate(9%,4%);}
  90% {transform: translate(-1%,7%);}
}

/* CURSOR */

.model-cursor{
    /* height: 30px; */
    background-color: #ffffff;
    border: 4px solid #747474;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding: 5px 10px;
    position: absolute;
    font-size: 1.4em;
    pointer-events: none;
    text-align: center;
    /* margin-top: -15px; */
    width: 185px;
    text-transform: uppercase;
    opacity: 1;
    /* transition: opacity 0.05s ease; */
    font-family: ModernDos;
}

/* VIMEO */
#model-blocker {
    /* position: absolute; */
    /* background-color: rgba(255, 0, 0, 0.5); */
    /* top: 0px;
    left: 0px;
    width: 100%;
    height: 100%; */
  }

#model-container {
    pointer-events: none;
    opacity: 0;
    transition: all 1.5s ease;
}

.this-iframe{
    pointer-events: none !important;
}


.loading-background{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100%;
    max-height: 100%;
    max-height: -webkit-fill-available;
    z-index: 248;
    width: 100vw;
    pointer-events: none;
    background: white;
    display: grid;
    opacity: 1;
    color: #1d1d1b;
    align-items: space-evenly;
    align-content: center;
    justify-items: center;
  }
  
  .loadingtext{
    font-family: ModernDos;
    /* position: absolute; */
    top: 40%;
    padding-bottom: 40px;
    text-align: center;
    font-size: 2.5em;
    width: 100vw;
    opacity: 100%;
    /* color: #ee1b24; */
  }
  
.loader {
    width: 150px;
    height: 12px;
    border: 2px solid #bdb0aa;
    border-radius: 8px;
    padding: 2px;
    display: flex;
    overflow: hidden;
  }
  .loading-item {
    width: 45px;
    background-color: white;
    background-image: linear-gradient(90deg, transparent 30%, #5c534e 30%);
    background-size: 15px 15px;
    animation: loading 2s infinite linear;
  }
  
  @keyframes loading {
    from {
      transform: translate(-40px);
    }
    to {
      transform: translate(160px);
    }
  }
  
  @media screen and (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 60s !important;
    }
  }
  