/** Shopify CDN: Minification failed

Line 737:28 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:a-plus-carousel (INDEX:1) */
.a-star-container {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 100px;
        padding-right: 100px;
    }

    .a-star-thumbs {
        background-color: transparent !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 10 !important;
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .a-star-thumbs .swiper-wrapper {
        justify-content: space-around !important;
    }

    .a-star-thumbs .swiper-slide {
        width: auto !important;
        padding: 18px 16px !important;
        color: white !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 1.4em !important;
        white-space: nowrap !important;
        cursor: pointer !important;
        opacity: 0.6 !important;
        transition: opacity 0.3s ease !important;
    }

    .a-star-thumbs .swiper-slide-thumb-active {
        opacity: 1 !important;
        text-decoration: underline !important;
    }

    .a-star-carousel {
        width: 100% !important;
    }

    /* Desktop: show desktop carousel, hide mobile */
    .a-star-carousel-desktop {
        display: block !important;
    }
    .a-star-carousel-mobile {
        display: none !important;
    }

    @media (max-width: 768px) {
        .a-star-container{
            padding-left: 14px !important;
            padding-right: 14px !important;
        }

        /* Mobile: show mobile carousel, hide desktop */
        .a-star-carousel-desktop {
            display: none !important;
        }
        .a-star-carousel-mobile {
            display: block !important;
        }

        /* Mobile: thumbs as separate bar above images */
        .a-star-thumbs {
            position: relative !important;
            background-color: black !important;
            padding: 0 !important;
        }

        .a-star-thumbs .swiper-wrapper {
            justify-content: flex-start !important;
        }

        .a-star-thumbs .swiper-slide {
            padding: 12px 16px !important;
        }
    }
/* END_SECTION:a-plus-carousel */

/* START_SECTION:a-plus-old (INDEX:2) */
.a-plus-old {
        padding: 50px 100px 70px;
    }

    .a-plus-old__hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-bottom: 50px;
    }

    .a-plus-old__main-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .a-plus-old__main-title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 16px;
    }

    .a-plus-old__main-description {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .a-plus-old__cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .a-plus-old__card {
        display: flex;
        flex-direction: column;
        border: 1px solid #e2e2e2;
        padding: 30px;
        background: #fff;
    }

    .a-plus-old__card-image {
        width: auto;
        max-width: 100%;
        height: 120px;
        object-fit: contain;
        margin: 0 auto 30px;
        display: block;
    }

    .a-plus-old__card-title {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        margin: 0 0 10px;
        color: #000;
    }

    .a-plus-old__card-description {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 749px) {
        .a-plus-old {
            padding: 35px 14px 50px;
        }

        .a-plus-old__hero {
            gap: 20px;
            margin-bottom: 30px;
        }

        .a-plus-old__main-title {
            font-size: 24px;
        }

        .a-plus-old__cards {
            grid-template-columns: 1fr;
        }

        .a-plus-old__card-image {
            height: 90px;
            margin-bottom: 20px;
        }
    }
/* END_SECTION:a-plus-old */

/* START_SECTION:a-plus-video (INDEX:3) */
#a-plus-video-section {
        padding-left: 100px;
        padding-right: 100px;
    }

    .a-plus-video__wrapper {
        position: relative;
        width: 100%;
        cursor: pointer;
    }

    .a-plus-video__thumbnail {
        width: 100%;
        height: auto;
        display: block;
    }

    .a-plus-video__thumbnail--desktop {
        display: block;
    }

    .a-plus-video__thumbnail--mobile {
        display: none;
    }

    .a-plus-video__play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.6);
        border: none;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .a-plus-video__play-btn:hover {
        background-color: rgba(0, 0, 0, 0.8);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .a-plus-video__play-btn svg {
        margin-left: 4px;
    }

    .a-plus-video__video {
        display: none;
        width: 100%;
        height: auto;
    }

    .a-plus-video__wrapper.is-playing .a-plus-video__thumbnail,
    .a-plus-video__wrapper.is-playing .a-plus-video__play-btn {
        display: none;
    }

    .a-plus-video__wrapper.is-playing .a-plus-video__video {
        display: block;
    }

    @media (max-width: 768px) {
        #a-plus-video-section{
            padding-left: 14px;
            padding-right: 14px;
        }

        .a-plus-video__thumbnail--desktop {
            display: none;
        }

        .a-plus-video__thumbnail--mobile {
            display: block;
        }

        .a-plus-video__play-btn {
            width: 60px;
            height: 60px;
        }

        .a-plus-video__play-btn svg {
            width: 48px;
            height: 48px;
        }
    }
/* END_SECTION:a-plus-video */

/* START_SECTION:a-plus (INDEX:4) */
#a-plus-section {
    padding-left: 100px;
    padding-right: 100px;
  }

  #a-plus-section[hidden] {
    display: none !important;
  }

  .aplus__entry {
    width: 100%;
  }

  .aplus__entry + .aplus__entry {
    margin-top: 0;
  }

  .aplus__video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
  }

  .aplus__video-thumbnail,
  .aplus__video-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .aplus__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }

  .aplus__play-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .aplus__play-btn svg {
    margin-left: 4px;
  }

  .aplus__video {
    display: none;
    width: 100%;
    height: auto;
  }

  .aplus__video-wrapper.is-playing .aplus__video-thumbnail,
  .aplus__video-wrapper.is-playing .aplus__play-btn {
    display: none;
  }

  .aplus__video-wrapper.is-playing .aplus__video {
    display: block;
  }

  .aplus__carousel,
  .aplus__carousel-single {
    width: 100%;
  }

  .aplus__carousel .swiper-slide {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .aplus__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .aplus__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .aplus__nav:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .aplus__nav--prev {
    left: 20px;
  }

  .aplus__nav--next {
    right: 20px;
  }

  .aplus__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .aplus__carousel .aplus__carousel-pagination {
    line-height: 0;
  }

  .aplus__carousel .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #000;
    opacity: 0.29;
  }

  .aplus__carousel .swiper-pagination-bullet-active {
    background-color: #000;
    opacity: 1;
  }

  @media (max-width: 768px) {
    #a-plus-section {
      padding-left: 14px;
      padding-right: 14px;
    }

    .aplus__play-btn {
      width: 60px;
      height: 60px;
    }

    .aplus__play-btn svg {
      width: 48px;
      height: 48px;
    }

    .aplus__nav {
      width: 32px;
      height: 32px;
    }

    .aplus__nav--prev {
      left: 10px;
    }

    .aplus__nav--next {
      right: 10px;
    }
  }
/* END_SECTION:a-plus */

/* START_SECTION:flowbox-dynamic-tag-flow (INDEX:48) */
.flowbox-section {
        margin-bottom: 30px;
        background-color: #fff;
    }
    .flowbox-section-header {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .flowbox-tag-button.active {
        background-color: #221f20;
        color: #fff;
    }
    .flowbox-tag-button {
        padding: 11.5px 12px 7.5px;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        background: 0 0;
        color: #000;
        font-weight: normal;
        letter-spacing: 0;
        line-height: 21px;
        font-size: 14px;
        border-radius: 0;
        border: 1px solid #000;
    }
    .flowbox-section-title {
        text-transform: uppercase;
        font-size: 30px;
        font-weight: bold;
        line-height: 35px;
        text-align: center;
    }

    .flowbox-section-description {
        font-size: 14px;
        color: #616161;
        margin: auto;
        max-width: 648px;
        line-height: 21px;
    }
    .flowbox-section-constants {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 30px;
        border-bottom: 1px solid #e2e2e2;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .flowbox-content {
        background: #fafafa;
        padding-top: 70px;
    }

    @media (max-width: 767px) {
        .flowbox-section-constants {
            align-items: flex-start;
            flex-direction: column;
        }

        .flowbox-section-header {
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: flex-start;
            margin-left: -15px;
            margin-right: -14px;
            padding-left: 15px;
            padding-right: 15px;
        }

        .flowbox-section-header::-webkit-scrollbar {
            display: none;
        }

        .flowbox-tag-button {
            white-space: nowrap;
        }
    }
/* END_SECTION:flowbox-dynamic-tag-flow */

/* START_SECTION:help-center-hero (INDEX:56) */
.help-center-hero-container {
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 70px;
        background-color: #fff;
    }

    .help-center-hero-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .help-center-hero__image {
        width: 100%;
        height: auto;
    }

    .help-center-hero__image img {
        width: 100%;
        height: auto;
    }
    .help-center-hero__title {
        font-size: 30px;
        font-weight: bold;
    }
/* END_SECTION:help-center-hero */

/* START_SECTION:help-search (INDEX:59) */
.help-search-container {
        padding-top: 70px;
        padding-bottom: 70px;
        margin-bottom: 70px;
        border-top: 1px solid #e5e5e5;
        background-color: #fff;
    }

    .help-search-title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
    }

    .help-search-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .help-search-input-wrapper {
        position: relative;
        max-width: 778px;
        width: 100%;
    }

    .help-search-input {
        width: 100%;
        padding: 14px 50px 14px 16px;
        font-size: 14px;
        background-color: #fafafa;
        border-radius: 5px;
        outline: none;
        border: none;
    }

    .help-search-input::placeholder {
        color: #898a8a;
        font-size: 14px;
    }

    .help-search-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .help-search-requests {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .help-search-requests__title {
        font-size: 14px;
        color: #000;
        font-weight: normal;
    }

    .help-search-requests__items {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: 16px;
    }

    .help-search-requests__item {
        font-size: 14px;
        color: #616161;
    }

    .help-search-requests__more {
        max-width: 265px;
        width: 100%;
        padding: 12px 20px;
        background-color: #f5f5f5;
        color: #616161;
        font-size: 16px;
    }
/* END_SECTION:help-search */

/* START_SECTION:help-service (INDEX:61) */
.help-service-container {
        padding-top: 70px;
        padding-bottom: 70px;
        background-color: #fff;
    }
    .help-service__title {
        font-size: 30px;
        font-weight: bold;
    }

    .help-service-grid__container {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .help-service-block {
        cursor: pointer;
        text-align: center;
    }

    .help-service-block__image-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .help-service-block__image {
        width: 100%;
        height: auto;
        border: 1.5px solid transparent;
        transition: border-color 0.2s ease;
    }

    .help-service-block.selected .help-service-block__image {
        border: 1.5px solid black;
    }

    .help-service-block__checkbox {
        position: absolute;
        top: 8px;
        right: 8px;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .help-service-block.selected .help-service-block__checkbox {
        opacity: 1;
    }

    .help-service-block__title {
        margin-top: 10px;
        font-size: 16px;
        font-weight: normal;
        text-align: left;
        color: #000;
    }
/* END_SECTION:help-service */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-accordion-documentation (INDEX:207) */
.documentation-file-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    border-radius: 5px;
    position: relative;
    padding-left: 18px;
    padding-right: 18px;
    background-image: url({{'vigo-dotted-background.png'|asset_url}});
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: 15px;
}

.documentation-file-item p {
    margin-bottom: -4px;
}

.documentation-icons {
    display: flex;
    gap: 22px;
}

.documentation-set-title {
    color: black !important;
}

.register-text-doc {
    margin-top: 8px;
}

.register-text-doc a {
    color: black !important;
    font-weight: 500;
    text-decoration: none;
}
/* END_SNIPPET:product-accordion-documentation */