﻿
@import url('footer.css');
footer {
    background: var(--MAIN-COLOR-DARK);
    flex-direction: column;
    padding: 25px;
    position: fixed;
    width: 100%;
    bottom: -150px; 
    transition: bottom 0.5s ease;
    z-index: 10;
}

.footer.hidden {
    opacity: 0;
}

.footer.visible {
    display: flex;
    opacity: 1;
    bottom: 0
}

/*.footer-activity, .footer-sticky-activity {
    background: var(--MAIN-COLOR-DARK);
}*/

.footer-haut, .footer-bas {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 20px 0;
}

.footer-first-column, .footer-third-column {
    width: 250px;
}

.communication-footer a {
    color: var(--color-white);
}

.footer-first-column .title-oi {
    text-transform: uppercase;
}

.footer-bas, .footer-sticky {
    color: var(--color-white);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.footer-first-column div {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.div-image-footer span {
    text-align: left;
}

.footer-second-column div {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-third-column div {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    justify-content: end;
    line-height: normal;
}

.container-footer {
    padding-left: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.img-elloha-footer {
    width: 92px;
    height: 18px;
    padding-right: 150px;
}

.container-footer div img {
    width: 18px;
    height: 18px;
    padding-right: 16px;
}

.communication-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.communication-footer div {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.communication-footer div img {
    height: 15px;
    width: 15px;
    object-fit: cover;
}

.communication-footer a {
    text-decoration: none;
}

.footer-sticky {
    background: var(--MAIN-COLOR-DARK);
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer.sticky-visible {
    bottom: 0;
}

.wrap-footer-sticky {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-sticky .social-icons {
    display: flex;
    gap: 15px;
    /*position: absolute;
    left: 50%;
    transform: translateX(-50%);*/
}
.social-icons a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
}

.footer-sticky .social-icons img {
    width: 18px;
    height: 18px;
}

.elloha-icon {
    margin-right: 15px;
}

.footer-sticky .p-footer {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}


.footer-sticky .cgu-footer {
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 20px;    
}

.footer-pointer {
    cursor: pointer;
}

@media (max-width: 1024px) {

    .footer-bas, .footer-sticky {
        font-size: 12px;
    }

}


@media (max-width: 768px) {

    .wrap-icons-footer {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-right: 20px;
    }

    .header-top-rightLink .bloc-lang.active {
        display: none;
    }

    .footer-utils.justForMobile {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .footer-utils a {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        text-decoration: none;
        color: var(--color-white);
    }

    .footer-utils .search-links.chooseLang {
        display: flex;
    }

    .footer-utils .dropdown-menu-devises, .footer-utils .bloc-lang.active {
        bottom: 50px;
        right: 50px;
        top: inherit;
        z-index: 999;
    }

    .footer-utils .bloc-lang.active a, .footer-utils .dropdown-menu-devises.active a {
        color: var(--color-black);
    }

    .footer-utils a span, .footer-utils a span i {
        color: var(--color-white);
    }

    .footer-sticky.footer-sticky-activity {
        flex-direction: row;
    }

    .justForDesktop {
        display: none !important;
    }

    footer {
        display: none;
    }

    .footer-sticky {
        flex-direction: row-reverse;
    }

    .p-footer img {
        margin-right: 20px;
    }

    .footer-sticky .social-icons {
        position: inherit;
        transform: inherit;
    }

    .social-icons a i {
        font-size: 14px;
        display: flex;
    }
   
}