
.notify-me form {
  margin-top: var(--spacing-20);
}
.notify-me .field-wrapper {
  flex: 1;
}
.notify-me .field-wrapper:not(:last-child) {
  margin-bottom: var(--spacing-20);
}
.notify-me .field-wrapper:first-child {
  flex-basis: 100%;
}
.notify-me .form-email-wrapper input {
  width: 100%;
  margin-top: var(--spacing-15);
  margin-bottom: var(--spacing-15);
}
.notify-me .form-email-wrapper p.extra {
  font-size: var(--font-size-small);
  margin-bottom: 0;
}
.notify-me .form-email-wrapper label.required::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 5px; /* adjust as needed */
  border-radius: 50%;
  background-color: var(--clr-sale);
  vertical-align: middle;
}
.notify-me .default-content-wrapper {
  padding: 0;
}
.notify-me p:first-child {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 5px;
}
.notify-me button {
  font-size: 16px;
  padding: 14px 30px;
  width: 100%;
  font-weight: var(--font-weight-bold);
}
.notify-me .form-wrapper {
  padding: 0;
}
.notify-me .form-checkbox-wrapper {
  display: flex;
  align-items: center;
}
.notify-me .form-checkbox-wrapper label {
  font-size: var(--font-size-small);
  font-weight: 400;
  max-width: 300px;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .notify-me .form-checkbox-wrapper label {
    max-width: 275px;
  }
}
.notify-me .form-checkbox-wrapper a {
  text-decoration: underline;
  margin-left: 3px;
  font-size: var(--font-size-small);
  font-weight: 400;
  text-underline-offset: unset;
}
.notify-me .form-checkbox-wrapper input {
  background-color: var(--clr-white);
  width: 16px;
  height: 16px;
}
.notify-me .subscription-response {
  display: flex;
  border-radius: 4px;
  margin: 13px 0 0;
  padding: 13px 14px;
  justify-content: left;
  flex-basis: 100%;
}
.notify-me .subscription-response .icon {
  height: 17px;
  width: 17px;
  margin-right: 5px;
  background-repeat: no-repeat;
}
.notify-me .subscription-response p {
  line-height: 17px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-align: left;
  font-weight: 700;
  margin: 0;
}
.notify-me .subscription-response p::before {
  display: flex;
  margin-right: 5px;
  width: 15px;
}
.notify-me .subscription-response p.error {
  color: var(--clr-sale);
}
.notify-me .subscription-response p.error::before {
  content: url("/icons/error_red.svg");
}
.notify-me .subscription-response p.success {
  color: var(--clr-positive);
}
.notify-me .subscription-response p.success::before {
  content: url("/icons/green-tick.svg");
}