.border_radius {
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.mixin-colore-sfondo.sfondo-rosa {
  background-color: #F5EDE7;
}
.mixin-colore-sfondo.sfondo-azzurro {
  background-color: #EDF4F9;
}
.mixin-colore-sfondo.sfondo-acquamarina {
  background-color: #E9F4F4;
}
.mixin-colore-sfondo.sfondo-beige {
  background-color: #EEEBE3;
}
.mixin-colore-sfondo.sfondo-grigio_chiaro {
  background-color: #F8F9FA;
}
.mixin-colore-sfondo.sfondo-grigio_scuro {
  background-color: #51575E;
}
.mixin-colore-sfondo.sfondo-grigio_scuro .title-component,
.mixin-colore-sfondo.sfondo-grigio_scuro p,
.mixin-colore-sfondo.sfondo-grigio_scuro h1,
.mixin-colore-sfondo.sfondo-grigio_scuro h2,
.mixin-colore-sfondo.sfondo-grigio_scuro h3,
.mixin-colore-sfondo.sfondo-grigio_scuro h4,
.mixin-colore-sfondo.sfondo-grigio_scuro h5,
.mixin-colore-sfondo.sfondo-grigio_scuro h6 {
  color: white;
}
.mixin-colore-sfondo.sfondo-grigio_scuro .swiper-button-next,
.mixin-colore-sfondo.sfondo-grigio_scuro .swiper-button-prev {
  background-color: white;
}
.component.blocco-video .wrap-video .video-embed .video-cover {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 8px;
}
.component.blocco-video .wrap-video .video-embed img.img-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  width: 50px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media (min-width: 992px) {
  .component.blocco-video .wrap-video .video-embed img.img-play {
    width: 70px;
  }
}
.component.blocco-video .wrap-video .video-embed iframe {
  border-radius: 8px;
}
