.addTo-Cart {
  width: 100%;
  height: 100vh;
  background-color: #161616ac;
  z-index: 0;
}
.container {
  width: 1250px;
  height: auto;
  margin: auto;
}
.Cart-details {
  margin-top: 80px;
  text-align: center;
}
.addTo-Cart .bg-addToCart {
  z-index: -1;
  position: absolute;
}
.addTo-Cart .bg-addToCart img {
  width: 1250px;
  height: 100vh;
}

.banner-cart {
  display: inline-block;
  margin-top: 180px;
  position: relative;
  z-index: 1;
  background-color: #363a43;
  width: 680px;
  height: 350px;
  border-radius: 5px;
}

.banner-cart h2 {
  font-size: 24px;
  text-align: left;
  padding: 15px 0 15px 15px;
  color: white;
}

.game-card {
  width: 650px;
  height: 170px;
  display: flex;
  justify-content: left;
  border-radius: 10px;
  /* background-color: #363a43; */
  background-color: #2e2e32;
  margin-bottom: 20px;
  margin-left: 15px;
}
.game-card .game-img {
  padding: 10px 15px;
}
.game-card .game-img img {
  width: 250px;
  height: 150px;
  border-radius: 5px;
}
.game-card .game-txt {
  padding: 10px;
}
.game-card .game-txt h3 {
  color: white;
  margin-bottom: 10px;
  text-align: left;
}

.game-card .game-txt .game-price {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.game-card .game-txt .game-price .not-discount {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}
.game-card .game-txt .game-price .discount-percent {
  font-size: 16px;
  font-weight: 300;
  color: #ffffffa6;
  & span {
    background-color: #00ffea;
    /* background-color: #ffbe0b; */
    color: #161616;
    border-radius: 5px;
    padding: 2px 5px;
    font-weight: 600;
  }
}
.game-card .game-txt .game-price .discount-price {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.game-card .game-txt .game-btn {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
.game-card .game-txt .game-btn .btn-buy {
  width: 120px;
  height: 35px;
  font-family: "Noto Sans Khmer", sans-serif;
  padding: 5px 25px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #2dee1b;
  background-color: #2dee1b;
  color: #202020;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-right: 70px;
}
.game-card .game-txt .game-btn .btn-buy:hover {
  background-color: #78d41c;
  color: #202020;
}
.game-card .game-txt .game-btn .add-remove {
  text-decoration: none;
}
.game-card .game-txt .game-btn p {
  font-family: "Noto Sans Khmer", sans-serif;
  padding: 10px;
  font-size: 16px;
  font-weight: 300;
  color: #ffffffa6;
  border-radius: 10px;
  margin-top: 10px;
}
.game-card .game-txt .game-btn .add:hover {
  color: white;
}
.game-card .game-txt .game-btn .remove:hover {
  color: white;
}

.btn-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.btn-view .more {
  width: 300px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: #5d6065;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.btn-view .more:hover {
  color: #161616;
  background-color: #fff;
}
.btn-view .view {
  width: 300px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(60deg, #06bfff, #2b74ff);
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.btn-view .view:hover {
  color: #fff;
  background: linear-gradient(60deg, #0074e0, #2b74ff);
}
