.newsletter-option {
  position: relative;
  cursor: pointer;
}

.newsletter-option.selected {
  background: var(--theme-dark-green);
  color: var(--theme-body-white);
}

.newsletter-option.selected:after {
  content: "–";
  background: var(--theme-body-white);
  color: var(--theme-dark-green);
  border: 1px solid var(--theme-dark-green);
}

.newsletter-option:after {
  content: "+";
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--theme-dark-green);
  position: absolute;
  top: -20px;
  right: -20px;
  color: #fff;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#subscribe-email,
#subscribe-name,
#subscribe-last-name,
#subscribe-company {
  width: 100%;
  padding: var(--spacing-3) var(--spacing-4);
  font-size: var(--font-sm);
  color: var(--theme-body);
  border: none;
  border-bottom: 1px solid var(--theme-body);
}

#subscribe-email.input-error,
#subscribe-name.input-error,
#subscribe-last-name.input-error {
  border-bottom: 1px solid var(--theme-red);
}

#newsleter-subscribe {
  min-width: fit-content;
}

#step-2,
#step-3 {
  display: none;
}

@media only screen and (max-width: 768px) {
  #step-2 .container.action-buttons {
    flex-direction: row;
    gap: var(--spacing-11);
  }
}
