#exhibitor-heading {
    display: flex;
    justify-content: space-between;
}

#exhibitor-container {
    margin: 20px 0;
    min-height: 250px;
}

#exhibitors {
    display: flex;
    flex-wrap: wrap;
}

#exhibitor-filter {
    padding: 8px 15px;
}

#exhibitors .exhibitor {
    box-sizing: border-box;
    background: #fff;
    height: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: 250ms ease-in-out all;
}

#exhibitors .exhibitor.sorting-hide {
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
}

#exhibitors .exhibitor.visible {
    width: 240px;
    height: auto;
    opacity: 1;
    margin: 20px;
}

#exhibitors .exhibitor a.image {
    display: flex;
    align-items: center;
    height: 240px;
    margin: 0 0 20px 0;
    padding: 10px;
}

#exhibitors .exhibitor img {
    border-radius: 0 !important;
}

#exhibitors h2 {
    font-size: 20px;
    padding: 0 20px;
    font-weight: 600;
}

#exhibitors .description {
    padding: 20px;
    font-size: 16px;
}

#no-exhibitors {
    transition: 250ms ease-in-out all;
    opacity: 1;
    height: auto;
    text-align: center;
    font-size: 20px;
}

#no-exhibitors.hide {
    height: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    #exhibitors {
        display: block;
    }

    #exhibitors .exhibitor.visible {
        width: auto;
    }

    #exhibitors .exhibitor a.image {
        display: block;
        height: auto;
        text-align: center;
    }

    #exhibitor-heading {
        display: block;
    }

    #filter-options {
        padding: 20px 0;
    }

    #filter-options input, #filter-options select {
        display: block;
        margin: 0 0 10px 0;
        width: 100%;
        max-width: 450px;
    }
}

