body {
  display: block !important;
}

.initial-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e1e2d;
  gap: 3rem;
  z-index: 1000;
}

.initial-loader-loading-bar {
  display: flex;
  gap: 0.5rem;
}

.initial-loader-bar {
  width: 8px;
  height: 32px;
  background: #ffffff;
  animation: initial-loading 1.5s ease-in-out infinite;
}

.initial-loader-bar:nth-child(1) {
  animation-delay: 0s;
}
.initial-loader-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.initial-loader-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.initial-loader-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.initial-loader-bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes initial-loading {
  0%,
  100% {
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
  }
  50% {
    height: 60px;
    background: #ffffff;
  }
}

.game-detail-container {
  .card-image {
    display: flex;
    justify-content: center;
  }
}

.input-field.required .field-messages {
  color: #c62828;
}
