div.gameList {
  display: grid;
  grid-gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4,minmax(0,1fr));
}

div.gameListColoumn {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

div.gameListColoumn a .card {
  transition: transform .5s; /* Animation */
  border: 0;
}

div.gameListColoumn a .card:hover {
  rotate:2deg;
  transform: rotate(2deg);
}

div.gameListColoumn .gameList_box {
  width: 100%;
  height: 160px;
}

div.gameListColoumn .gameList_box img {
  width: 100%;
  height: 100%;
  transition: transform .5s; /* Animation */
}

div.gameListColoumn .gameList_box:hover img {
  transform: scale(1.1);
}

/* Order Produk */

div.order .count_number {
  background: #000;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #000;
  border-top-left-radius: 10px;
}

div.order h5 {
  font-size: 16px;
  font-weight: normal;
}

div.order .radio-nominale {
    color: #000;
    display: none;
    margin: 10px;
    cursor: pointer;
}

div.order .radio-nominale + label {
  text-align: left;
  color: #000!important;
  display: inline-block;
  padding: 5px;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  font-size: 10px;
  padding-bottom: 0;
}

div.order .radio-nominale:checked + label {
  text-align: left;
  background-image: none;
  background-color: #000;
  color: #fff!important;
  border: 2px solid #000!important;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  font-size: 10px;
  padding-bottom: 0;
}

div.order .radio-nominale:checked + label::after {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 28px;
  height: 26px;
  content: "";
  background: url('upload/verified.png') top/cover;
  text-align: center;
}

div.order .radio-nominal {
    color: #000;
    display: none;
    margin: 10px;
    cursor: pointer;
}

div.order .radio-nominal + label {
  text-align: left;
  color: #000!important;
  display: inline-block;
  padding: 5px;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  font-size: 10px;
}

div.order .radio-nominal:checked + label {
  text-align: left;
  background-image: none;
  background-color: #000;
  color: #fff!important;
  border: 2px solid #000!important;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  font-size: 10px;
}

div.order .radio-nominal:checked + label::after {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 28px;
  height: 26px;
  content: "";
  background: url('upload/verified.png') top/cover;
  text-align: center;
}

/* Order Produk */

@media screen and (max-width: 480px){
  div.gameList {
    display: grid;
    grid-gap: .3rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  div.gameListColoumn {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
  }

  div.gameListColoumn .gameList_box {
    width: 100%;
    height: 125px;
  }

  div.gameListColoumn .gameList_box img {
    width: 100%;
    height: 100%;
    transition: transform .5s; /* Animation */
  }

  div.gameListColoumn .gameList_box:hover img {
    transform: scale(1.1);
  }
}