/* General */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #32383e;
}
body {
  background-color: #272b30;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
header img {
  max-height: 30vh;
  object-fit: cover;
}
/* navbar */
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 transparent;
}
.navbar {
  padding: 0px;
  background-color: rgb(58, 73, 123) !important;
  margin-inline: auto;
  margin-top: -30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.7);
  font-family: "Salsa", cursive;
}
.nav-link,
.logo {
  color: #fff !important;
}
.logo img {
  margin-right: 5px;
}
.logo h1 {
  font-size: 20px;
}
.nav-item .nav-link {
  padding: 5px 5px !important;
  font-size: 13px;
  border-radius: 30px;
  color: white;
  transition: 0.3s ease;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: #009ad8 !important;
}
.fa-bars {
  color: #ffffff !important;
}
/* Games Section */
.gray-color {
  background-color: #32383e;
}
.text-10 {
  font-size: 12.5px;
}
#games .card-body h3 {
  font-size: 14px;
  font-weight: 500;
}
#games .card .card-text {
  height: 55px;
}
#games .card {
  filter: grayscale(0.7);
  transition: transform 0.5s, filter 0.5s 0.1s;
}
#games .card:hover {
  filter: grayscale(0);
  transform: scale(1.05, 1.05);
}

/* Details */
.details {
  background-color: #27282b !important;
  color: #fff;
  min-height: 100vh;
  height: 100vh;
  overflow-x: hidden;
  z-index: 9999;
}
.details .container {
  max-width: 100%;
}
.no-scroll {
  overflow: hidden;
}
/* Loader */
.loading {
  position: fixed;
  z-index: 9999999;
  inset: 0;
  background-color: #272b30e3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-left: 4px solid #ff3d00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive */
@media (min-width: 1400px) {
  .container {
    width: 80%;
  }
}

@media screen and (max-width: 991.5px) {
  .nav-item .nav-link {
    padding: 20px !important;
  }
  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
