* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}
*::-webkit-scrollbar-track {
  background: #ffffff;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 6px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
  background-color: #d2d2de;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  color: #1e272e;
  background-color: #f3f5fa;
}

.maintenance {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
  text-align: center;
}
.maintenance-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}

.bottom-text {
  position: fixed;
  bottom: 40px;
  left: 0;
  display: inline-block;
  text-align: center;
  padding: 12px;
  width: 100%;
}

.link {
  margin-inline-start: 6px;
  color: #f53b57;
}
.link:hover {
  text-decoration: none;
  transition-duration: 0.3s;
}

.info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.info svg {
  position: relative;
  z-index: 1;
}

.info-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 124px;
  height: 124px;
}
.info-pulse:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 50%;
  background-color: #fffefe;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.info-pulse:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  animation: pulse-dot 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) -3s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}/*# sourceMappingURL=main.css.map */