/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

/**
 * @file
 * Base Layout.
 */

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*12px */

/*20px */

/*24px, */

/*32px */

/*44px (named after omicron variant BS.2.75.2) */

/*48px */

/*desktop + 32px; */

/*max-width + 64px; */

/* RGB colors, useful for when you need to include a color in an RGBA set. */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

.block-mailchimp-signup h2 {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
  }

.block-mailchimp-signup .form-type-email {
    display: flex;
    flex-direction: column;
  }

.block-mailchimp-signup .form-email {
    background-color: white;
  }

@media (min-width: 476px) {
      .block-mailchimp-signup form .form-form {
        display: flex;
        align-items: flex-end;
        gap: var(--space);
      }
      .block-mailchimp-signup form .mailchimp-newsletter-mergefields {
        flex-grow: 1;
      }
    }

@media (min-width: 701px) {

.block-mailchimp-signup form {
      display: flex;
      gap: var(--double-space);
      align-items: flex-start
  }
      .block-mailchimp-signup form .form-description {
        grid-area: description;
        max-width: 49rem;
      }
      .block-mailchimp-signup form .mailchimp-newsletter-mergefields {
        max-width: 300px;
      }
        .block-mailchimp-signup form .mailchimp-newsletter-mergefields .form-type-email {
          margin: 0;
        }
      .block-mailchimp-signup form .form-actions {
        margin-top: 0;
        margin-bottom: 0;
      }
      .block-mailchimp-signup form .form-form {
        flex-direction: column;
        align-items: flex-start;
      }
      .block-mailchimp-signup form .mailchimp-newsletter-mergefields {
        flex-grow: 0;
      }
    }

@media (min-width: 901px) {
      .block-mailchimp-signup form .form-form {
        flex-direction: row;
        align-items: flex-end;
      }
    }

.block-mailchimp-signup {
  position: relative;
}

.block-mailchimp-signup .form-submit + .ajax-progress-throbber {
    background-color: white;
    border-radius: var(--base-border-radius);
    box-shadow: var(--box-shadow);
    position: absolute;
    width: max-content;
    right: 0;
    top: 61%;
  }
