.button {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
}

.style-1.filled {
  min-width: 120px;
  height: 48px;
  padding: 0.25rem 0.5rem;
  background: var(--g-1st-100);
  border: 0;
}
.style-1.filled .outline {
  position: absolute;
  width: 100%;
  height: 100%;
}
.style-1.filled .icon-control {
  font-size: 1.125rem;
  color: var(--white-100);
  z-index: 1;
  padding-top: 2px;
}
.style-1.filled .text {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white-100);
  z-index: 1;
  transition: all 0.25s ease;
}
.style-1.filled::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 80px;
  left: auto;
  right: calc(100% + 10px);
  border-radius: 50%;
  background: var(--btn-filled-1);
  transition: all 0.3s ease;
}
.style-1.filled:hover::before {
  content: "";
  width: 200%;
  height: 360%;
  position: absolute;
  top: -20px;
  left: -32px;
  right: auto;
  border-radius: 50%;
  background: var(--btn-filled-1);
  transition: all 0.3s ease;
}

.style-1.outlined {
  min-width: 120px;
  height: 48px;
  padding: 0.25rem 0.5rem;
  background: 0;
  border: 0;
}
.style-1.outlined .outline {
  position: absolute;
  width: 100%;
  height: 100%;
  outline-offset: -2px;
  outline: 2px solid var(--g-1st-100);
  border-radius: 2rem;
  transition: all 0.25s ease;
  z-index: 2;
  opacity: 0.4;
}
.style-1.outlined .text {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--g-1st-100);
  z-index: 1;
  transition: all 0.25s ease;
  position: relative;
}
.style-1.outlined .text::after {
  position: absolute;
  content: "";
  width: 0;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid var(--btn-outline-1);
  left: 50%;
  bottom: 0;
  transition: all 0.25s ease;
  opacity: 0;
}
.style-1.outlined .icon-control {
  font-size: 1.125rem;
  color: var(--c-1st-10);
}
.style-1.outlined:hover .outline {
  opacity: 1;
}
.style-1.outlined:hover .text::after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.style-2.filled {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 0.25rem 0.5rem;
  background: var(--g-1st-100);
  border: 0;
}
.style-2.filled .outline {
  position: absolute;
  width: 0%;
  height: 0%;
}
.style-2.filled .icon-control {
  font-size: 1.125rem;
  color: var(--white-100);
}
.style-2.filled .text {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white-100);
  z-index: 1;
  transition: all 0.25s ease;
}
.style-2.filled::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: auto;
  right: calc(100% + 10px);
  border-radius: 50%;
  background: var(--btn-filled-1);
  transition: all 0.3s ease;
}
.style-2.filled:hover::before {
  top: -6px;
  left: 60%;
  right: auto;
}

.style-2.outlined {
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 0.25rem 0.5rem;
  background: 0;
  border: 0;
}
.style-2.outlined .outline {
  position: absolute;
  width: 100%;
  height: 100%;
  outline-offset: -2px;
  outline: 2px solid var(--g-1st-100);
  border-radius: 2rem;
  transition: all 0.25s ease;
  z-index: 2;
  opacity: 0.4;
}
.style-2.outlined .text {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-1st);
  z-index: 1;
  transition: all 0.25s ease;
}
.style-2.outlined .icon-control {
  font-size: 1.125rem;
  color: var(--c-1st-10);
}
.style-2.outlined::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: auto;
  right: calc(100% + 10px);
  border-radius: 50%;
  background: var(--btn-outline-1);
  transition: all 0.3s ease;
}
.style-2.outlined:hover::before {
  top: -6px;
  left: 60%;
  right: auto;
}
.style-2.outlined:hover .outline {
  opacity: 1;
}

.button-zone {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.75rem;
  margin-top: 2rem;
}/*# sourceMappingURL=button.css.map */