.panel-footer {
    --surface-foreground: var(--patina);
    --surface-background: var(--patina);
    --text: var(--gray-100);

    color: var(--text);
    overflow: hidden;
}

.panel-footer .footer-inner {
    background-color: var(--surface-foreground);
}

.panel-footer .attributions {
    background-color: var(--surface-background);
}

.panel-footer .footer-content-container,
.panel-footer .attribution-content-container {
    margin: 0 auto;
    padding: 0 var(--space-5);
    max-width: var(--width-base);
    text-align: center;
}

.panel-footer .footer-content-container {
    display: grid;
    gap: 15px;
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
}

@media (min-width: 64em) {
    .panel-footer .footer-content-container {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }   
}

.panel-footer .contentRender_name_plugins_core_textbox {
    margin: 0;
    padding: 0;
    max-width: none;
}

.panel-footer .client-details {
    display: grid;
    grid-auto-rows: min-content;
    gap: 20px;
}

@media (min-width: 64em) {
    .panel-footer .client-details {
        place-items: flex-start;
    }   
}

.contentRender_name_plugins_common_logo_footer,
.panel-footer .logo-footer a {
    display: block;
    width: 322px;
}

.panel-footer .logo-footer img {
    display: block;
    width: 100%;
    height: auto;
}

.panel-footer .client-details p {
    font-size: 14px;
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--white);
    font-weight: var(--font-weight-demi);
    margin-bottom: 0;
    text-align: left;
}

.panel-footer .navigation-footer {
    text-align: left;
}

.panel-footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-footer .social-media .social-links {
    gap: 16px;
}

.panel-footer .social-media .social-network {
    background-color: var(--white);
    color: var(--patina);
    width: 31px;
    height: 31px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-footer .attribution-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-2);
    padding-bottom: 42px;
    background-color: var(--surface-foreground);
}

@media (min-width: 40em) {
    .panel-footer .attribution-content-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .panel-footer .social-translate-cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.panel-footer .attribution-content-container p {
    font-size: 14px;
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
}

.panel-footer .made-by-sv {
    display: block;
    width: 166px;
}

.panel-footer .made-by-sv img {
    display: block;
    width: 100%;
    height: auto;
}

.panel-footer .footer-nav {
    margin-bottom: 7px;
}

.panel-footer .sv-tripadvisor-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 18px;
    margin-bottom: 28px;
}

.panel-footer a.tripadvisor-link {
    display: block;
    width: 109px;
    height: 23px;
}

/* Mobile Bottom Fixed Container */
.panel-footer .mobile-fixed {
    position: fixed;
    bottom: 0px;
    z-index: 9999;
    width: 100%;
    padding: 24px;
    pointer-events: none;
}

/* CTA Container */

.panel-footer .cta-cont {
    position: relative;
    background-image: url('/includes/public/assets/shared/turquoise.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-bottom: 2px solid var(--white);
}

.panel-footer .cta-cont:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 58px;
    height: 60px;
    background-image: url('/includes/public/assets/shared/zia.svg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.panel-footer .cta-cont > div:first-of-type:before,
.panel-footer .cta-cont > div:first-of-type:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: calc(50% - 50px);
    height: 2px;
    background-color: var(--white);
    pointer-events: none;
    z-index: 2;
}

.panel-footer .cta-cont > div:first-of-type:before {
    left: 0;
}

.panel-footer .cta-cont > div:first-of-type:after {
    right: 0;
}

/* Media Queries */

@media(min-width:40em) {
    .panel-footer .cta-cont {
        display: flex;
        background-size: 50% 100%;
        background-repeat: repeat-x;
    }

    .panel-footer .cta-cont .contentRender_name_plugins_common_cta {
        width: 50%;
    }

    .panel-footer .cta-cont:before {
        width: 64px;
        height: 65px;
    }

    .panel-footer .cta-cont > div:first-of-type:before,
    .panel-footer .cta-cont > div:first-of-type:after {
        left: 0;
        right: 0;
        top: unset;
        bottom: unset;
        margin: 0 auto;
        width: 2px;
        height: calc(50% - 50px);
    }

    .panel-footer .cta-cont > div:first-of-type:before {
        top: 0;
    }
    
    .panel-footer .cta-cont > div:first-of-type:after {
        bottom: 0;
    }

    .panel-footer .attribution-content-container {
        flex-direction: row-reverse;
    }

    .panel-footer .attribution-content-container .sv-tripadvisor-cont {
        justify-content: flex-end;
        max-width: fit-content;
        gap: 22px;
        padding: 0 5px 0 18px;
    }

    .panel-footer .attribution-content-container .text-cont {
        min-width: fit-content;
        text-align: left;
    }

    .panel-footer .footer-nav {
        margin-left: 4px;
    }

    .panel-footer .navigation-footer {
        column-count: 2;
        column-width: auto;
    }

    .panel-footer .navigation-footer li {
        max-width: fit-content;
    }

    .contentRender_name_plugins_common_logo_footer,
    .panel-footer .logo-footer a {
        width: 299px;
    }
}

@media(min-width: 64em) {
    .panel-footer .footer-content-container,
    .panel-footer .attribution-content-container {
        max-width: 1170px;
    }

    .panel-footer .footer-content-container {
        margin-bottom: 25px;
    }

    .panel-footer .client-details {
        gap: 10px;
    }

    .panel-footer .attribution-content-container p {
        display: inline;
    }

    .panel-footer .cta-cont {
        background-size: 50% 450px;
    }

    .panel-footer .social-translate-cont {
        display: block;
        margin-top: 11px;
        margin-bottom: 22px;
        max-width: fit-content;
        justify-self: flex-end;
    }

    .panel-footer .social-translate-cont .translate {
        margin-bottom: 42px;
    }

    .panel-footer .social-media {
        justify-content: flex-end;
    }

}

@media(min-width: 90em) {
    .panel-footer .footer-inner {
        padding-top: 52px;
    }

    .panel-footer .footer-content-container {
        padding: 0;
    }

    .panel-footer .attribution-content-container {
        padding: 0 0 50px 0;
    }

    .panel-footer .footer-nav {
        position: relative;
        left: 40px;
    }

    .panel-footer .navigation-footer {
        width: 450px;
    }
}
