/* hamburger menu */
#hamburger .icon-bar:nth-of-type(1) {
    top: 0;
}
#hamburger .icon-bar {
    position: relative;
    transition: all 200ms ease-in-out;
}
#hamburger.dl-active .icon-bar:nth-of-type(1) {
    top: 6px;
    transform: rotate(45deg);
}
#hamburger.dl-active .icon-bar:nth-of-type(2) {
    background-color: transparent !important;
}
#hamburger.dl-active .icon-bar:nth-of-type(3) {
    top: -8px;
    transform: rotate(-45deg);
}
/**/
.logo{
    margin-left: 50px !important;
}
#dl-menu{
    position: absolute;
    height: 65px;
}
body.dl-body-menuopen{
    overflow: hidden;
}
body.dl-body-menuopen #dl-menu{
    position: absolute;
    width: 100%;
    height: calc(90vh - 65px);
    overflow: scroll;
    top: 65px;
    pointer-events: auto;
    background: white;
    box-shadow: 0 10px 10px rgba(0,0,0,0.15);
}
#dl-menu #hamburger{
    left: 0;
    top: 0;
    position: fixed;   
}
.dl-menuwrapper ul {
    padding: 0;
    list-style: none;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl-menuwrapper li {
    position: relative;
}
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #4a4a4a;
    outline: none;
    text-decoration: none;
}
.no-touch .dl-menuwrapper li a:hover {
    background: rgba(255,248,213,0.1);
}
.dl-menuwrapper li.dl-back > a {
    padding-left: 30px;
    background: rgba(0,0,0,0.1);
}
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
    content: "";
    background: url('../img/ico/chevron-thin-right-grey.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}
.dl-menuwrapper li.dl-back:after {
    left: 10px;
    margin-top: 1px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.dl-menuwrapper li > a:after {
    right: 10px;
    color: rgba(0,0,0,0.15);
}
.dl-menuwrapper .dl-menu {
    background: white;
    margin: 0;
    padding: 50px 0;
    position: static;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    max-height: 80vh;
    height: calc(90vh - 200px);
    overflow: scroll;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    overflow: scroll;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
    display: none;
}
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
    display: none;
}
.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
    display: block;
}
/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    margin: 0;
}
/* sous menu bottom */
@media(min-width: 768px){
    #dl-menu{
        display: none;
    }
}
#dl-menu .bottom{
    display: none;
    padding-bottom: 10px;
    width: 100%;
    border-top: 1px solid #ededed;
    background: #fff;
}
#dl-menu .dl-active ~ .bottom{
    display: block;
}
#dl-menu .bottom a.phone{
    color: #2C364E;
    font-size: 18px;
    line-height: 1.2;
    display: inline-block;
    width: 100%;
    margin: 25px 0;
    text-decoration: none;
    padding: 0 20px;
}
#dl-menu .bottom a.phone:before{
    content: '';
    background: url('../img/ico/phone-blue.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: -4px 12px 0 0;
}
#dl-menu .bottom .button{
    margin: 0 8px;
}
#dl-menu .bottom a.btn{
    color: #2C364E;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #2C364E;
    padding: 7px 8px;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
    margin: 0 0 10px 12px;
    transition: background 0.3s ease 0s, color 0.3s ease 0s;
    -webkit-transition: background 0.3s ease 0s, color 0.3s ease 0s;
}
#dl-menu .bottom a.btn + a.btn{
    margin: 0 12px 10px;
}
#dl-menu .bottom a.btn:hover,
#dl-menu .bottom a.btn:focus{
    background: #2C364E;
    color: white;
}
/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
    -webkit-animation: MenuAnimOut1 0s;
    animation: MenuAnimOut1 0s;
}
@-webkit-keyframes MenuAnimOut1 {
    0% { }
    50% { }
    75% {
        opacity: .5;
    }
    100% {
        opacity: 0;
    }
}
@keyframes MenuAnimOut1 {
    0% { }
    50% { }
    75% {
        opacity: .5;
    }
    100% {
        opacity: 0;
    }
}
.dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 0s;
    animation: MenuAnimIn1 0s;
}
@-webkit-keyframes MenuAnimIn1 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes MenuAnimIn1 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 0s ease;
    animation: SubMenuAnimIn1 0s ease;
}
@-webkit-keyframes SubMenuAnimIn1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes SubMenuAnimIn1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 0s ease;
    animation: SubMenuAnimOut1 0s ease;
}
@-webkit-keyframes SubMenuAnimOut1 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes SubMenuAnimOut1 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-back {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
    content: '';
}