/** Shopify CDN: Minification failed

Line 93:2 Unexpected "{"
Line 93:3 Unexpected "{"
Line 93:16 Expected ":"
Line 93:20 Unexpected "{"
Line 94:9 Expected identifier but found whitespace
Line 94:11 Unexpected "{"
Line 94:20 Expected ":"
Line 94:46 Expected ":"
Line 95:9 Expected identifier but found whitespace
Line 95:11 Unexpected "{"
... and 79 more hidden warnings

**/
/*================ "Contact form" ================*/
.section-contact-form .inner-form {
  background: var(--bg);
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
}

.contact-form__message {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 8995;
  background: var(--bg);
  box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, 0.05);
  opacity: 1;
  transition: transform 0.45s ease, visibility 0s;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.contact-form__message.hide-down {
  transform: translateY(100%);
  visibility: hidden;
  transition-delay: 0s, 0.45s;
}
.contact-form__message .errors,
.contact-form__message .note {
  margin: 0;
  border: 0;
  padding: var(--inner);
  font-size: calc(1rem * var(--adjust-body));
  background: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-form__message .errors,
  .contact-form__message .note {
    padding-top: var(--inner-tablet);
    padding-bottom: var(--inner-tablet);
  }
}
@media only screen and (max-width: 767px) {
  .contact-form__message .errors,
  .contact-form__message .note {
    padding-top: var(--inner-mobile);
    padding-bottom: var(--inner-mobile);
  }
}

.contact-form__message__close {
  position: absolute;
  top: 8px;
  right: 0;
  width: 54px;
  height: 54px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form__message__close svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.contact-form__message__close:hover svg {
  transform: rotate(90deg);
}


  {{ selector_id }} {
    --PT: {{ section.settings.padding_top }}px;
    --PB: {{ section.settings.padding_bottom }}px;

    {%- if bg_color_set -%}
      {%- if gradient != 'none' -%}
        --bg: {{ gradient }};
      {%- else -%}
        --bg: {{ bg_color }};
      {%- endif -%}
    {%- endif %}
  }

  {{ selector_id }} .inner-form {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0 100px;
  }

  {{ selector_id }} .form-info-left {
    flex: 0 0 40%;
    box-sizing: border-box;
    padding-bottom: {{ info_padding_bottom | default: 20 }}px;
  }

  {{ selector_id }} .form-column {
    flex: 1 1 60%;
    box-sizing: border-box;
  }

  {{ selector_id }} .form-column .input--full {
    width: 100%;
    max-height: 150px;
    box-sizing: border-box;
  }

  {{ selector_id }} .form__item--submit {
    margin-top: 25px;
  }

  {{ selector_id }} .form-info-left .section-heading {
    color: #A66261;
    font-family: "Bricolage Grotesque";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 -10px 0;
  }

  {{ selector_id }} .form-info-left .section-desc,
  {{ selector_id }} .form-info-left .form-info-text,
  {{ selector_id }} .form-info-left a {
    color: #88513B;
    font-family: "Instrument Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: block;
    text-decoration: none;
  }

  {{ selector_id }} .form-info-left .social-icons {
    display: flex;
    gap: 12px;
    margin: 8px 0 16px 0;
  }

  {{ selector_id }} .form-info-left .social-pill {
    border: 1px solid rgba(0,0,0,0.06);
    padding: 8px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    text-decoration: none;
  }

  {{ selector_id }} .form-info-left .social-pill.placeholder {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
  }

  .social-media-heading {
    color: #A66261;
    font-family: "Bricolage Grotesque";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 50px 0 -10px 0;
  }

  .address-heading {
    color: #A66261;
    font-family: "Bricolage Grotesque";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 50px 0 -10px 0;
  }

  @media (max-width: 768px) {

  {{ selector_id }} .inner-form {
    padding: 30px 0 70px;
  }
  {{ selector_id }} .form-column .input--full {
    max-height: 250px;
  }
  {{ selector_id }} .form-info-left .section-heading {
    font-size: 15px;
    margin: 0 0 -10px 0 !important;
    line-height: 20px !important;
  }
  .social-media-heading {
    font-size: 15px;
    margin: 30px 0 10px 0;
  }
  .address-heading { 
    font-size: 15px;
    margin: 30px 0 -20px 0;
  }
    {{ selector_id }} .inner-form {
      flex-direction: column;
    }

    {{ selector_id }} .form-info-left {
      order: 1;
      flex: 1 1 auto;
    }

    {{ selector_id }} .form-column {
      order: 2;
      flex: 1 1 auto;
    }

    {{ selector_id }} .inner-form { gap: 20px; }
    .contact-p--social {
      margin-top: 10px;
    }
  }

.contact-p--social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
.contact-p--social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-p--social svg {
  width: 40px;
  height: 40px;
}