@import "./fonts.css?001";
body.customize-support .main-header {
    top: auto;
}
:root{
    --wrapperWidthLg : 1920px;
    --wrapperWidth : 1580px;
    --wrapperWidthSm : 1380px;
    --wrapperWidthXs : 920px;
    --mobilePadding: 18px;
}

body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure{
    margin:0;
    padding:0;
    font-weight: normal;
}

body{
    position: relative;
    font-family: 'GothamGreek-Medium', sans-serif;
    font-weight: 400;
    max-width: 2500px;
    margin:0 auto;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

ul, ol{
    list-style: none;
}

ul.flex > li:last-of-type{
    margin-right: 0!important;
}
ul.flex.col > li:last-of-type{
    margin-bottom: 0!important;
}
ul.flex.border > li{
    border-right: 1px solid #000;
}
ul.flex.border > li:last-of-type{
    border-right: 0!important;
}
ul.flex.col.border > li{
    border-bottom: 1px solid #000;;
}
ul.flex.col.border > li:last-of-type{
    border-bottom: 0!important;
}

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    outline: none;
}

address{
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}


[style*="--aspect-ratio"] > :first-child {
    width: 100%;
}
[style*="--aspect-ratio"] > img {
    height: auto;
}
@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"] > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

.aligncenter {
    margin: auto;
}

/*  containers */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex.col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.flex.centered{
    justify-content: center;
    align-items: center;
}

.no-transition {
    transition: none !important;
}


/*  general */


/*  κλείδωμα του scroll στο background
    σε περίπτωση που έχουμε ένα στοιχείο
    που καλύπτει όλη την οθόνη */
.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
    
    
    
/*  κεντράρισμα εικόνας*/
.img-center{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.single-heading:not(.bold) {
    font-family: "GothamGreek-Book", sans-serif;
}

.single-heading.bold {
    font-family: "GothamGreek-Bold", sans-serif;
}
    
/*  κρύψιμο οριζόντιας μπάρας κύλισης*/
.scrollbar-hide{
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.pntr{
    cursor: pointer;
}

.bold{
    font-weight: 600;
}

/* wrappers */

.wrapper{
    max-width: var(--wrapperWidth);
    padding-inline: 2rem;
    margin-inline: auto;
}
.wrapper.sm{
    max-width: var(--wrapperWidthSm);
}
.wrapper.xs{
    max-width: var(--wrapperWidthXs);
}
.wrapper.lg{
    max-width: var(--wrapperWidthLg);
}

.wrapper.pr-0{
    padding-right: 0;
}

@media screen and (max-width: 1200px) {  
    .wrapper{
        padding-inline: 2rem;
    } 
    .wrapper.tab-pr-0{
        padding-right: 0;
    }   
}
@media screen and (max-width: 820px) {  
    .wrapper{
        padding-inline: var(--mobilePadding);
    }  
    .wrapper.tab-0{
        padding-inline: 0;
    }  
}

/* buttons */

.btn-container{
    width: 38px;
    height: 38px;
    padding: 0.5rem;
}

.btn-container > div{
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
}


.btn-container .line{
    width: 100%;
    border-top: 2px solid #000;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.btn-container .line:first-of-type{top: 4px;}
.btn-container .line:nth-of-type(2){top:11px;}
.btn-container .line:nth-of-type(3){top:11px;}
.btn-container .line:last-of-type{top: 18px;}


.btn{
    border-radius: 110px;
    padding: 10px 20px;
    background-color: #fff;
    color: #253775;
    font-size: 20px;
    line-height: 25px;
    width: fit-content;
    cursor: pointer;
}

.btn .flex{
    align-items: center;
}

.btn span{
     display: block;
}

.btn-icon{
    margin-right: 0.5rem;
}

.menu-btn.on .line:first-of-type, .menu-btn .on .line:first-of-type,
.menu-btn.on .line:last-of-type, .menu-btn .on .line:last-of-type{opacity:0;}
.menu-btn.on .line:nth-of-type(2), .menu-btn .on .line:nth-of-type(2){
    transform: rotate(45deg);
}
.menu-btn.on .line:nth-of-type(3), .menu-btn .on .line:nth-of-type(3){
    transform: rotate(-45deg);
}
ul.sub-menu {
    margin: .75rem;
    margin-top: 1.15rem;;
}
/* ul.sub-menu .nav-item:before {
    content: '-';
    margin-right: 4px;
} */


/* Header */

.main-header > .wrapper{
    justify-content: space-between;
}

.header-menu{
    width: 3rem;
    height: 3rem;
    display: none;
}

.header-menu-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

.header-menu .line{
    position: absolute;
    border-top: 2px solid #000;
    left: 0;
    top: 50%;
    width: 100%;
}


.main-header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    height: 60px;
    
    padding-block: 0.5rem; 
    /* padding-inline: 1rem; */
    z-index: 2000;
} 

.main-header > .wrapper{
    align-items: center;
}

.main-header .dolli-logo{
    width: 250px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 5px;
}

[class*="site-plazabeachhouse-"] .main-header .dolli-logo,
[class*="site-luxme-damadama"] .main-header .dolli-logo {
    width: 300px;
}

[class*="site-plazabeachhouse-"] .main-footer .footer-logo {
    width: 200px;
}

@media screen and (max-width: 620px) {
    [class*="site-plazabeachhouse-"] .main-header .dolli-logo {
        width: 50vw;
    }    

    [class*="site-plazabeachhouse-"] .main-footer .footer-logo {
        width: 36vw;
    }
}

.main-header .book{
    position: relative;
    padding: 0.5rem 0.925rem;
    font-family: "GothamGreek-Book";
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.menu-btn.btn-container{
    position: relative;
    left: -0.5rem;
}

@media screen and (max-width: 520px) {
    .main-header .dolli-logo{
        width: 150px;
    }
    .main-header .book{
        letter-spacing: 2px;
        font-size:0.75rem;
        padding:0.25rem 0.75rem;
        height: 24px;
    }
}
@media screen and (max-width: 395px) {
    .main-header .dolli-logo{
        width: 120px;
    }
    .main-header .book{
        letter-spacing: 1px;
        font-size:0.625rem;
        padding:0.25rem 0.75rem;
    }
}

/* menu */

.menu{
    width: 400px;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 100%;
    left: -500px;
    height:calc(100vh - 100%);
    padding: 3rem 4rem 3rem 3rem;
    transition: left 0.3s;
    pointer-events: none;
}

.menu.on{
    left: 0;
    pointer-events: all;
}

.menu .nav-item{
    font-size: 0.875rem;
    line-height: 100%;
    transition: transform 0.3s;
    font-family: 'GothamGreek-Book';
}
.menu .nav-item > a {
    transition: transform 0.3s;
}
.menu .nav-item:not(:last-of-type){
    margin-bottom: 1.5rem;
}

.menu .nav-item .sub-menu .nav-item {
    font-size: 0.7rem;
}

.menu .nav-item > a:hover{
    transform: translateX(0.5rem);
    display: block;
}

.menu .socials-list{
    margin-block: 2rem 1rem;
}

.menu-footer{
    font-family:'GothamGreek-Book' ;
    margin-top: 2.5rem;
}

.menu-footer > *:not(:last-child){
    margin-bottom: 0.5rem;
}
.menu-footer-link,
.menu-footer h5{
    font-size: 0.875rem;
}
.menu-footer h5{
    color: #8d8989;
}
.menu-footer-info{
    font-size: 0.75rem;
}

@media screen and (max-width: 820px) {
    .menu{padding-inline:2rem;}
}
@media screen and (max-width: 520px) {
    .menu{
        width: 100%;
        left: -120%;
    }
}

/* Footer */

.main-footer{
    background-color: #fff;  
    padding-block: 3rem 2rem; 
}

.main-footer > div{
    height: 100%;
    -webkit-box-align: center;  
        -ms-flex-align: center;  
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "GothaProBol";
    text-align: center;
    position: relative;
}

.main-footer-wrapper{
    justify-content: space-between;
    align-items: center;    
}

.main-footer .info,
.main-footer .info .mail-block a{
    align-items: center;
    font-family: "GothamGreek-Book";
    font-size: 0.625rem;
    letter-spacing: 2.4px;
}
.main-footer .logo{
    font-family: "GothamGreek-Bold";
    font-size: 1.25rem;
    letter-spacing: 2.4px;
}
.main-footer .info > *:not(:last-child),
.footer-logo{
    margin-right: 1.5ch;
    margin-left: inherit;
}

.main-footer-bottom{
    justify-content: flex-start;
    margin-top: 0.75rem;
}

.main-footer-bottom span{
    display: block;
    font-size: 10px;
    font-family: "GothamGreek-Book";
    letter-spacing: 0.25px;
    color: #6e6e6e;
    margin-left: 0;
}

.main-footer-bottom span:not(:last-of-type){
    margin-right: 1rem;
}

@media screen and (max-width: 1120px) {
    .main-footer-bottom{
        margin-top: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 960px) {
    .main-footer{
        padding-top: 4rem;
    }
    .main-footer-wrapper,
    .main-footer .info{
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-footer-wrapper{
        justify-content: center;
    }
    .main-footer .info{
        width: 100%;
    }
    .main-footer .logo{
        order: -1;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 840px) {
    .main-footer-bottom span {
        margin-left: auto;
    }
}
@media screen and (max-width: 620px) {
    .main-footer{
        padding-top: 2rem;
    }
    .main-footer .info{
        flex-direction: column;
        /* align-items: flex-start; */
    }
    .main-footer-bottom {
        /* margin: auto; */
        display: block;
    }
    address.flex.centered {
        margin-bottom: 15px;
    }
    a.ig, .footer-inline-social a {
        margin-top: 15px;
    }
    .footer-inline-social.flex {
        justify-content: center;
    }
    .main-footer-bottom span:not(:last-of-type) {
        margin-right: 0rem;
    }
    .main-footer-bottom {
        gap: 1rem;
    }
}
@media screen and (max-width: 480px) {
    .main-footer{
        padding-block: 1rem;
    }
    /* .main-footer-wrapper{
        flex-direction: column-reverse;
    }   */
    .main-footer .info > *{
        width : 100%;
        text-align: center;
    }
}

/*
@media screen and (max-width: 780px) {
    header.top-info h1{
        letter-spacing: 2px;
    }

    .main-footer .phone{
        width: 100%;
        margin-top: 4px;
    }
    .main-footer .mail-block{
        margin-top: 0;
    }

    .main-footer .info > *{
        margin-right: 0;
    }
}
@media screen and (max-width: 680px) {

    footer.bottom-info .mail-block,
    footer.bottom-info .info{
        justify-content: flex-start;
    }
    footer.bottom-info .phone{
        text-align: left;
    }
}

@media screen and (max-width: 580px) {
    header.top-info h1{
        letter-spacing: 1px;
    }
    header.top-info .dolli-logo{
        width: 160px;
    }
    footer.bottom-info {
        height: 100px;
    }
    footer.bottom-info > div{
        text-align: center;
        padding-block: 1rem 0;
        flex-direction: column;
    }
    footer.bottom-info.rooms{
        height: 70px;
    }
    footer.bottom-info .logo{
        right: 1rem;
        margin-top: 0.5rem;
        right: unset;
        position: relative;
        width: 100%;
        background-color: #fff;
        padding-bottom: 1rem;
    }
    footer.bottom-info.rooms .logo{
        margin-top: 1rem;
    }
    footer.bottom-info .mail-block,
    footer.bottom-info .info{
        justify-content: center;
    }
    footer.bottom-info .phone{
        text-align: center;
    }
}

@media screen and (max-width: 390px) {
    header.top-info .dolli-logo{
        width: 140px;
    }
}
@media screen and (max-width: 350px) {
    header.top-info .dolli-logo{
        width: 120px;
    }
} */

.wp-block-heading {
    font-family: "PF Regal DisplayPro Reg", "GothamGreek-Book", serif;
    max-width: 920px;
    margin: auto;
    text-align: center;
    margin-bottom: 2rem;
}

.historical-section-info .card .description-more {
    margin-top: 1.5rem;
}

.footer-logo {
    position: relative;
    width: 130px;
    display: inline-block;
    top: 5px;
}

/* headers and general text */

.header-title{
    font-size: 18.72px;
    margin-bottom: .5rem;
    letter-spacing: 1.5px;
    font-family: "PF Regal DisplayPro Reg", "GothamGreek-Book", serif;
}
.header-sub-title {
    font-size: 22px;
    font-family: "PF Regal DisplayPro Reg", "GothamGreek-Book", serif;
    margin-bottom: 2rem;
}
.header-sub-title p {
    font-size: inherit;
    font-family: inherit
}

.header-title sup{
    font-size: .5rem;
    position: relative;
    top: -3px;
}

p, ol, ul, iframe, span {
    max-width: 920px;
    margin: auto;
    font-size: 14px;
    line-height: 180%;
    font-family: "GothamGreek-Book";
}
i {
    font-family: "PF Regal DisplayPro Italic", serif; 
}
.header-info {
    font-size: 14px;
    line-height: 180%;   
    font-family: "PF Regal DisplayPro Reg", "GothamGreek-Book", serif; 
}
.header-info p strong {
    font-family: 'GothamGreek-Medium', sans-serif;
}

@media screen and (max-width: 820px) {
    .header-info{
        line-height: 150%;   
    }
}
@media screen and (max-width: 620px) {
    .header-title{
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 520px) {
    .header-title{
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 420px) {
    .header-info{
        font-size: 0.925rem;   
    }
}

/* image gallery grid */


.image-grid{
    justify-content: space-between;
    --gap: 5px;
    --columns: 3;
}
.image-grid-col{
    width: calc((100% - 2 * var(--gap)) / var(--columns));
}

.grid-image{ aspect-ratio: 0.85;}
.grid-image.square{ aspect-ratio: 1;}
.grid-image.wide{ aspect-ratio: 16/9;}
.grid-video{ aspect-ratio: 16/9;}

.grid-video video{
    width: 100%;
    height: 100%;
    display: block;
}

/* .grid-image:not(:last-of-type){margin-bottom: var(--gap);} */
.image-grid-col > div:not(:last-of-type){margin-bottom: var(--gap);}
.image-grid-col > div.no-pointers,
.image-grid-col > div.no-pointers * {
    cursor: default;
}

/* effects */
.room-image,
.grid-image,
.grid-video,
.card-image{
    overflow: hidden;
    cursor: pointer;
}
.historical-section-info-wrapper .card-image {
    cursor: default;
}
.room-image img,
.grid-image img,
.grid-video video,
.card-image img{
    transition: transform 0.6s;
}
.room-card:hover img,
.grid-image:hover img,
.grid-video:hover video,
.card:hover img{
    transform: scale(1.1);
}

.grid-video{position: relative;}
.grid-video .video-icon{
    width: 30px;
    height: 30px;
    filter:invert(1);
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 720px) {
    .image-grid{
        --gap: 3px;
    }
}
@media screen and (max-width: 480px) {
    .image-grid{
        --gap: 2px;
    }
}

/*  socials */

.social ul{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.social li{
    width: 28px;
    height: 25px;
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    margin-right: 50px;
    /* background-size: 50%; */
}

.social.border li{
    border:1px solid #000;
}
.social.border.rnd li{
    border-radius: 50%;
}
.social.white li{
    filter: invert(1);
}

.social.round li{
    background-color: #fff;
    border-radius: 50%;
}

.social ul li:last-of-type{
    margin-right: 0;
}
.social ul li.pin{
    background-image: url(../assets/icons/pin.svg);
}
.social ul li.fb{
    background-image: url(../assets/icons/fb.svg);
    /* background-size:25%; */
}
.social ul li.tw{
    background-image: url(../assets/icons/tw.svg);
    /* background-size:5px 10px; */
}
.social ul li.yt{
    background-image: url(../assets/icons/yt.svg);
}
.social ul li.ig{
    background-image: url(../assets/icons/ig.svg);
}
.social ul li.ln{
    background-image: url(../assets/icons/ln.svg);
}
.social ul li.tt{
    background-image: url(../assets/icons/tt.svg);
}
.social ul li.sf{
    background-image: url(../assets/icons/sf.svg);
}
.social ul li.ap{
    background-image: url(../assets/icons/ap.svg);
}
.social ul li.rss{
    background-image: url(../assets/icons/rss.svg);
    /* background-size:20px 20px; */
}
.social ul li.wup{
    background-image: url(../assets/icons/wup.svg);
    background-size:contain;
    background-color: transparent;
    border-radius: 0;
}

.social ul li.lg{
    width: 2.25rem;
    height: 1.85rem;
    margin-right: 3rem;
}

.social ul li > a{
    width: 100%;
    height: 100%;
    display: inline-block;
}

.social.md ul li{
    width: 36px;
    height: 36px;
    margin-right: 32px;
}

.social.md ul li.fb{
    background-image: url(../images/icons/fb.svg);
    background-size:10px 20px;
}
.social.md ul li.tw{
    background-image: url(../images/icons/tw.svg);
    background-size:19px 15px;
}

/* breadcrumbs */

.breadcrumbs-list{
    width:fit-content;
    margin-inline: auto;
    margin-block: 60px 100px;
}
.breadcrumbs.has-info .breadcrumbs-list{
    margin-bottom: 60px;
}
.breadcrumb-item{
    font-family: "GothamGreek-Book";
    padding-inline: 0.5rem;
    font-size: 14px;
    color: #939597;
    letter-spacing: 1px;
    list-style-type: none;
    margin-left: 0;
}
.breadcrumb-item:first-of-type{
    color: #000;
}

.breadcrumbs-info{
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    font-family: "GothamGreek-Book";
    margin-bottom: 100px;
    font-size: 14px;
    line-height: 160%;
}

.breadcrumbs-info span{
    display: block;
}

.historical-section-info.acf-field .wrapper,
.historical-section-info.acf-field .wrapper .card .header-info p {
    padding-left: 0;
    padding-right: 0;
}

.historical-section-info.acf-field .wrapper .description-more a { 
    margin-top: 1.5rem;
    font-size: 14px;
    font-family: 'GothamGreek-Medium', sans-serif;
}


@media screen and (max-width: 1020px) {
    .breadcrumbs-list{
        margin-bottom: 60px;
    }      
}
@media screen and (max-width: 680px) {
    .breadcrumbs-info span{
        display: inline;
    }
}


/* single description box */
.single-description{
    margin-bottom: 100px;
}

.home .breadcrumbs {
    display: none;
}

.single-description .single-description-wrapper:not(:last-of-type){
        margin-bottom: 60px;
}

.single-description-image-slider,
.single-description-image{
    flex: 0 0 60%;
}

.single-description-info{
    padding: 60px 0 60px 60px;
    flex-grow: 1;
}

.single-description .description-more{
    margin-top: 1.5rem;
    font-size: 14px;
}

.single-description .description-more a {
    font-family: 'GothamGreek-Medium', sans-serif;
}

.innerSwiper{
    --swiper-navigation-size: 30px;
}
.innerSwiper .swiper-button-next,
.innerSwiper .swiper-button-prev{
    color: #fff;    
}

@media screen and (max-width: 1220px) {
    .single-description-info{
        padding:40px 0 40px 40px;
    }
}
@media screen and (max-width: 1020px) {
    .single-description-info{
        padding:20px 0 20px 20px;
    }
    .innerSwiper{
        --swiper-navigation-size: 24px;
    }
}

@media screen and (max-width: 820px) {
    .single-description{
        margin-bottom: 80px;
    }
    .single-description-wrapper{
        display: block;
    }
    .single-description-info{
        padding: 1.5rem 2rem;
    }    
}

@media screen and (max-width: 620px) {
    .single-description-wrapper{
        display: block;
    }
    .single-description-info{
        padding: 1rem;
    }    
}
@media screen and (max-width: 520px) {
    .single-description{
        margin-bottom: 60px;
    }
}

/* panel */

.panel{
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    padding: 100px 4rem 2rem;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 500;
}

.panel.on{
    pointer-events: all;
    opacity: 1;
}

.panel-close{
    position: absolute;
    width: 2rem;
    width: 3rem;
    height:2rem;
    height:3rem;
    padding: 0.5rem;
    /* padding: 0.75rem; */
    /* border:1px solid #fff; */
    /* border:1px solid #000; */
    /* background-color: rgba(0,0,0,0.8); */
    /* background-color: rgba(255,255,255,0.8); */
    /* background-color: transparent; */

    border-radius: 50%;
    cursor: pointer;
    right: 2rem;
    top: 80px;
}

.panel-close > div{
    position: relative;
    height: 100%;
}

.panel-close .line{
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: center;
    border-top: 1px solid #fff;
    /* border-top: 1px solid #000; */
    transform: rotate(45deg);
}

.panel-close .line:last-of-type{
    transform: rotate(-45deg);
}

.panel-wrapper{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.panel-media{
    width: fit-content;
    height: fit-content;
    margin: auto;
}
.panel-navigation{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.panel-btn{
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}
.panel-btn.prev{left: 2rem;}
.panel-btn.next{right: 2rem;}

.panel-btn > div{
    width: 100%;
    border-bottom: 1px solid #fff;
    transform-origin: center;
}

.panel-btn.prev > div{
    border-left: 1px solid #fff;
    transform: rotate(45deg);
}
.panel-btn.next > div{
    border-right: 1px solid #fff;
    transform: rotate(-45deg);
}


@media screen and (max-width: 920px) {
    .panel{padding-inline:2rem;}
    .panel-btn{
        width: 2rem;
        height: 2rem;
    }
    .panel-btn.prev{left: 1rem;}
    .panel-btn.next{right: 1rem;}
}
@media screen and (max-width: 620px) {
    .panel{padding-inline:1rem;}
    .panel-close{
        right: 1rem;
        top: 70px;
        width: 2rem;
        height: 2rem;
        padding: 0.5rem;
    }
}

.breadcrumbs.wrapper.no-thumb {
    padding-top: 3rem;
}

@media screen and (max-width: 1220px) {
    .new-footer div.flex.col-4 {
        margin-left: 0;
        flex: 1 1 50%;
        width: 50%;    
    }
        
}

@media screen and (max-width: 1020px) {
    .new-footer .flex.col-3 {
        flex-wrap: wrap;
    }

    .new-footer div.flex.col-4 {
        margin-bottom: 30px;
    }

    .new-footer .flex.col-3 .col {
        width: 100%;
        flex: 1 1 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    div.new-footer .footer-logo-new {
        max-width: 300px;
    }

    div.new-footer .main-footer-bottom._partner-logo span {
        display: inline-block;
        width: inherit;
        margin-top: 8px;
        max-width: 100px;
    }
}

@media screen and (max-width: 768px) {
    div.new-footer .footer-logo-new {
        max-width: 270px;
    }

    .new-footer div.flex.col-4 {
        margin-left: 0;
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .new-footer div.flex.col-4 ._col:not(:last-child) {
        margin-bottom: 1rem;
    }

    .new-footer div.flex.col-4 ._col span {
        text-align: center;
    }

    .new-footer div.flex.col-4 ._col a[href*="instagram"], .new-footer div.flex.col-4 ._col .footer-inline-social a{
        width: 20px;
        height: 20px;
    }
    .new-footer div.flex.col-4 ._col a[href*="instagram"] {
        align-self: center!important;
    }
    div.new-footer span, div.new-footer p {
        line-height: 2;
        text-align: center;
    }

    .flex.new-footer-bottom > div {
        gap: .5rem;
        flex-direction: column;
        align-items: center;
    }

    div.new-footer .flex.col-3 {
        padding-bottom: 0;
    }

    div.new-footer .main-footer-bottom.flex._partner-logo {
        max-width: 100%;
        padding: .5rem 0 1rem 0;
    }

    div.new-footer .main-footer-bottom._partner-logo span {
        max-width: 96px;
    }
}

div.flex.new-footer-bottom .logo {
    width: 200px;
}

@media screen and (max-width: 620px) {
    .image-grid {
        flex-wrap: wrap;
    }

    .image-grid .image-grid-col {
        width: 100%;
    }
}