body {
  margin: 0;
  background: linear-gradient(180deg, #040616, #26246f);
  padding: 0;
  height: 100%;
  color: rgba(255, 255, 255, 0.87);
  font-family: "Inter", sans-serif;
}

* {
  -moz-user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  box-sizing: border-box;
  user-select: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 0.5rem;
  background-position: center;
  background-size: 1rem;
  background-repeat: no-repeat;
  background-color: #ffffff70;
  width: 2rem !important;
  height: 2rem !important;
  color: #fff;
}

.swiper-button-prev {
  margin-left: -10px !important;
  background-image: url("assets/arrowLeft.svg");
}

.swiper-button-next {
  margin-right: -10px !important;
  background-image: url("assets/arrowRight.svg");
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "" !important;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

html,
body {
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  touch-action: none;
}

#root {
  height: 100svh;
  overflow: hidden;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #fff !important;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
}

.swiper-pagination {
  bottom: 10px;
}

.swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  width: 120% !important;
  height: 110%;
}

#swiper-select .swiper-wrapper {
  margin-left: 2.5rem;
}

@keyframes pulseScale {

  0%,
  100% {
    width: 140%;
    height: 125%;
  }

  50% {
    width: 175%;
    height: 180%;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

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

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

.rotate-animation {
  animation: rotate360 1s ease-in-out;
  -webkit-animation: rotate360 1s ease-in-out;
}

.rotate-1 {
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}

.rotate-2 {
  transform: rotate(360deg);
  transition: transform 0.5s ease-in-out;
}

.animated-box {
  animation: pulseScale 4s infinite ease-in-out;
  -webkit-animation-name: pulseScale;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: infinite;
}

#app {
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: 0.1s;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#wrapper {
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#game-container {
  height: 100vh;
}

canvas {
  height: 100vh;
}

.noMargin {
  margin-bottom: 0;
}

.ratePagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.buttonNext {
  display: flex;
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  justify-content: center;
  align-items: center;
  z-index: 1;
  backdrop-filter: blur(5px);
  transition: 0.5s;
  cursor: pointer;
  border-radius: 100px;
  background-color: #ffffff20;
  width: 2rem;
  height: 2rem;
}

.buttonPrev {
  display: flex;
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  z-index: 1;
  backdrop-filter: blur(5px);
  transition: 0.5s;
  cursor: pointer;
  border-radius: 100px;
  background-color: #ffffff20;
  width: 2rem;
  height: 2rem;
}

.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: default !important;
}

.buttonPrev:hover {
  transition: 0.5s;
  background-color: #ffffff40;
}

.buttonNext:hover {
  transition: 0.5s;
  background-color: #ffffff40;
}

.buttonPrev_main:hover {
  transition: 0.5s;
  background-color: #ffffff40;
}

.buttonNext_main:hover {
  transition: 0.5s;
  background-color: #ffffff40;
}

.buttonNext_main {
  display: flex;
  position: absolute;
  top: 50%;
  right: -0.25rem;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 1;
  backdrop-filter: blur(5px);
  transition: 0.5s;
  cursor: pointer;
  border-radius: 0.5rem;
  background-color: #ffffff20;
  width: 2.5rem;
  height: 2.5rem;
}

.buttonPrev_main {
  display: flex;
  position: absolute;
  top: 50%;
  left: 2.25rem;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 1;
  backdrop-filter: blur(5px);
  cursor: pointer;
  border-radius: 0.5rem;
  background-color: #ffffff20;
  width: 2.5rem;
  height: 2.5rem;
}