.asd-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  opacity: 1;
  animation-iteration-count: 1;
  animation-duration: 0.4s;
  transition: all 0.5s;
}
.asd-loader > .skip {
  position: fixed;
  top: 43vh;
  right: 0;
  height: 8vh;
  width: 100%;
  padding: 10px 20px;
  background-color: #5180CA;
  box-shadow: inset 0 0 10vw -2vw #555;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (min-width: 768px) {
  .asd-loader > .skip {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .asd-loader > .skip {
    top: 29vh;
    height: 6vh;
  }
}
.asd-loader > .skip:hover {
  cursor: pointer;
}
.asd-loader > .logo {
  width: 100%;
  height: 50vh;
  padding: 0 10% 11vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .asd-loader > .logo {
    height: 30vh;
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) and (orientation: landscape) {
  .asd-loader > .logo {
    padding-bottom: 1vh;
    flex-wrap: nowrap;
  }
}
.asd-loader > .logo > img,
.asd-loader > .logo svg {
  max-width: 100%;
  max-height: 77%;
  margin: 0 5% 4px;
}
@media (min-width: 992px) and (orientation: landscape) {
  .asd-loader > .logo > img,
  .asd-loader > .logo svg {
    margin: 0;
    max-height: 100%;
  }
}
.asd-loader > .logo > span {
  color: #5180ca;
  text-shadow: 0 0 12px #999;
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
}
@media (min-width: 480px) {
  .asd-loader > .logo > span {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .asd-loader > .logo > span {
    font-size: 4rem;
    line-height: 4.5rem;
  }
}
.asd-loader > .loading {
  height: 50vh;
  width: 100%;
  display: flex;
  transition: all 0.5s;
  overflow: hidden;
}
.asd-loader > .loading.closed {
  height: 0;
}
.asd-loader > .loading > .loader {
  height: 100px;
  width: 20%;
  text-align: center;
  padding: 1em;
  margin: 0 auto 1em;
  display: inline-block;
  vertical-align: top;
}
.asd-loader > .loading > .loader svg path,
.asd-loader > .loading > .loader svg rect {
  fill: #5180ca;
}
.asd-loader .card {
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 0 0 2vh 2vh;
  display: flex;
  flex-wrap: wrap;
}
.asd-loader .card > .description {
  height: 32%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-shadow: inset 0 0 13vw -3vw #222;
  overflow: hidden;
  color: white;
  font-weight: bold;
  text-shadow: 0 0 12px #666666;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .asd-loader .card > .description {
    font-size: 3rem;
  }
}
.asd-loader .card > .image {
  height: 68%;
  width: 100%;
  box-shadow: inset 0 0 20vw -3vw #333;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.asd-loader > .gallery {
  width: 400%;
  height: 50vh;
  display: flex;
  flex-wrap: nowrap;
  transition: width 0.4s linear;
}
@media (min-width: 992px) {
  .asd-loader > .gallery {
    height: 70vh;
  }
}
.asd-loader > .gallery > .card {
  transition: all 0.4s linear;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
.asd-loader > .gallery > .card.passed {
  animation-name: stringi;
  width: 10vw;
}
.asd-loader > .gallery > .card.passed > .description {
  justify-content: left;
}
.asd-loader > .gallery > .card.complete {
  animation-name: apri;
  width: 25%;
}
.asd-loader > .gallery > .card.complete > .description {
  justify-content: center;
}
@keyframes stringi {
  0% {
    width: 100%;
  }
  100% {
    width: 10vw;
  }
}
@keyframes apri {
  0% {
    width: 10vw;
  }
  100% {
    width: 25%;
  }
}
@keyframes chiudi {
  0% {
    opacity: 1;
    display: flex;
  }
  99% {
    opacity: 0;
    display: flex;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lds-spinner {
  color: #5180ca;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #5180ca;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
