.searchbar-homepage {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
}

.filter-homepage {
    width: 33.3333333333%;
    height: 45px;
    line-height: 45px;
    background-color: #1a499b;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.filter-homepage.searchbar-homepage-halls{
    border-left: white 1px solid;
    border-right: white 1px solid;
}

.refresh-homepage {
    width: 33.3333333333%;
}

.refresh-homepage > button{
    background-color: white;
    color: #5bc0de;
    height: 22px;
    border: none;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

.filter-homepage.searchbar-homepage-all{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #038B99;
}

.all-exhibitors-homepage{
    width: 66.666666666%;
}

.list-exhibitors-homepage {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.list-exhibitors-homepage > .column {
    width: 33.3333333333%;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.column.second-column {
    border-left: grey 1px solid;
    border-right: grey 1px solid;
}

.column > .exhibitor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
}

.column > .exhibitor > .main-content{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.column > .exhibitor > .main-content > .show-stand{
    width: 25%;
}
.column > .exhibitor > .stands-list > .stand-infos > .button {
    width: 20%;
}



@media (max-width: 450px) and (min-width: 300px) {
    .list-exhibitors-homepage > .column {
        width: 100%;
    }
}