<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.btn--main {
  padding: 9px 12px 7px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: white;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 1px solid var(--green);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px
}

.btn--black {
  padding: 13px 18px 11px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  background: var(--black);
  color: white;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 1px solid var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5
}


.tablet-up {
  display: none;
}
@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
  .section {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 922px) {
  .tablet-up {
    display: unset;
  }
  .tablet-down {
    display: none;
  }
}
</pre></body></html>