@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  font-family: "Roboto", sans-serif;
}

body {
  min-height: 100vh;
  background-image: url(/assets/custom_apps/nnplay/background-90117cb04a7cdb312ae19ba553196a0e334f85824c304fb929e507536d22f632.jpg);
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #030322;
  overflow: hidden;
}

main {
  padding-top: 95px;
  height: calc(100vh - 95px);
  overflow: auto;
}

.hidden {
  display: none !important;
}

.top-carousel {
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 13px;
  position: fixed;
  top: 0;
  margin-top: 70px;
  width: 100%;
  background-color: #030322;
}

.top-carousel a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 13px;
  border-radius: 50px;
}

.top-carousel a.active {
  background-color: white;
  color: black;
  border-radius: 50px;
  font-weight: bold;
}

.top-carousel swiper-container {
  width: 100%;
}

.top-carousel swiper-container swiper-slide {
  display: inline-flex !important;
  width: auto !important;
}

#loading-spinner {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgba(215, 215, 215, 0.386);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#loading-spinner .spinner {
  border: 10px solid #f3f3f3;
  border-top: 10px solid black;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 3s linear infinite;
  margin-top: -1rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
