.rowContainer {
  --numeroColonne: 1.2;
  --marginRight: 12px;
  --childWidth: calc(
    (100% / var(--numeroColonne)) - var(--marginRight) +
      (var(--marginRight) / var(--numeroColonne))
  );
  width: 100%;
  overflow: auto;
  display: flex;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media screen and (min-width: 576px) {
  .rowContainer {
    --numeroColonne: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .rowContainer {
    --numeroColonne: 2.2;
  }
}
@media screen and (min-width: 976px) {
  .rowContainer {
    --numeroColonne: 3.2;
  }
}
@media screen and (min-width: 1024px) {
  .rowContainer {
    --numeroColonne: 3.5;
  }
}
@media screen and (min-width: 1366px) {
  .rowContainer {
    --numeroColonne: 4.5;
  }
}
.rowContainer::-webkit-scrollbar {
  display: none;
}
.rowContainer > * {
  margin-right: var(--marginRight);
  flex: 0 0 auto;
}
.tabGioco {
  --image-aspect-ratio: 1/1;
  --image-width: 80px;
  display: flex;
  border-radius: 12px;
  overflow: unset;
  user-select: none;
}
@media screen and (min-width: 1024px) {
  .tabGioco {
    --image-width: 100px;
  }
}
.tabGioco > *:first-child {
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.tabGioco > *:last-child {
  border-radius: 0 12px 12px 0;
  overflow: hidden;
}
.tabGioco__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.tabGioco__img__container {
  flex: 0 0 auto;
  position: relative;
  width: max-content;
}
.tabGioco__img__container::after {
  display: block;
  content: "";
  width: var(--image-width);
  padding-bottom: calc(100% / var(--image-aspect-ratio));
}
.tabGioco__body {
  flex: 1 0 auto;
  background: #1f222e;
  padding: 0 18px 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 125px;
}
.tabGioco__body > *:not(:last-child) {
  margin-bottom: 6px;
}
.tabGioco__body__text1 {
  font-size: 13px;
  color: #a7a7a7;
}
.tabGioco__body__text2 {
  font-size: 18px;
  color: #fff;
}


















.rowContainer__pulseIcon {
  position: relative;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #f03333;
  margin-left: 12px;
}
.rowContainer__pulseIcon::before {
  position: absolute;
  border-radius: 50%;
  background-color: #f03333;
  width: 100%;
  height: 100%;
  animation: rowContainerPulseIconAnimation 4s infinite;
  content: "";
  will-change: transform, opacity;
}

@keyframes rowContainerPulseIconAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
