@media screen and (min-width: 1000px) {
    .CS__column {
        display: inline-block;
        vertical-align: top;
    }
}

/**
 * Filter column
 */

.CS__filterToggler:target {
    border-color: transparent;
    color: #999;
    background-color: #ddd;
}

.CS__filter {
    visibility: hidden;
    max-height: 0;
    padding: 1.8em;
    font-size: 1.1em;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
}

.CS__filterToggler:target + .CS__filter {
    visibility: visible;
    max-height: 3000px;
}

@media screen and (min-width: 1000px) {
    .CS__filterToggler {
        display: none;
    }

    .CS__filter {
        visibility: visible;
        max-height: none;
        position: relative;
        width: 28%;
        margin-right: 6%;
    }
}

.CS__filterSearchField {
    margin: 0;
}

.CS__filterSearchField .field.first,
.CS__filterSearchField .submit {
    float: left;
}

.CS__filterSearchField .field.first {
    width: calc(100% - 2.3em);
    max-width: 20em;
}

.CS__filterSearchField .submit {
    width: 2.3em;
}

.CS__filterSearchField .submit + .field {
    clear: left;
}

.CS__filterSearchField button {
    margin: 0;
    padding: 0.35em 0.55em;
}

.CS__filterSearchField .inner-button {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.CS__filterSearchField button:after {
    font-family: 'SS BlackTie-Light';
    content: '🔎';
    color: #000;
    font-style: normal;
    font-weight: bold;
    display: inline-block;
    text-decoration: inherit;
    font-variant: normal;
    text-transform: none;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.CS__filterSearchField input[type='text'] {
    margin: 0;
    width: 100%;
}

.specializationDomainsFilter {
    padding: 1em 0 0.5em;
    margin: 0;
}

/**
 * Search results column
 */

@media screen and (min-width: 1000px) {
    .CS__searchResults {
        width: calc(66%);
    }
}