﻿body {
  font-family: Arial, 'Courier New', Courier, monospace;
  background: url(/images/home/bg.jpg) no-repeat top center fixed;
  background-size: cover;
}
body .content {
  width: 960px;
  margin: 0 auto;
}
body .content .error-container {
  padding: 8px;
  color: #fff;
  background-color: indianred;
  border-radius: 4px;
}
body .content .no-games-container {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.4rem;
  text-align: center;
}
body .content .game-item {
  display: flex;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  background-color: white;
}
body .content .game-item .game_pic {
  border-radius: 5px;
  width: 150px;
  height: 100%;
}
body .content .game-item .info {
  flex-grow: 1;
  margin-left: 15px;
}
body .content .game-item .info .info-title {
  font-weight: bold;
}
body .content .game-item .info .info-title a {
  text-decoration: none;
}
body .content .game-item .info .info-title .badge-mod {
  margin-left: 5px;
  padding: 0 5px;
  color: white;
  background-color: green;
  border-radius: 3px;
  font-size: 0.9rem;
}
body .content .game-item .info .info-title .badge-mod a {
  text-decoration: none;
  color: white;
}
body .content .game-item .info .info-desc {
  color: gray;
  font-size: 0.8rem;
}
body .content .game-item .price {
  width: 70px;
  min-width: 70px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
}
body .content .game-item .price .price-container {
  text-align: center;
}
body .content .game-item .price .price-container .price_value_old {
  color: gray;
  text-decoration: line-through;
}
body .content .game-item .price .price-container .price_value_new {
  font-weight: bold;
}
body .content .game-item .price .price-container .discount_value {
  color: lightgreen;
  background-color: green;
  padding: 0 5px;
  border-radius: 3px;
}
body .content .game-item .price .price-container .price_value_ru {
  color: gray;
  font-size: 0.9rem;
}
body .content .game-item .price .price-container .price_free {
  color: green;
}