html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
}
canvas {
    display: block;
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
#unity-container {
    width: 100%;
    height: 100%;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #231F20;
}
#loading-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#unity-loading-bar {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#unity-logo {
    text-align: center;
    position: relative;
    top: 37%;
    width: 100%;
}
#unity-logo img {
    max-width: 80%;
}

#unity-label {
    font-size: 20px;
    text-align: center;
    position: relative;
    margin: auto;
    width: 100px;
    top: 35%;
}

.loading {
  display: flex;
  flex-direction: row;
}

.loading__letter {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.loading__letter:nth-child(2) {
  animation-delay: .1s; 
}
.loading__letter:nth-child(3) {
  animation-delay: .2s;
}
.loading__letter:nth-child(4) {
  animation-delay: .3s; 
}
.loading__letter:nth-child(5) {
  animation-delay: .4s;
}
.loading__letter:nth-child(6) {
  animation-delay: .5s; 
}
.loading__letter:nth-child(7) {
  animation-delay: .6s;
}
.loading__letter:nth-child(8) {
  animation-delay: .8s;
}
.loading__letter:nth-child(9) {
  animation-delay: 1s;
}
.loading__letter:nth-child(10) {
  animation-delay: 1.2s;
}

@keyframes bounce {
  0% {
    transform: translateY(0px)
  }
  40% {
    transform: translateY(-10px);
  }
  80%,
  100% {
    transform: translateY(0px);
  }
}


@media (max-width: 700px) {
  .loading__letter {
    font-size: 20px;
  }
}

@media (max-width: 340px) {
  .loading__letter {
    font-size: 20px;
  }
}

#unity-loading-video {
    position: absolute;
    bottom: 0;
    min-height: 100%;
    left: 0;
    min-width: 100%;
}

#unity-loading-video--content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    left: 0;
    top: 0%;
}

#unity-loading-video--content img {
    
}

#unity-progress-bar-empty {
    width: 80%;
    height: 24px;
    margin: 10px 20px 20px 10px;
    text-align: left;
    border: 1px solid white;
    padding: 2px;
}
#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: white;
}
.light #unity-progress-bar-empty {
    border-color: black;
}
.light #unity-progress-bar-full {
    background: black;
}

#unity-fullscreen-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center;
    background-size: contain;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.spinner {
  margin: 10px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: spinner-spin 1.1s infinite linear;
}
@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.trinity-rings-spinner, .trinity-rings-spinner * {
          box-sizing: border-box;
      }

      .trinity-rings-spinner {
          height: 66px;
          width: 66px;
          padding: 3px;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: row;
          overflow: hidden;
          box-sizing: border-box;
      }

      .trinity-rings-spinner .circle {
          position:absolute;
          display:block;
          border-radius:50%;
          border: 3px solid #50B689;
          opacity: 1;
      }

      .trinity-rings-spinner .circle:nth-child(1) {
          height: 60px;
          width: 60px;
          animation : trinity-rings-spinner-circle1-animation 1.5s infinite linear;
          border-width: 3px;
      }
      .trinity-rings-spinner .circle:nth-child(2) {
          height: calc(60px * 0.65);
          width: calc(60px * 0.65);
          animation : trinity-rings-spinner-circle2-animation 1.5s infinite linear;
          border-width: 2px;
      }
      .trinity-rings-spinner .circle:nth-child(3) {
          height: calc(60px * 0.1);
          width: calc(60px * 0.1);
          animation:trinity-rings-spinner-circle3-animation 1.5s infinite linear;
          border-width: 1px;
      }

      @keyframes trinity-rings-spinner-circle1-animation{
          0% {
              transform: rotateZ(20deg) rotateY(0deg);
          }
          100% {
              transform: rotateZ(100deg) rotateY(360deg);
          }
      }
      @keyframes trinity-rings-spinner-circle2-animation{
          0% {
              transform: rotateZ(100deg) rotateX(0deg);
          }
          100% {
              transform: rotateZ(0deg) rotateX(360deg);
          }
      }
      @keyframes trinity-rings-spinner-circle3-animation{
          0% {
              transform: rotateZ(100deg) rotateX(-360deg);
          }
          100% {
              transform: rotateZ(-360deg) rotateX(360deg);
          }
      }

