/** Shopify CDN: Minification failed

Line 55:2 Expected ":"
Line 56:2 Expected ":"
Line 57:2 Expected ":"
Line 58:2 Expected ":"

**/
.contact img {
  max-width: 100%;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

/* Define .wide-field */
.wide-field {
  width: 100%; /* Take full width */
  box-sizing: border-box; /* Include padding and border in width */
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

.contact__button {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

/* Define .wide-field */
.wide-field {
    width: 100%; /* Take full width */
    box-sizing: border-box; /* Include padding and border in width */
}

@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }

    .choice-field {
        grid-column: 1 / -1; /* Span all grid columns */
        display: flex; /* Keep flexbox for horizontal layout */
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .choice-field label {
       width: auto; /* Allow labels to take up needed space */
       box-sizing: border-box; /* Include padding/border in the width */
    }

    /* Apply .wide-field to the checkbox container */
    .choice-field { /* Or use a more specific selector if needed */
        grid-column: 1 / -1; /* Span from the first to the last column */
        display: flex; /* Keep the flexbox for horizontal arrangement */
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .choice-field label {
       width: auto; /* Allow labels to take up needed space */
       box-sizing: border-box; /* Include padding/border in the width */
    }
}
