
#unity-canvas { background: black; }

#unity-logo { width: 154px; height: 130px; background: url("") no-repeat center }
#unity-footer { position: relative }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url("") no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-webxr-link { float: left; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }

#unity-canvas-container{
    position: relative;
}

#help{
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 5px;
    margin-right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

#entervr{
    border: 1px solid white;
    border-radius: 0px;
    background: transparent;
    color: white;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 10px;
    margin-bottom: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    cursor: pointer;
}
#entervr:disabled{
    color: gray;
    cursor: default;
    border: 1px solid gray;
}

#unity-fullscreen-button{
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 10px;
    margin-bottom: 70px;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 576px) {
  #unity-fullscreen-button{
    display: none;
}
}

#loading{
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  position: absolute;
  color: white;
}
#reset-view{
  top: 0;
  left: 0;
  height: 30px;
  position: absolute;
  cursor: pointer;
  color: white;
}
#play-pause{
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
}
body #progress{
    border-radius: 0;
    background-color: white;
    height: 7px;
}

body .progress:hover{
    transform: scaleY(1.3);
}


.img-container {
    position: relative;
    background-color: black;
    cursor: pointer;
  }
  .img-container .actives {
    position: relative;
    background-color: black;
    border: 2px var(--accent-color) solid;
  }
  
  .object-img {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: all 300ms ease;
    backface-visibility: hidden;
  }
  
  .middle {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .img-container:hover .object-img {
    opacity: 0.5;
  }

  .locked {
    opacity: 0.5;
  }
  
  .img-container:hover .middle {
    opacity: 1;
  }

.play-icon{
    font-size: 3rem;
    cursor: pointer;
    opacity: 1;
}
.play-icon:hover{
    opacity: 1;
}
.scene-icon{
    font-size: 1.75rem;
    cursor: pointer;
    opacity: .5;
    color: white;
}
.scene-icon:hover{
    opacity: 1;
}
.scene-cell{
    padding-bottom: 5px;
}
.scene-cell .thumbnail{
  border-radius: 15px;
}
.status {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    display: flex;
  }

#unity-progress{
  border-radius: 0%;
  height: 4px;
}


.wrapper {
  width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}
.view-col{
  width: 10%;
  flex: 0 0 auto;
}

.picker{
  overflow-y: scroll;
}

.alert a {
  color: white;
}