/***** loader *****/
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #D0A84D transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-elarte {
  background-image: url(/static/src/assets/img/landing/bg/bg_loader.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  clip-path: circle(150% at 100% 0);
  transition: clip-path .8s ease-in-out;
}

.loader-elarte2 {
  clip-path: circle(0% at 100% 100%);
}

#loader_elarte img {
  z-index: 10;
}

/***** End loader *****/
/***** Mediaquery *****/
@media (max-width:575px) {
  .lds-ring div {
    width: 35vw;
    height: 35vw;
  }

  #loader_elarte img {
    width: 25.4vw;
    height: 18.4vw;
  }
}

@media (min-width:576px) {
  .lds-ring div {
    width: 18vw;
    height: 18vw;
  }

  #loader_elarte img {
    width: 12.7vw;
    height: 9.2vw;
  }
}

@media (min-width:1401px) {
  .lds-ring div {
    width: 240px;
    height: 240px;
  }

  #loader_elarte img {
    width: 177.79px;
    height: 128.79px;
  }
}

/***** End Mediaquery *****/
