/**
 * Framework Super-Fast WP
 * File cm-arrowdown.css
 * Aggiornato al 07-07-2023
 * Attualmente non incluso
 * File coinvolti: common.js, shortcodes.php e cm-arrowdown.css
 */

/* FRECCIA ARROW DOWN ANIMATA */
body .arrows {
  /*
  position: absolute;
  bottom: 30%;
  left: 50%;
  */
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  z-index: 999;
  margin: 0 auto;
  text-align: center;
}
body .arrows:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 25px solid rgba(255, 255, 255, 1.0);
  border-bottom: 25px solid rgba(255, 255, 255, 1.0);
  transform: translate(25px, 100px) rotate(-45deg);
  animation: arrows 3s linear infinite;
}
body .arrows:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 25px solid rgba(255, 255, 255, 1.0);
  border-bottom: 25px solid rgba(255, 255, 255, 1.0);
  transform: translate(53px, 0px) rotate(-45deg);
  animation: arrows 3s linear infinite -1.5s;
}

@keyframes arrows {
  0% {
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translate(-13px, -66px) rotate(-45deg); /* Seconda cifra: distanza tra le frecce */
  }
  10%, 90% {
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  50% {
    border-left: 10px solid rgba(255, 255, 255, 1.0);
    border-bottom: 10px solid rgba(255, 255, 255, 1.0);
    transform: translate(-13px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translate(-13px, 66px) rotate(-45deg); /* Seconda cifra: distanza tra le frecce */
  }
}
/* Fine freccia arrow down animata */
