/* creation date: Thu, 10 Jul 2025 09:46:08 GMT
concat references:
https%3A%2F%2Fcms.travelfactory.fr%2Ffrontend%2Fassets%2Fstyles%2Fheader.css%3F1689691831020
https%3A%2F%2Fcms.travelfactory.fr%2Ffrontend%2Fassets%2Fstyles%2Ffooter.css%3F1689691831020
*/
/*! https%3A%2F%2Fcms.travelfactory.fr%2Ffrontend%2Fassets%2Fstyles%2Fheader.css%3F1689691831020 */
body {
    /* CHANGE THIS WHEN ADDED THE FOOTER WITH THE HEADER TOGETHER.. CHECK */
    /* overflow: hidden; */
    padding: 0;
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}


/* TO AVOID HEADER DEPENDENCY TO BOOTSTRAP */
img, svg {vertical-align: middle;}
.tf-mt-0 {margin-top: 0!important}
.tf-m-0 {margin: 0!important}
.tf-mb-1 {margin-bottom: .25rem!important}
.tf-ms-1 {margin-left: .25rem!important}
.tf-pe-1 {padding-right: .25rem!important}


/* BANNER */
#header-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#005F32 ;
    color: #FFFFFF;
    /* position: absolute; */
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
    position: relative;
}

.header-banner-text a:hover {
    color: white !important;
}

.header-banner-text {
    display: flex;
    align-items:center;
}
#header-cross-banner {
    position: absolute;
    right: 20px;
    cursor: pointer;
    /* top: 18px; */
}
.header-cross {
    display: none;
}
.header-banner-text A {
    text-decoration: none;
    color: inherit;
}
/* /BANNER */


/* topbar */

.header-topbar {
    /* position: absolute; */
    top: 50px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--primary-blue);
    z-index: 7777;
}

.header-topbar-sticky{
    position: sticky;
    top: 0;
    width: 100%;
}


.header-topbar-main {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    
}

.travelski-logo {
    width: 169px;
    height: 36px;
}

.header-logo-svg {
    width: 169px;
    height: 36px;
}

#header-hamburger-menu {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo {
    width: 169px;
}
.header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-customer-main {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.header-customer-icons {
    height: 25px;
}
.header-customer-wrapper {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.header-customer-wrapper > .header-desktop-customer-info {
    display: flex;
    flex-direction: column;
}

.header-customer-wrapper > .header-desktop-customer-info > span {
    color: #FFFFFF;
}



/* POP UP FOR CUSTOMER CALL */
.header-popup-customer {
    background-color: #FFFFFF;
    position: fixed;
    z-index: 9999;
    top: 0;
    padding: 1rem;
    border-bottom: 1px solid grey;
    display: none;
    height: 300vh;
    /* backdrop-filter: blur(2px); */
    /* filter: none; */
}
.header-popup-customer.header-show-customer-popup {
    display: block;
}
.header-popup-cta {
    margin-top: 2rem;
}
.header-backdrop.active-popup {
    background: rgba(13, 20, 27, 0.76);
    height: 100vh;
    width: 100%;
    backdrop-filter: blur(2px);
    position: fixed;
    z-index: 1000;   
}
.header-popup-title-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.header-popup-contact-wrapper {
    display: flex;
    gap: 1rem;
}

.header-popup-contact-wrapper > h4 {
    margin: 0;
}

.header-popup-text  {
    padding-left: .5rem;
    padding-top: .8rem;
}
/* /POP UP FOR CUSTOMER CALL */




.header-desktop-customer-info > * {
    display: none;
}

.header-user-account > button {
    border: 1px solid #9FB6E2;
}

.header-user-account-btn {
    padding: 10px 20px;
    display: none;
}

a.header-user-account-link {
    text-decoration: none;
}

.header-desktop-icon {
    margin-right: .5rem;
}

.header-info-bubble {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #DEE2E6;
    box-shadow: 0px 1px 8px rgba(16, 24, 40, 0.1), 0px 1px 3px rgba(16, 24, 40, 0.1);
    border-radius: 30px;
    left: 0px;
    width: 279px;
    height: 56px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    display: none;
    transition: .3s ;
}

.header-bubble-text {
    color: #000000;
    padding: 10px 25px;
    transition: .3s ;
}



/* ---------------------------------- */
/* --------------NAVBAR------------- */
/* ---------------------------------- */


body { 
    font-family: sans-serif;
  }
  
  #header-sidebar {
    /* border: 1px solid blue; */
    height: 100vh;
    width: 0;
    position: fixed;
    /* top: 110px; */
    left: 0;
    transition: .3s;
    /* overflow-x: hidden; */
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    
    white-space: nowrap;
    background-color: #FFFFFF;
    z-index: 9999;
  }
  
  .header-navbar-main  ul:nth-child(1) {
    margin-top: 1rem;
  }

  #header-sidebar>UL {
    margin: 0;
    padding: 0;
  }
  
  #header-sidebar > ul > li {
    list-style-type: none;
  }
  
  #header-sidebar.header-showSidebar {
    width: 100vw;
    /* width: 97vw; */
    margin: 0 auto;
    padding: 0 15px;
    /* width: 250px; */
  }

  .no-scroll {
    overflow: hidden !important;
    /* height: 100vh;  */
  }
  
  .header-content {
    height: 250px;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
    background-color: #ffffff;
    padding: 0;
  
    overflow: hidden;
  }
  
  /* cHANGE THIS LATER */
  /* .dropdown-desktop > li {
    padding: 0 8px 0 32px;
    list-style-type: none;
  } */
/*   
  .content.showSubmenu {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
  } */
  
  .header-back-btn {
    cursor: pointer;
    font-weight: bold;
  }
  


  /* ------------TAKEN FROM THE PREVIOUS---------- */

  .header-link  {
    cursor: pointer;
    position:relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    border-bottom: 1px solid #DEE2E6;
    /* transition: .5s; */
    overflow-x: hidden;
    padding: 0 1rem;
     /* display: block; */
    
}
.header-link:hover{
    color: var(--primary-blue)!important;
}

.header-desktop-dropdown-item {
    position:relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    height: 74px;
    border-bottom: 1px solid #DEE2E6;
    /* transition: .5s; */
    /* overflow-x: hidden; */
    padding-left: 1rem;

}
.header-dropdown-star {
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
}

.header-content .link {
    justify-content: flex-start;
    gap: .5rem;
}

.header-list-item {
    list-style-type: none;
    /* transition: .5s ease-in-out; */
    /* padding-left: 1rem; */
   
    /* margin-left:  1rem; */
}

.header-arrow-small-desktop {
    display: none;
}

.header-arrow-back-container {
    margin-top: 2rem;
    margin-bottom: 1rem;
    /* border: 1px solid red; */
}

.header-arrow-back {
    transform: translateY(-3px);
}

.header-black-arrow-svg {
    --svg: url('data:image/svg+xml;utf8,<svg width="9" height="18" viewBox="0 0 9 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.399772 17.0528C-0.133257 16.459 -0.133257 15.4999 0.399772 14.9061L5.70273 8.99904L0.399772 3.09196C-0.133258 2.49821 -0.133258 1.53907 0.399772 0.945314C0.932801 0.351562 1.79385 0.351562 2.32688 0.945314L8.60023 7.93333C9.13326 8.52708 9.13326 9.48622 8.60023 10.08L2.32688 17.068C1.80752 17.6465 0.932802 17.6465 0.399772 17.0528Z" fill="%230D141B"/></svg>');
    width: 9px;
    height: 18px;
    -webkit-mask: var(--svg);    
    mask: var(--svg);
    background-color: var(--grey-900);
}


.header-black-arrow {
    transform: translateX(-20px);
}
.header-link-blue{
    color: var(--primary-black)!important;
}
svg.header-link-blue  {
    stroke: var(--primary-black)!important;
}

.header-dropdown-desktop {
    height: 250px;
    width: 0;
    position: absolute;
    top:0;
    left: -400px;
    transition: 1.0s;
    overflow: hidden;
    position: absolute;
    background: #FFFFFF;
    z-index: 0;
}


.header-dropdown-desktop > * {
    padding: 0 15px;
}

.header-dropdown-desktop.header-showSubmenu {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    /* Added at the end. */
    left: 0;
    top: 0;
    flex-direction: column;
    transition: 0.5s;
    padding-left: 0;
  }
  


@media only screen and (min-width: 576px) {

    #header-sidebar ul > li {
        position: relative;
    }
    
    #header-banner {
        height: 36px;
    }
    
    /* #header-cross-banner {
        top: 12px;
    } */

    .header-topbar {
        top: 36px;
    }
    .header-topbar-sticky{
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1030 ;
    }

    .header-logo-svg {
        width: 229px;
        height: 50px;
    }

    .header-navbar-main  ul:nth-child(1) {
        margin-top: 0;
      }


    .header-dropdown-desktop {
        position: absolute;
        padding: 0;
        left: inherit;
        transform: translateY(100%);
        width: fit-content;
        height: fit-content;
        top: unset;
        /* border: 1px solid red; */
        
        display: flex;
        flex-direction: column;
        padding: 4px 0 ;
        bottom: -5px;
        /* top: 80px; */
        /* padding-right: 1.5rem; */
        /* gap: .5rem; */
        
        /* white */
        margin: 0;
        
        background: #FFFFFF;
        border-radius: 8px;
        
        filter: drop-shadow(0px 1px 8px rgba(16, 24, 40, 0.1)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));
        /* top: 120px; */
        display: none;
        z-index: 100000;
    }

    .header-dropdown-desktop li:nth-child(1) {
        display: none;
    }

    .header-dropdown-star {
        position: relative;
        top: -1px;
        width: 15px;
        height: 14px;
    }

    #header-hamburger-menu {
        display: none;
    }

 
    #header-sidebar{
      
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        top: 100px;
        height:54px ;
        width: 100%;
        box-shadow: 0px 1px 8px rgba(16, 24, 40, 0.1), 0px 1px 3px rgba(16, 24, 40, 0.1);
        position: static;
        background-color:#FFFFFF;


    }

    #header-sidebar.header-showSidebar {
        width: 90vw;
        /* margin: 0 auto; */
        /* width: 250px; */
      }

    /* #sidebar ul {
        display: flex;
    } */

    .header-navbar-main > ul {
        margin: 0;
    }

    .header-list-item {
        /* padding: 15px 0; */
        display: flex;
        justify-content: center;
        height: 100%;
        padding: 0;
    }
    .header-menu-bar {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }

    .header-menu-bar > .header-list-item .header-link {
        border: none;
    }

    .header-black-arrow,
    .header-black-arrow-svg {
        display: none;
    }

    .header-link-blue{
        color: var(--primary-blue)!important;
    }
    svg.header-link-blue  {
        stroke: var(--primary-blue)!important;
    }
    

    .header-link {
        height: 50px;
        color: var(--grey-800);
        overflow: visible;
        border: none;
        padding-left: 0;
    }

    .header-logo {
        width: 229px;
        height: 50px;
    }

    .travelski-logo {
        width: 229px;
        height: 50px;
    }


    .header-arrow-small-desktop {
        display: block;
        transform: translateX(5px);
    }

    svg.header-arrow-small-desktop {
        stroke: var(--primary-black); 
    }

    svg.header-arrow-small-desktop:hover {
        stroke: var(--primary-blue)!important;
    }

    .header-desktop-customer-info > * {
        display: flex;
    }
    
    .header-account-icon {
        display: none;
    }

    .header-user-account-btn {
        display: flex;
    }


    .header-customer-service {
        pointer-events: none;
    }


     .header-customer-wrapper:hover > .header-info-bubble, .header-customer-wrapper:hover > .header-info-bubble .header-bubble-text {
        display: flex;
     }



     /* --------Menu dropdown desktop-------- */

/* .header-dropdown-desktop {
    position: absolute;
    padding: 0;
    transform: translateY(58px);
   
    
    display: flex;
    flex-direction: column;
    padding: 4px 0 ;
  
    
    background: #FFFFFF;
    border-radius: 8px;
    
    filter: drop-shadow(0px 1px 8px rgba(16, 24, 40, 0.1)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.1));
   
    display: none;
} */
.header-dropdown-desktop > * {
    padding: 0;
}

.header-desktop-dropdown-list {
    list-style-type: none;
    padding: 8px 1.5rem 8px 12px;
    /* padding: 8px 12px; */
}

.header-desktop-dropdown-list:hover {
    background: #EEF2FA;
}

.header-desktop-dropdown-item {
    text-decoration: none;
    color: #000000;
    border: none;
    padding: 0;
    height: fit-content;
}

.header-list-item:hover  {
    color: var(--primary-blue);
    margin-top: 2px;
    border-bottom: 3px solid var(--primary-blue);
}

.header-list-item:hover > .header-link {
    color: var(--primary-blue);
    
}

.header-list-item:hover  .header-link .header-black-arrow-container  .header-arrow-small-desktop {
    fill: var(--primary-blue);
}

.header-link:hover .header-arrow-small-desktop {
    stroke: var(--primary-blue)!important;
}


.header-active-item {
    color: var(--primary-blue);
    margin-top: 2px;
    border-bottom: 3px solid var(--primary-blue);
}

.header-list-item:hover .header-link,
.header-active-item .header-link {
    height: 47px;
}



.header-show-desktop-dropdown {
    display: block;
}






.header-topbar-main {
    
    height: 80px;
    /* width: 1140px; */
    max-width: 1140px;
    margin: 0 auto;
}




    

}

.header-topbar-sticky > #header-banner {
    /* position: absolute; */
    top: -100%;
}

@media (max-width: 768px) {
    #header-sidebar {
        overflow-x: hidden;
    }

    #header-banner {
        justify-content: start;
    }
}

@media (max-width: 575px) {
    .header-user-account-btn.button-primary {
      display: none !important;
    }
  }
/*! https%3A%2F%2Fcms.travelfactory.fr%2Ffrontend%2Fassets%2Fstyles%2Ffooter.css%3F1689691831020 */
/* TO AVOID HEADER DEPENDENCY TO BOOTSTRAP */
img, svg {vertical-align: middle;}
.align-items-start {align-items: flex-start!important;}
.tf-mt-0 {margin-top: 0!important}
.tf-mb-1 {margin-bottom: .25rem!important}
.tf-px-3 {padding-right: 1rem!important;padding-left: 1rem!important}
.tf-m-0 {margin: 0!important}
.tf-me-1 {margin-right: .25rem!important}
.tf-d-none {display: none!important;}
.tf-d-block {display: block!important}
.tf-gap-3 {gap: 1rem!important;}
.tf-d-flex {display: flex!important;}
.tf-me-2 {margin-right: .5rem!important}
.tf-text-end {text-align: right!important;}
.tf-p-0 {padding: 0!important}
.tf-align-self-start {align-self: flex-start!important;}


footer {
    background-color: var(--primary-blue);
}
.footer-newsletter-label {
    position: absolute;
    left: 15px;
    top: -13px;
    font-size: 11px;
    z-index: 1;
    padding: 0 0.25rem;
    background-color: var(--primary-white);
    color: var(--primary-orange);
}


.footer-newsletter-input-error {
    border:1px solid var(--primary-orange);
}

.footer-newsletter-form-status {
    position: relative;
    top: 0px;
    font-size: 11px;
    line-height: 18px;
}

.footer-newsletter-success {
    margin: auto;
    padding: 5px;
    font-size: 16px;
    color: var(--primary-green);
}

.footer-newsletter-error {
    margin: auto;
    padding: 5px;
    font-size: 16px;
    color: var(--primary-orange);
}


.footer-section-wrapper {
    width: 90%;
    margin: 0 auto;
    /* border: 1px solid red; */
  
}
.footer-trustpilot-container {
    background-color: var(--primary-white);
    border-top: 1px solid var(--grey-300);
}

.footer-trustpilot-desktop {
    display: none;
}

.footer-trustpilot-mobile {
    width: 100%;
}

.footer-email-val {
    display: none;
}

.footer-newsletter-container, .footer-contact-us {
    padding: 1rem 0 0.5rem 0 ;
}

.footer-payment {
    padding: 1.5rem 0;
}

.footer-center-icon {
   display: flex;
   justify-content: center;
   width: 100%;
}
.footer-newsletter-title {
    text-align: center;
    padding: 0 1rem;
}

.footer-form-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--primary-blue);
}

.footer-newsletter {
    background: var(--blue-100);
}

.footer-contact-us, .footer-payment, .footer-links, .footer-acc, .footer-register-address {
    background-color: var(--primary-blue);
}

.footer-social-wrapper {
    margin: 0;
    padding: 1rem;
}

.footer-icons-group {
    margin-top: 1rem;
}

.footer-icons-group > div {
    /* width: 60%;  */
    /* border: 1px solid red; */
    /* display: flex; */
    gap:  1rem;
    flex-wrap: wrap;
}

.footer-icons-white {
    background-color: var(--primary-white);
    border-radius: 35px;
    padding: 10px;
    display: inline-block;
}

.footer-contact-us, .footer-payment, .footer-links, .footer-accordion {
    /* background-color: var(--primary-blue); */
    color: #FFFFFF;
}

.footer-payment .footer-icons-group > img {
    max-width: 100%;
    /* width: 40px; */
}
/* .footer-payment .icons-group {

} */

/* .footer-costumer-service-icon{ */
    
    /* border: 1px solid red; */
/* } */

.footer-contact-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icons-group2 {
    padding: 1.25rem 0;
}


.footer-contact-info,
.footer-payment .footer-icons-group,
.footer-payment .footer-icons-group2 {
    /* border: 1px solid red; */
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #3766C3;
}

.footer-payment-desktop, .footer-icons-desktop {
    display: none;
}


/* ---------------------------- */
/* ------------LINKS----------- */
/* ---------------------------- */

.footer-desktop-links {
    display: none;
}
.footer-links > .footer-section-wrapper > ul > li > a, .footer-our-ops> li > a  {
    text-decoration: none;
    color: #FFFFFF;
}

.footer-links .footer-section-wrapper > ul > li:first-child {
    padding: 0;
}

.footer-links > .footer-section-wrapper > ul > li {
    list-style-type: none;
    padding-top: 1.3rem;
}

.footer-links .footer-section-wrapper > ul, .footer-our-ops {
    padding: 0;
}

.footer-flags-container {
    margin-top: 1.5rem;
}


/* ------------------------------ */
/* -----------ACCORDION------------ */
/* ------------------------------ */

/* .footer-active {

} */

.footer-acc {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

/* .footer-acc-btn { */
    /* height: 54px; */
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    */
/* } */
/* 
.footer-acc-btn > a {
    text-decoration: none;
    color: #FFFFFF;
    
} */

.footer-acc-title, .footer-acc-title:hover {
    text-decoration: none;
    color: #FFFFFF;
}

.footer-content-footer  {
    margin-top: 1.4rem;
    display: none;

}

.footer-content-active {
    display: block;
}

.footer-desktop-link {
    display: none;
    cursor: pointer;
}


.footer-mobile-link {
    border: none;
    cursor: pointer;
    background-color: inherit;
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}


.footer-acc-container {
    /* border: 1px solid red; */
    border-top: 1px solid #3766C3;
    /* height: 54px; */
    padding: 1.3rem 0;
}

/* .footer-our-ops> li > a {
    text-decoration: none;
    color: #FFFFFF;
} */

.footer-acc-links, .footer-acc-links:hover {
    text-decoration: none;
    color: #FFFFFF;

}

.footer-our-ops > li, .footer-stations > li, .footer-dates-toleave > li, .footer-locations > li, .footer-blog > li, .footer-sites > li, .footer-mountain > li {
    list-style-type: none;
    margin-bottom: 1rem;
   
}

.footer-acc-arrow {
    transform: matrix(0, 1, 1, 0, 0, 0);
}

.footer-arrow {
    --svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="10" viewBox="0 0 17 10" fill="none"><path d="M0.447236 0.72277C1.04099 0.189741 2.00013 0.189741 2.59388 0.72277L8.50096 6.02573L14.408 0.722771C15.0018 0.189741 15.9609 0.189741 16.5547 0.722771C17.1484 1.2558 17.1484 2.11685 16.5547 2.64988L9.56667 8.92323C8.97292 9.45626 8.01378 9.45626 7.42002 8.92323L0.432011 2.64988C-0.146517 2.13052 -0.146516 1.2558 0.447236 0.72277Z" fill="white"/></svg>');
    width: 17px;
    height: 10px;
    -webkit-mask: var(--svg);    
    mask: var(--svg);
    background-color: var(--primary-white);
}
.footer-arrow-close {
    transform: matrix(0, 1, 1, 0, 0, 0);
}


.footer-stations, .footer-our-ops, .footer-dates-toleave, .footer-locations, .footer-blog, .footer-sites, .footer-mountain, .footer-sitemap-list {
    padding: 0;
}

.footer-acc-container > * {
    padding: 0  1rem;
}



/* ------------------------ */
/* ---------SITEMAP--------- */
/* ------------------------ */

.footer-sitemap {
    background-color: #1D2329;
    padding: 1rem 0;
    
}

.footer-sitemap-list, .footer-register-container {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
}

/* .footer-sitemap-list > a { */
    /* width: 30vw; */
/* } */
/* .footer-sitemap-list > li {
    list-style-type: none;
} */


/* ---------------------------- */
.footer-register-container > p {
    color: #FFFFFF;
    text-align: center;
    margin: 12px;
}

.footer-trustpilot-row-padding {
    padding: 10px 0;
}


@media only screen and (min-width : 576px) {
    
    .footer-newsletter-error {
        margin-bottom: 0;
    }

    footer .footer-section-wrapper  {
        max-width: 1140px;
    }
  
    .footer-content-footer {
        display: block;
    }

    .footer-sitemap {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 48px;
    }

    .footer-sitemap-list {
        align-self: center;
        margin: 0 auto;
        color: var(--primary-white);
    }

    .footer-sitemap-list > DIV {
        display: inline;
        vertical-align: middle;
    }
    .footer-sitemap-list > DIV  > a{
        margin: 0 1rem;
    }

    .footer-register-container{
        height: 44px;
    }
    

    /* .footer-icons-group {
        display: block;
    } */

    .footer-content-footer  > ul > li {
        margin: 0;
    }

    .footer-default {
        width: 20vw;
        max-width: 272px;
    }
    .footer-trustpilot-container {
        /* display: flex; */
        justify-content: center;
        align-items: center;
        border-top: 1px solid var(--grey-300);
        height: 70px;
    }

    .footer-trustpilot-row-padding {
        padding: 22px;
    }

    .footer-trustpilot-container > span {
        color: #000000;
    }


    .footer-trustpilot-desktop {
        display: block;
        width: 100%;
        height: 70px;
    }

    .footer-trustpilot-mobile {
        display: none;
       
    }

    .footer-center-icon  {
        display: block;
        width: fit-content;
    }
    .footer-center-icon > img{
        /* display: none; */
        width: 60px;
    }

    .footer-newsletter-container {
        display: flex;
        align-items: baseline;
        width: fit-content;
    }

    .footer-newsletter > .footer-section-wrapper,  .footer-newsletter > .footer-form-wrapper  {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    .footer-newsletter-title {
        text-align: left;
        /* width: 60%; */
    
    }

    .footer-newsletter {
        padding: 1rem;
    }

    .footer-newsletter-submit {
        padding: 18px 30px;
    }

    .footer-newsletter-desktop {
        /* flex-grow: 2; */
        display: flex;
        /* border-right: 1px solid var(--primary-blue); */
        padding-right: 3rem;
        position: relative;
    }

    .footer-newsletter-desktop::after{
        content: "";
        height: 60%;
        display: block;
        border-left: 1px solid var(--primary-blue);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }


    .footer-newsletter-border {
        width: 10px;
        border-left: 1px solid var(--primary-blue);
        height: 50%;
        vertical-align: middle;
      }

    .footer-form-wrapper {
        border: none;
        padding-top: 1.5rem;
        width: fit-content;
        align-items: center;
    }
    .footer-form-status {
        font-size: 12px;
    }


    .footer-social-wrapper {
        width: 20%;
        padding: 1rem 0 0 0;        
    }

    .footer-vl {
        border-left: 1px solid var(--primary-blue); 
        height: 4rem;
    }
    .footer-acc-arrow {
        display: none;
    }

    .footer-acc-container {
        border: none;
        /* display: flex; */
    }

    /* .footer-desktop-wrapper { */
        /* display: flex; */
        /* width: 100vw; */
    /* } */

    .footer-links {
        display: none;
    }

    .footer-acc > .footer-section-wrapper {
         display: flex; 
         gap: 2rem;
        align-items: baseline;
        /* flex-wrap: wrap; */
        /* justify-content: space-between;   */
        
        
    }


    
    /* We have now the left side withthe links and the right side with the grid links. Display flex and give left side some room. and grid the links on the right. max 5 columns and then wrap the left two to be starting from the left */

    .footer-links-wrapper {
        /* border: 1px solid red; */
        /* width: 100%; */
        display: grid;
        grid-template-columns: repeat( auto-fill, minmax(150px, 1fr));
        column-gap: 1.5rem;
        flex-grow: 1;
    }



    .footer-desktop-link {
        display: block;
        width: 117px;
    }
    .footer-mobile-link {
        display: none;
    }

 

    .footer-desktop-links {
        display: block;
        width: 18%;
    }

    .footer-desktop-links > ul {
        padding: 0;
    }

    .footer-desktop-links > ul > li  {
        list-style-type: none;
        padding-bottom: 10px;
    }

    .footer-desktop-links > ul > li > a {
        text-decoration: none;
        color: #FFFFFF;
    }

    /* .footer-links-group-desktop {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    } */

    .footer-payment {
        display: none;
       
    }

    .footer-payment-desktop, .footer-icons-desktop {
        display: block;
    }

    .footer-contact-info {
        border: none;
        padding-left: 3rem;
    }

    .footer-icons-group {
        margin: 0;
        max-width: 300px;
        /* padding-bottom: 2.5rem; */
    }
    
    .footer-contact-us > .footer-section-wrapper {
        border-bottom: 1px solid #3766C3;
        display: flex;
        justify-content: space-between;
        padding-top:  2.5rem;
        padding-bottom:  2.5rem;
        /* align-items: baseline; */
    }
    /* .footer-contact-us > .footer-section-wrapper > div{ */
        /* border: 1px solid red; */
    /* } */

    .footer-contact-title-group  div {
        align-self: flex-start;
    }
        
    /* TOP BUTTON */
    #btn-top {
        border: none;
        border-radius: 50px;
        bottom: 35px;
        width: 50px;
        height: 50px;
        /* opacity: 0.75; */
        position: fixed;
        right: 10px;
        z-index: 1000;
        outline: 0;
    }
}


@media (max-width: 768px) {
    /* TOP BUTTON */
    #btn-top {
        display: none !important;
    }
}

.footer-newsletter-input {
    background-color: white;
    color: black;
}