/** Shopify CDN: Minification failed

Line 189:30 Expected ")" to end URL token

**/
/* product title + rating */

.main-product .product__title span {
    margin-bottom: 6px;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 20px;
}

.main-product .product__mobile-rating-title {
    width: 100%;
    display: none;
}

@media screen and (max-width: 749px) {
    .main-product .product__mobile-rating-title {
        display: block;
        margin-top: 1em;
    }

    .product__info-wrapper .product__rating-price,
    .product__info-wrapper .product__title {
        display: none;
    }
}

/* forever wear bundle action */
.fw-bundle-action {
    margin-top: 2rem;
}

.fw-bundle-action h3 {
    font-family: 'suisseworks-semibold';
    font-size: 20px;
    letter-spacing: 1px;
}

/* kit toggle */

.fw-bundle-kit-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

.fw-bundle-kit-select .fw-bundle-kit-toggle {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    position: relative;
    width: 100%;
    border: 2px solid black;
}

.fw-bundle-kit-select .fw-bundle-kit-toggle:hover {
    cursor: pointer;
}

.fw-bundle-kit-select .fw-bundle-kit-toggle p {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
}

@media screen and (max-width: 749px) {
    .fw-bundle-kit-select .fw-bundle-kit-toggle p {
        font-size: 14px;
    } 
}

.fw-bundle-kit-select .fw-bundle-kit-toggle.active {
    background: black;
    color: white;
}

.fw-bundle-kit-select-pill {
    padding: .5rem 1rem;
    background: #FFDAC2;
    color: black !important;
    border-radius: 16px;
    font-size: 14px;

    position: absolute;
    left: 10px;
    top: -20px;
}

/* atc button */
.fw-bundle-atc,
.fw-bundle-atc-modal-trigger {
    margin-top: 2rem;
    background: #FAC8A7;
}

.fw-bundle-atc-modal-trigger {
    display: none;
}

.fw-bundle-atc-modal-trigger.active {
    display: block;
}

.fw-bundle-atc:disabled {
    display: none;
    color: grey;
    border-color: grey;
    cursor: not-allowed;
    background: white;
}

.fw-bundle-atc::before,
.fw-bundle-atc::after,
.fw-bundle-atc-modal-trigger::before,
.fw-bundle-atc-modal-trigger::after {
    display: none;
}

/* swatches */

.fw-bundle-swatches {
    display: none;
    gap: 10px;
}

.fw-bundle-swatches .fw-bundle-swatch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;

    border-radius: 50%;
    position: relative;
}

@media screen and (max-width: 749px) {
    .fw-bundle-swatches .fw-bundle-swatch {
        width: 55px;
        height: 55px;
    }
}

.fw-bundle-swatches .fw-bundle-swatch:hover {
    cursor: pointer;
}

.fw-bundle-swatches .fw-bundle-swatch .fw-bundle-swatch-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 17px;

    background: #DADADA;
    border-radius: 50%;
    border: 0;
    padding: 0;

    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: scale 0.3s linear;
    -moz-transition: scale 0.3s linear;
    -ms-transition: scale 0.3s linear;
    -o-transition: scale 0.3s linear;
    transition: scale 0.3s linear;
}

.fw-bundle-swatches .fw-bundle-swatch .fw-bundle-swatch-remove:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.fw-bundle-swatches .fw-bundle-swatch[data-bg-image=""] {
    background: #0A0A0A33;
}

.fw-bundle-swatches .fw-bundle-swatch[data-bg-image=""] .fw-bundle-swatch-remove {
    display: none;
}

.fw-bundle-swatches .fw-bundle-swatch:not([data-bg-image=""]) {
    background-image: url(attr(data-bg-image));
    background-position: center;
    background-size: contain;
}

.fw-bundle-swatches.active {
    display: flex;
}

.fw-bundle-swatches .fw-bundle-swatch span {
    font-size: 24px;
    font-family: 'suisseworks';
    font-weight: 700;
    color: white;
    display: none;
}

.fw-bundle-swatches .fw-bundle-swatch[data-bg-image=""] span {
    display: block;
}

/* modal */

#fw-modal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fw-modal__dialog {
    max-width: 1000px;
    width: 100%;
    max-height: 58rem;
    margin: 0 5rem;
    background: white;
    display: flex;
    position: relative;
}

.fw-modal__dialog .fw-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: 0;
    padding: 0;
}

.fw-modal__dialog .fw-modal-close:hover {
    cursor: pointer;
}

.fw-modal__dialog .fw-modal__media {
    width: 52%;
    display: flex;
}

.fw-modal__dialog .fw-modal__action {
    width: 45%;
    padding: 3rem;
}

@media screen and (max-width: 749px) {
    #fw-modal.product-popup-modal[open] {
        z-index: 99999999;
    }

    .fw-modal__dialog {
        flex-wrap: wrap;
        position: absolute;
        top: 0;
        height: unset;
        max-height: unset;
    }

    .fw-modal__dialog .fw-modal-close {
        right: 20px;
        top: 20px;
        z-index: 1;
    }

    .fw-modal__dialog .fw-modal__media {
        width: 100%;
    }
    
    .fw-modal__dialog .fw-modal__action {
        width: 100%;
        padding: 1.5rem 0;
        padding-bottom: 5rem;
    }

    .fw-modal__dialog .fw-modal__action > * {
        padding: 0 3rem;
    }
}

.fw-modal__media-carousel-wrap {
    position: relative;
    width: 100%;
    background: #0A0A0A33;
}

.fw-modal__media-carousel-wrap .fw-modal__loading-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fw-modal__media-carousel-wrap .fw-modal__loading-spinner svg {
    width: 100px;
    height: 100px;
}

.fw-modal__media-carousel {
    visibility: hidden;
    aspect-ratio: 1 / 1;
    margin-top: 60px;
}

.fw-modal__media-carousel:not(.slick-initialized) {
    aspect-ratio: 1 / 1;
}

.fw-modal__media-carousel-wrap.initialized .fw-modal__media-carousel {
    visibility: visible;
}

.fw-modal__media-carousel-wrap.initialized .fw-modal__loading-spinner {
    display: none;
}

.fw-modal__media-carousel .slick-list,
.fw-modal__media-carousel .slick-track,
.fw-modal__media-carousel .slick-slide > div,
.fw-modal__media-carousel-slide {
    height: 100%;
}

.fw-modal__media-carousel-slide {
    width: 100%;
}

.fw-modal__media-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fw-modal__media-carousel .fw-modal-media-control {
    position: absolute;
    background: transparent;
    z-index: 1;
    border: 0;
}

.fw-modal__media-carousel .fw-modal-media-control:hover {
    cursor: pointer;
}

.fw-modal__media-carousel .fw-modal-media-prev {
    top: 50%;
    left: 10px;
}

.fw-modal__media-carousel .fw-modal-media-next {
    top: 50%;
    right: 10px;
}

@media screen and (max-width: 749px) {
    .fw-modal__media-carousel {
        margin-bottom: 45px;
    }
}

/* modal collapsible option info */

.fw-modal__option-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #F9F8F3;
    z-index: 1;
}

/* toggle */

.fw-modal__option-info .fw-modal-toggle-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.fw-modal__option-info .fw-modal-toggle-wrap h3 {
    font-family: 'suisseworks-semibold';
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fw-modal__option-info .fw-modal-toggle {
    background: none;
    border: 0;
    padding: 0;
    transition: transform 0.1s linear;
}

.fw-modal__option-info .fw-modal-toggle:hover {
    cursor: pointer;
}

@media screen and (max-width: 749px) {
    .fw-modal__option-info {
        top: unset;
        bottom: 0;
    }

    .fw-modal__option-info .fw-modal-toggle-wrap h3 {
        font-size: 16px;
    }

    .fw-modal__option-info .fw-modal-toggle-wrap svg {
        width: 14px;
        transform: rotate(180deg);
    }
}

/* collapsible info */

.fw-modal-collapsible {
    transition: max-height 0.5s linear;
    max-height: 0px;
    overflow: hidden;
}

.fw-modal-collapsible p {
    margin: 0;
    padding: 0 3rem;
    margin-bottom: 10px;
}

.fw-modal-vp-row {
    display: flex;
    gap: 15px;

    padding: 0 3rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.fw-modal-vp {
    display: flex;
    align-items: center;
}

/* collapsible state */

.fw-modal__option-info.expanded .fw-modal-toggle  {
    transform: scaleY(-1);
}

.fw-modal__option-info.expanded .fw-modal-collapsible {
    max-height: 800px;
}

/* modal media */

/* modal-action - options */

.fw-modal__action h3 {
    font-family: 'suisseworks-semibold';
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom:1rem;
}

.fw-modal-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: .75rem;
    row-gap: 1rem;
}

.fw-modal-options {
    max-width: 350px;
}

.fw-modal-options .fw-modal-option {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.fw-modal-options .fw-modal-option[data-product-available="false"]::before {
    content: "SOLD OUT";
    font-family: 'suisseworks', serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    aspect-ratio: 1 / 1;

    border-radius: 50%;
    padding: 1em;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:rgba(0, 0, 0, 0.7);
    color: white;
}

.fw-modal-options .fw-modal-option:hover {
    cursor: pointer;
}

.fw-modal-options .fw-modal-option .fw-selected-indicator {
    display: none;
    justify-content: center;
    align-items: center;
    background: black;
    position: absolute;
    inset: 0;
}

.fw-modal-options .fw-modal-option .fw-selected-indicator span {
    font-family: 'suisseworks-semibold';
    font-size: 24px;
    color: white;
}

.fw-modal-options .fw-modal-option img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.fw-modal-options .fw-modal-option.selected img {
    display: none;
}

.fw-modal-options .fw-modal-option.selected .fw-selected-indicator {
    display: flex;
}

.fw-modal-options .fw-modal-option.active::after {
    border: 2px solid black;
    content: "";
    aspect-ratio: 1 / 1;

    border-radius: 50%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 749px) {
    .fw-modal-options {
        max-width: unset;
        overflow-x: scroll;
        display: flex;
        padding-right: 0;
    }

    .fw-modal-options .fw-modal-option {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
    }
}

/* modal action - buttons */

.fw-modal-action {
    margin-top: 3rem;
}

.fw-modal-action button {
    display: none;
}

.fw-modal-action button.active {
    display: flex;
}

.fw-modal-add-option,
.fw-modal-atc {
    background: #FAC8A7;
}

.fw-modal-atc {
    background: #ffb990;
}

.fw-modal-atc:disabled,
.fw-modal-oos:disabled {
    background: white;
    color: grey;
    border-color: grey;
    cursor: not-allowed;
}

.fw-modal-remove-option {
    background: #FFFFFF;
}