@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--var-color-background);
  line-height: 1.6;
}

a {
  color: unset;
  font-style: unset;
  text-decoration: unset;
}

ul {
  list-style: inside;
  padding: 0;
}

ul li {
  list-style: none;
}

button,
input,
textarea {
  background-color: unset;
  border: unset;
  outline: unset;
}

#app {
  width: 100%;
}

:root {
  --var-body-padding-x: 25px;
  --var-max-width: 1400px;
}

@media (max-width: 1080px) {
  :root {
    --var-body-padding-x: 15px;
  }
}

.alert-btn-fixed {
  position: fixed;
  display: block;
  z-index: 10000;
  right: 25px;
  bottom: 25px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #F2F2F2;
}

.alert-btn-fixed span {
  font-size: 30px;
  color: #000;
}

.alert-btn-fixed::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--var-color-4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseFixed 1.5s infinite ease-out;
}

@keyframes pulseFixed {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.color-white {
  color: var(--var-color-1) !important;
}

.color-gray {
  color: var(--var-color-6) !important;
}

.bg-white {
  background-color: var(--var-color-1) !important;
}

