header{
    padding:0 10px;
    text-align:center;
    box-shadow: 0 0 5px #dfdfdf;
    z-index:10000;
}
header > div{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.logo_container{
    font-size:0;
}

header #logo{
    margin-top:10px;
    margin-bottom:10px;
    height:45px;
    width:auto;
}

header .header_link{
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    cursor:pointer;
    color:#000;
}

header .icon{
    width:20px;
    height:20px;
}

header .icon.cart{
    margin-left:5px;
}

header #menu_btn{
    filter:invert(1);
    cursor: pointer;
}

header #cart_btn{
    display:inline-block;
    position:relative;
}
header .cart_qty{
    position: absolute;
    /* padding: 4px; */
    background-color: red;
    border-radius: 100px;
    right: -7px;
    bottom: -5px;
    width: 17px;
    line-height: 17px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    display: none;
}

/* desktop */
@media screen and (min-width:1200px){
    .right{
        display:flex;
        align-items:center;
    }
}

/* mobile and tablet */
@media screen and (max-width:1200px){
    header #logo{
        height:35px;
    }
    header .right .icon{
        margin-left:10px;
    }

    header .menu-links_container{    
        position: fixed;
        height: 100vh;
        width: 100%;
        z-index: 1000;
        top: 0;
        transition: right 500ms;
    }

    header .menu-links_container[data-display="show"]{
        right: 0;
    }
    header .menu-links_container[data-display="hide"]{
        right: -100%;
    }

    header .dismiss-menu{
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 1;
    }

    header .links_container{
        background: #fff;
        width: 80%;
        max-width:300px;
        height: 100%;
        z-index: 2;
        position: absolute;
        right: 0;
        box-shadow:0 0 10px #00000060;
    }

    header .links-container_header{
        display:flex;
        justify-content: space-between;
        margin-top:2vh;
        border-bottom:1px solid #00000010;
    }
    header .links-container_header .title{
        padding:2vh;
        margin:0 15px;
        font-weight:bold;
    }
    header .links-container_header .close_btn{
        position:relative;
        padding:10px;
        font-size:0px;
        top:calc(-min(15px, 1vh) - 1vh);
        width:15px;
        height:15px;
        cursor:pointer;
        right:1vh;
    }
    header .links-container_header .close_btn img{
        width:100%;
        height:100%;
    }

    header .header_link{
        padding: 2vh;
        text-align: left;
        display:block;
    }
    header .header_link:hover{
        background-color:#00000020;
    }
}