/* Team Member Modal — replaces WP Post Popup plugin styles */

#team-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    overflow-y: auto;
}

#team-modal-overlay.is-open {
    display: block;
}

body.team-modal-open {
    overflow: hidden;
}

#team-modal-container {
    position: relative;
    width: 70%;
    margin: 5% auto;
    padding: 0;
    border: 0;
    background-color: #fff;
}

@media only screen and (max-width: 1200px) {
    #team-modal-container {
        width: 90%;
    }
}

#team-modal-close {
    position: absolute;
    z-index: 3;
    cursor: pointer;
    border: 0;
    padding: 0;
    color: #fff;
    background-color: rgba(0, 192, 138, 0.8);
    border-radius: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.5rem;
    right: 0;
    top: 0;
}