:root {
  --my-bg-light: #fcf8f7;
  --my-bg-action: #87191C;
  --my-bg-indigo: #BBE7D6;
}
[class*="btn--"] span.em {
  font-weight: bold;
}
/*Custom MailerLite form*/
.my-loader {
  content: "";
  width: 38px;
  height: 38px;
  border: 5px solid var(--action);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.my-subscribe-form {
  align-items: center;
  width: 28rem;
}
