:root{
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
* {
    box-sizing: border-box;
}
.nt-lookbook-container {
    padding-top:  var(--nt-container-padding-top, 0px);
    padding-bottom:  var(--nt-container-padding-bottom, 0px);
}
.nt-popup-open {
    overflow: hidden !important;
}
.nt-lookbook-element {
    display: block !important;
}
.nt-lookbook-header {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: none !important;
}
.nt-lookbook-header.loaded {
    position: unset;
    opacity: 1;
    visibility: visible;
}
.nt-lookbook-header .nt-lookbook-heading {
    font-size: calc(var(--font-size-heading) * 2.4rem);
    line-height: 1.6;
    margin: 0 0 10px;
}

.nt-lookbook-header .nt-lookbook-sub_heading {
    font-weight: 400;
    margin-bottom: 30px;
    font-size: calc(var(--font-size-heading) * 1.4rem);
    margin: 0 0 10px;
}

.nt-lookbook-tooltip:not(.nt-preview-tooltip) {
    width: var(--nt-width-tooltip, 160px);
    --nt-background-tooltip: #FFF;
    --nt-color-title: #000;
    --tooltip-arrow: 8px;
    --tooltip-radius: 5px;
    --ratio-percent: 100%;
    font-size: 14px;
    line-height: 1.2;
    margin: 0 auto;
    z-index: 100010;
    position: absolute
}
.nt-preview-tooltip {
    --nt-background-tooltip: #FFF;
    --nt-color-title: #000;
    --tooltip-arrow: 8px;
    --tooltip-radius: 5px;
    --ratio-percent: 100%;
    border-radius: 5px; 
    margin: 0 auto;
    width: var(--nt-width-tooltip, 160px);
}
/* .nt-lookbook-spacing-collapse {
    --nt-tooltip-space: 0px;
}
.nt-lookbook-spacing-normal {
    --nt-tooltip-space: 10px;
} */
.nt-lookbook-item-box img,
.nt-preview-tooltip img,
.nt-lookbook-tooltip img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0
}

.nt-lookbook-tooltip-inner {
    background: var(--nt-background-tooltip);
    text-align: center;
    padding: 0;
    border-radius: var(--nt-border-radius-tooltip, 0px);
    color: var(--nt-color-title);
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}
.nt-lookbook-style-normal .nt-lookbook-tooltip-inner {
    padding: var(--nt-lookbook-tooltip-padding);
}
.nt-lookbook-tooltip-inner .nt-lookbook-tooltip-item-details, .nt-lookbook-tooltip-item-image img {
    border-radius: var(--nt-border-radius-tooltip, 0px);
    overflow: hidden;
}
.nt-lookbook-type-link {
    pointer-events: all;
    width: 100%;
    height: 100%;
    display: flex !important;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
}
.nt-lookbook-tooltip-inner::after {
    z-index: 2;
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    border: 8px solid transparent
}

.nt-lookbook-tooltip-placement-bottom .nt-lookbook-tooltip-inner::after {
    left: 50%;
    top: 0;
    border-top: 0;
    border-bottom-color: var(--nt-background-tooltip);
    transform: translate(-50%, -7px)
}

.nt-lookbook-tooltip-placement-top .nt-lookbook-tooltip-inner::after {
    left: 50%;
    bottom: 0;
    border-bottom: 0;
    border-top-color: var(--nt-background-tooltip);
    transform: translate(-50%, 7px)
}

.nt-lookbook-tooltip-placement-right .nt-lookbook-tooltip-inner::after {
    top: 50%;
    left: 0;
    border-left: 0;
    border-right-color: var(--nt-background-tooltip);
    transform: translate(-7px, -50%)
}

.nt-lookbook-tooltip-placement-left .nt-lookbook-tooltip-inner::after {
    top: 50%;
    right: 0;
    border-right: 0;
    border-left-color: var(--nt-background-tooltip);
    transform: translate(7px, -50%)
}

.nt-lookbook-tooltip.nt-lookbook-tooltip-placement-bottom,
.nt-lookbook-tooltip.nt-lookbook-tooltip-placement-top {
    left: 50%;
    transform: translate(-50%, var(--translate-top, 0))
}

.nt-lookbook-tooltip.nt-lookbook-tooltip-placement-right,
.nt-lookbook-tooltip.nt-lookbook-tooltip-placement-left  {
    top: 50%;
    transform: translatey(-50%)
}

.nt-lookbook-tooltip-placement-left {
    right: 100%
}

.nt-lookbook-tooltip-placement-right {
    left: 100%
}

.nt-lookbook-tooltip-item-title a {
    /* margin: 0 0 6px; */
    text-overflow: ellipsis;
    display: block;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    font-weight: bold;
    font-size: var(--nt-font-size-title);
    color: var(--nt-color-title);
    text-decoration: none;
}



.nt-lookbook-tooltip-item-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--nt-width-button, 100px);
    height: var(--nt-height-button, 50px);
    text-align: center;
    cursor: pointer;
    color: var(--nt-color-text);
    background-color: var(--nt-background-color);
    border-color: var(--nt-border-color);
    border-width: var(--nt-border-width, 0px);
    border-radius: var(--nt-border-radius);
    border-style: solid;
    padding: 2px 5px;
    text-align: center;
    text-decoration: none;
}
.nt-lookbook-tooltip-item-button span {
    text-overflow: ellipsis;
    display: block;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: nowrap;
}
.nt-lookbook-hotspot-image {
    display: flex;
    width: 80%;
    height: 80%;
    place-content: center;
    margin: 0px auto;
}
.nt-lookbook-tooltip-item-button:hover {
    width: var(--nt-width-button-hover, --nt-width-button);
    height: var(--nt-height-button-hover, --nt-height-button);
    color: var(--nt-color-text-hover, var(--nt-color-text));
    background-color: var(--nt-background-color-hover, var(--nt-background-color));
    border-color: var(--nt-border-color-hover, var(--nt-border-color));
    border-radius: var(--nt-border-radius-hover, var(--nt-border-radius));
}

.nt-lookbook-tooltip-item-detail-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    gap: var(--nt-gap-tooltip, 10px);
}
.nt-lookbook-style-collapse .nt-lookbook-tooltip-item-content {
    padding: 12px 16px;
}
.nt-lookbook-tooltip-item-content {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-item-detail-inner {
    flex-direction: row;
}

/* .nt-lookbook-tooltip-horizontal.nt-lookbook-spacing-collapse .nt-lookbook-tooltip-item-detail-inner {
    gap: 0px;
} */


.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-item-image img {
    height: 100%;
}
.nt-lookbook-tooltip-horizontal.nt-lookbook-style-collapse .nt-lookbook-tooltip-inner {
    padding: 0;
}
.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-item-image {
    height: var(--nt-lookbook-image-size, 160px);
}

.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-item-image img {
    width: var(--nt-lookbook-image-size, 160px);
    object-fit: cover;
}
.nt-lookbook-tooltip-item-image {
    display: flex;
}

.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-item-content {
    gap: 3px;
    gap: var(--nt-gap-tooltip, 3px);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nt-lookbook-tooltip-horizontal.nt-lookbook-tooltip {
    width: var(--nt-width-tooltip, 220px);
}

.nt-lookbook-tooltip-horizontal .nt-lookbook-tooltip-inner {
    text-align: left;
}




@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(2);
        transform: scale(2)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.nt-lookbook-wrapper {
    margin: 0 auto
}
.nt-lookbook-wrapper.splide__list {
    transition: .2s ease-in-out all;
}

.nt-lookbook-wrapper.nt-lookbook-layout--grid {
    display: grid;
    grid-template-columns: repeat(var(--nt-col-lg), 1fr);
    gap: var(--nt-spacing-layout)
}

/* .nt-lookbook-wrapper.nt-lookbook-layout--masonry {
    column-count: var(--nt-col-lg, 3);
    column-gap: var(--nt-spacing-layout, 10px);
} */

.nt-lookbook-layout--masonry .nt-lookbook-item {
    margin-bottom: var(--nt-spacing-layout)
}

 .nt-lookbook-layout--masonry.nt-col-1{
    column-count: 1;
    column-gap: var(--nt-spacing-layout, 10px);
}

.nt-lookbook-layout--masonry.nt-col-2{
   column-count: 2;
    column-gap: var(--nt-spacing-layout, 10px);
}

.nt-lookbook-layout--masonry.nt-col-3{
   column-count: 3;
    column-gap: var(--nt-spacing-layout, 10px);
}

.nt-lookbook-layout--masonry.nt-col-4{
   column-count: 4;
    column-gap: var(--nt-spacing-layout, 10px);
}

.nt-lookbook-layout--masonry.nt-col-5{
    column-count: 5;
    column-gap: var(--nt-spacing-layout, 10px);
}
.nt-lookbook-layout--masonry.nt-col-6{
    column-count: 6;
    column-gap: var(--nt-spacing-layout, 10px);
}

.nt-lookbook-wrapper.nt-lookbook-layout--list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--nt-spacing-layout)
}

.nt-lookbook-wrapper.nt-lookbook-preview-tablet {
    max-width: 100%;
    width: 800px;
    grid-template-columns: repeat(var(--nt-col-tl), 1fr)
}
.nt-lookbook-layout--list {
    grid-template-columns: 1fr !important;
}

.nt-lookbook-wrapper.nt-lookbook-preview-mobile {
    grid-template-columns: repeat(var(--nt-col-mb), 1fr)
}
@media (max-width: 1024px) {
    .nt-lookbook-wrapper.nt-lookbook-layout--grid:not(.nt-lookbook-preview) {
        grid-template-columns: repeat(var(--nt-col-tl), 1fr)
    }
    .nt-lookbook-layout--masonry.nt-col-tl-1:not(.nt-lookbook-preview) {
        column-count: 1;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-tl-2:not(.nt-lookbook-preview) {
        column-count: 2;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-tl-3:not(.nt-lookbook-preview) {
        column-count: 3;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-tl-4:not(.nt-lookbook-preview) {
        column-count: 4;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-tl-5:not(.nt-lookbook-preview) {
        column-count: 5;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    .nt-lookbook-layout--masonry.nt-col-tl-6:not(.nt-lookbook-preview) {
        column-count: 6;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
}
@media (max-width: 767px) {
    .nt-lookbook-wrapper.nt-lookbook-layout--grid:not(.nt-lookbook-preview) {
        grid-template-columns: repeat(var(--nt-col-mb), 1fr)
    }
    .nt-lookbook-layout--masonry.nt-col-mb-1:not(.nt-lookbook-preview) {
        column-count: 1;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-mb-2:not(.nt-lookbook-preview) {
        column-count: 2;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-mb-3:not(.nt-lookbook-preview) {
        column-count: 3;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-mb-4:not(.nt-lookbook-preview) {
        column-count: 4;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    
    .nt-lookbook-layout--masonry.nt-col-mb-5:not(.nt-lookbook-preview) {
        column-count: 5;
        column-gap: var(--nt-spacing-layout, 10px);
    }
    .nt-lookbook-layout--masonry.nt-col-mb-6:not(.nt-lookbook-preview) {
        column-count: 6;
        column-gap: var(--nt-spacing-layout, 10px);
    }
}

.nt-lookbook-item-box,
.nt-lookbook-item {
    position: relative
}
img[data-link] {
    cursor: pointer;
}
.nt-lookbook-item-box {
   pointer-events: all;
}
.nt-lookbook-ratio .nt-lookbook-item-box::before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    padding-bottom: var(--ratio-percent)
}

.nt-lookbook-ratio .nt-lookbook-ratio-square {
    padding-bottom: 100%
}

.nt-lookbook-ratio .nt-lookbook-ratio-landscape {
    padding-bottom: 75%
}

.nt-lookbook-ratio .nt-lookbook-ratio-portrait {
    padding-bottom: 125%
}

.nt-lookbook-item-box img,
.nt-lookbook-tooltip img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0
}

.nt-lookbook-ratio .nt-lookbook-item-box img {
    object-fit: cover;
    object-position: center center;
    display: block;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.nt-lookbook-hotspots-wrapper {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 100
}

.nt-lookbook-hotspot-item {
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
    width: var(--nt-pin-width, 20px);
    height: var(--nt-pin-height, 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    border: 2px solid var(--nt-pin-border-color);
    background-color: var(--nt-pin-background-color);
    border-radius: var(--nt-pin-border-radius, 0px)
}
area.nt-lookbook-hotspot-item {
    width: 0;
    height: 0;
}
.nt-lookbook-hotspot-item > span {
    color: var(--nt-pin-icon-color, 12px);
}
.nt-no-transform {
    transform: unset;
}
.nt-lookbook-hotspot-item.active {
    z-index: 2
}
.nt-lookbook-hotspot-item .nt-lookbook-hotspot-icon {
    width: 100%;
    height: 100%;
    display: block
}

.nt-lookbook-hotspot-item .nt-lookbook-hotspot-icon {
    text-align: center;
    color: var(--nt-pin-icon-color);
    display: block;
    font-size: 14px;
    height: 100%;
    position: absolute;
    width: 100%;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--nt-pin-icon-size);
    height: var(--nt-pin-icon-size);
}

.nt-lookbook-hotspot-item .nt-lookbook-hotspot-icon svg {
    fill: currentColor;
    stroke: currentColor;
    width: 100%;
    height: 100%;
}

.nt-lookbook-hotspot-animation-pulse::before,
.nt-lookbook-hotspot-animation-pulse::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    -webkit-animation: pulse 3s ease-in-out infinite both;
    animation: pulse 3s ease-in-out infinite both;
    background: var(--nt-pin-background-color);
    border-radius: var(--nt-pin-border-radius, 0px)
}


.nt-lookbook-tooltip-item-price {
    font-size: var(--nt-font-size-price-product, 14px);
    color: var( --nt-color-price-product, #000)
}

.nt-lookbook-tooltip-item-heading {
    font-size: var(--nt-font-size-heading, 20px);
    color: var(--nt-color-heading, #000);
    line-height: normal;
}
.nt-lookbook-tooltip-item-description {
    word-wrap: break-word;
    font-size: var(--nt-font-size-description-product, 14px);
    color: var(--nt-color-description-product, #000);
    line-height: normal;
}
.nt-lookbook-tooltip-item-content {
    font-size: var(--nt-font-size-content, 14px);
    color: var(--nt-color-content, #000);
    line-height: normal;
}
.nt-lookbook-tooltip-item-button-wrapper {
    display: flex;
    justify-content: var(--nt-button-align, center);
}

.nt-lookbook-ratio .nt-lookbook-tooltip-item-image img,.nt-lookbook-tooltip-vertical .nt-lookbook-tooltip-item-image a, .nt-lookbook-tooltip-vertical .nt-lookbook-tooltip-item-image img {
    width: 100%;
    height: 100%;
}
.nt-lookbook-tooltip-vertical.nt-lookbook-ratio .nt-lookbook-tooltip-item-image img {
    position: absolute;
}
.nt-lookbook-ratio .nt-lookbook-tooltip-item-image {
    position: relative;
}
.nt-lookbook-ratio .nt-lookbook-tooltip-item-image a {
    position: absolute;
    width: 100%;
    height: 100%;
}
.nt-lookbook-lightbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    overflow: hidden;
    text-indent: -999px;
    display: block;
}
.nt-lookbook-popup {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, .4);
    overflow-y: auto;
    overflow-x: hidden;
}
.nt-lookbook-popup-overlay {
    display: block !important;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.nt-lookbook-container-popup {
    pointer-events: none;
    max-width: 80vw;
    margin: 0 auto;
    height: auto;
}
/* .nt-lookbook-container-popup .nt-lookbook-item-box {
    height: 100%;
    display: flex;
    align-items: center;
} */

.nt-lookbook-container-popup .nt-lookbook-item-box img {
   /* height: 100%; */
   /* max-height: 95vh; */
   object-fit: cover;
}
.nt-lookbook-popup .nt-lookbook-item {
    /* overflow-y: auto; */
    display: flex;
    align-items: center;
    height: fit-content;
    justify-content: center;
}
.nt-lookbook-popup-wrapper {
    max-width: var(--width-popup, 600px);
    position: relative;
    height: calc(100vh - 3.5rem);
    margin: 1.75rem auto;
    background: transparent;
    position: relative;
    width: auto;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.nt-lookbook-popup-wrapper .splide__arrows.splide__arrows--ltr{
    pointer-events: auto;
}
.splide__arrows.splide__arrows--ltr{
    pointer-events: auto;
}
.nt-close {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
.nt-close span {
    display: flex;
}
.nt-close svg {
    width: 20px;
    fill: #fff;
}
.nt-lookbook-tooltip-backdrop {
    display: block !important;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: transparent;
    inset: 0;
}
.nt-lookbook-tooltip-fake {
    width: var(--nt-width-tooltip, 160px);
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: -1;
}
.nt-lookbook-popup-body {
    position: relative;
    flex: 1 1 auto;
    overflow-y: auto;
}
.nt-lookbook-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    background-clip: padding-box;
    border-radius: .3rem;
    outline: 0;
    max-height: 100%;
}
.nt-navigation-arrows {
    position: fixed;
    width: var(--width-popup);
    top: 50%;
    left: calc((100vw - var(--width-popup)) / 2);
    display: flex;
    justify-content: space-between;
}
.nt-navigation__arrow {
    pointer-events: all;
    -ms-flex-align: center;
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.nt-navigation__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em
}

.nt-navigation__arrow:hover:not(:disabled) {
    opacity: .9
}

.nt-navigation__arrow:disabled {
    opacity: .3
}

.nt-navigation__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.nt-navigation-prev {
    left: -30px
}

.nt-navigation-prev svg {
    transform: scaleX(-1)
}

.nt-navigation-next {
    right: -30px
}

.nt-navigation.is-focus-in .nt-navigation__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}
.nt-navigation__arrows--rtl .nt-navigation-prev {
    left: auto;
    right: 1em
}

.nt-navigation__arrows--rtl .nt-navigation-prev svg {
    transform: scaleX(1)
}

.nt-navigation__arrows--rtl .nt-navigation-next {
    left: 1em;
    right: auto
}

.nt-navigation__arrows--rtl .nt-navigation-next svg {
    transform: scaleX(-1)
}

.nt-navigation__arrows--ttb .nt-navigation__arrow {
    left: 50%;
    transform: translate(-50%)
}

.nt-navigation__arrows--ttb .nt-navigation-prev {
    top: 1em
}

.nt-navigation__arrows--ttb .nt-navigation-prev svg {
    transform: rotate(-90deg)
}

.nt-navigation__arrows--ttb .nt-navigation-next {
    bottom: 1em;
    top: auto
}

.nt-navigation__arrows--ttb .nt-navigation-next svg {
    transform: rotate(90deg)
}
