/** Shopify CDN: Minification failed

Line 68:2 Unexpected "{"
Line 68:3 Expected identifier but found "%"
Line 68:43 Unexpected "{"
Line 68:44 Expected identifier but found "%"

**/
.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;
}

.field__input {
  padding: 12px !important;
  border-color: #e5e5e5 !important;
  border-radius: 4px !important;
  
}

.primary-btn {
  background: #cc5500;
  color: #fff;
  position: relative;
  transition: background .25s ease;   
  overflow: hidden;
  border: 1px solid #cc5500;
  display: inline-block;
}

.primary-btn span {
  position: relative;
  z-index: 2;
}

.primary-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #cc5500;
  border-radius: 40px;
  z-index: 1;
  transition: transform .5s ease, background .25s ease;
}

.primary-btn:hover:after {
  transform: translate(100%);
  transition: transform .5s ease, background .25s ease;
}

.primary-btn:hover {
  background: #fff;
  color: #cc5500;
  {% comment %} border: 1px solid #cc5500; {% endcomment %}
    transition: background .25s ease;
}

.field:after, 
.select:after, 
.customer .field:after, 
.customer select:after, 
.localization-form__select:after {
  border: 1px solid #1717178c;
  border-radius: 4px;
  box-shadow: none;
}

.field:hover.field:after, 
.select:hover.select:after, 
.select__select:hover.select__select:after, 
.customer .field:hover.field:after, 
.customer select:hover.select:after, 
.localization-form__select:hover.localization-form__select:after {
  box-shadow: none;
  border-radius: 4px
}

.field__label, 
.customer .field label {
  left: calc(var(--inputs-border-width) + 1.25rem);
}

.field__input:focus~.field__label, .field__input:not(:placeholder-shown)~.field__label, .field__input:-webkit-autofill~.field__label, .customer .field input:focus~label, .customer .field input:not(:placeholder-shown)~label, .customer .field input:-webkit-autofill~label {
  left: calc(var(--inputs-border-width) + 1.25rem);
}


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

.contact__button button {
  background-color: #cc5500;
  font-weight: 600;
  box-shadow: unset;
}

.contact__button {
  margin-top: 3rem;
}

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

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

.contact-container {
  align-items:start;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
}

.contact-header h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-subheading p {
  margin-bottom: 24px !important;
}

.contact-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:32px;
}

.contact-info-column{
    background:#f8f8f8;
    padding:20px;
    border-radius:8px;
    border:1px solid #e5e5e5;
}

.contact-info-column h3{
    margin:0 0 12px;
    font-size:24px;
    font-weight:700;
    line-height:1;
}

.contact-info-column p {
  margin: 0;
  line-height: 1.5;
}

.support-block{
    margin-top:16px;
}

.support-block h4{
    margin:0 0 6px;
    font-size:20px;
    font-weight:600;
}

.support-block p{
    margin:0;
    line-height:1.5;
}

.support-block a{
    color:inherit;
    text-decoration:underline;
}

.support-block a:hover {
  color: #171717;
  text-decoration-thickness: auto;
}

.custom-faq {
  max-width: 1024px;
}

@media(max-width:1023px){

  .contact-container {
    padding: 16px;
  }

  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact__button {
    margin-top: 2rem;
  }

}