.other-games {
  margin-bottom: 56px;
  margin-top: 40px;
}
.other-games__title {
  color: #404040;
  margin: 0;
  margin-bottom: 16px;
  line-height: 36px;
}
.other-games__carousel {
  padding: 4px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 16px;
  margin: -4px;
}
.other-games__carousel::-webkit-scrollbar {
  display: none;
}
.other-games__item {
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
}
.other-games__item.active {
  border: 3px solid #B4CA09;
}
.other-games__item-content {
  display: flex;
  width: 100%;
  padding: 16px 8px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.other-games__item-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.other-games__item-description h4 {
  font-size: 16px;
  line-height: 18.75px;
  color: #404040;
  margin: 0 0 8px 0;
}
.other-games__item-description p {
  font-size: 13px;
  line-height: 15.23px;
  color: #5E6166;
  margin: 0;
}
.other-games__item-description p:last-child {
  margin-top: 4px;
}
@media (any-hover: hover) {
  .other-games__item:hover {
    box-shadow: 0px 1px 6px rgba(76, 75, 75, 0.1);
  }
}
.other-games__img-holder {
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.other-games .hidden {
  visibility: hidden;
  position: absolute;
}
.other-games .fade-in {
  animation: fadeIn 0.4s ease-in-out forwards;
}
.other-games .fade-out {
  animation: fadeOut 0.4s ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
}

@media screen and (max-width: 767px) {
  .other-games {
    margin-bottom: 40px;
  }
  .other-games__title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .other-games__carousel {
    gap: 8px;
  }
  .other-games__item {
    max-width: 200px;
  }
  .other-games__item-inner {
    margin-bottom: 8px;
  }
  .other-games__item-content {
    padding: 12px 8px;
  }
  .other-games__item-img {
    max-height: 133px;
  }
  .other-games__item-img img {
    width: 200px;
    height: 100%;
  }
  .other-games__item-description h4 {
    font-size: 14px;
    line-height: 16.41px;
  }
  .other-games__item-description p {
    font-size: 13px;
    text-transform: capitalize;
    line-height: 15.23px;
  }
  .other-games__item-description p span {
    display: none;
  }
}