/*:root{*/
    /* colors */
    /*--color-primary: #FDE100;
    --color-white: #fff;
    --color-background: #FDFCF2;
    --color-text: #1D1D1D;*/
  
  
    /* spaces */
    /*--spacing-small: 1rem;
    --spacing-medium: 16px;
    --spacing-large: 100px;*/
  
    /* Typography */
    /*--fs-heading-1: 3.375rem;*/  /* 54px / 16px */
    /*--fs-heading-2: 2.4375rem;*/  /* 39px / 16px */
    /*--fs-heading-3: 2.0625rem;*/  /* 33px / 16px */
    /*--fs-heading-4: 1.6875rem;*/  /* 27px / 16px */
    /*--fs-heading-5: 1.4375rem;*/  /* 23px / 16px */
    /*--fs-heading-6: 1.1875rem;*/  /* 19px / 16px */
    /*--fs-text: 1rem;*/           /* 16px / 16px */
    /*--fs-small: 0.8125rem;*/     /* 13px / 16px */
    /*--fs-xs: 0.6875rem;*/        /* 11px / 16px */
  
    /*--wrapper-inline: 16px;
    --radius: 4px;
  }*/

  body{
    overflow-x: hidden;
  }

.trips__subnav{
    position: fixed;
    top: -100px;
    width: 100%;
    z-index: 999;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05)
    /* border: 1px solid black; */
}

.trips__subnav-title{
    position: fixed;
    display: none;
    top: -100px;
    width: 100%;
    z-index: 999;
    background-color: white;
    padding: 4px 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05)
}

.trips__subnav-title.active{
    top: 60px;
}

@media(max-width: 800px){
    .trips__subnav-title{
        display: block;
    }
}


.trips__subnav-title p{
    width: 95%;
    margin: 0 auto;
    font-size: var(--fs-small);
    text-align: center;
    font-weight: 600;
    padding: 4px 0;
}



.trips__subnav__mobile{
    position: fixed;
    display: none;
    bottom: -150px;
    left: 0;
    z-index: 999;
    background-color: white;
    width: 100%;
}

@media(max-width: 800px){
    .trips__subnav__mobile{
        display: block;
    }
}

.trips__subnav-mobile__wrapper{
    display: flex;
    flex-direction: column;
    /* width: 95%; */
    margin: 0 auto;
    box-shadow: 0 -1px 10px rgba(0,0,0,0.2);
}

.trips__subnav__mobile .trip__main-details{
    gap: 8px;
    justify-content: space-between;
}

.trips__subnav__mobile .links-container::before, .links-container::after{
    width: 16px;
}
.trips__subnav__mobile .subnav__links .swiper-slide.none{
    width: 16px;
}


.trips__subnav__mobile .links-container{
    width: 100%;
    padding: 16px 0 0;
    overflow: hidden;
}

.trips__subnav__mobile .btn.second-btn{
    background-color: var(--color-primary);
}

.trips__subnav__mobile .trip__main-details{
    padding: 12px 8px 16px;
 }

.departure-dates__flight.active .departure-dates__flight__extra-details{
    overflow: hidden;
    height: 100%;
    max-height: 2000px;
    transition:1s all ease;
}

.departure-dates__flight .departure-dates__flight__extra-details{
    overflow: hidden;
    height: 100%;
    max-height: 0px;
    transition: 0.3s all ease;
}


@media(max-width: 800px){
    .trips__subnav{
        display: none;
    }
    .bottom-nav{
        display: none;
    }

   
}




.trips__subnav__wrapper{
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 40px 12px 0;
}

.trips__subnav__wrapper .links-container{
    width: 95%;
    overflow: hidden;
}

.trip__main-details{
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    justify-content: end;
}

 .subnav__links, .subnav__links__mobile{
    position: relative;
}



.links-container {
    position: relative;
}
.links-container::before,
.links-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px; /* Width of the fading effect */
    pointer-events: none;
    z-index: 2;
    /* background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); Right fade */
}

.links-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); /* Left fade */
}

.links-container::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.links-container.no-fade::before,
.links-container.no-fade::after {
    display: none; /* Remove fading when unnecessary */
}

/* .subnav__links .overlay{
    width: 60px;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 0;
    right: 0px;
} */

.subnav__links .swiper-slide{
    width: fit-content;
    font-size: var(--fs-small);
}

.subnav__links .swiper-slide.none{
    width: 40px;
}

.subnav__links .swiper-slide.active a{
    color: rgb(0, 0, 0);
}

.subnav__links .swiper-slide.active a{
    color: yellow;
}

.subnav__links .swiper-slide .trip-menu-link{
    color: rgba(0, 0, 0, 0.426);
    font-weight: 500;
    text-transform: uppercase;
    font-size: var(--fs-small)
}
.subnav__links .swiper-slide .trip-menu-link::after{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: var(--color-primary);
    transition: 0.3s all ease;
}

.subnav__links .swiper-slide .trip-menu-link.active{
    color: var(--color-text);
    font-weight: 500;
}

.subnav__links .swiper-slide .trip-menu-link.active::after{

    width: 100%;

    transition: 0.3s all ease;
}

/* Mobile */

.subnav__links__mobile .swiper-slide{
    width: fit-content;
    font-size: var(--fs-small);
}

.subnav__links__mobile .swiper-slide.none{
    width: 16px;
}

.subnav__links__mobile .swiper-slide.active a{
    color: rgb(0, 0, 0);
}

.subnav__links__mobile .swiper-slide.active a{
    color: yellow;
}

.subnav__links__mobile .swiper-slide .trip-menu-link__mobile{
    color: rgba(0, 0, 0, 0.426);
    font-weight: 500;
}
.subnav__links__mobile .swiper-slide .trip-menu-link__mobile::after{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: var(--color-primary);
    transition: 0.3s all ease;
}

.subnav__links__mobile .swiper-slide .trip-menu-link__mobile.active{
    color: var(--color-text);
    font-weight: 500;
}

.subnav__links__mobile .swiper-slide .trip-menu-link__mobile.active::after{

    width: 100%;

    transition: 0.3s all ease;
}




/* Trips bottom nav */
.bottom-nav{
    position: fixed;
    bottom: -100px;
    left: 0;
    z-index: 999;
    background-color: white;
    width: 100%;
    box-shadow: 0 -1px 12px rgba(0,0,0,0.12);
    padding: 14px 0;

    display: none;
}

.bottom-nav__wrapper{
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.bottom-nav .trip__title h1{
    font-size: var(--fs-heading-6);
    font-weight: 700;
    line-height: 20px
}

.bottom-nav__details .trip__price .u-bold{
    font-weight: 600;
}

.bottom-nav__details .main-btn {
    background-color: var(--color-primary);
    font-size: 13px;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 8px 28px;
}

.bottom-nav__details .trip__price p{
    display: flex;
    gap: 4px;
}

.bottom-nav__details .second-btn {
    border: 2px solid var(--color-primary);
    font-size: 13px;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 8px 28px;
}
.bottom-nav__buttons{
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}


.bottom-nav__details {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 472px;
    justify-content: end;
}


.trip__main-details .btn{
    width: fit-content;
    display: flex;
    justify-content: center;
    padding: 4px 12px;
    align-items: center;
    text-transform:capitalize
}
.trip__main-details .btn.main-btn{
    background-color: var(--color-primary);
    font-size: 13px;
    line-height: 30px;
    white-space: nowrap;
}
.trip__main-details .btn.second-btn{
    border: 2px solid var(--color-primary);
    font-size: 13px;
    line-height: 30px;
    white-space: nowrap;
    background-color:#fff;
}

.custom-line {
    display: inline-block;
    width: 113px;
    height: 3px;
    background-color: #fddf00;
    margin-bottom: 8px;
    margin-right: 23px;
    margin-left: 60px;
}

@media(max-width: 600px){
    .custom-line {
        margin-right: 0px;
        margin-left: 0px;
        width: 70px;
        margin-bottom: 4px;
    }
}

.custom-line .line{

}

.trip__main-details .trip-price {
    font-weight: 600;
    white-space: nowrap;
}
.trip__main-details .trip-tax {
    font-size: 10px;
}
    /* Overview */
    .overview__wrapper {
        width: 95%;
        margin: 0 auto;
    }

.overview-heading{
    display: flex;
    justify-content: center;
    position: relative;
}

    .overview-heading .caligraphic {
        max-width: 900px;
        padding: 16px;
        text-align: center;
        font-size: var(--fs-heading-3);
        line-height: 47.6px;
        font-weight: 500;
        font-family: 'CF Ifigeneia', serif !important;
    }
        .overview-heading .caligraphic p {
            font-family: 'CF Ifigeneia', serif !important;
            font-size: 28px;
            line-height: 47.6px;
            font-weight: 400;
        }

        @media(max-width: 600px){
            .overview-heading .caligraphic p {
                font-family: 'CFModGrotesk', sans-serif !important;
                font-size: 16px;
                line-height: 30px;
                font-weight: 300;
            }
/*            .custom-line{
                display: none !important;
            }*/
        }

@media(max-width: 800px) {
    .overview-heading h1{
        font-size: var(--fs-heading-3);
        line-height: 50px;
        
      
    }
}



.overview-info {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
   /* display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));*/
    justify-content: center;
    /*align-items: start;
    justify-items: center;
    gap: 20px;*/
}



.overview-item{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-width: 300px;
    flex-basis: 25%;
    margin-bottom: 20px;
}

.overview-item .img-placeholder{
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .overview-item .img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .overview-item .title {
        font-weight: 400;
        font-size: 18px;
    }


    .overview-item p {
        text-align: center;
        line-height: 24px;
        font-size:18px;
        font-weight: 100;
    }

@media(max-width: 600px) {
    .overview-item .title {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        margin-top: 5px;
        margin-bottom: 2px;
    }

    .overview-item p {
        font-size: 13px;
        line-height: 16px;
    }
}

.overview-anaxoriseis__container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.overview-anaxoriseis__container .anaxorisi{
    padding: 4px;
    border-radius: 4px;
    width: fit-content;
    /* background-color: #fddf0045; */
    border: 1px solid rgba(0, 0, 0, 0.189);
}

.overview-anaxoriseis__container .anaxorisi p{
    line-height: 18px;
}


/*  Αποκλειστικα στο Versus Travel */
.exclusive-versus-travel .title {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: var(--fs-heading-1);
    padding: 18px 40px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 8px;
}

.diaforetikotita-button {
    margin: 0 auto;
    width: fit-content;
    border: 1px solid black;
    background-color: white;
    color: black;
    padding: 8px 16px;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: 0.5s all ease;
}

    .diaforetikotita-button:hover {
        background-color: black;
        color: white;
        transition: 0.5s all ease;
    }

.exclusive-versus-travel .title .italic {
    font-size: 80px;
    font-style: italic;
    font-weight: 300;
}

    @media(max-width: 600px) {
        .exclusive-versus-travel .title {
       
        font-size: 39px;
       
    }
            .exclusive-versus-travel .title .italic {
                font-size: 60px;
                font-style: italic;
                font-weight: 300;
            }
}

    .exclusive-versus-travel .title .italic-heading{
        font-weight: 300;
    }

    @media(max-width: 600px) {
        .exclusive-versus-travel h1 {
        /* text-align: center; */
        font-size: var(--fs-heading-1);
        padding: 18px 16px;
        line-height: 50px;
    }
}

.exc-cards-content {
    display: flex;
    justify-content: center;
}

.exc-card__front, .exc-card__back {
    position: relative;
    width: 300px;
    height: 550px;
}

.exc-card__front .bg-img, .exc-card__back .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.exc-card__front .mask-img {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    object-fit: cover;
}

.exc-card__front .mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#clip-path-shape);
}
.exc-cards-container{
    overflow: hidden;
    position: relative;
}


.exc-cards-wrapper {
    /* width: 95%;
    margin: 0 auto; */
    width: 100%;
    padding: 20px 0;
    /* overflow-y: none;
    overflow-x: auto;
    padding-top: 50px;
    padding-bottom: 50px; */
}

.exc-cards-wrapper .swiper-container {
    /* width: 100%;
    height: 100%;
    width: fit-content; */
   
}

.exc-cards-wrapper .swiper-wrapper {
    /* display: flex;
    gap: 20px;
    width: fit-content;
    margin-inline: 5%; */
}


.exc-cards-wrapper .swiper-slide {
    /* display: flex;
    justify-content: center;
    align-items: center;
    */
    width: 300px !important;
    height: 550px;
    cursor: pointer;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
    /* position: relative;
    perspective: 1000px; */
}

/*@media(max-width: 600px){
    .exc-cards-wrapper .swiper-slide{
        width: 90vw !important;
    }
}
*/
.exc-cards-wrapper .swiper-slide:first-child {
    /* display: flex;
    justify-content: center;
    align-items: center;
    */
    width: 2.5% !important;
    height: 550px;
    margin-right: 0px !important;
    box-shadow: 0 10px 10px rgba(0,0,0,0);
    /* position: relative;
    perspective: 1000px; */
}
.exc-cards-wrapper .swiper-slide:last-child {
    /* display: flex;
    justify-content: center;
    align-items: center;
    */
    width: calc(2.5% - 30px) !important;
    height: 550px;
    margin-right: 0px !important;
    /* position: relative;
    perspective: 1000px; */
}

.exc-card__space {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px;
}

.exc-card__content, .exc-card__content__back {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.686);
    position: relative;
    padding: 16px;
    display: grid;
    grid-template-rows: 1.5fr 1fr;
    gap: 20px;
    backdrop-filter: blur(12px); /* Adjust the blur value as needed */
    -webkit-backdrop-filter: blur(30px); /* For Safari */
}

.img-flip {
    padding: 4px;
    border: 1px solid black;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.card-number p {
    font-family: 'CF Ifigeneia', serif !important;
    font-weight: 600;
    font-size: 23px;
}

.exc-card__content .card-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exc-card__front .card-details {
    height: 195px;
    overflow: hidden;
}

.exc-card__back .card-number {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.exc-card__content__back .card-details h1, .exc-card__content__back .card-details p {
    text-align: left;
}

.exc-card__back .card-number p {
    font-size: var( --fs-heading-5);
}

.card-details {
    height: 194px;
    /*overflow: hidden;*/
    /*    height: 50px;*/
}



    .card-details h1 {
        font-size: var(--fs-heading-5);
        font-weight: 600;
        line-height: 30px;
        text-align: left;
        padding: 0;
        text-align: center;
        margin-top: 4px;
    }

.card-details p {
    line-height: 21px;
    font-size: 14px;
    text-align: center;
}

@media(max-width: 600px){
    .card-details p {
        font-size: 13px;
    }
}

.exc-row-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exc-row-1 .clip-path {
    height: 100%;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 50%);
    background-color: transparent;
    z-index: 3;
    mix-blend-mode: screen;
}

.exc-card__front, .exc-card__back {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d; /* Safari */
    transform-style: preserve-3d;
    -webkit-transition: transform 0.5s; /* Safari */
    transition: transform 0.5s;
    transform: translate3d(0, 0, 0); /* Forces hardware acceleration */
}



.exc-card__front {
    opacity: 0.9;
    z-index: 2;
}

.exc-card__back {
    opacity: 0.9;
    transform: rotateY(180deg);
}
/* 
.swiper-slide-active .exc-card__front {
    transform: rotateY(-180deg);
}

.swiper-slide-next .exc-card__back {
    transform: rotateY(0);
}

.swiper-slide-prev .exc-card__back {
    transform: rotateY(180deg);
} */

.exc-card__front .bg-img, .exc-card__back .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.exc-card {
    perspective: 1000px;
}

.exc-card__front, .exc-card__back {
    backface-visibility: hidden;
    transition: transform 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.exc-card__front {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden; /* Hide the back face when flipped */
    transform-style: preserve-3d;
    z-index: 2; /* Ensure the front card is on top initially */
    transform: rotateY(0deg);
    transition: transform 0.5s;
}

/*@media(max-width: 600px){
    .exc-card__front {
        width: 90vw;
    }
}*/

/* Back of the card */
.exc-card__back {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* display: none; */
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
    transition: transform 0.5s;
}

/* When the card is flipped */
.exc-card.flipped .exc-card__front {
    /* z-index: 999999; */
    /* display: none; */
    transform: rotateY(-180deg); /* Rotate front side away */
}

.exc-card.flipped .exc-card__back {
    transform: rotateY(0deg); /* Bring the back side to the front */
    z-index: 999;
    /* display: block; */
}

  @media(max-width: 700px){
    .exc-cards-wrapper .swiper-wrapper{
        margin-inline: 16px;
    }
    .exc-cards-wrapper .swiper-slide{
        /* height: 450px;  */
    }
    .card-details h1{
        font-size: var(--fs-heading-5);
    }
    .exc-card__content{
        grid-template-rows: 1.5fr 1fr;
        /* grid-template-rows: 300px 1fr; */
    }
}


/* .exc-card:hover .exc-card__front {
    transform: rotateY(-180deg);
}

.exc-card:hover .exc-card__back {
    transform: rotateY(0deg);
} */



/* trip-images__carousel */

/* .trip-images__carousel .swiper {
    width: 100%;
    height: auto;
  } */

  .trip-images__carousel{
    overflow: hidden;
    position: relative;
  }



.trip-images__carousel .swiper-slide {
    width: 30vw;
    height: 30vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trip-images .gallery-container {
    position: relative;
}

    .location__text {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 8px;
        left: 13px;
        bottom: 13px;
        color: white;
    }

        .location__text i {
            text-shadow: 0 0px 6px rgba(0,0,0,0.6)
        }

        .location__text p {
            text-shadow: 0 0px 6px rgba(0,0,0,1)
        }

@media(max-width: 600px) {
    .trip-images__carousel .swiper-slide{
          width: 70vw;
          height: 70vw;
      }
  }
  
  @media(max-width: 800px){
    .trip-images__carousel .swiper-slide{
/*        width: 75vw;*/
    }
  }

/*  .trip-images__carousel .swiper-slide:first-child{
    width: 5%;
    margin-right: 0 !important;
  }*/

.trip-images__carousel .swiper-slide img {
    width: 30vw;
    height: 30vw;
    object-fit: cover;
/*    opacity: 0;*/
/*    transition: opacity 0.5s ease;*/
}

/*.trip-images__carousel .image-wrapper .skeleton {
    width: 100%;
    height: 100%;*/
/*    background-color: #e9e9e9;*/
    /*position: absolute;
    animation: shimmer 1.5s infinite;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #eee, #ddd, #eee);
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}


.exc-card .exc-card__front .skeleton {
    background-color: #e0e0e0;
    background-image: linear-gradient(90deg, #e0e0e0 0px, #f0f0f0 40px, #e0e0e0 80px);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: skeleton-loading 1.2s infinite linear;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.exc-card .exc-card__front .skeleton-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
}

.exc-card .exc-card__front .skeleton-text {
    height: 16px;
    margin-top: 10px;
    width: 80%;
}*/


    @media(max-width: 600px) {
        .trip-images__carousel .swiper-slide img {
            width: 70vw;
            height: 70vw;
            object-fit: cover;
        }
    }
    /* Trips Scheduler */
    .trip-scheduler__heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }



    .trip-scheduler__heading h1 {
        font-size: var(--fs-heading-1);
        font-weight: 500;
        text-align: center;
        line-height: 60px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 14px;
    }

        .trip-scheduler__heading h1 span:first-child {
            margin-right: 100px;
            font-weight: 300;
        }
        .trip-scheduler__heading h1 span:nth-child(2) {
            margin-left: 100px;
            font-weight: 300;
            font-style: italic;
            font-size: 80px;
        }





@media(max-width: 600px) {

    .trip-scheduler__heading h1 span:first-child {
        margin-right: 0px;
        font-size: 54px;
    }

    .trip-scheduler__heading h1 span:nth-child(2) {
        margin-left: 0px;
        font-size: 54px;
    }


    .trip-scheduler__heading h1 {
        font-size: 33px;
        margin-bottom: 0px
    }

    .trip-scheduler__heading h1 {
        gap: 0px;
    }
/*    .trip-scheduler__heading h1 span:nth-child(2) {
        margin-left: 100px;
        font-weight: 300;
        font-style: italic;
        font-size: 60px;
    }*/
}

.trip-scheduler__heading img{
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
.trip-scheduler__container{
    margin-top: 80px;
}

@media(max-width: 600px){
    .trip-scheduler__container{
        margin-top: 20px;
    }
    .trip-scheduler__heading img {
        width: 100%;
        max-width: 100%;
    }
}

.trip-scheduler__wrapper {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 20px;
}

@media(max-width: 1150px){
   
.trip-scheduler__wrapper{
    
    grid-template-columns:600px 1fr;
   
} 
}

@media(max-width: 970px){
   
    .trip-scheduler__wrapper{
        
        grid-template-columns:500px 1fr;
       
    } 
    }

.trip-scheduler .map{
    height: 80vh;
    width: 100%;
    padding: 20vh 0;
    background-color: black;

}

.tab.active .tab-display{
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #CFCFCF;;
    cursor: pointer;
    z-index: 12;
    position: relative;
    /* transition: 1s all ease; */
}

.tab .tab-display {
    width: 100%;
    display: grid;
    grid-template-columns: 90px 1fr;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #CFCFCF;
    
    cursor: pointer;
    z-index: 12;
    position: relative;
    min-height: 70px;
    /* transition: 1s all ease; */
}



.flightBox-info input{
    position: absolute;
    opacity: 0;
}

.day-number {
    background-color: #FFF9CC;
    padding: 8px 12px;
    border-radius: 4px 0px 0px 4px;
    border: 1px solid var(--color-primary);
    transition: 0.8s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-width: 100px; */
}

.tab.active .day-number{
    
    background-color: var(--color-primary);
    /* transition: 0.8s all ease; */
   
    padding: 8px 12px;
    /* min-width: 100px; */
}

.day-number h1{
    font-size: var(--fs-heading-6);
    font-weight: 500;
}
.tab.active .tab-display .title{
    background-color: #FFFDEF;
    display: flex;
   align-items: center;
   width: 100%;
   /* transition: 1s all ease; */
}

 .tab-display .title{
    background-color: #ffffff;
    display: flex;
   align-items: center;
   width: 100%;
   /* transition: 1s all ease; */
}


    .tab-display .title p {
        padding: 8px 16px;
        font-weight: 300;
        font-size: var(--fs-heading-6);
    }

    @media(max-width: 600px){
        .day-number h1{
            font-size: 16px;
        }
        .tab-display .title p {
            font-size: 13px;
        }
    }

.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* min-height: 80vh; */
    /* gap: 8px; */
    /* height: 200vh; */
}

.tab .tab-content {
    position: relative;
    top: -20px;
    /* padding-top: 36px; */
    border: 1px solid #CFCFCF;
    z-index: 8;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.049);
    overflow: hidden;
    width: 100%;
    max-height: 0; /* Initially hidden */
    /* opacity: 0; Initially hidden */
    /* transition: max-height 1s ease, opacity 0.5s ease; Smooth transition */
}

.tab.active .tab-content {
    max-height: 5000px; /* Arbitrarily large enough to accommodate content */
    /* opacity: 1; Make content visible */
}

.tab.active .tab-content{
    position: relative;
    top: -20px;
    /* padding-top: 36px; */
    border: 1px solid #CFCFCF;;;
    z-index: 8;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.049);
    overflow: hidden;
    width: 100%;
    height:auto;
    /* transition: 1s all ease; */
}
.tab-wrapper:before {
    content: "";
    display: block;
    position: relative;
    height: 36px;
}

.tab-wrapper {
    width: 100%;
}
.map-container{
    height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.361);
    position: sticky;
    top: 140px;
    /* border: 2px solid black; */
}




@media(max-width: 840px){
    .map-container{
        display: none;
    }
    .trip-scheduler__wrapper{
        display: flex
;
    }
}

@media(max-width: 840px){
    .map-container{
        display: none;
    }
    .trip-scheduler__wrapper{
        display: flex
;
    }
}

.tab{
    margin-bottom: 8px;
}
.custom-marker {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 4px solid black;
    cursor: pointer;
    position: absolute;
    transition: width 0.3s ease, height 0.3s ease; /* Transition μόνο για width και height */
}

    .custom-marker.active {
        width: 25px;
        height: 25px;
        background-color: var(--color-primary);
        border-radius: 50%;
        border: 2px solid #b09b00;
        cursor: pointer;
        position: absolute;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transition: width 0.3s ease, height 0.3s ease; /* Transition μόνο για width και height */
    }

    .custom-marker.activePrevious {
        width: 15px;
        height: 15px;
        background-color: var(--color-primary);
        border-radius: 50%;
        border: 2px solid #b09b00;
        cursor: pointer;
        position: absolute;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transition: width 0.3s ease, height 0.3s ease; /* Transition μόνο για width και height */
    }


.tab-details-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-details-text__highlight .img-placeholder{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-details-text__highlight .img-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-details-text__highlight.station .img-placeholder {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-details-text__highlight.station .img-placeholder img{
    width: 18px;
}

.tab-details-text__highlight{
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: start;
    gap: 8px;
}

.tab-details-text__highlight-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .tab-details-text__highlight-info h1 {
        line-height: 28px;
        font-size: var(--fs-heading-4);
        font-weight: 500;
    }


.tab-details-text__highlight-info p{
    /* line-height: 28px; */
    font-size: var(--fs-small);
    line-height: 22px;
    font-weight: 300;
}

.tab-details{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 26px;
}

@media(max-width: 800px){
    .tab-details{
        display: flex;
        flex-direction: column-reverse;
    }
}
@media(max-width: 800px) {
    .tab-details {
        padding: 8px;
    }
}

.tab-details-img{
    width: 100%;
    aspect-ratio: 1/0.6;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

.tab-details-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-carousel{
    margin-top: 40px;
}

.highlights-container{
    width: 100%; /* Set to fit the full width of its parent */
    max-width: 1200px; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the container */
    overflow: hidden;
}

    .highlights-container .heading {
        margin-top: 24px;
        margin-left: 26px;
        margin-bottom: 16px;
        font-size: var(--fs-heading-4);
        line-height: 30px;
        font-weight: 500;
    }

.highlights__content{
    padding-bottom:26px;
}

.highlights-container .swiper-wrapper{
    display: flex;
    /*width: fit-content;*/
}
.swiper-slide.tab-carousel__item:first-child{
    opacity: 0;
    width: 16px;
    margin-right: 0;
}

.swiper-slide.tab-carousel__item{
    width: 280px ;
    height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.086);
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    /* pointer-events: none; */
}

.img__placeholder{
    height: 60%;
    width: 100%;
    position: relative;
    z-index: 3;
}

.tab-carousel__item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.tab-carousel__item__text__wrapper{
    padding: 12px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    border-radius: 12px;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 20;
    background-color:white ;
    cursor: pointer;
    height: 100%;
    /* transition: all 0.5s ease ; */
}

.tab-carousel__item__text__wrapper h1{
    line-height: 22px;
    font-size: var(--fs-heading-5);
    margin-bottom: 8px;
    font-weight: 500;
}

    .tab-carousel__item__text__wrapper p {
        line-height: 22px;
        font-size: var(--fs-small);
        margin-bottom: 8px;
        overflow: auto;
        height: 300px;
        font-weight: 300;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;
        padding-bottom: 15px;
    }

        .tab-carousel__item__text__wrapper p::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

        .tab-carousel__item__text__wrapper p::-webkit-scrollbar {
            width: 4px; /* width of the scrollbar */
        }

        .tab-carousel__item__text__wrapper p::-webkit-scrollbar-thumb {
            background-color: #888; /* color of the thumb */
            border-radius: 10px; /* rounded edges for the thumb */
        }

            .tab-carousel__item__text__wrapper p::-webkit-scrollbar-thumb:hover {
                background-color: #555; /* color when hovering over the thumb */
            }

        .tab-carousel__item__text__wrapper p::-webkit-scrollbar-track {
            background-color: #f1f1f1; /* color of the scrollbar track */
            border-radius: 10px; /* rounded edges for the track */
        }

    .tab-carousel__item__text__wrapper p {
        scrollbar-width: thin;
        scrollbar-color: #ececec #ffffff;
    }

.tab-carousel__item .overlay {
    content: "";
    display: block;
    bottom: 0;
    position: absolute;
    height: 50%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 98%,rgba(255, 255, 255, 1)); /* Gradient effect */
    left: 0;
    z-index: 99;
    pointer-events: none;
}



/* Only at versus */
.onlyAtVersus__heading {
    margin: 0 auto 54px;
    text-align: center;
    font-size: var(--fs-heading-1);
    font-weight: 500;
    line-height: 50px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}




.onlyAtVersus__heading.cruise{
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

    .onlyAtVersus__heading span:nth-child(1) {
        font-size: 54px;
        margin-right: 80px;
        font-weight: 300;
    }

    .onlyAtVersus__heading span:nth-child(2) {
        font-size: 80px;
        margin-left: 80px;
    }

    .onlyAtVersus__heading span {
        font-weight: 100;
        font-size: 80px;
    }


@media(max-width: 600px) {

    .onlyAtVersus__heading span:nth-child(1) {
/*        font-size: 40px;*/
        margin-right: 0;
    }

    .onlyAtVersus__heading span:nth-child(2) {
        font-size: 54px;
        margin-left: 0;
    }


    /*    display: flex;
    flex-direction: column;*/
    .onlyAtVersus__heading.cruise{gap: 0}
    .onlyAtVersus__heading span {
        font-weight: 100;
        font-size: 54px;
    }
}
.onlyAtVc__wrapper{
    width: 95%;
    max-width: 1200px;
    margin: 20px auto 0;
    position: relative;
}

.onlyAtVc__wrapper::after {
    content: "";
    display: table;
    clear: both;
}
.onlyAtVc__item{
    position: relative;
    width: 40%;
    float: left;
    margin-inline: 5%;
}
.onlyAtVc__item .text-container{
    margin-top: 20px;
}

.onlyAtVc__item .label{
    position: absolute;
    left: -20px;
    color: white;
    top: 40px;
    background-color: #292929;
    padding: 8px 20px;
}

.onlyAtVc__item .label p{
    font-size: 17px
}

@media(max-width: 600px){
    .onlyAtVc__item .label p {
        font-size: 16px
    }
}


.onlyAtVc__img-placeholder {
    width: 100%;
     height: 100%; 
/*aspect-ratio: 1;*/
    overflow: hidden;
}

.onlyAtVc__img-placeholder img{
    width: 30vw;
    height: 30vw;
    object-fit: cover;
}


@media(max-width: 800px){
    .onlyAtVc__img-placeholder img {
        width: 80vw;
        height: 70vw;
        object-fit: cover;
    }
}



@media(max-width: 600px) {
    .onlyAtVc__img-placeholder {
        /*aspect-ratio: 1.5;*/
    }

        .onlyAtVc__img-placeholder img {
            width: 200%;
        }

    .onlyAtVc__wrapper .text-container {
        margin-top: 12px;
    }
}

.onlyAtVc__wrapper .text-container p {
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    padding-left: 14px;
    border-left: 1px solid black;
}

@media(max-width: 600px) {
    .onlyAtVc__wrapper .text-container p {
        font-size: 13px;
        line-height: 24px;
    }
}


    /* .onlyAtVc__item:nth-child(odd):not(:first-child) {
    margin-top: -15vw;
} */

    .onlyAtVc__item:nth-child(2) {
        margin-top: 180px;
    }

.onlyAtVc__item:nth-child(odd) {
    float: left !important;
    margin-bottom:5vw;
}

.onlyAtVc__item:nth-child(even) {
/*    margin-top: 180px;*/
    margin-bottom: 5vw;
    float: right !important;
}



    @media(max-width: 800px) {
        .onlyAtVc__item {
            float: none;
            width: 90%;
            margin: 0 auto 80px;
        }

            .onlyAtVc__item:nth-child(2) {
                margin: 0 auto 80px;
            }

            .onlyAtVc__item:nth-child(even) {
                margin: 0 auto 80px;
                float: none !important;
            }
            .onlyAtVc__item:nth-child(odd) {
                margin: 0 auto 80px;
                float: none !important;
            }
    }


@media(max-width: 600px) {
    .onlyAtVc__item {
        float: none;
        width: 90%;
        margin: 0 auto 40px;
    }

        .onlyAtVc__item:nth-child(2) {
            margin: 0 auto 40px;
        }

        .onlyAtVc__item:nth-child(even) {
            margin: 0 auto 40px;
        }
}

    @media(max-width: 800px) {
        .overview-info {
            grid-template-columns: repeat(2, minmax(150px, 1fr));
            margin-top: 40px;
            gap: 20px;
        }

        .overview-item .img-placeholder {
            width: 40px;
            height: 40px;
        }
    }

.trip-menu-link__mobile {
    text-transform: uppercase;
    font-size: 11px;
}

.trip-alert__container {
    display: flex;
    flex-direction: column;
    grid-column: span 2;
}

.trip-alert {
    font-size: 19px;
    font-weight: 300;
    line-height: 22px;
    font-family: 'CF ModGrotesk', sans-serif !important;
    margin-bottom: 20px;
}

@media(max-width: 800px){
    .trip-alert {
        font-size: 13px;
        font-weight: 300;
        font-family: 'CF ModGrotesk', sans-serif !important;
        margin-top: 40px;
    }
}


.getBookingFlight {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #fde100;
}



/*Modal Request*/


.modal {
    display: none;
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 80vh;
}

@media(max-width: 600px){
    .modal-content {
        width: 90%;
    }
    }



.modal-divercity {
    display: none;
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.divercity-button {
    position: absolute !important;
    right: 20px !important;
}

.modal-divercity-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 80vh;
    position: relative;
}

.close-button {
    color: #aaa;
    /* float: right; */
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    display: grid;
    align-items: center;
    margin-bottom: 20px;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;

    @media (max-width: 900px) {
        grid-template-columns: 1fr;
    }
}

.modal-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-right: 20px;
    object-fit: cover;
}

.modal-title h2 {
    margin: 0;
    font-size: 24px;
}

.modal-title p {
    margin: 5px 0 0 0;
}

.modal-form label {
    display: block;
    margin-top: 10px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-preferences p {
    margin-bottom: 10px;
}

.contact-preferences label {
    display: flex;
    margin-bottom: 5px;
    gap: 8px;
    & input

{
    width: fit-content;
}

}

.extensionDiv {
    padding: 20px;
}

.button-fill {
    background-color: var(--color-primary);
    font-size: 13px;
    line-height: 30px;
    padding: 4px 16px;
    white-space: nowrap;
    border-radius: 4px;
}


.ExtraDays__heading {
    font-size: 38px;
    margin-top: 20px;
}

.ExtraDays__Title {
    font-size: 18px;
    font-weight: 500;
}
.ExtraDays__text {
   font-size: 16px;
   font-weight: 300;
   margin-bottom: 12px;
}

.flex {
    display: flex;
}



.diaforetikotita__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #00000087;
    height: 100%;
}

.diaforetikotita__modal.active{
    display: flex;
}

.diaforetikotita__modal__content {
    width: 80vw;
    height: 80vh;
    display: grid;
    grid-template-rows: auto 2fr;
    background-color: white;
    position: relative;
}



.diaf__heading {
    padding: 16px 40px 0 40px;
    font-size: 32px;
    border-bottom: 1px solid #00000036;
}

.diaf-image-placeholder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.diaf-image-placeholder {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 20px 20px 0 20px;
    border-radius: 0px;
}

.diaf__text {
    padding: 16px 40px 40px 40px;
    overflow: auto;
}

.diaf__text ul {
    list-style: disc !important;
}

.diaf__close-button {
    position: absolute;
    top: -30px;
    right: 0px;
    cursor: pointer;
}

    .diaf__close-button i {
        color: white;
        font-size: 20px;
    }


.btn-price__modal {
    padding: 4px;
    background-color: #fde100;
    border-radius: 4px;
    cursor: pointer;
    z-index: 9;
    position: relative;
}

.btn-price__modal p{
    font-size: 12px;
}


.modal__price-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000042;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}


.modal__price-details.active {
    display: flex;
}



.modal__price-details__content {
    /* width: 80vw; */
    max-width: 430px;
    width: 95%;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
}

    .modal__price-details__content h1 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 8px;
    }

.btn__close-price-details{
    margin-top: 8px;
}

.btn__close-price-details {
    padding: 8px;
    text-align: center;
    background-color: #FDE100;
    border-radius: 4px;
    cursor: pointer;
}


.trip-scheduler__modal-btn {
    width: fit-content;
    margin: 40px auto;
    background-color: black;
    padding: 8px 16px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 300;
}



.trip-scheduler__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000042;
    z-index: 99999;
    display: none;;
    justify-content: center;
    align-items: center;
}

.trip-scheduler__modal.active{
    display: flex;
}

.trip-scheduler__modal-content {
    max-width: 700px;
    max-height: 70vh;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    height: 100%;
    width: 95%;
    /*    overflow: auto;*/
}

.trip-scheduler__text{
    overflow: auto;
    height: 100%;
}

.trip-scheduler__text p {
    font-weight: 300;
}

.trip-scheduler__close-btn {
    position: absolute;
    right: 0;
    top: -30px;
    cursor: pointer;
}
.trip-scheduler__text h1 {
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 16px;
}
.trip-scheduler__close-btn i {
    color: white;
}





.extra-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0;
    position: relative;
}

.extra-marker.active-extra {
    display: block !important;
    opacity:1;
    background-color: #273772; /* Green to indicate active */
    border:1px solid #4799dc;
}

.detailed-day__programm {
    margin-top: 8px;
    /* padding: 8px 16px; */
    /* background-color: black; */
    color: #000000;
    border-bottom: 1px solid black;
    width: fit-content;
    cursor: pointer;
    /* border-radius: 4px; */
    margin-left: 38px;
    font-family: 'CFModGrotesk', sans-serif;
}


/*;*/

.modal__analutiko-program-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    z-index: 999999;
    display: none; 
    justify-content: center;
    align-items: center;
}

.modal__analutiko-program-container.active{
    display: flex;
}

.modal__analutiko-program {
    background-color: white;
    padding: 16px;
    border-radius: 4px;
    width: 80vw;
    max-height: 80vh;
    height: 100%;
    position: relative;
}

.analutiko-program__content h1 {
    font-size: 32px;
}

.analutiko-program__content-text{
    height: 100%;
    overflow: auto;
}

.analutiko-program__close-btn {
    position: absolute;
    right: 0;
    top: -34px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.analutiko-program__content {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: auto;
}


.marker-with-label {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .marker-with-label .icon {
    background-image: url('/v2/img/map/boat-icon.png');
    background-size: cover;
    width: 30px;
    height: 30px;
  }
  
  .marker-with-label .label {
    font-size: 12px;
    color: black;
    background: white;
    padding: 2px 4px;
    border-radius: 3px;
    margin-top: 2px;
    white-space: nowrap;
  }

  .custom-marker .label{
    background-color:white;
    color:black;
    position:absolute;
    padding:0px 7px;
    border-radius:3px;
    top: -28px;
    left: -50%;
  }

  
  .extra-marker .label{
    background-color:white;
    color:black;
    position:absolute;
    padding:0px 7px;
    border-radius:3px;
    display:none;
    top: -28px;
    left: 0%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .extra-marker.active-extra .label{
    display:block;
  }


/*.genieV__button-container {
    bottom: 120px !important;
}*/

.trip-mob-btns{
    display: flex;
    gap:8px;
}

@media (max-width: 600px) {
    #chatContainer.chat-container {
        width: 85vw !important;
        bottom: 174px !important;
        height: 120vw !important;
    }
}


/*.info_modal_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000042;
}*/

.info_modal_container {
    position:relative;
}


.info_icon:hover {
}

.info_modal {
    position: absolute;
    font-family: 'CFModGrotesk', sans-serif;
    font-weight: 300;
    top: -60px;
    left: 0px;
    transform: translateX(-50%);
    background-color: white;
    display: none;
    width: 350px;
    font-size: 11px;
    transform-origin: bottom;
    padding: 3px 10px;
    border: 1px solid #cecece;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

@media(max-width: 800px){
    .info_modal {
        top: 30px;
        left: 4px;
    }
}



#info_modal_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000042;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:10000;
}

#modalText {
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    width: 250px;
    min-height: 200px;
    display: flex;
    flex-direction:column;
    justify-content: space-around;
    align-items: center;
    font-family: 'CFModGrotesk', sans-serif;
    font-size:14px;
}

#modalText button {
    padding: 8px;
    text-align: center;
    background-color: #FDE100;
    border-radius: 4px;
    cursor: pointer;
    width:100%;
}

@media(max-width: 600px) {
    .diaforetikotita__modal__content {
        width: 95%;
    }

    .diaf__heading {
        padding: 16px 16px 16px 16px;
        font-size: 32px;
        line-height: 27px;
        border-bottom: 1px solid #00000036;
    }

    .diaf__text {
        padding: 16px 28px 40px 28px;
        overflow: auto;
    }
}