body {
  background-color: #f6f7f9;
  user-select: none;
}

#back-container {
  width: 0;
  height: 0;
  display: none;
}

#back-container.show {
  width: 100%;
  height: 100vh;
  background-color: #51515188;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.game-tops {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}

.tops-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0.45rem;
  padding: 4px;
  padding-bottom: 5px;
  margin: 10px 12px 5px 12px;
  width: calc(25% - 24px);
}

.game-online-top {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
}

.pvbtn {
  height: 14px;
  padding: 1px 3px;
  background-color: #0690ff;
  font-size: 11px;
  line-height: 13px;
  border-radius: 4px;
  color: #fff;
  align-self: center;
  font-weight: bold;
}

.pvbtn.btnred {
  background-color: #f00;
}

.item-tops {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tops-item-img {
  width: 103px;
  border-radius: 0.5rem;
}

.tops-game-name {
  font-size: 15px;
  font-weight: bold;
  margin: 3px auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .tops-item-img {
    width: 100%;
  }
  .tops-game-name {
    font-size: 13px;
  }
}

.game-ups {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.pvnumtop {
  /* font-weight: bold; */
  font-size: 14px;
  color: #616161;
}

.up-img {
  width: 13px;
  height: 13px;
}

.up-num {
  font-size: 13px;
  margin-left: 0.25rem;
}

.game-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e2e2e2;
}

.game-item:hover {
  cursor: pointer;
}

.game-item:last-child {
  margin-bottom: 1rem;
}

.item-img {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  margin-right: 15px;
  border: 0.3px solid #77777777;
}

.game-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 72%;
}

.game-name {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: bold;
}

.game-info {
  font-size: 13px;
  color: #616161;
  margin-top: 6px;
  line-height: 115%;
}

.game-online {
  font-weight: bold;
  font-size: 14px;
  color: #616161;
  margin-top: 4px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 15px 0px;
  background-color: #fff;
}

.dot {
  font-weight: bold;
  font-size: 16px;
  color: #5f6267;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 8px 0;
}

.privacyt,
.cookiet,
.mail {
  font-size: 14px;
  color: #5f6267;
  font-weight: bold;
}

.cookiet,
.mail {
  margin-left: 1rem;
}

.copyright {
  font-size: 14px;
  color: #5f6267;
}

.keys {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 8px;
}

.key-item {
  font-size: 14px;
  color: #5f6267;
  text-align: center;
}

.cookie-container {
  width: 100%;
  position: fixed;
  bottom: -300px;
  left: 0;
  font-family: "Roboto", sans-serif;
  transition: bottom 1.5s ease;
}

.cookie {
  width: 100%;
}

.cookie-container.show {
  bottom: 0;
}

.cookie-1 {
  opacity: 0.975;
  animation-duration: 0.8s;
  animation-name: fadeIn;
  background-color: #fff;
  color: #595d63;
  padding: 25px 15px 35px;
  box-sizing: border-box;
  box-shadow: 1px -1px 5px #595d6344;
}

.cookie-1-t {
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: -0.25px;
  font-weight: 500;
  text-align: center;
  flex: 1 1 0;
}

.cookie-1-b {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.f2-title1 {
  margin: 0;
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.f2-link {
  font-weight: bold;
}

@keyframes enlarge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.cookie-btn {
  background: #e86c00;
  border: none;
  color: #ffffff;
  border-radius: 20px;
  padding: 8px 24px;
  outline: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.75px;
  animation: enlarge 1s ease-in-out 3.5s 1;
}
