
.realtime-exhibitors{
    position: fixed;
    top: 200px;
    right: 20px;
    height: 45px;
    width: 110px;
    /* background-color: #1a499b; */
    color: white;
    z-index: 60;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
    transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.realtime-exhibitors.visiting-stand {
    position: absolute;
    padding-top: 5px;
    top: 550px;
    right: 150px;
    width: 150px;
    height: 45px;
    z-index: 50;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #1a499b;
    -webkit-box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
}

.close-btn {
    position: fixed;
    right: -580px;
    z-index: 3000;
    background-color: white;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    top: 50px;
    transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

.close-btn.active{
    right: 550px;
}

.realtime-exhibitors.active{
    right: 550px;
}

.realtime-exhibitors.visiting-stand.active{
    right: 150px;
}

#box-exhibitors {
    position: fixed;
    z-index: 59;
    overflow: auto;
    top: 0px;
    right: -580px;
    width: 550px;
    opacity: 0;
    padding-top: 50px;
    height: 100%;
    background-color: white;
    color: #343838;
    transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
    font-weight: bold;
    box-shadow: 0 5px 30px grey;
}

#box-exhibitors.active {
    right: 0px;
    opacity: 1;
}

#box-exhibitors > .help-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-left: 15px;
    padding-right: 15px;
}
#box-exhibitors > .help-content > .exhibitor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}


.exhibitor.hall {
    margin-bottom: 0 !important;

}

#box-exhibitors > .help-content > .exhibitor > .main-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.main-content.hall {
    height: 30px;
}

.exhibitor > .main-content > img {
    height: 40px;
    width: 40px;
}
.exhibitor > .main-content > .show-stand {
    width: 25%;
    align-self: center;
    font-size: 32px;
    cursor: pointer;
    color: #1a499b;
    text-align: center;
}
.exhibitor > .main-content > .firm-name {
    text-align: left;
    width: calc(85% - 50px);
    padding-left: 15px;
}

.firm-name.hall {
    align-self: center;
}

.exhibitor > .main-content > div > .title {
    font-size: 15px;
    color: #1a499b;
}

.exhibitor > .main-content > div > .title.hall {
    font-size: 15px;
    color: black;
    font-weight: bold;
}

.number {
    font-style: italic;
}
.number.hall {
    padding-left: 15px;
}

.number > i {
    color: #1b851b;
}

.searchbar {
    width: 100%;
    margin-bottom: 30px;
}

.stands-list {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-end;
    opacity: 0;
    height: 0;
}

.stands-list.active {
    display: flex;
    opacity: 1;
    height: auto;

}

.stands-list > .stand-infos {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.stand-infos > .infos {
    width: 85%;
}

.stand-infos > .infos.hall{
    width: calc(85% - 50px);
}

.hall-name{
    padding-right: 5px;
    font-size: 12px;
    color: #1a499b;
    font-weight: bold;
}

.hall-name.hall {
    padding-left: 15px;
    font-size: 15px;
}
.stand-infos > .button {
    align-self: center;
    width: 20%;
}

.hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #eee;
    width: 100%;
}

a.btn-booth:hover {
    color: white;
    text-decoration: none;
}

.btn-booth {
    color: white;
    background-color: black;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: initial;
}

.btn-booth:hover {
    background-color: #1f1f1f;
}
.filters{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 15px;

}

.filters__item {
    text-align: center;
    width: 33.33333%;
    height: 45px;
    line-height: 45px;
    background-color: #1a499b;
    color: white;
    cursor: pointer;
    transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
    font-weight: initial;
    font-size: 15px;

}

#filters__halls {
    border-left: white 1px solid;
    border-right: white 1px solid;
}

.filters__item.active {
    background-color: white;
    color: #1a499b;
}
#filters__all{
    width: 100%;
    background-color: #038B99;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.filters__all__text{
    width: 66%;
    text-transform: initial;
    cursor: pointer;
    font-weight: initial;
}

.filters__all__button{
    width: 33%;
    text-transform: initial;
    cursor: initial;
    text-align: right;
}

.refresh-btn {
    background-color: white;
    color: #5bc0de;
    height: 22px;
    border: none;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 27px;

}

.refresh-btn:focus {
    background-color: whitesmoke;
    outline: none;
}

.search {
    width: 100%;
    height: 35px;
    line-height: 30px;
    padding-left: 5px;
    margin-bottom: 15px;
}

.search > input {
    background-color: #EFEFEF;
    border: none;
    width: 80%;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 20px;
}

.search > input:focus {
    border: none;
    outline: none;
}

.reset-btn {
    background-color: #5bc0de;
    color: white;
    height: 22px;
    border: none;
    line-height: 20px;
    float: left;
    margin-left: 45px;
    margin-top: 5px;
}

.reset-btn:focus {
    background-color: #58adcb;
    outline: none;
}

.search > i {
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    background-color: #1a499b;
    color: white;
    margin-left: -3px;
}

.close-all {
    text-align: right;
}
.close-all-caret {
    font-weight: bold;
    margin-right: 25px;
    color: #1a499b;
    border: none;
}
.close-all-caret.active {
    border: none;
}

.fa-search {
    cursor: pointer;
}
.fa-repeat {
    cursor: pointer;
    background-color: #f5b500 !important;

}

@media (max-width: 450px) {
    #box-exhibitors {
        width: 100%;
        right: -1380px !important; /*-580px*/
    }
    .search > input {
        width: 68%;
    }
    .close-btn.active {
        left: 0;
        top: 97px;
    }

    .realtime-exhibitors.active{
        right: 1350px !important; /*550px*/
    }
    #box-exhibitors.active {
        right: 0px !important;
    }
}
