.header {
      background: rgba(235,235,235,0.6);
    
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 25;
    min-height: 80px;
    top: 0;
    
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo img{
    max-width: 185px;
    max-height: 100%;
    width:100%;
}
#flip{
    position: relative;
    text-align: center;
    background: url(/Files/App_002/images/loop.png)no-repeat center;
    border-right: 1px solid #d7d7d7;
    width: 50px;
    display: flex;
    float: right;
    cursor: pointer;
}
#panel{
       left: -160px;
    display: none;
    position: absolute;
    top: -11px;
    background: rgb(255, 255, 255);
    z-index: 99;
    border-radius: 19px;
    padding: 10px 34px;
    box-shadow: 1px 3px 8px rgba(0,0,0,0.2);
}
.search{width:70px;}

.header-top{
    float: right;
}
.header-down{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/****responsive menu****/
.mobile-nav {
    display: block;
    position: relative;
    z-index: 55;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    background: #000;
}
#menu-btn {
    background: url(/Files/App_002/images/open.png)no-repeat center;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
#menu-btn img{display:block;text-align:center;opacity:0.8;max-width:100%;}
#menu-btn img:hover{opacity:1;}
.open_menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}
.responsive-menu {
    position: absolute;
    top: 100px;
    bottom: 0;
    background:#00b0f0;
    z-index: 9999;
    display: none;
    color: #fff;
    height:100vh;
    opacity: 0;
    transition: all .8s ease;
    cursor: auto;
    width: 100%;
}
.expand{opacity:1;right:0px;display:block;}
.responsive-menu .close-btn {
    -webkit-transition-duration: 0.6s;
    transition: all .8s ease;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    background: url(/Files/App_002/images/fermer.png)no-repeat;
    margin: -68px auto;
    text-transform: capitalize;
    cursor: pointer;
    height: 30px;
    margin-left: 20px;
}
.close-btn img {
    position: relative;
    display: block;
    cursor: pointer;
    margin: 0 auto;
    right: 30px;
    margin-top: 16px;
    float: right;
}
.shadow_popup{
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    background: transparent;
    transition: all 0.3s ease;
}
.open_shadow{right: 0 !important;}




.responsive-menu .liste_element {
    padding: 0;
    margin: 30px 0 20px !important;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}











