@media all and (min-width:0px) and (max-width: 750px) {
  /* put your css styles in here */
#hamburgerclose {
    display:none;
}
body.menu-open {
    transition:left .5s;
    -webkit-transition:left .5s;
    left:150px;
}
#dddnav {
    box-shadow:0px 0px 11px 1px #666;
    height:100%;
    background:#000000;
    position:fixed;
    top:0;
    left:-200px;
    width:200px;
    transition:left .5s;
    -webkit-transition:left .5s;
}
#dddnav.menu-open {
    left:0;
    transition:left .5s;
    -webkit-transition:left .5s;
}
#dddnav ul {
    padding:0;
    margin-top:0px;
    list-style:none;
}
#dddnav ul li a{
    padding:10px 10px;
    width:100%;
    color:#fff;
    background:#000000;
    border-bottom:1px solid;
    display:block;
}

#sticky-nav #header-nav .profile-icon{position: absolute;top: 50%;right: 15%;}
#sticky-nav #header-nav .profile-icon img{position:absolute;top:50%;left:50%;width:20px;height:20px;margin:-10px 0 0 -10px;}

}

@media all and (min-width:751px) {
  /* put your css styles in here */
#dddnav {
    display:none;
}
#hamburgerclose {
    display:none;
}
#sticky-nav #header-nav .profile-icon{display:none;}
}

.inline-image img, .inline-image span{
    display:inline-block;
    vertical-align: middle;
}