.game-item {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin: 0 0 20px; }

.game-item:hover .game-item__hover {
  transform: translateY(0);
}

.game-item__image {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  object-position: center;
  display: block; }

.game-item__title {
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #4d3bfe;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2; }

.game-item__hover {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: 0.1s; }

.game-item__term {
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  background-color: #4d3bfe;
  padding: 0 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  display: flex;
}

.game-item__term:before {
  content: '\e804';
  order: 1;
  font-family: "FontAwesome";
  background-color: #f03b8c;
  font-weight: normal;
  color: #fff;
  margin: 0 0 0 3px;
  padding: 0 1px 0 3px; }

.game-item__term:after {
  content: attr(data-rate);
  order: 2;
  background-color: #f03b8c;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin: 0 -6px 0 0;
  padding: 0 3px 0 3px;
  font-size: 14px;
  line-height: 19px;
  left: -1px;
}

.game-item__btn {
  height: 45px;
  line-height: 45px;
  text-decoration: none !important;
  font-size: 16px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  color: #fff !important;
  background-color: #f03b8c;
  min-width: 218px;
  max-width: 218px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  border-radius: 4px;
}

.game-item__btn:hover {
  opacity: 0.9;
}

.game-item__btn:hover:active {
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.game-item__btn:before {
  content: '';
  border: 6px solid transparent;
  border-left: 8px solid #fff;
  display: inline-block;
  position: relative;
  top: 1px;
}

@media (min-width: 541px) {
  .game-list {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
    flex: 1 0 0;
    margin: 0 -10px; }

  .game-list:after {
    content: '';
    display: block;
    height: 0;
    margin: 0 10px;
    flex: 1 0 0;
    min-width: 45%;
    max-width: 49%; }

  .game-item {
    margin: 0 10px 20px;
    flex: 1 0 0;
    min-width: 45%;
    max-width: 49%; } }
@media (min-width: 1200px) {
  .game-item {
    margin: 0 10px 20px;
    flex: 1 0 0;
    min-width: 30%;
    max-width: 32%; }

  .game-list:after {
    min-width: 30%;
    max-width: 32%; }

  .game-list:before {
    content: '';
    display: block;
    height: 0;
    margin: 0 10px;
    flex: 1 0 0;
    min-width: 30%;
    max-width: 32%;
    order: 10; } }

