@import url("https://fonts.googleapis.com/css?family=Space%20Grotesk:700|Space%20Grotesk:400");
/* line 3, app/assets/stylesheets/buttons.scss */
:root {
  /*  change this for scaling  */
  --m: 1rem;
}

/* line 8, app/assets/stylesheets/buttons.scss */
.main-button {
  color: white;
  background-color: var(--primary);
  padding: 2px 20px;
  border-radius: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
  transition: padding 0.3s;
  text-decoration: none;
  font-size: 15px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.836);
  letter-spacing: 0.06em;
}

/* line 25, app/assets/stylesheets/buttons.scss */
.main-button:hover {
  color: white;
  text-shadow: none;
  box-shadow: 0px 0px 5px #d71059b7;
}

/* line 31, app/assets/stylesheets/buttons.scss */
.main-button.green {
  background-color: var(--green-optical);
}

@keyframes animate {
  0% {
    background-position: 200%;
  }
  100% {
    background-position: 0%;
  }
}

/* line 49, app/assets/stylesheets/buttons.scss */
.button {
  border-radius: 20px;
  width: 180px;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
}

/* line 58, app/assets/stylesheets/buttons.scss */
.button-icon {
  width: 150px;
  border-radius: 20px;
  color: white;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 68, app/assets/stylesheets/buttons.scss */
.button--primary {
  background-color: #04A7CC;
  color: white;
  transition: background-color 0.3s ease-in-out;
}

/* line 74, app/assets/stylesheets/buttons.scss */
.button--primary:hover {
  background-color: var(--primaryb-color-hover);
  transition: background-color 0.3s ease-in-out;
  color: white;
  border: 1px solid var(--secondaryb-color);
}

/* line 81, app/assets/stylesheets/buttons.scss */
.button--outline {
  color: #04A7CC;
  border: 1px solid #04A7CC;
}

/* line 86, app/assets/stylesheets/buttons.scss */
.button--outline:hover {
  border: 1px solid var(--primaryb-color-hover);
}

/* line 90, app/assets/stylesheets/buttons.scss */
.button--xl {
  height: 40px;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 16px;
  padding: 12px 5px;
  width: clamp(260px, 40vw, 450px);
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 90, app/assets/stylesheets/buttons.scss */
  .button--xl {
    width: 100%;
    font-size: 13px;
    white-space: normal;
    height: auto;
  }
}

/* line 106, app/assets/stylesheets/buttons.scss */
.button--lg {
  height: 40px;
  font-size: 16px;
  line-height: 16px;
  padding: 12px 5px;
  width: 260px;
}

/* line 114, app/assets/stylesheets/buttons.scss */
.button--md {
  height: 30px;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 5px;
}

/* line 121, app/assets/stylesheets/buttons.scss */
.button--sm {
  height: 20px;
  font-size: 12px;
  line-height: 12px;
  padding: 3px 5px;
}

/* line 128, app/assets/stylesheets/buttons.scss */
.button-categories {
  width: 198px;
  height: 40px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: normal;
  text-align: center;
  color: white;
  padding-inline: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
}

/* line 147, app/assets/stylesheets/buttons.scss */
.button-categories:hover {
  color: white;
}

/* line 151, app/assets/stylesheets/buttons.scss */
.header-btn {
  color: var(--white);
  border-radius: 20px;
  background: linear-gradient(129deg, #000000 0%, #a1a1a1 100%);
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
}

/* line 166, app/assets/stylesheets/buttons.scss */
.button-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--secondary);
  font-size: 24px;
  min-width: 30px;
  gap: 0px;
  padding: 5px;
  border-radius: 0px;
  border: 0;
  background-color: transparent;
  transform: rotate(90deg);
}

/* line 181, app/assets/stylesheets/buttons.scss */
.button-menu span {
  font-size: 24px;
  color: var(--black);
}
