html, body {
    height: 100%;
}

#menu {
    float:left;
}

.main-container {
    margin-top: 50px;
    padding-top: 15px;
}

.account i {
    background: black;
    display: inline-block;
    width: 30px;
    height: 30px;
    color: white;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.header {
    background: #eeeeee;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 5;
}

.header .account {
    float: right;
    padding: 10px;
    margin-right: 10px;
}
.store-selected {
    padding: 5px 15px;
    border-left: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
}

.store-selector {
    float: right;
    position: relative;
}

.store-selector:hover ul {
    display: block;
}

.store-selector ul {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #c9c9c9;
    width: 100%;
}

.store-selector li:hover {
    background: #d6d4d4;
    cursor: pointer;
}

.store-selector ul li {
    border-top: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #eeeeee;
    padding: 5px;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.container-signin {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
    height: 100%;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-signin input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.autocomplete_container {
    position: relative;
}
.autocomplete_options {
    position: absolute;
    background: white;
    margin: 0;
    list-style: none;
    padding: 0;
    width: 100%;
    z-index: 2;
    max-height: 300px;
    overflow: auto;
}

.autocomplete_options li {
    padding: 5px;
    background: white;
    cursor:pointer;
}

.autocomplete_options li:hover {
    background: #f5f5f5;
}

.tabs {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid silver;
    margin-bottom: 15px;
    padding: 0 0 0 15px;
}
.tabs li {
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
}
.tabs li.actif {
    border: 1px solid silver;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid white;
    margin-bottom: -1px;
}

.filters {
    padding-left: 10px;
    background: #e0e0e0;
    border-radius: 10px;
}
.filters input[type="submit"] {
    background: #424242;
    color:white;
    border-radius: 5px;
    border:none;
    padding: 5px 10px;
    margin-left: 10px;
}
.filters .filter {
    display: inline-block;
    border-right: 1px solid #bdbdbd;
}
.filters .filter span {
    display: inline-block;
    padding: 15px;
}

.filters .filter_select {
    display:none;
    position: absolute;
    background: white;
    border-left: 1px solid #bdbdbd;
    border-right: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
}
.filters .filter:hover {
    background: #bdbdbd;
}
.filters .filter:hover .filter_select
{
    display: block;
}

.filters .filter_select div {
    padding: 10px;
}