

.headerCenter {
    display: flex;
    justify-content: center;
    margin-left: 0px;
    margin-bottom: -10px;
    margin-top: auto;
    margin-right: auto;
}


/* cart contents, login, logout, myaccount */	
div.shoppingCartInfo {float:right;width:200px;}

.header ul.info {
    font-size: 9pt;
    margin-top: 15px;
    padding-left: 0px;
    margin-left: auto;
    /* float: right; */
    /* justify-self: right; */
    /* display: flex; */
}

.header ul.info li {margin-left:10px;display:inline;list-style-type:none;}
.header ul.info li a{color:#000; cursor:pointer;}
.header ul.info li a:hover {border:none;background-color:#fff;color:#e12000}
a.info  {font-weight:bold;font-size:10pt;text-decoration:none;}

/* site header menu */
.header {
    padding:1.0rem 0 !important;
    /* float: left; */
    font-family: Electrolize, sans-serif;
    max-width: 1100px;
    width: 100%;
   
}

.menu {
    display: flex;
    align-items: center;
}

.header ul.menu {
    font-variant: small-caps;
    font-size: 18px;
    padding: 6px 0 0 20px;
    margin: 0px;
    display: flex;
}
.header ul.menu li {
    text-align: left;
    list-style-type: none;
    color: #000;
    margin: 2px;
    padding: 2px;

}
.header ul.menu li:hover {
    box-shadow: 2px 2px 2px #ccc;
    border: 1px solid #ccc;
    margin: 1px;
}
.header ul.menu li a, .header ul.menu li a:visited {color:#000;font-weight:normal;text-decoration:none;}
.header ul.menu li a:hover{text-decoration:none;}

.header ul.menu li.current {font-size:18pt;text-transform:lowercase;font-variant:normal;}
.header ul.menu li.current:hover {
    box-shadow: none;
    border: 1px solid #fff;
}
.header ul.menu li.current a:hover {color:#666;}

.banner_logo {
    width:300px;
    height:37px;
    margin-left: 4px;
}

.banner {
    display: flex;
}

.banner img:hover {opacity: .8;}

#cartContents {
    font-size: 9pt;
}

.banner_and_menu_container {
    display:flex; 
    flex-direction: row;
    height: min-content; 
    flex-wrap: wrap;
}

#top_nav_buttons {
    float:right; 
    display:flex; 
    flex-direction: row; 
    align-items: top; 
    padding-right:10px;
    padding-top: 3px;
}

.badge::after{
    content: " ";
    position: relative;
    height: 12px;
    width: 12px;
    left: -10px;
    text-align: center;
    line-height: 10px;
    font-size: 8pt;
    border-radius: 50%;
    background: #00b8ff;
}

/*mobile*/
@media all and (max-width: 800px) {
	div.menu {
        position: relative;
        width:calc(100vw);
        text-align:center;
        justify-content: center;
        background: #DDDDDD;
    }

    .header ul.menu {
        left: 0px;
        height: 40px;
        padding: 0px;
        padding-left: 9px;
    }

    .header {
        display: flex;
        /*flex-wrap: wrap;
        justify-content: center; */
    }
	.banner {
        width:100%;
        margin:5px 0 0 0 auto;
        justify-content: center
    }

    .header ul.info {
        margin-top:2px;
        margin-left:0px;
    }

    a.info {
        font-size:14pt;
        padding: 5px;
    }

    #cartContents {
        font-size: 12pt
        font-weight: normal !important;
    }


    #top_nav_buttons {
        position: absolute;
        right: 0px;
    }
	
}

/* Really small screens */
@media all and (max-width: 550px) {
    .banner_logo {
        width: 215px;
        margin-top: -5px;
    }

    #top_nav_buttons {
        top: 6px;
    }

    .banner {
        justify-content: flex-start
    }

}

/* Lock the navigation buttons in place 
   when things get too small to fit the whole bar */
@media all and (max-width: 350px) {
    #top_nav_buttons {
        position: absolute;
        left: 275px;
        top: 6px;
    }
}

/*desktop*/
@media all and (min-width: 800px) {
    .header{display:flex;}
}

.icon {
  height: 34px;
  width: 34px;
  padding: 6px;
  box-sizing: border-box;
}

#account-icon {
    background-image: url('/shop/includes/icons/user.svg');
    background-repeat: no-repeat;
    /*background-size: 19px;*/
    background-position: center;
    background-size: 18px;

}

#cart-icon {
    background-image: url('/shop/includes/icons/shopping-cart.svg');
    background-repeat: no-repeat;
    /*background-size: 25px;*/
    background-position: center;
    background-size: 22px;
}

#account-icon:hover {
    background-image: url('/shop/includes/icons/user-hover.svg');
}

#cart-icon:hover {
    background-image: url('/shop/includes/icons/shopping-cart-hover.svg');
}
