#header
{
    position: fixed;
    padding-top: 8px;
    width: 100%;
    height: 80px;
    text-align: center;
    background-color: #f28725;
    z-index: 10000;
    display: block;
}

#header > a
{
    font-size: 58px;
    color: #000;
    font-weight: bold;
    letter-spacing: 3px;
    text-decoration: none;
}

#header #topbar
{
    position: fixed;
    top: 11px;
    right: 60px;
}

#header #topbar i
{
    margin: 15px;
    font-size: 27px;
    cursor: pointer;
}

#header #topbar a
{
    color: #000;
    text-decoration: none;
}

#header #totalProduits
{
    position: fixed;
    top: 26px;
    right: 35px;
    width: 36px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    cursor: pointer;

    text-shadow: 
    -1px -1px 0px #000,
     0px -1px 0px #000,
     1px -1px 0px #000,
    -1px  0px 0px #000,
     1px  0px 0px #000,
    -1px  1px 0px #000,
     0px  1px 0px #000,
     1px  1px 0px #000;
}

#cartContent
{
    position: fixed;
    top: 88px;
    right: 8px;
    width: 280px;
    min-height: 92px;
    max-height: 500px;
    font-size: 17px;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-radius: 3px;
    background-color: #f28725;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 20000;
    display: none;
    cursor: default;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.6);
}

#cartContent table
{
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

#cartContent table tr
{
    border-bottom: 1px solid #000;
}

#cartContent table tr td
{
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 3px;
    padding-bottom: 3px;
}

#cartContent .cartPrixTotal
{
    padding: 2px;
    padding-right: 7px;
    padding-top: 10px;
    padding-bottom: 8px;
    font-size: 20px;
    text-align: right;
    border-top: 2px dashed #000;
}

#cartContent a
{
    padding-top: 8px;
    height: 38px;
    width: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    background-color: #000;
    vertical-align: middle;
    display: block;
}

#cartContent a:hover
{
    color: #f28725;
}








#menu
{
    position: fixed;
    top: 79px;
    width: 100%;
    height: 45px;
    background-color: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
}

#menu i
{
    display: none;
}

#menu span
{
    display: inline-block;
}

#menu a
{
    margin-left: 33px;
    margin-right: 33px;
    padding-top: 9px;
    color: #fff;
    font-size: 23px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
}

#menu a:hover,
#menu a.selected
{
    color: #f28725;
}

#sep
{
    height: 160px;
}