.staff {
    margin: 1rem 0;
}

.staff__list {
    margin-top: 2rem;
    border: 1px solid #e5e5e5;
}

.staff__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 1.5rem 1rem;
    font-family: "Gotham";
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #333;
    background: #f7f7f7;
    border: unset;
    border-bottom: 1px solid #e5e5e5;
}

.staff__button .icons {
    fill: #a4a4a4;
    width: 1rem;
    height: 1rem;
    margin-left: .5rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.staff__button[aria-expanded='true'] {
    background: white;
    -webkit-box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    color: #1fbc53;
}

.staff__button[aria-expanded='true'] .icons {
    -webkit-transform: rotate(90deg) scaleX(-1);
    transform: rotate(90deg) scaleX(-1);
}

.staff__button--send {
    margin-top: 1rem;
    color: #1fbc53;
    border: 1px solid #1fbc53;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: .8rem 1rem;
    font-family: "Gotham";
    font-size: 1.2rem;
    line-height: 1.3rem;
    background: #fff;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.staff__button--send:hover {
    color: #fff;
    background: #1fbc53;
    -webkit-box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
}

.staff__button--send:active {
    color: #333;
    background: #fff;
    border-color: #fff;
    -webkit-box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
}

.staff__block {
    padding: 2rem 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.staff__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc(100% - 1rem);
    flex: 0 0 calc(100% - 1rem);
    margin: 0 .5rem 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.staff__item__image {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: .5rem;
}

.staff__item__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #e5e5e5;
}

.staff__item__name {
    font-family: "Gotham Medium";
    font-size: 1rem;
    line-height: 1rem;
    color: #333;
    margin-bottom: .5rem;
}

.staff__item__position, .staff__item__info {
    font-family: "Gotham";
    font-size: .8rem;
    line-height: .8rem;
    color: #a4a4a4;
}

.staff__item__position {
    margin-bottom: 1rem;
}

.staff__item__text {
    font-family: "Gotham";
    font-size: .8rem;
    line-height: .8rem;
    color: #333;
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.staff__item__button {
    font-family: "Gotham";
    font-size: 1rem;
    line-height: 1rem;
    color: #1fbc53;
    margin: .5rem 0 1rem;
    padding: .5rem .8rem;
    border: 1px solid #1fbc53;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.staff__item__button:hover {
    background: #1fbc53;
    color: #fff;
    -webkit-box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
}

.staff__item__button:active {
    background: #fff;
    color: #1fbc53;
    -webkit-box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .staff__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
        margin: 0 .5rem 1rem;
    }
}
