/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:video-quote-request (INDEX:59) */
.video-quote-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.video-quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 750px) {
  .video-quote-wrapper {
    padding: 0;
  }
}

.video-quote-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.video-quote-description {
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(var(--color-foreground), 0.75);
}

.video-quote-content {
  display: grid;
  gap: 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: 2px solid;
}

.contact-button--whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.contact-button--whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
}

.contact-button--email {
  background: transparent;
  color: rgb(var(--color-foreground));
  border-color: rgba(var(--color-foreground), 0.3);
}

.contact-button--email:hover {
  background: rgba(var(--color-foreground), 0.05);
}

.contact-button svg {
  width: 20px;
  height: 20px;
}

.contact-instructions {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 4px;
  font-size: 0.9rem;
}

@media screen and (max-width: 749px) {
  .contact-buttons {
    flex-direction: column;
  }
  
  .contact-button {
    justify-content: center;
    width: 100%;
  }
}
/* END_SECTION:video-quote-request */