/** Shopify CDN: Minification failed

Line 113:21 Expected identifier but found whitespace
Line 113:23 Unexpected "{"
Line 113:37 Expected ":"
Line 131:21 Expected identifier but found whitespace
Line 131:23 Unexpected "{"
Line 131:37 Expected ":"

**/
  /* Stylesheet for the bundle collection page template */

  :root {
    --bundle-border: .8px solid #dddddd;
    --bundle-undo-color: red; 
    --modal-border-color: #bcbcbc;
  }

  .desktop-only {
  }

  .mobile-only {
    display: none;
  }
  
  .disabled {
    pointer-events: none;
    opacity: .3;
  }

  .not-clickable {
    pointer-events: none;
  }

  .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* Already defined in Prestige v10 CSS
  .hidden {
    display: none;
  }*/

  .bundle-product-item-disabled-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bundle-undo-color);
  }
  
  .text-centered {
    text-align: center;
  }

  .strike-text {
    text-decoration: line-through;
  }
  
  .rte .unstyled-list {
    list-style: none;
    margin: 0;
  }

  .Rte li {
    padding: 5px 0;
  }

  .bundle-component a {
    text-decoration: underline;
  }

  .bundle-component a#bundle-preview-cta-link {
    text-decoration: none;
  }

  .bundle-container-mobile-only {
    margin: 0;
  }

  .bundle-container-desktop-only {
    --distance-to-bleed: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }

  /*MAIN*/
  header.PageHeader.bundle {
    margin: 0 auto 1rem;
    width: 100%;
  }
  
  .Rte .u-h6 {
    font-size: 1rem !important;
  }
  
  .bundle-component {
    align-items: flex-start;
    margin-top: 2rem;
  }
  
  .bundle-component-main {
    flex: 1;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  
  .bundle-preview {
    flex: 1 1 40%;
    align-self: flex-start;
    background-color: {{ accent_color }};
  }
  
  .bundle-picker {
    flex: 2 2 60%;
    border-left: var(--bundle-border);
    border-right: var(--bundle-border);
  }
  
  /*PREVIEW*/
  .bundle-picker-main,
  .bundle-preview,
  .bundle-preview-item-content-top {
    position: relative;
  }
  
  .bundle-preview-placeholder {
    display: none;
    background-color: {{ accent_color }};
    height: 40%;
    min-height: 10rem;
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    z-index: -10;
  }
  
  #preview-item-image-avatar {
    height: 100%;
  }
  
  .bundle-preview-item-wrapper {
    min-height: 15rem;
  }
  
  .bundle-preview-item-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  
  .bundle-preview-item-content .bundle-preview-item-image {
    grid-area: 1 / 1;
    margin: 0 auto;
    border: none;
    width: 100%;
  }
  
  .bundle-preview-item-content-bottom .bundle-preview-item-image {
    margin: 0 auto;
  }

  .rte .bundle-preview-item-title {
    font-size: 1rem !important;
    display: inline-block;
    /*margin: 1rem auto 4rem !important;*/
    margin-bottom: auto;
    margin-top: 0;
  }
  
  .bundle-preview-item-footer {
    justify-content: space-evenly;
    margin: auto;
    padding: 1rem 0;
  }

  .bundle-preview-actions {
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .bundle-preview-actions svg {
    width: 1.3rem;
    height: auto;
  }

  .bundle-preview-action {
    margin-bottom: 0.7rem;
    text-align: right;
  }

  .bundle-preview-action:hover {
    cursor: pointer;
  }

  .bundle-preview-action a {
    display: inline-block;
  }

  .Icon, .bundle-preview-cta-icon {
    height: 1em;
    width: 1em;
  }

  /*PICKER*/
  .bundle-picker {
    margin: 0 1rem;
    padding: 0 1rem;
  }
  
  .bundle-picker-header {
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 4.5rem;
  }

  .bundle-picker-header h2:first-child {
    margin-left: 0;
  }

  .bundle-picker-header h2:last-child {
    margin-right: 0;
  }
  
  .bundle-product-list {
    overflow-y: scroll;
    /*height: calc(100vh - 200px);*/
    text-align: center;
    scroll-behavior: smooth;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .product-list-title {
    transition: border .2s ease-in-out;
    margin-bottom: 0.9em;
    opacity: .5;
    word-wrap: break-word;
  }

  .rte .product-list-title {
    margin-top: 0;
  }
  
  .product-list-title:hover {
    cursor: pointer;
    /*border-bottom: 1px solid black;*/
  }

  .product-list-title.selected {
    font-weight: bold;
    /*border-bottom: 1px solid black;*/
  }

  .product-list-title:hover,
  .product-list-title.selected{
    opacity: 1;
  }
  
  .product-list-title:after {
    position: relative;
    display: block;
    content: "";
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--heading-color);
    transition: width .25s ease-in-out;
  }
  
  .product-list-title.selected:after,
  .product-list-title:hover:after {
    width: calc(100% - .2em);
  }
  
  .bundle-product-item {
    text-align: center;
    /*padding: 0 1rem;*/
    max-width: 33%;
    flex: 1 1 33%;
    display: inline-block;
    margin-bottom: 1rem;
    vertical-align: top;
    align-self: flex-start;
  }
  
  .rte .bundle-product-item-title {
    margin: .5rem auto 0rem;
    font-size: .9rem !important; 
    word-break: keep-all;
  }
  
  .bundle-product-item.selected {
    background-color: rgb(248 248 248);
    border: var(--bundle-border);
    border-color: #bdbdbd;
  }
  
  .bundle-product-item > * {
    display: block;
    margin: 0rem auto 1rem;
  }
  
  .bundle-product-item-info-wrapper {
    padding: 0 1rem;
  }
  
  .bundle-product-item.selected .bundle-product-item-checkmark {
    display: block;
  }
  
  .bundle-product-item.selected .bundle-product-item-cta {
    display: none;
  }
  
  .rte .bundle-product-item-image {
    margin: 0;
    mix-blend-mode: multiply;
  }
  
  .bundle-product-item-cta {
    margin: 1rem auto .5rem;
    text-transform: uppercase;
    min-height: auto;
    padding: .5rem 1rem;
    max-height: 3rem;
  }
  
  .bundle-product-variant-cta {
    margin: 0 auto 1rem;
  }

  .bundle-product-variant-cta.selected {
    display: none;
    border-color: var(--button-background);
  }
  
  .rte .bundle-product-item-checkmark {
    display: none;
    width: 2.5rem;
    height: 100%;
    max-height: 3rem;
    border: 0;
    margin: 1rem auto .5rem;
  }
  
  .rte .bundle-product-item-checkmark svg {
    height: 2.4rem;
    width: 100%;
  }

  .centered-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .bundle-product-item-more-link {
    font-style: italic;
  }
  
  .bundle-product-list-wrapper, .bundle-product-item-image-wrapper {
    position: relative;
  }
  
  .bundle-product-item-image-wrapper:hover {
    cursor: pointer;
  }
  
  .bundle-product-item-image {
    transition: opacity .3s ease;
  }
  
  .bundle-product-item-image.second-image {
    position: absolute;
    top: 0;
    background-blend-mode: initial;
    mix-blend-mode: initial;
    opacity: 0;
  }
  
  .bundle-product-item-image-wrapper:hover .second-image {
    opacity: 1;
  }
  
  .bundle-product-item-image-wrapper:hover .first-image {
    opacity: 0;
  }
  
  .bundle-product-item-constraint {
    display: none;
    background: white;
    color: var(--bundle-undo-color);
    border: var(--bundle-border);
    border-color: var(--bundle-undo-color);
    text-align: center;
    font-size: .9rem;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0,-50%);
    margin: 0 0.5rem;
  }

  .bundle-product-item-constraint-product {
    font-weight: bold;
    font-style: italic;
  }
  
  .disabled .bundle-product-item-constraint {
    display: initial;
  }

  .bundle-product-list-banner {
    padding: .2rem 0;
    margin: 0 0 .5rem 0;
    font-size: .9rem;
  }
  
  .bundle-product-list-shadow {
    width: 100%;
    height: 8rem;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    justify-content: center;
  }

  .bundle-product-list-shadow.hidden {
    display: none;
  }
  
  .bundle-product-list-shadow.top-shadow {
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    top: 0;
    align-items: flex-start;
  }
  
  .bundle-product-list-shadow.bottom-shadow {
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    bottom: 0;
    align-items: flex-end;
  }
  
  @keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(30%);
    }
  }
  
  @keyframes bounceUp {
    from {
        transform: translateY(30%);
    }
    to {
        transform: translateY(0);
    }
  }
  
  @keyframes bounceLeft {
    from {
        transform: translateX(30%);
    }
    to {
        transform: translateX(0);
    }
  }
  
  @keyframes bounceRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(30%);
    }
  }
  
  .bundle-product-list-shadow svg {
    width: 1.5rem;
    height: auto;
    margin: 0.5rem;
    opacity: .5;
    animation: bounce 0.5s cubic-bezier(0.5, 0.05, 1, 0.5);
    animation-direction: alternate;
    animation-iteration-count: infinite;
  }
  
  .bundle-product-list-shadow svg.up {
    animation-name: bounceUp;
  }
  
  .bundle-product-list-shadow svg.right {
    animation-name: bounceRight;
  }
  
  .bundle-product-list-shadow svg.left {
    animation-name: bounceLeft;
  }
  
  .bundle-product-list-shadow .right,
  .bundle-product-list-shadow .left {
    display: none;
  }
  
  .bundle-product-list-shadow .top,
  .bundle-product-list-shadow .down {
    display: inherit;
  }
  
  /*MODAL*/
  
  .bundle-modal-wrapper, .bundle-picker-modal-variant-header {
    position: relative;
  }

  .bundle-picker-modal-wrapper {
    background: rgba(0,0,0,.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  
  .bundle-picker-modal-main, .bundle-picker-modal-variant-list {
    margin-top: 1.5rem;
    grid-gap: 2rem;
    justify-content: flex-start;
  }
  
  .bundle-picker-modal-content {
    overflow: hidden;
  }
  
  .bundle-picker-modal-variant-list {
    overflow-x: scroll;
    justify-content: flex-start;
  }
  
  .bundle-modal {
    position: fixed;
    z-index: 100;
    background: white;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 1rem 2rem;
    width: fit-content;
    height: fit-content;
    max-width: 90%;
    max-height: 90%;
    border: .1rem solid var(--modal-border-color);
    border-radius: 1rem;
    text-align: center;
    overflow: scroll;
  }

  .bundle-picker-modal {
    padding: 2rem;
    pointer-events: auto;
  }
  
  .bundle-picker-modal-header {
    align-items: flex-start;
  }

  .bundle-clipboard-modal-header {
    align-items: center;
  }
  
  #bundle-picker-modal-item-title {
    font-weight: bold;
  }

  .bundle-modal-header-info {
    flex: 1;
  }
  
  .bundle-picker-modal-header-info {
    padding-left: 4rem;
  }
  
  .bundle-modal-header-close {
    margin-left: 2rem;
  }

  .bundle-modal-header-close:hover {
    cursor: pointer;
  }
  
  .bundle-modal-header-close .modal-close-toggle {
    min-width: 2rem;
    height: 100%;
  }
  
  .bundle-picker-modal-variant {
    align-self: flex-start;
    flex: 0 0 20%;
  }
  
  .bundle-picker-modal h3, .bundle-picker-modal h4, .bundle-picker-modal h5 {
      margin: 0;
  }
  
  .bundle-picker-modal-variant .bundle-picker-modal-main-title {
    margin-top: revert;
  }
  
  .bundle-picker-modal-variant .bundle-picker-modal-variant-checkmark {
    display: none;
    max-width: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .bundle-picker-modal-variant.selected .bundle-product-variant-cta.unselected {
    display: none;
  }
  
  .bundle-picker-modal-variant.selected .bundle-picker-modal-variant-checkmark,
  .bundle-picker-modal-variant.selected .bundle-product-variant-cta.selected {
    display: inherit;
  }
  
  .bundle-picker-modal-variant.selected .bundle-picker-modal-variant-image {
    opacity: .2;
  }
  
  .bundle-picker-modal-variant-header {
    border: .1rem solid var(--modal-border-color);
    margin-bottom: 1rem;
  }
  
  .bundle-picker-modal-variant-header .bundle-picker-modal-variant-image {
    margin: 0 auto 1rem;
    /*height: 12rem;
    aspect-ratio: initial;*/
    width: 100%;
    height: auto;
  }
  
  /*SIDEBAR*/
  
  .bundle-component-sidebar {
    max-width: 25%;
    width: 25%;
    display: grid
  }
  
  .bundle-instructions {
    margin: 1rem 0;
  }
  
  .rte .list-with-images {
    list-style: none;
    padding: 0;
  }
  
  .list-item-with-image {
    /*
    display: flex;
    align-items: center;*/
    display: grid;
    align-items: center;
    grid-template-columns: 1.5rem 1fr;
    grid-gap: 1rem;
  }
  
  .list-item-with-image .list-item-image {
    border: none;
    height: 1.5rem;
    width: auto;
    margin: 0 auto;
  }
  
  .bundle-cart {
    border-bottom: var(--bundle-border);
  }
  
  .bundle-cart-header {
    margin: 0 auto 2rem;
  }

  .bundle-cart-title {
    margin: 0 auto .5rem;
  }

  .bundle-cart-subtitle {
    font-size: .9rem;
    font-weight: 400;
  }

  .bundle-cart-item {
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto .5rem auto;
  }

  .bundle-cart-item.hidden {
    display: none;
  }
  
  .bundle-cart-item-cta {
    margin: 1.5rem auto;
    display: block;
  }

  .bundle-cart-item-cta-wrapper button {
    font-size: .8rem;
  }

  .bundle-cart-item-wishlist-wrapper {
    margin-left: 1rem;
    margin-bottom: 0;
  }

  .bundle-cart-item-wishlist {
    width: 2rem;
    height: auto;
  }
  
  .bundle-cart-item-info {
    min-height: 4rem;
    flex: 1;
    margin: 0 1rem
  }
  
  .bundle-cart-item-info-label {
    font-style: italic;
    margin: 0 !important;
  }
  
  .bundle-cart-item-info-name {
    margin: 0 !important;
  }

  .variant-picker {
    margin: .5rem 0 0;
  }

  .variant-picker-option {
    cursor: pointer;
    /*padding: .1rem .8rem;*/
    padding: 0rem .4rem;
  }
  
  .bundle-cart-item-price {
    word-break: keep-all;
  }
  
  /*
  #bundle-cart-item-top, #bundle-cart-item-bottom {
    border-bottom: var(--bundle-border);
  }
*/
  .bundle-cart-item-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin: .5rem auto 1rem auto;*/
  }

  .bundle-cart-item-divider .divider-line {
    width: 100%;
    position: absolute;
    z-index: -1;
  }
  
  .share-label {
    margin-right: 1rem;
  }

  .ProductMeta__ShareItem svg {
    display: block;
    width: 12px;
    height: 12px;
    opacity: .6;
    transition: opacity .2s ease-in-out;
  }
  
  .bundle-cart-item-cb {
    max-width: 1.5rem;
  }
  
  .bundle-cart-item-cb:hover {
    cursor: pointer;
  }
  
  .bundle-cart-item-cb .checked, 
  .selected .bundle-cart-item-cb .unchecked {
    display: none;
  }
  
  .selected .bundle-cart-item-cb .checked {
    display: block;
  }
  
  .bundle-cart-item-cb-icon {
    width: 100%;
    height: auto;
  }
  
  .bundle-share {
    justify-content: flex-start;
  }
  
  .share-item-link:hover {
    cursor: pointer;
  }
  
  .ProductMeta__ShareButtons {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .ProductMeta__ShareTitle {
    margin-right: 6px;
  }

  .bundle-component .Heading, 
  .bundle-component .heading {
    text-transform: uppercase;
    /*text-transform: initial;
    letter-spacing: initial;*/
  }
  
  /*RESPONSIVE*/
  @media screen and (max-width: 1130px) {
    .bundle-product-item {
      max-width: 30%;
    }
    .bundle-picker-modal-variant {
      flex: 0 0 25%;
    }
    
    .mobile-only {
      display: inherit;
    }

    .desktop-only {
      display: none;
    }

    .bundle-container-desktop-only {
      margin: 0;
    }

    .bundle-container-mobile-only {
      --distance-to-bleed: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
      margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
      margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    }
  
  }
  
  @media screen and (max-width: 960px) {
    .header__secondary-nav {
      flex-wrap: nowrap;
    }
    
    .header__logo {
      margin-right: 1rem;
    }
    
    .bundle-picker-header {
      justify-content: space-between;
      overflow-y: hidden;
      overflow-x: hidden;
      grid-gap: .5rem;
    }

    .bundle-sticky-bar {
      top: auto;
      bottom: 0;
      width: 100%;
      padding: 0.3rem 0.8rem;
      z-index: 3;
      display: block;
      position: fixed;
      inset-inline-start: 0;
      background: rgb(var(--background));
      border-block-end-width: 1px;
      grid-template-columns: minmax(0,1fr) max-content;
      align-items: center;
    }

    .bundle-cart-item-cta {
      margin: 1rem auto;
    }

    .bundle-sticky-bar .bundle-cart-item-cta {
      margin: 0;
    }
    
    .bundle-preview img {
      border: none;
    }
    
    .bundle-product-item-image-wrapper {
      pointer-events: none;
      margin: 0;
    }
    
    .bundle-picker-modal {
      padding: .8rem 1.5rem;
    }
    
    .bundle-picker-modal-variant {
      flex: 0 0 36%;
    }

    .bundle-picker-modal-main, 
    .bundle-picker-modal-variant-list {
      grid-gap: 1rem;
    }
    
    .bundle-product-list-shadow .top,
    .bundle-product-list-shadow .down {
      display: none;
    }
  
    .bundle-product-list-shadow .right,
    .bundle-product-list-shadow .left {
      display: inherit;
    }
    
    .bundle-product-item {
      white-space: inherit;
      /*max-width: 40%;*/
      border: var(--bundle-border);
      margin: 0;
      height: 100%;
    }
  
    .rte .bundle-cart-title {
      margin: 1rem auto 0rem; 
    }

    .bundle-cart-header {
      margin: 0 auto 1rem;
    }
    
    .bundle-preview-item-content .bundle-preview-item-image {
      max-height: 80vh;
      width: auto;
    }
    
    .bundle-component, .bundle-component-main {
      display: block;
      margin-bottom: 0;
      margin-top: 0;
    }
  
    .bundle-picker {
      margin: 1rem auto 0;
      padding: 0;
      border: none;
    }
  
    header.PageHeader.bundle {
      width: 100%; 
    }
    
    .bundle-component-sidebar {
      max-width: 100%;
      width: auto;
    }
  
    .bundle-instructions {
      order: 3;
    }
  
    .bundle-product-list {
      /*height: 40vh !important;*/
      overflow-y: hidden;
      overflow-x: scroll;
      flex-direction: column;
      justify-content: flex-start;
      align-content: flex-start;
    }
  
    .rte .bundle-product-item-title {
    }
  
    h1.SectionHeader__SubHeading.Heading.u-h1 {
      font-size: 1.2rem;
      /*font-weight: bold;*/
    }
  
    #bundle-picker-modal-item-subtitle, #bundle-picker-modal-item-title {
      font-size: 1rem;
    }
  
    #bundle-picker-modal-item-cta-label {
      font-size: .8rem;
    }
  
    #bundle-picker-modal-variant-title {
      font-size: 1rem;
    }
  
    .bundle-picker-modal-header-info {
      padding-left: 2rem;
    }
  
    .bundle-picker-modal-header-close .modal-close-toggle {
      min-width: 1rem;
    }
  
    .bundle-preview-item-footer {
      padding: 0 0 0.5rem;
    }

    .bundle-product-item-constraint {
      font-size: .7rem;
    }

    .bundle-share {
      margin-top: 1rem;
    }
  }