.product-carousel__wrapper {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none; }

.product-carousel__disclaimer {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
  height: 30px;
  line-height: 30px; }

.product-carousel__title {
  text-align: center;
  font-size: 1.4em;
  line-height: 2.5em;
  font-weight: bold; }

.product-carousel__container {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 0 20px 0;
  box-sizing: border-box; }
  .product-carousel__container .product-arrow {
    position: relative;
    width: 40px;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 2em;
    text-align: center;
    color: #999; }
    .product-carousel__container .product-arrow#product-arrow-right {
      right: 0; }
      .product-carousel__container .product-arrow#product-arrow-right::before {
        content: "\f054"; }
    .product-carousel__container .product-arrow#product-arrow-left::before {
      content: "\f053"; }

.product-carousel__product-container {
  display: flex;
  flex-grow: 1;
  overflow: hidden; }

.product-carousel__products {
  position: relative;
  white-space: nowrap;
  font-size: 0; }

.product-carousel__carousel {
  display: flex;
  align-items: center; }
  .product-carousel__carousel .product {
    display: inline-block;
    width: 170px;
    text-align: center;
    margin-right: 10px;
    text-decoration: none;
    overflow: hidden;
    color: #333; }
    .product-carousel__carousel .product span {
      display: block;
      margin: 5px 0;
      font-weight: bold;
      font-size: 1.1rem; }
    .product-carousel__carousel .product img {
      width: 170px; }

@keyframes slide-right {
  0% {
    left: -180px; }
  100% {
    left: 0; } }

@keyframes slide-left {
  0% {
    left: 0; }
  100% {
    left: -180px; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 100; } }

@keyframes fade-out {
  0% {
    opacity: 100; }
  100% {
    opacity: 0; } }

.aller-carousel__fade-in {
  animation: fade-in 0.2s; }

.aller-carousel__fade-out {
  animation: fade-out 0.2s; }

.aller-carousel__slide-right {
  animation: slide-right 0.2s; }

.aller-carousel__slide-left {
  animation: slide-left 0.2s; }

