/* side navigation */
.sidenav{
    text-align: center;
    width: 0;
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

span{
    font-size: 60px;
    top: 0;
    cursor: pointer;
    color: white;
    float: left;
    display: inline;
    margin-left: 10px;
}

.sidenav a{
    color: white;
    text-decoration: none;
    font-size: 30px;
    padding: 15px 30px 15px 30px;
    line-height: 60px;
    overflow-x: hidden;
    white-space: nowrap;
}
.sidenav .active{
    background-color: blue;
    border-radius: 10px;
}

.sidenav a:hover{
    text-decoration: underline;
}

#closebtn{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
}
/* -- end of side navigation -- */

#header{
    padding-top: 10px;
    height: auto;
    left: 0;
    top: 0;
    position: sticky;
    overflow: hidden;
    /*
    background-image: url("../Assets/Header_Background.jpg");
    */
    background-color: #2336AF;
    text-align: center;
    width: 100%;
    z-index: 1000;
}
#header #title{
    display: inline;
    text-align: center;
    justify-self: center;
    color: white;
    font: Helvetica;
    top: 10%;
}
#header #links{
    display: inline;
}

#title_low{
    font-family: Futura, sans-serif, Arial;
    display: block;
    font-size: 15px;
    position: absolute;
    top: 55%;
    left: 46%;
}
#title_high{
    font-family: Futura, sans-serif, Arial;
    display: inline;
    font-size: 60px;
}
#title_high:hover{
    background-color: blue;
}
#title_high a{
    text-decoration: none;
    color: white;
    padding-right: 10px;
}

#basket{
    display: inline;
}
#basket a{
    text-decoration: none;
}
#basket_number{
    border: solid black 4px;
    border-radius: 100%;
    padding: 0 1px 0 1px;
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 1;
    color: white;
    background-color: red;
}
#checkout{
    top: 0;
    float: right;
    position: relative;
    display: inline;
}
#checkout img{
    width: 100px;
    height: 100px;
    object-fit: fill;
}