.empl-wrapper+.empl-wrapper {
    margin-top: 16px;
}

.empl-wrapper:last-child {
    margin-bottom: 32px;
}

.empl-header {
    display: flex;
    position: sticky;
    top: 0;
    justify-content: space-between;
    background-color: #7f654e;
    color: #fff;
    padding: .3em 1em;
    cursor: pointer;
    align-items: center;
    transition: background-color .3s ease-in;
    z-index: 20;
}

.empl-active .empl-header {
    background-color: #d18c0a;
}

.empl-header:after {
    display: block;
    content: '';
    height: 12px;
    width: 12px;
    margin-top: -7px;
    transform: rotate(45deg);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transition: all .3s ease-in;
}

.empl-active .empl-header:after {
    transform: rotate(225deg);
    margin-top: 7px;
}

.empl-header h2 {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    flex: 1;
}

.empl-list {
    height: 0;
    overflow: hidden;
}

.empl-columns>.empl-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.empl-columns>.empl-list>.empl-single {
    width: 50%;
}

.empl-single {
    display: flex;
    margin: 2em 0;
}

.empl-single>*:first-child {
    flex: 0 1 auto;
    height: 150px;
    width: 150px;
}

.empl-single img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

.empl-single>.empl-single-details {
    margin: 0 1em;
}

.empl-single>.empl-single-details>* {
    display: block;
}

.empl-single>.empl-single-details>h3 {
    margin: 0;
    font-weight: bold;
    padding: 0;
}

@media only screen and (max-width:700px) {
    .empl-columns>.empl-list {
        display: block;
    }
    .empl-single {
        display: block;
    }
    .empl-single>.empl-single-details {
        margin: 0;
    }
}