* {
  box-sizing: border-box;
  font-family: "Ubuntu", Helvetica Neue, sans-serif;
  padding: 0;
  margin: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  background: white;
  overscroll-behavior: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  /* box-shadow: rgba(0,0,0,0.1) 5px 5px 10px; */
  color: #000;
  /* max-width: 90vw;
  max-height: 90vh;
  aspect-ratio: 9/16;
  margin: 5vh auto; */
}

button {
  display: inline-block;

  text-align: center;
  
  border: 0;
  border-radius: 56px;
  padding-top: 18px;
  padding-right: 32px;
  padding-bottom: 18px;
  padding-left: 32px;

  background-color: black;
  color: white;
}

button:hover, button.red {
  background: red;
}

button.circleButton {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
}

button.circleButton.gray {
  background: #EFEFEF;
}
button.circleButton.black {
  background: #000000;
}

button.circleButton img {
  width: 60px;
  height: 60px;
}

footer {
  background: rgb(31, 128, 31);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 12px;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


/* 
@media (max-width: 768px) {
  main {
    aspect-ratio: unset;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
  }
} */



.lds-ellipsis {
  /* change color here */
  color: #FFF;
}
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.swiper .swiper-pagination {
  z-index: 2499;
  bottom: 11.3svh !important;
  pointer-events: none;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 15svw;
  height: 15svw;
  overflow: hidden;
  background: white;
  border-radius: 100px;
}

.swiper .swiper-pagination .swiper-pagination-bullet.empty {
  width: 15svw;
  height: 15svw;
  overflow: hidden;
  background: transparent;
  border-radius: 100px;
}

.swiper .swiper-pagination .swiper-pagination-bullet.empty::after {
  content: "";
  background: red;;
  width: 5svw;
  height: 5svw;
  border-radius: 100px;
}


.swiper .swiper-pagination .swiper-pagination-bullet img {
  width: auto;
  height: 10svw;
  margin: 2.5svw;
  object-fit: contain;
}