@charset "UTF-8";
/***!  /media/templates/site/avenir/css/mod_avenir_header_burger.css?736373  !***/

.header_burger{
    display: none;
    width: 40px;
    height: 29px;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
}
    .header_burger span{
        width: 100%;
        height: 5px;
        border-radius: 2.5px;
        background: var(--color-6);
        position: absolute;
        left: 0;

        &:nth-child(1){
            top: 0;
        }
        &:nth-child(2){
            top: calc(50% - 2px);
        }
        &:nth-child(3){
            bottom: 0;
        }
    }

@media (max-width: 1400px) {

    .header_burger{
        display: block;
    }

}
