
.dw-directory-controls {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.dw-directory-controls input,
.dw-directory-controls select {
    padding: 0.5em;
    background-color: #FFFFFF;
    border: 1px solid hsla(0,0%,7%,.8);
    border-radius: 4px;
    box-shadow: none;
}
.dw-directory-controls select {
    padding:0.5em 2em 0.5em 0.5em;
    appearance: none;
}
.dw-directory-controls svg.select_expand {
    fill: #2b2d2f;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.dw-directory-list { 
    position:relative; 
}
.search { 
    background-color: #ffe65e; 
}
.filter { 
    /* background-color: #cdffe6; */
}
.member-card .content-child {
    margin: 0 20px;
}
.member-card .content-child > *:first-child {
    margin-top: calc(20px - 5px);
}
.member-card .content-child > *:last-child {
    margin-bottom: calc(20px - 3px);
}
.member-card button.card-closed .profile-field h5.profile-value {
    margin-bottom: 0px;
}
.member-card button.card-closed .profile-field span {
    font-size: 1.5rem;
}
.card-closed {
    position: relative;
    background-color: #38457E;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    transition: background-color 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}
.card-closed .profile-field * {
    color: #FFFFFF !important;
}
.card-closed.active {
    background-color: #5BC8AF;
    border-radius: 10px 10px 0 0;
}
/* Hover state online for desktop */
@media (hover: hover) and (pointer: fine) {
    .card-closed:hover {
        background-color: #5BC8AF;
    }
}
.card-open {
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    border-radius: 0 0 10px 10px;
    margin-bottom: 15px;
    margin-top: -15px;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.1);
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0,1,0,1);
}
.card-closed.active + .card-open {
    max-height: 9999px;
    transition: max-height 0.3s cubic-bezier(1,0,1,0);
}
.card-closed:after {
    position: absolute;
    right: 20px;
    top: 30px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 2.5rem;
    content: "\f077";
    color: #FFFFFF;
}
.card-closed.active:after {
    content: "\f078";
}
