.header-active{
    color: var(--couleur-principale) !important;
    font-weight: 800 !important;
}

.navbar-full {
    background-color: #fff;
    box-shadow: var(--ombre-header);
    z-index: 9999;
    padding: 0px 20px;
}

.navbar-nav a {
    text-align: left;
    text-decoration: none;
}

.div-logo-header {
    z-index: 999;
}

.logo-header {
    height: 80px;
    padding: 5px;
    max-width: 300px;
    object-fit: contain;
}

.navbar {
    top: 0;
    z-index: 998;
    position: fixed;
    width: 100%
}

.navbar-menu-principal {
    z-index: 999;
    padding-right: 275px;
}

.header-dropdown .dropdown-menu {
    border: 0;
    border-radius: 8px;
    padding: 0!important;
    background-color: transparent!important;
    top: 65px !important;
    box-shadow: var(--ombre-header);
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

.header-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 6px;
    background-color: white;
}

.header-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--couleur-principale);
    border-radius: 50px;
}

.nav-li-header {
    text-align: center;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    position: relative;
}

.nav-li-header:hover .p-menu-nav {
    color: var(--couleur-principale);
}

.p-menu-nav {
    margin: 0;
    font-size: 14px!important;
    color: black;
    font-weight: 500;
    white-space: nowrap;
}

.a-menu-nav {
    margin: 0;
    font-size: 14px!important;
    color: black;
    text-align: center;
    white-space: nowrap;
    padding: 10px 20px!important;
    font-weight: 500;
}

.a-menu-nav:hover {
    color: var(--couleur-principale)!important;
}

.a-menu-nav.nav-link::after{
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f107";
    display: inline-block;
    margin-left: 5px;
    vertical-align: initial;
    border: none;
}

.div-menu-hamburger-header {
    border: 0;
    outline: 0!important;
}

.header-dropdown .dropdown-toggle {
    padding: 0;
}

.header-dropdown .dropdown-item {
    background-color: #fff;
    text-align: left;
    color: var(--couleur-texte-principal);
    padding: 10px 12px 10px 12px;
    font-size: 14px!important;
    font-weight: 400;
}

.header-dropdown .dropdown-item:hover {
    background-color: var(--couleur-principale);
    color: #fff;
}

.header-dropdown .dropdown-item:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.header-dropdown .dropdown-item:last-child{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.header-dropdown .dropdown-item-hamburger {
    font-size: 14px !important;
}

.parent-dropdown-menu-hamburger-services[data-dropdown-hamburger-active='true']{
    border: none;
}

.parent-dropdown-menu-hamburger-services:after{
    position: absolute;
    right: 10px;
}

.parent-dropdown-menu-hamburger-services[data-dropdown-hamburger-active='true']:after{
    font-family: "Font Awesome 6 Pro";
    content: '\f106';
}

.parent-dropdown-menu-hamburger-services[data-dropdown-hamburger-active='false']:after{
    font-family: "Font Awesome 6 Pro";
    content: '\f107';
}

.btn-tel-header {
    background-color: var(--couleur-principale);
    border-color: var(--couleur-principale);
    color: white;
    border-radius: 100px;
    padding: 6px 20px;
    font-weight: 500;
}

.btn-tel-header:hover {
    border-color: var(--couleur-principale);
    color: var(--couleur-principale);
}

.btn-reprise-header{
    background: var(--couleur-principale);
    border-radius: 50px;
}

.contact-header {
    z-index: 9999;
    top: 0;
    position: absolute;
    right: 0;
    padding: 10px;
}

.header-icone-reseaux {
    color: white;
    padding: 5px;
    margin: 4px;
    font-size: 18px;
    transition-duration: .3s;
}

.header-icone-reseaux:hover {
    color: var(--couleur-principale);
}

.header-icone-reseaux-telephone {
    width: 26px;
}

#div-hamburger {
    display: none;
}

.mainInner {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}

.mainInner div {
    display: table-cell;
    vertical-align: middle;
    font-size: 3em;
    letter-spacing: 1.25px;
}

#sidebarMenu {
    height: 100%;
    position: fixed;
    right: -250px;
    width: 250px;
    top: 0;
    margin-top: 60px;
    transition: transform 250ms ease-in-out;
    background-color: var(--couleur-principale);
}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    overflow-y: auto;
}

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

.sidebarMenuInner li {
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}

.sidebarMenuInner li:hover {
    background-color: var(--couleur-principale);
}

.sidebarMenuInner li span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}

.sidebarMenuInner li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.navbar-full input[type=checkbox]:checked~#sidebarMenu {
    transform: translateX(-250px);
}

.navbar-full input[type=checkbox] {
    transition: all .3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transform: scale(2);
    transition: all .3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    top: 28px;
    right: 18px;
    height: 22px;
    width: 22px;
    margin: 0!important;
}

.spinner {
    transition: all .3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 70%;
    border-radius: 50px;
    background-color: var(--couleur-principale);
}

.horizontal {
    transition: all .3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.diagonal.part-1 {
    position: relative;
    transition: all .3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all .3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.comparateur-counter, .favoris-counter {
    background-color: var(--couleur-principale);
    color: white;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    margin-left: 8px;
}

.dropdown-item:hover .counter {
    background-color: white;
    color: var(--couleur-principale);
}

.annonce-nav {
    margin-top: 60px;
}

.annonce {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--couleur-principale);
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;

    @media screen and (max-width: 815px) {
        font-size: 18px;
    }

    @media screen and (max-width: 480px) {
        font-size: 14px;
    }
}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all .3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all .3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 6px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all .3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -7px;
}

@media screen and (max-width:1660px) {
    #div-contact-full-header {
        display: none;
    }

    .reseaux-header-full {
        margin-top: 0;
    }

    .btn-contact-header {
        display: none;
    }

    .logo-header {
        max-width: 200px;
    }
}

@media screen and (max-width:1500px) {
    #div-numero-full-header {
        display: none;
    }

    #header_phone_mobile {
        display: none!important;
        justify-content: center;
        align-items: center;
    }

    .navbar-full{
        padding: 0;
    }

    .navbar-menu-principal{
        padding-left: 20px !important;
    }

    .nav-li-header {
        text-align: center;
        padding: 10px 10px;
    }

    .logo-header {
        max-width: 160px;
    }

    .btn-tel-header-icone{
        margin: 4px 0px !important;
    }

    .btn-tel-header-numero{
        display: none;
    }
}
@media screen and (max-width:1300px) {
    .navbar-menu-principal{
        padding-left: 0px !important;
        padding-right: 0;
    }
}
@media screen and (max-width:1150px) {
    #div-hamburger {
        display: block;
    }

    .navbar-full {
        padding: 10px;
    }

    .p-menu-nav {
        display: none!important;
    }

    .navbar-nav {
        display: none;
    }

    .contact-header {
        display: none!important;
    }
    
    .logo-header {
        height: 40px;
        max-width: inherit;
    }
}

@media screen and (max-width:991px) {

    .header-dropdown .dropdown-item, .header-dropdown .dropdown-item:active, .header-dropdown .dropdown-item:hover {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .header-dropdown .dropdown-menu {
        border: 0;
        background-color: #fff;
    }

    .navbar-collapse {
        background-color: rgba(0, 0, 0, .9);
        position: relative;
        top: 14px;
    }

    .nav-li-header:hover {
        border-bottom: 0;
        background-color: var(--couleur-texte-principal);
    }

    .nav-li-header {
        text-align: center;
        padding-top: 10px;
        font-size: 22px!important;
    }

    .nav-li-header:hover a {
        color: #fff;
    }

    .div-menu-hamburger-header {
        border: 0;
        outline: 0!important;
        display: none;
    }

    .div-menu-hamburger-header .icon-menu-hamburger:hover {
        transform: rotate(180deg);
        transition-duration: .2s;
    }

    .navbar-full {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .header-dropdown .dropdown-toggle {
        padding: 0;
    }
}