.category-card[data-category] {
  position: relative;
  height: 58px;
  min-height: 58px;
  justify-content: center;
  padding: 10px 12px;
  text-shadow: none;
}

.category-card[data-category].is-active {
  height: 116px;
  min-height: 116px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.78);
}

.category-card[data-category="sports"].is-active {
  background-image: url("../img/category-sports.webp") !important;
}

.category-card[data-category="esports"].is-active {
  background-image: url("../img/category-esports.webp") !important;
}

.category-card[data-category="slots"].is-active {
  background-image: url("../img/category-lottery.webp") !important;
}

.category-card[data-category].is-active {
  box-shadow: inset 0 0 0 1px rgba(245, 247, 250, 0.16), 0 8px 18px rgba(0, 0, 0, 0.3);
}

.category-card[data-category] .category-icon {
  display: none;
}

.category-list {
  align-items: start;
}

.category-card[data-category] .category-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  pointer-events: none;
  text-align: center;
}

.category-card[data-category] .category-name {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.category-card[data-category] .category-description,
.category-card[data-category] .category-state,
.category-card[data-category] .category-arrow {
  display: none;
}

@media (max-width: 700px) {
  .category-card[data-category] {
    height: 68px;
    min-height: 68px !important;
    padding: 8px 3px;
  }

  .category-card[data-category].is-active {
    height: 136px;
    min-height: 136px !important;
  }

  .category-card[data-category="sports"].is-active {
    background-image: url("../img/category-sports.webp") !important;
  }

  .category-card[data-category="esports"].is-active {
    background-image: url("../img/category-esports.webp") !important;
  }

  .category-card[data-category="slots"].is-active {
    background-image: url("../img/category-lottery.webp") !important;
  }

  .category-card[data-category] .category-name {
    font-size: 13px;
  }
}