/** Shopify CDN: Minification failed

Line 321:39 Unexpected "{"

**/
.product-highlights-wrapper {
    display: grid;
    align-items: start;
}

.highlight-media {
    /* width: var(--highlight-media-width); */
    width: 500px;
    height: var(--highlight-media-width);
    margin-top: 14px;
}

.highlight-media .media {
    background: none;
}

.product-highlights-wrapper .heading-font {
    font-family: var(--body-font-family);
    color: #272E56;
    font-size: 20px;
    letter-spacing: 2.5px;
    line-height: 24px;
    font-weight: 600;
}

.highlight-info-wrapper .heading-font,
.highlight-info-wrapper .rte p {
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .highlight-info-wrapper .heading-font,
    .highlight-info-wrapper .rte p {
        text-align: center;
    }
}

.highlight-info-wrapper .rte {
    margin-top: 14px;
}

.highlight-info-three-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}

@media screen and (max-width: 1024px) {
    .highlight-info-three-wrapper {
        margin-top: 39px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.product-specification-icon {
    border: 1px solid #272E56;
    padding: 1px;
    border-radius: 100%;
}

.product-specifications-section .section-heading {
    color: #272E56;
}

.highlight-media-desc,
.product-highlights-wrapper .rte p {
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #272E56;
}

@media screen and (max-width: 1024px) {
    .highlight-media-desc,
    .product-highlights-wrapper .rte p {
        text-align: center;
        font-size: 14px;
        letter-spacing: 0.14px;
        line-height: 19px;
    }
}

.product-highlights-info {
    --highlight-info-width: calc(var(--pointer-line-size) / 2);
    position: relative;
    z-index: 1;
}

.pointer-line {
    height: 1px;
    background: #47679D;
}

.pointer-line.transparent {
    background: transparent;
}

.highlights-mediabox-inner {
    position: relative;
    height: 100%;
    display: flex;
    pointer-events: none;
}

.product-highlights-info-inner {
    position: relative;
    height: 100%;
    display: flex;
    pointer-events: none;
    justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
    .product-highlights-info-inner .info-wrap {
        max-width: 277px;
        width: 100%;
    }
}

.odd .product-highlights-info-inner {
    justify-content: center;
}

.highlight-mediabox {
    --highlight-media-width: 300px;
    pointer-events: auto;
    max-width: 100%;
    margin-top: 30px;
}

@media screen and (max-width: 1440px) {
    .highlight-mediabox {
        max-width: 100%;
    }

    .highlight-media {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .highlight-mediabox-desktop {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .highlight-mediabox-mobile {
        display: none;
    }
}

.odd .highlight-mediabox {
    transform-origin: right;
}

.even .highlight-mediabox {
    transform-origin: left;
}

.highlight-info {
    pointer-events: auto;
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
}

.highlight-info-three {
    margin-top: 130px;
}

@media screen and (max-width: 1024px) {
    .highlight-info-three {
        margin-top: 0;
    }
}

.highlight-info .rte>* {
    font-size: var(--text-xxs);
}

.media-wrap {
    position: absolute;
    /* top: var(--mediabox-offset-y); */
    top: 60%;
}

.product-highlights-media {
    border-radius: var(--card-radius);
}

@media (max-width:1440px) {

    .highlights-mediabox-inner,
    .product-highlights-info-inner {
        --pointer-line-size: 460px !important;
    }
}



@media (max-width:1024px) {
    .highlight-mediabox {
        --highlight-media-width: 110px;
    }

    .highlights-mediabox-inner,
    .product-highlights-info-inner {
        --pointer-line-size: 120px !important;
    }
}

@media (max-width:767px) {
    .pointer-line {
        display: none;
    }

    .media-wrap {
        z-index: 1;
    }

    .highlight-info {
        text-align: center;
        padding-top: 0;
        margin-top: 29px;
    }

    .product-highlights-inner.odd .media-wrap {
        left: 20px;
        top: 20px;
    }

    .product-highlights-inner.even .media-wrap {
        top: 20px;
        right: 20px;
    }

    .product-highlights-wrapper {
        gap: 20px;
    }
}


@media (min-width:768px) {
    .product-highlights-inner {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        transition: opacity 0.3s ease-in-out;
    }

    .product-highlights-inner:not(.active) {
        opacity: 0;
        pointer-events: none;
        user-select: none;
    }

    .product-highlights-inner.odd {
        grid-template-areas: "mediabox media info";
    }

    .product-highlights-inner.even {
        grid-template-areas: "info media mediabox";
    }

    .product-highlights-media {
        grid-area: media;
    }

    .product-highlights-mediabox {
        grid-area: mediabox;
        position: relative;
        z-index: 1;
    }

    .product-highlights-info {
        grid-area: info;
    }

    
    .product-highlights-info img {
        max-width: 60px;
        max-height: 60px;
    }

    .odd .highlights-mediabox-inner {
        justify-content: flex-end;
        left: var(--mediabox-offset-x);
    }

    .even .highlights-mediabox-inner {
        justify-content: flex-start;
        right: var(--mediabox-offset-x);
    }

    .odd .highlight-info {
        transform-origin: left;
        transform: translate(calc(500px * -1), 0);
    }

    .even .highlight-info {
        transform-origin: right;
        transform: translate(var(--highlight-info-width), 0);
    }

    .even.in-active .highlight-mediabox>*,
    .odd.in-active .highlight-info>* {
        -webkit-animation: slideOutRight 0.5s ease-in forwards;
        animation: slideOutRight 0.5s ease-in forwards;
    }

    .odd.in-active .highlight-mediabox>*,
    .even.in-active .highlight-info *> {
        -webkit-animation: slideOutLeft 0.5s ease-in forwards;
        animation: slideOutLeft 0.5s ease-in forwards;
    }

    .media-wrap .pointer-line {
        width: var(--pointer-line-size);
        max-width: var(--media-line-width);
    }

    .odd .media-wrap,
    .even .info-wrap {
        flex-direction: row-reverse;
    }

    .info-wrap {
        position: absolute;
        /* top: var(--info-offset-y); */
        top: 20%;
        left: auto;
        display: inline-flex;
        align-items: flex-start;
    }

    .info-wrap .pointer-line {
        width: var(--pointer-line-size);
        width: calc(var(--pointer-line-size) + var(--highlight-info-width)/2);
        max-width: var(--info-line-width);
    }

    .odd .product-highlights-info-inner {
        right: var(--info-offset-x);
        justify-content: flex-start;
    }

    .highlight-info {
        width: 500px;
        min-width: var(--highlight-info-width);
    }

    .even .product-highlights-info-inner {
        justify-content: flex-end;
        left: var(--info-offset-x);
    }
}