.nl-form {
  position: relative;
  margin: 30px auto 0;
  font-family: var(--description-font);
}
.nl-form .form-controls {
  transition: opacity 0.5s;
  opacity: 0;
}
.nl-form.active .form-controls {
  opacity: 1;
}
.nl-form.loading .loading-overlay {
  display: flex;
}
.nl-form .nl-form-message {
  opacity: 0;
}
.nl-form.show-confirmation .form-controls {
  position: relative;
  z-index: -10;
}
.nl-form.show-confirmation .nl-form-message,
.nl-form.error .nl-form-message {
  opacity: 1;
}
.nl-form.show-confirmation .nl-form-message {
  transform: translateY(-90px);
}
.nl-form.error .nl-form-message {
  transform: translateY(-40px);
}
.nl-form .nl-validate {
  position: relative;
  background: var(--cta-button-background);
  border: 0;
  padding: 9px;
  font-family: var(--cta-font);
  text-transform: uppercase;
  width: 100px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0 !important;
  height: var(--size-40);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  color: var(--color-accent-inverse-themed);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-14);
}
.nl-form .nl-validate:hover {
  background: #4d4d4d;
}
.nl-form .nl-validate:active {
  background: #808080;
}
.nl-form .nl-form-message {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  font-size: 15px;
  line-height: 23px;
}
.nl-terms {
  max-width: 380px;
}
.inputs {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  max-width: 380px;
  margin: 0 auto;
}
.inputs .nl-email {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  border-right: 0;
}
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid var(--accent-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.nl-name {
  font-family: var(--cta-font);
  margin-top: 0;
}
.nl-firstname {
  display: none;
}
.nl-terms {
  width: 100%;
  margin: 0 auto;
  font-size: 11px;
  line-height: 16px;
  opacity: 0;
  margin-top: 12px;
  text-align: center;
}
.nl-form.active:not(.error):focus-within .nl-terms {
  opacity: 1;
}
.nl-signup {
  position: relative;
  background: linear-gradient(to bottom, #febb74, #fc210b 50%, #fe06a5 95%);
  padding: 15px;
  line-height: 19px;
  font-size: 15px;
  margin-bottom: 40px;
  margin-top: 50px;
  clear: both;
  max-width: 600px;
  margin: 0 auto;
}
.nl-signup .nl-wrap {
  background: #fff;
  height: 100%;
  position: relative;
  padding: 15px;
  font-family: var(--description-font);
}
.nl-signup .nl-heading {
  color: #000;
  left: 0;
  right: 0;
  display: inline-block;
  margin: 0 auto;
  margin-top: -27px;
  width: 100%;
}
.nl-signup .nl-heading .nl-name {
  font-size: 25px;
  margin-bottom: 4px;
  display: inline;
  background: #fff;
}
.nl-signup .nl-description {
  background: #fff;
  margin-top: 15px;
}
.nl-email {
  border-radius: 2px;
  height: 40px;
  font-size: 15px;
  box-sizing: border-box;
  padding-left: 10px;
  flex: 1;
  min-width: 0;
}
.nl-email:focus {
  outline: none;
  box-shadow: none;
}
.nl-email:focus-visible {
  outline: none;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .single-post .nl-signup {
    margin: 80px -15px 40px;
  }
  .nl-wrap {
    position: relative;
    overflow: visible;
    top: 30%;
  }
  .nl-name {
    position: relative;
    padding: 0 10px 0 10px;
  }
  .nl-form {
    clear: both;
  }
  .nl-form input {
    width: 100%;
  }
}
@media screen and (min-width: 481px) {
  .nl-signup .nl-heading {
    margin-top: -45px;
  }
  .nl-signup .nl-heading .nl-name {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .nl-validate {
    max-width: 100px;
  }
  .nl-signup .nl-heading {
    text-align: center;
  }
  .nl-signup .nl-name {
    display: inline-block;
    line-height: 40px;
    background: #fff;
    padding: 0 30px;
  }
  .nl-signup .nl-form {
    width: 560px;
  }
  .nl-signup .nl-form .form-controls {
    height: 40px;
  }
  .nl-signup .nl-wrap {
    padding-bottom: 0;
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
