{% scope_css %}
.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  
  {% if module.font_field.font %}
    font-family: ;
  {% endif %}
  {% if module.font_field.size %}
    font-size: ;
  {% endif %}
  {% if module.font_field.color %}
    color: ;
  {% endif %}
  {% if module.font_field.style %}
    ;
  {% endif %}
}

/* PRIMARY */
.custom-button--primary {
  background-color: #002B25;
  color: #ECEAE5;
}
.custom-button--primary:hover {
  background-color: #ECEAE5;
  color: #002B25;
}

/* SECONDARY */
.custom-button--secondary {
  background-color: #ECEAE5;
  color: #002B25;
}
.custom-button--secondary:hover {
  background-color: #002B25;
  color: #ECEAE5;
}

/* TERTIARY */
.custom-button--tertiary {
  background-color: transparent;
  color: #ECEAE5;
  border: 1px solid #ECEAE5;
}
.custom-button--tertiary:hover {
  background-color: transparent;
  color: #0FA083;
  border-color: #0FA083;
}

/* SIZES */
.custom-button--small {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}
.custom-button--medium {
  font-size: 1rem;
}
.custom-button--large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.full-width {
  width: 100%;
}
{% end_scope_css %}
