/*loading*/

  .progress{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    color:var(--White);
    z-index:9999999999;
    text-align:center;
    display:  flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .scene{
    width: 100vw;
    position: relative;
    height: auto;
    z-index: 0;
  }

  .progress-bar{
    position:absolute;
    left:0;
    bottom:0;
    width: 0; 
    height: 0;
}

  .progress-text{
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    line-height: 1em;

  }
  .progress img{
    display: block;
    width: 200px;
    margin-bottom: 20px;
    font-family: var(--Sans);
  }

  .progress-complete .progress-bar{
    border-top-color:#000;
  }
  .progress-inner{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    display:  flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;


  }
  .progress-inner p{
    font-family: var(--spFont);
    font-weight: bold;
    letter-spacing: 2px;
  }


@media (orientation:portrait) and (max-height: 1180px) {
  .scene{
    width: auto;
    height: 80vh;

  }
}

@media screen and (max-width:480px) {
  .scene{
    width: auto;
    height: 60vh;

  }
}
/*loading end*/