.SisleyER-quickshop {
    display: none !important;
}

/*-------------------------------------*/
/*------------ MAIN CONTAINER ---------*/
/*-------------------------------------*/
.SisleyER-Experience {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 100;
    --PLAY-FAIR-FONT: 'Playfair Display', serif;
    --HELVETICA-NEUE-LIGHT-FONT: 'HelveticaNeueLTW05-45Light';
    --HELVETICA-NEUE-BOLD-FONT: 'HelveticaNeueLTW05-75Bold';
    --MARGIN-ITEM: 30px;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 30000;
}

.SisleyER-Experience *[role="button"]:visited,
.SisleyER-Experience *[role="button"]:active,
.SisleyER-Experience *[role="button"]:focus {
    outline: none;
    box-shadow: none;
}

.SisleyER-Experience * {
    -moz-user-select: none;
    /* Firefox */
    -webkit-user-select: none;
    /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none;
    /* Internet explorer depuis la version 10 et Edge */
    user-select: none;
    /* Propriété standard */
}

.SisleyER-Experience span {
    display: inline-block;
    /* tiret insecable*/
}

@media(max-width:1023px) {
    .SisleyER-Experience {
        --MARGIN-ITEM: 16px;
    }
}

.SisleyER-Experience[data-opened="0"] {
    display: none;

}

.SisleyER-Experience[data-opened="1"] {
    display: block;
    animation: SlideUpExperience ease-in-out 0.5s;
}

.SisleyER-Experience[data-opened="1"][data-noanim="1"] {
    display: block;
    animation: none !important;
}

@keyframes SlideUpExperience {
    0% {
        height: 0px;
    }

    100% {
        height: 100vh;
    }
}

@media(max-width:1023px) {
    .SisleyER-Experience {
        overflow-y: scroll;
    }
}

/*-------------------------------------*/
/*--------- HEADER NAVIGATION ---------*/
/*-------------------------------------*/
.SisleyER-Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    padding: var(--MARGIN-ITEM) 0;
    /* 
    padding: var(--MARGIN-ITEM);  
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    */

    box-sizing: border-box;
    align-items: center;
}

.SisleyER-Header__back {
    font-family: var(--PLAY-FAIR-FONT);
    text-transform: uppercase;
    font-size: 15px;
    line-height: 20px;
    padding-left: 40px;
    height: 20px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: block;
    opacity: 0;
}

.SisleyER-Header__back::before {
    content: " ";
    background-image: url(./assets/Interface/arrow-back.svg);
    width: 20px;
    height: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    transition: transform ease-in-out 0.2s;
}

.SisleyER-Header__back:hover::before {
    transform: translateX(-10px);
}

.SisleyER-Header__back:active::before {
    transform: translateX(-15px);
}

.SisleyER-Header__back[data-display="0"] {
    display: none;
}

.SisleyER-Header__back[data-display="1"] {
    animation: btnFadeIn ease-in-out 1s both;
    animation-delay: 1.5s;
}

@keyframes btnFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.SisleyER-Header__close {
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 0;
}

.SisleyER-Header__close:hover {
    background-color: #fff;
}

.SisleyER-Header__close::before {
    content: " ";
    background-image: url(./assets/Interface/cross.svg);
    width: 10px;
    height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    transform: rotate(0deg);
}

.SisleyER-Header__close:hover::before {
    filter: invert(1);
    transform: rotate(180deg);
}

.SisleyER-Header__logo {
    display: flex;
    justify-content: center;
    position: absolute;
    top: var(--MARGIN-ITEM);
    left: calc(50% - 150px);
    top: calc(50% - 16px);
    width: 300px;
    cursor: pointer;
}

@media(max-width:1023px) {
    .SisleyER-Header__back {
        font-size: 0;
    }

    .SisleyER-Header__logo {
        left: calc(50% - 40px);
        width: 80px;
    }
}

/*-------------------------------------*/
/*--------- CONTENT SCREEN    ---------*/
/*-------------------------------------*/
.SisleyER-Pano {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/*****blur screen for popin opening*****/
.SisleyER-Experience[data-blur="1"] .SisleyER-Pano[data-opened="1"] {
    filter: blur(5px);
}

.SisleyER-Experience[data-blur="1"] .SisleyER-Header {
    filter: blur(2px);
}

/******screen toggle state ****/


.SisleyER-Pano[data-opened="1"] {
    display: block;
}

.SisleyER-Pano[data-opened="0"] {
    visibility: hidden;
    height: 100vh;
    overflow: hidden;
}

.SisleyER-Pano[data-depth="1"],
.SisleyER-Pano[data-depth="2"] {
    overflow: hidden;
}

@media (max-width:1023px) {
    .SisleyER-Pano {
        overflow: hidden;
        height: auto;
        min-height: 143.8vw;
    }
}

@media (max-width:819px) {
    .SisleyER-Pano {
        min-height: 133.3vw;
    }
}

@media (max-width:761px) {
    .SisleyER-Pano {
        min-height: 177vw;
    }
}

/*-------------------------------------*/
/*--------- FINAL BLOCK       ---------*/
/*-------------------------------------*/
.SisleyER-Pano[data-depth="4"][data-opened="1"] {
    animation: fadeIn ease-in-out 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*-------------------------------------*/
/*--------- CONTENT BACKGROUND --------*/
/*-------------------------------------*/
.SisleyER-background {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    object-fit: cover;
    object-position: top center;
}

@media(max-width:1023px) {
    .SisleyER-background {
        width: 100vw;
        height: 100%;
        top: 0;
    }
}

/*-------------------------------------*/
/*--------- VIDEO BACKGROUND ----------*/
/*-------------------------------------*/

.SisleyER-video {
    position: absolute;
    display: block;
    z-index: 2;
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100vw;
    height: 56.25vw;
}

.SisleyER-video>div {
    height: 100%;
}

.SisleyER-video flowplayer-ui {
    display: none !important;
}


@media (max-aspect-ratio: 16/9) {
    .SisleyER-video {
        width: 177.77vh;
        height: 100vh;
    }
}


@media (max-width:1023px) {
    .SisleyER-video {
        width: 100vw;
        height: auto;
    }
}

/*-------------------------------------*/
/*--------- CONTENT BLOCK    ----------*/
/*-------------------------------------*/

.SisleyER-Content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    color: #fff;
    mix-blend-mode: normal;
}

.SisleyER-Content__baseline,
.SisleyER-Content__baselineFX {
    margin: 0;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 22px;
    line-height: 1em;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    mix-blend-mode: overlay;
    height: 22px;
    width: 600px;
    color: #fff;
    text-align: center;
}

.SisleyER-Content__baseline {
    opacity: 0;
}

.SisleyER-Content__baselineFX {
    position: absolute;
    left: calc(50% - 300px);
    z-index: 4;
    mix-blend-mode: overlay;

}

.SisleyER-Content__question {
    margin: 0;
    margin-top: 70px;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    max-width: 600px;
    text-align: center;
}

@media(max-width:1200px) {
    .SisleyER-Content {
        justify-content: flex-start;
        height: 100vh;
        padding-top: 116px;
        box-sizing: border-box;
    }
}

@media(max-width:1023px) {
    .SisleyER-Content {
        padding-top: 116px;
        padding-bottom: 116px;
        height: auto;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .SisleyER-Content__baseline,
    .SisleyER-Content__baselineFX {
        font-size: 20px;
    }

    .SisleyER-Content__question {
        margin-top: 50px;
        font-size: 26px;
        line-height: 34px;

        width: 57.43vw;
        min-width: 285px;
    }
}

@media(max-width:761px) {
    .SisleyER-Content {
        justify-content: flex-start;
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 60px;
    }
}

/*-------------------------------------*/
/*--------- ANSWER CIRCLES    ---------*/
/*-------------------------------------*/

.SisleyER-answers {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    --CIRCLE-RADIUS: 154px;
    gap: 111px;
    isolation: isolate;
}

.SisleyER-answers__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.SisleyER-answers__text {
    margin-top: 27px;
    color: #fff;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}



.SisleyER-answers__circle {
    width: var(--CIRCLE-RADIUS);
    height: var(--CIRCLE-RADIUS);
}

.SisleyER-answers__circle svg path {
    transition: 2s;
    d: path("M60,30c0,8.5-3.5,16.1-9.1,21.6C45.5,56.8,38.1,60,30,60c-9.2,0-17.5-4.2-23-10.8C2.6,44,0,37.3,0,30c0-8.7,3.7-16.6,9.7-22.1C15,3,22.2,0,30,0c9,0,17.1,4,22.6,10.3C57.2,15.5,60,22.4,60,30z");
}

.SisleyER-answers__circle svg:hover g {
    transform-origin: center center;
    animation: loopRotate linear 16s infinite;
}

@keyframes loopRotate {
    0% {
        transform: rotate(0deg)
    }

    10% {
        transform: rotate(180deg)
    }

    20% {
        transform: rotate(360deg)
    }

    20.01% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(200deg)
    }

    66% {
        transform: rotate(360deg)
    }

    66.01% {
        transform: rotate(0deg)
    }

    83% {
        transform: rotate(160deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.SisleyER-answers__circle svg:hover path {
    animation: deformShape linear 2s infinite;
}

@keyframes deformShape {
    0% {
        d: path("M60,30c0,8.5-3.5,16.1-9.1,21.6C45.5,56.8,38.1,60,30,60c-9.2,0-17.5-4.2-23-10.8C2.6,44,0,37.3,0,30c0-8.7,3.7-16.6,9.7-22.1C15,3,22.2,0,30,0c9,0,17.1,4,22.6,10.3C57.2,15.5,60,22.4,60,30z");

    }

    50% {
        d: path("M60,30c0,8.5-8.4,11-14,16.5C40.6,51.7,38.1,60,30,60c-9.2,0-14.4-5.9-19.9-12.5C5.7,42.3,0,37.3,0,30c0-8.7,5.1-14.8,11.1-20.3C16.4,4.8,22.2,0,30,0c9,0,13.4,6.7,18.9,13C53.5,18.2,60,22.4,60,30z");
    }

    100% {
        d: path("M60,30c0,8.5-3.5,16.1-9.1,21.6C45.5,56.8,38.1,60,30,60c-9.2,0-17.5-4.2-23-10.8C2.6,44,0,37.3,0,30c0-8.7,3.7-16.6,9.7-22.1C15,3,22.2,0,30,0c9,0,17.1,4,22.6,10.3C57.2,15.5,60,22.4,60,30z");

    }
}


.SisleyER-answers__circle-SAFARI {
    width: var(--CIRCLE-RADIUS);
    height: var(--CIRCLE-RADIUS);
    position: relative;
}

.SisleyER-answers__circle-SVG svg {
    width: var(--CIRCLE-RADIUS);
    height: var(--CIRCLE-RADIUS);
}

.SisleyER-answers__circle-SVG--hover {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    width: var(--CIRCLE-RADIUS);
    height: var(--CIRCLE-RADIUS);
}

.SisleyER-answers__circle-SAFARI:hover .SisleyER-answers__circle-SVG {
    visibility: hidden;
}

.SisleyER-answers__circle-SAFARI:hover .SisleyER-answers__circle-SVG--hover {
    visibility: visible;
}

.SisleyER-answers__circle-SAFARI:hover .SisleyER-answers__circle-SVG--hover g {
    transform-origin: center center;
    animation: loopRotate linear 8s infinite;
}


@media(max-width:1023px) {
    .SisleyER-answers {
        /*   margin-top: 30px;
        --CIRCLE-RADIUS: 15vw;
        gap: 30px;
        flex-direction: column;
        width: 57.43vw;*/
    }

    .SisleyER-answers {
        --CIRCLE-RADIUS: 134px;
        gap: 50px;
        padding-left: 50px;
        padding-right: 50px;
    }



}

@media(max-width:761px) {
    .SisleyER-answers {
        margin-top: 30px;
        --CIRCLE-RADIUS: 75px;
        gap: 30px;
        flex-direction: column;
        width: 340px;
    }

    .SisleyER-answers__circle-mobile {
        width: var(--CIRCLE-RADIUS);
        height: var(--CIRCLE-RADIUS);
        border-radius: 50%;
        overflow: hidden;
    }

    .SisleyER-answers__circle-mobile img {
        display: block;
        width: 100%;
    }

    .SisleyER-answers__item {
        width: 100%;
        flex-direction: row;
    }

    .SisleyER-answers__text {
        margin: 0px;
        margin-left: 30px;
        width: 100%;
        text-align: left;
        max-width: 135px;

    }
}

/*-------------------------------------*/
/*--------- ANIMATION BLOCK   ---------*/
/*-------------------------------------*/

#FX {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity ease-in-out 0.5s;
    overflow: hidden;
}

#FX[data-opened="1"] {
    opacity: 1;
    pointer-events: unset;
}

/*-------------------------------------*/
/*--------- FRAGRANCE BLOCK   ---------*/
/*-------------------------------------*/
.SisleyER-Content__fragrance {
    margin: 0;
    margin-top: 70px;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    max-width: 760px;
    text-align: center;
    /*font-style: italic;*/
}

.SisleyER-Content__fragrance-cta {
    margin: 0;
    margin-top: 70px;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    max-width: 760px;
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.SisleyER-Content__fragrance-reveal {
    position: absolute;
    pointer-events: none;
    z-index: -1;

}

.SisleyER-Content__fragrance-reveal[data-opened="2"] {
    top: 50% !important;
    left: 50% !important;
    transition: left ease-in-out 0.5s, top ease-in-out 0.5s;
}



.SisleyER-Content__fragrance-reveal div {
    --WIDTH-REVEAL: 380px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: var(--WIDTH-REVEAL);
    height: var(--WIDTH-REVEAL);
    top: 50%;
    left: 50%;
    position: absolute;
    transition: width ease-in-out 0.6s, height ease-in-out 0.6s;
    transform: translateX(-50%) translateY(-50%)
}

.SisleyER-Content__fragrance-reveal[data-opened="0"] div {
    width: 0;
    height: 0;
}


.SisleyER-Content__fragrance-reveal img {
    width: var(--WIDTH-REVEAL);
    height: var(--WIDTH-REVEAL);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    background-position: top center;
}

.SisleyER-Content__fragrance-reveal[data-opened="2"] div {
    transition: width ease-in-out 0.3s, height ease-in-out 0.3;
    width: 100vh;
    height: 100vh;
    pointer-events: none;
    border-radius: 200vh;
}

.SisleyER-Content__fragrance-reveal[data-opened="2"] div img {
    transition: width ease-in-out 0.3s, height ease-in-out 0.3s;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

@media(max-width:1023px) {
    .SisleyER-Content__fragrance {
        margin-top: 50px;
        font-size: 26px;
        line-height: 34px;
        width: 57.43vw;
        min-width: 285px;
    }

    .SisleyER-Content__fragrance-cta {
        margin-top: 30px;
        font-size: 26px;
        line-height: 34px;
        width: 57.43vw;
        min-width: 285px;
        display: inline-block;
        border-bottom: 0px;
        text-decoration: underline;
    }

}


/*-------------------------------------------*/
/*------- BOTTOM/LEFT PRODUCT  BLOCK  -------*/
/*-------------------------------------------*/
.SisleyER-Content__result {
    position: absolute;
    bottom: 70px;
    left: 70px;
    min-width: 290px;
    width: calc(33% - 70px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.SisleyER-Pano[data-opened="1"] .SisleyER-Content__result {
    animation: FadeInResult ease-in-out 0.5s both;
    animation-delay: 1.2s;
}

@keyframes FadeInResult {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.SisleyER-Content__result-intro {
    margin: 0;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
}

.SisleyER-Content__result-fragrance {
    margin: 0;
    margin-top: 15px;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    text-align: left;
}

.SisleyER-Content__result-description {
    margin: 0;
    margin-top: 15px;
    font-family: var(--HELVETICA-NEUE-LIGHT-FONT);
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: left;
}

.SisleyER-Content__result-details {
    margin: 0;
    margin-top: 26px;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    margin-bottom: 15px;
}

@media(max-width:1023px) {

    .SisleyER-Content__result {
        position: relative;
        bottom: auto;
        left: auto;
        order: 2;
        padding-bottom: 10px;
        width: 57.43vw;
        min-width: 290px;
    }
}

@media(max-width:819px) {
    .SisleyER-Content__result {
        width: 45.94vw;
    }
}

/*----------------------------------*/
/*------- LEARN MORE BUTTON   ------*/
/*----------------------------------*/

.SisleyER-Content__learn-more {
    margin: 0;
    margin-top: 26px;
    margin-bottom: 15px;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    position: absolute;
    bottom: 70px;
}

@media(max-width:1023px) {
    .SisleyER-Content__learn-more {
        position: relative;
        margin-top: 20px;
        order: 4;
        bottom: auto;
    }
}

@media(max-width:1023px) {
    .SisleyER-Content__learn-more {
        margin-top: 60px;
    }
}

@media(max-width:761px) {
    .SisleyER-Content__learn-more {
        margin-top: 60px;
    }
}

/*----------------------------------*/
/*------- THREE CARDS BLOCK  ------*/
/*----------------------------------*/
.SisleyER-Content__cards {
    width: 50vh;
    height: 50vh;
}

.SisleyER-Pano[data-opened="1"] .SisleyER-Content__cards {
    animation: FadeInCards ease-in-out 0.8s both;
    animation-delay: 0.3s;
}

@keyframes FadeInCards {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.SisleyER-Content__card-item {
    --CARD-WIDTH: 402px;
    --CARD-HEIGHT: 466px;
    --CARD-WIDTH: 40.2vh;
    --CARD-HEIGHT: 46.6vh;
    width: var(--CARD-WIDTH);
    height: var(--CARD-HEIGHT);
    border-radius: calc(0.05*var(--CARD-WIDTH));
    overflow: hidden;
    /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);*/
    position: absolute;
    left: calc(50% - var(--CARD-WIDTH)*0.5);
    top: calc(50% - var(--CARD-HEIGHT)*0.5);
    transition: transform ease-out 0.6s;
    cursor: pointer;
}



.SisleyER-Content__card-item[data-anim="1"] {
    transition: transform ease-in 0.28s;
}

.SisleyER-Content__card-item img {
    width: 100%;
    display: block;
}

.SisleyER-Content__card-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    opacity: 0;
}

.SisleyER-Content__card-video flowplayer-ui {
    display: none;
}

/****************/
.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="1"] {
    z-index: 3;
}

.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="1"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="1"]:hover {
    transform: scale(1);
}

.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="2"] {
    transform: translateX(45%) scale(0.57) rotate(6deg);
    z-index: 2;
}


.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="2"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="2"]:hover {
    transform: translateX(45%) scale(0.77) rotate(6deg);
}

.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="3"] {
    transform: translateX(-50%) scale(0.55) rotate(-15deg);
    z-index: 1;
}

.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="3"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="3"]:hover {
    transform: translateX(-50%) scale(0.75) rotate(-15deg);
}

/****************/
.SisleyER-Content__cards[data-pos="1"][data-direction="right"] .SisleyER-Content__card-item[data-pos="2"] {
    z-index: 1;
}

.SisleyER-Content__cards[data-pos="1"][data-direction="right"] .SisleyER-Content__card-item[data-pos="3"] {
    z-index: 2;
}

/****************/
.SisleyER-Content__cards[data-pos="1"][data-anim="1"] .SisleyER-Content__card-item[data-pos="1"] {
    transform: scale(0.8);
}

.SisleyER-Content__cards[data-pos="1"][data-anim="1"] .SisleyER-Content__card-item[data-pos="2"] {
    transform: translateX(95%) scale(0.57) rotate(16deg);
}

.SisleyER-Content__cards[data-pos="1"][data-anim="1"] .SisleyER-Content__card-item[data-pos="3"] {
    transform: translateX(-90%) scale(0.55) rotate(-25deg);
}

/****************/
.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="1"] {
    transform: translateX(-50%) scale(0.55) rotate(-15deg);
    z-index: 1;
}

.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="1"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="1"]:hover {
    transform: translateX(-50%) scale(0.75) rotate(-15deg);
}

.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="2"] {
    z-index: 3;
}

.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="2"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="2"]:hover {
    transform: scale(1);
}

.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="3"] {
    transform: translateX(45%) scale(0.57) rotate(6deg);
    z-index: 2;
}

.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="3"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="3"]:hover {
    transform: translateX(45%) scale(0.77) rotate(6deg);
}

/****************/
.SisleyER-Content__cards[data-pos="2"][data-direction="right"] .SisleyER-Content__card-item[data-pos="1"] {
    z-index: 2;
}

.SisleyER-Content__cards[data-pos="2"][data-direction="right"] .SisleyER-Content__card-item[data-pos="3"] {
    z-index: 1;
}

/****************/

.SisleyER-Content__cards[data-pos="2"][data-anim="1"] .SisleyER-Content__card-item[data-pos="1"] {
    transform: translateX(-90%) scale(0.55) rotate(-25deg);
}

.SisleyER-Content__cards[data-pos="2"][data-anim="1"] .SisleyER-Content__card-item[data-pos="2"] {
    transform: scale(0.8);
}

.SisleyER-Content__cards[data-pos="2"][data-anim="1"] .SisleyER-Content__card-item[data-pos="3"] {
    transform: translateX(95%) scale(0.57) rotate(16deg);
}

/****************/
.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="1"] {
    transform: translateX(45%) scale(0.57) rotate(6deg);
    z-index: 2;
}

.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="1"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="1"]:hover {
    transform: translateX(45%) scale(0.77) rotate(6deg);
}

.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="2"] {
    transform: translateX(-50%) scale(0.55) rotate(-15deg);
    z-index: 1;
}

.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="2"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="2"]:hover {
    transform: translateX(-50%) scale(0.75) rotate(-15deg);
}

.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="3"] {
    z-index: 3;
}

.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="3"][data-animteasing="1"],
.SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="3"]:hover {
    transform: scale(1);
}

/****************/
.SisleyER-Content__cards[data-pos="3"][data-direction="right"] .SisleyER-Content__card-item[data-pos="1"] {
    z-index: 1;

}

.SisleyER-Content__cards[data-pos="3"][data-direction="right"] .SisleyER-Content__card-item[data-pos="2"] {
    z-index: 2;
}

/****************/
.SisleyER-Content__cards[data-pos="3"][data-anim="1"] .SisleyER-Content__card-item[data-pos="1"] {
    transform: translateX(95%) scale(0.57) rotate(16deg);
}

.SisleyER-Content__cards[data-pos="3"][data-anim="1"] .SisleyER-Content__card-item[data-pos="2"] {
    transform: translateX(-90%) scale(0.55) rotate(-25deg);
}

.SisleyER-Content__cards[data-pos="3"][data-anim="1"] .SisleyER-Content__card-item[data-pos="3"] {
    transform: scale(0.8);
}


@media(max-width:1023px) {
    .SisleyER-Content__cards {
        position: relative;
        width: 93.33vw;
        height: 80vw;
        order: 1;
        margin-top: -70px;
    }

    .SisleyER-Content__card-item {
        --CARD-WIDTH: 57.43vw;
        --CARD-HEIGHT: 66.66vw;
    }
}

@media(max-width:819px) {
    .SisleyER-Content__cards {
        position: relative;
        width: 74.66vw;
        height: 64vw;
        order: 1;
        margin-top: -70px;
    }

    .SisleyER-Content__card-item {
        --CARD-WIDTH: 45.94vw;
        --CARD-HEIGHT: 53.32vw;
    }
}

@media(max-width:761px) {
    .SisleyER-Content__cards {
        position: relative;
        width: 300px;
        height: 260px;
        order: 1;
        margin: 30px auto;
        margin-top: -30px;
    }

    .SisleyER-Content__card-item {
        --CARD-WIDTH: 224px;
        --CARD-HEIGHT: 260px;
    }

    .SisleyER-Content__cards[data-pos="2"][data-direction="right"] .SisleyER-Content__card-item[data-pos="1"],
    .SisleyER-Content__cards[data-pos="1"][data-direction="right"] .SisleyER-Content__card-item[data-pos="3"],
    .SisleyER-Content__cards[data-pos="3"][data-direction="right"] .SisleyER-Content__card-item[data-pos="2"],
    .SisleyER-Content__cards[data-pos="2"] .SisleyER-Content__card-item[data-pos="1"],
    .SisleyER-Content__cards[data-pos="1"] .SisleyER-Content__card-item[data-pos="3"],
    .SisleyER-Content__cards[data-pos="3"] .SisleyER-Content__card-item[data-pos="2"] {
        transform: translateX(-42%) scale(0.55) rotate(-15deg);
    }

}

/*--------------------------------------*/
/*------- RIGHT/BOTTOM SHOP BLOCK  ------*/
/*---------------------------------------*/


.SisleyER-Content__product {
    position: absolute;
    bottom: 70px;
    right: 70px;
    display: flex;
    flex-wrap: wrap;
    width: 290px;
    justify-content: flex-start;

    /********************************/
    width: auto;
    display: grid;
    gap: 0px;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr 1fr;
}

.SisleyER-Pano[data-opened="1"] .SisleyER-Content__product {
    animation: FadeInProduct ease-in-out 0.5s both;
    animation-delay: 1.2s;
}

@keyframes FadeInProduct {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.SisleyER-Content__product-quantity {
    margin: 0;
    margin-top: 20px;
    margin-right: 20px;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100px;
    height: 45px;
    border: rgba(255, 255, 255, 0.5) 1px solid;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;

}

.SisleyER-Content__product-quantity:hover::before,
.SisleyER-Content__product-quantity[data-selected="1"]::before {
    content: " ";
    position: absolute;
    border: #fff 2px solid;
    pointer-events: none;
    height: 100%;
    width: 100%;
    border-radius: 24px;
}

.SisleyER-Content__product-cta[data-selected="0"] {
    display: none;
}

.SisleyER-Content__product-cta {
    margin: 0;
    margin-top: 20px;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*width: 290px;*/
    min-width: 290px;
    box-sizing: border-box;
    height: 45px;
    padding: 0 20px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    grid-column: 1 / 3;
}

.SisleyER-Content__product-cta[data-out-of-stock="1"] {
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.21);
    border: 0px solid;
    color: #fff;
    line-height: 1em;
}



.SisleyER-Content__product-cta:hover {
    background-color: #000;
    color: #fff;
}


@media(max-width:1023px) {
    .SisleyER-Content__product {
        position: relative;
        bottom: auto;
        right: auto;
        order: 3;
        width: 57.43vw;
        min-width: 290px;
        grid-template-rows: 50px 1fr;
    }

    .SisleyER-Content__product-quantity {
        margin-top: 5px;
    }
}

@media(max-width:819px) {
    .SisleyER-Content__product {
        width: 45.94vw;
    }
}

/*--------------------------------------*/
/*------- POPIN DETAILS ----------------*/
/*---------------------------------------*/

.SisleyER-Popin {
    position: absolute;
    z-index: 102;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.SisleyER-Popin__content {
    width: 626px;
    border-radius: 15px;
    background-color: #fff;
    height: 609px;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /*box-shadow: 4px 4px 8px rgb(0 0 0 / 25%);*/
    overflow: hidden;
    -webkit-animation: revealPopin ease-out 0.5s;
    animation: revealPopin ease-out 0.5s;
}

.SisleyER-Popin__out {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes revealPopin {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
        transform: translateX(-50%) translateY(-50%) scale(0.65);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
}

.SisleyER-Popin__close {
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 0;
    right: 25px;
    top: 25px;
}

.SisleyER-Popin__close:hover {
    background-color: #fff;
}

.SisleyER-Popin__close::before {
    content: " ";
    background-image: url(./assets/Interface/cross.svg);
    width: 10px;
    height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    transform: rotate(0deg);
}

.SisleyER-Popin__close:hover::before {
    filter: invert(1);
    transform: rotate(180deg);
}



.SisleyER-Popin__background {
    width: 100%;
    display: block;
    aspect-ratio: 626 / 298;
    transition: opacity ease-in-out 0.5s;
    opacity: 0;
}

.SisleyER-Popin__background[data-loaded="1"] {
    opacity: 1;
}

.SisleyER-Popin__box {
    padding: 40px 112px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.SisleyER-Popin__title {
    margin: 0;
    font-weight: normal;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 40px;
    letter-spacing: 0;
    line-height: 20px;
    color: #000;
    text-align: left;
    text-transform: none;
}

.SisleyER-Popin__text {
    margin: 0;
    margin-top: 25px;
    font-weight: normal;
    font-family: var(--HELVETICA-NEUE-LIGHT-FONT);
    font-size: 15px;
    line-height: 23px;
    color: #000;
    text-align: left;
}

.SisleyER-Popin__notes {
    margin: 0;
    margin-top: 25px;
    font-weight: bold;
    font-family: var(--HELVETICA-NEUE-LIGHT-FONT);
    font-size: 15px;
    line-height: 23px;
    color: #000;
    text-align: left;
    font-style: italic;
}

.SisleyER-Popin__cta {
    margin: 0;
    margin-top: 25px;
    font-weight: normal;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    text-transform: uppercase;
    font-size: 12px;
    line-height: normal;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #000;
    cursor: pointer;
    text-decoration: none;
}

@media(max-width:1023px) {

    .SisleyER-Popin__content {
        width: 345px;
        border-radius: 15px;
        height: 540px;

    }

    .SisleyER-Popin__background {
        width: 100%;
        display: block;
        aspect-ratio: 345 / 250;
    }

    @keyframes revealPopin {
        0% {
            transform: translateX(-50%) translateY(-50%) scale(0.65);
            opacity: 0.5;
            min-height: 256px;
        }

        100% {
            transform: translateX(-50%) translateY(-50%);
            opacity: 1;
            min-height: 540px;
        }
    }


    .SisleyER-Popin__box {
        padding: 30px;
    }

    .SisleyER-Popin__title {
        font-size: 26px;
        line-height: normal;
    }

    .SisleyER-Popin__text {
        margin-top: 25px;
        font-size: 13px;
        line-height: 21px;
    }

    .SisleyER-Popin__notes {
        margin-top: 25px;
        font-size: 13px;
        line-height: 21px;
    }

    .SisleyER-Popin__cta {
        margin-top: 25px;
    }
}


/*------------------------------------------*/
/*------- POPIN QUICKVIEW -------------------*/
/*-------------------------------------------*/


.SisleyER-Product-Quickview {
    position: absolute;
    z-index: 102;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.SisleyER-Product-Quickview__content {
    width: 626px;
    border-radius: 15px;
    background-color: #fff;
    height: 609px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /*box-shadow: 4px 4px 8px rgb(0 0 0 / 25%);*/
    overflow: hidden;
    animation: revealQuickview ease-out 0.5s;
}

.SisleyER-Product-Quickview__out {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes revealQuickview {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(0.65);
        opacity: 0.5;
    }

    100% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
}

.SisleyER-Product-Quickview__close {
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    font-size: 0;
    right: 25px;
    top: 25px;
}

.SisleyER-Product-Quickview__close:hover {
    background-color: #000;
}

.SisleyER-Product-Quickview__close::before {
    content: " ";
    background-image: url(./assets/Interface/cross.svg);
    width: 10px;
    height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    filter: invert(1);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    transform: rotate(0deg);
}

.SisleyER-Product-Quickview__close:hover::before {
    filter: unset;
    transform: rotate(180deg);
}

.SisleyER-Product-Quickview__box {
    padding: 40px 112px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.SisleyER-Product-Quickview__product {
    width: 100%;
    padding-top: 46px;
    padding-bottom: 46px;
}

.SisleyER-Product-Quickview__packshot {
    width: 178px;
    height: 178px;
    display: block;
    margin-right: 46px;
    float: left;
}

.SisleyER-Product-Quickview__title {
    margin: 0;
    font-weight: normal;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0;
    color: #000;
    text-align: left;
    text-transform: none;
}

.SisleyER-Product-Quickview__name {
    margin: 0;
    font-weight: normal;
    font-family: var(--PLAY-FAIR-FONT);
    font-size: 20px;
    line-height: 34px;
    color: #000;
    text-align: left;
}

.SisleyER-Product-Quickview__capacity {
    margin: 0;
    margin-top: 12px;
    font-weight: normal;
    font-family: var(--HELVETICA-NEUE-LIGHT-FONT);
    font-size: 13px;
    line-height: 23px;
    color: #000;
    text-align: left;
}

.SisleyER-Product-Quickview__basket {
    margin: 0;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    height: 45px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.SisleyER-Product-Quickview__basket:hover {
    background-color: #000;
    color: #fff;
}

.SisleyER-Product-Quickview__reset {
    margin: 0;
    margin-top: 20px;
    font-family: var(--HELVETICA-NEUE-BOLD-FONT);
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    height: 45px;
    border: rgba(0, 0, 0, 0.25) 1px solid;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

.SisleyER-Product-Quickview__reset:hover {
    background-color: #000;
    color: #fff;
}


@media(max-width:1023px) {

    .SisleyER-Product-Quickview__content {
        width: 345px;
        border-radius: 15px;
        height: 540px;
    }


    @keyframes revealQuickview {
        0% {
            transform: translateX(-50%) translateY(-50%) scale(0.65);
            opacity: 0.5;
        }

        100% {
            transform: translateX(-50%) translateY(-50%);
            opacity: 1;
        }
    }

    .SisleyER-Product-Quickview__box {
        padding: 40px 30px;
        padding-top: 80px;
    }

    .SisleyER-Product-Quickview__product {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .SisleyER-Product-Quickview__packshot {
        width: 100px;
        height: 100px;
        display: block;
        margin-right: 30px;
        float: left;
    }

    .SisleyER-Product-Quickview__title {
        font-size: 26px;
        line-height: 34px;
    }


}