/** Shopify CDN: Minification failed

Line 32:8 Expected identifier but found whitespace
Line 32:10 Unexpected "{"
Line 32:19 Expected ":"
Line 32:44 Expected ":"
Line 80:10 Expected identifier but found whitespace
Line 80:12 Unexpected "{"
Line 80:21 Expected ":"
Line 80:46 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:product-tabs-video-shell (INDEX:65) */
.product-tabs-video-shell {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .product-tabs-video-shell .Container {
    width: 100%;
    max-width: 1480px;
  }

  .product-tabs-video-shell__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: {{ section.settings.column_gap }}px;
    align-items: start;
  }

  .product-tabs-video-shell__column {
    min-width: 0;
    width: 100%;
    margin: 0;
  }

  .product-tabs-video-shell__column--left,
  .product-tabs-video-shell__column--right {
    width: 100%;
    margin: 0;
  }
.product-tabs-video-shell--loading {
  opacity: 0;
  visibility: hidden;
}

.product-tabs-video-shell--ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s ease;
}
  @media screen and (min-width: 1008px) {
    .product-tabs-video-shell--has-videos .product-tabs-video-shell__inner {
      grid-template-columns: 1fr 1fr;
      align-items: start;
    }

    .product-tabs-video-shell--no-videos .product-tabs-video-shell__inner {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .product-tabs-video-shell__column--right {
      align-self: start;
    }
  }

  @media screen and (max-width: 1007px) {
    .product-tabs-video-shell .Container {
      width: 100%;
    }

    .product-tabs-video-shell__inner {
      grid-template-columns: 1fr;
      gap: {{ section.settings.column_gap }}px;
    }

    .product-tabs-video-shell__column,
    .product-tabs-video-shell__column--left,
    .product-tabs-video-shell__column--right {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }

  .product-tabs-video-shell .Product__Tabs {
    margin: 30px 0 !important;
  }

  .product-tabs-video-shell .section-product-tabs,
  .product-tabs-video-shell .product-tabs-custom,
  .product-tabs-video-shell .Product {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  }
/* END_SECTION:product-tabs-video-shell */