#advocacy-modal {
    /* This way it could be display flex or grid or whatever also. */
    display: block;
    
    /* Probably need media queries here */
    width: 900px;
    max-width: 90%;
    
    height: 420px;
    max-height: 70%;
    overflow: visible;
    overflow-y: auto;
    position: fixed;
    z-index: 51;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: #f0f0f0;
}
#advocacy-modal__button-close {
    border: none;
    background: none;
    font-size: 24px;
    padding: 15px;
    right: 0px;
    position: absolute;
    z-index: 52;
}
.advocacy-modal__margin-top {
    margin-top: 30px;
}
#advocacy-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
}
#advocacy-modal__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 7%;
}

#advocacy-modal__container {
    display: none;
}

.questionnaire-container .caretLink, 
.questionnaire-container .caretLink:hover, 
.questionnaire-container .social-twitter, 
.questionnaire-container .social-facebook  {
    border-width: 0px;
    cursor: pointer;
    color: #999;
}