body.single-game #single-game {
  padding: 0 15px;
}
@media (min-width: 768px) {
  body.single-game #single-game {
    padding: 0 30px;
  }
}
body.single-game #single-game h2 {
  margin-bottom: 30px;
}
body.single-game .game-leagues-wrapper {
  margin-bottom: 50px;
}
body.single-game .game-leagues {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  body.single-game .game-leagues {
    gap: 30px;
  }
}
body.single-game .game-leagues .game-league {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  color: #363636;
  min-width: 100%;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.single-game .game-leagues .game-league:hover .league-thumbnail img.attachment-post-thumbnail {
  -webkit-transform: translateY(-50%) scale(1.3) rotate(5deg);
          transform: translateY(-50%) scale(1.3) rotate(5deg);
}
@media (min-width: 1600px) {
  body.single-game .game-leagues .game-league {
    min-width: calc(33.33% - 20px);
    max-width: calc(50% - 15px);
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  body.single-game .game-leagues .game-league {
    min-width: calc(50% - 15px);
  }
}
body.single-game .game-leagues .game-league .league-thumbnail {
  position: relative;
  overflow: hidden;
  height: 100px;
}
body.single-game .game-leagues .game-league .league-thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
}
body.single-game .game-leagues .game-league .league-thumbnail img.attachment-post-thumbnail {
  position: absolute;
  top: 50%;
  left: 0;
  height: 200%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.single-game .game-leagues .game-league .league-thumbnail .partner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  max-width: 50%;
}
body.single-game .game-leagues .game-league .league-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px;
}
body.single-game .game-leagues .game-league .league-inner h4 {
  font-size: 22px;
  font-weight: 700;
}
body.single-game .game-leagues .game-league .league-inner .league-description {
  margin-bottom: 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
body.single-game .game-leagues .game-league .league-inner .league-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
body.single-game .game-leagues .game-league .league-inner .league-info:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d1d1d1;
}
body.single-game .game-leagues .game-league .league-inner .league-info div {
  text-align: right;
}
body.single-game .game-leagues .game-league .league-inner .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
body.single-game .game-leagues .game-league .league-inner .btns .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
}