.staff-member {
    opacity: 1;
    transition: opacity .3s;
    padding-top: 15px;
    padding-bottom: 15px;
}

.staff-member:hover,
.staff-member:focus {
    opacity: .9
}

.modal-dialog.staff-modal {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
    max-width: 1000px !important;
}

@media(max-width: 768.98px) {

    .modal-dialog {
      min-height: calc(100vh - 20px);
    }

    .staff-member {
        padding-top: 15px;
        padding-bottom: 15px;
    }

}

.staff-member .staff-img-wrapper {
    position: relative;
    cursor: pointer;
}

.staff-member .staff-img-wrapper .plus {
    background-color: gray;
    color: white;
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    cursor: pointer;
    font-weight: bold;
}

@media ( min-width: 768.98px ) {

    .staff-member .staff-img-wrapper .plus {
        width: 60px;
        height: 60px;
    }
}