#modalOverlay {
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999999;
            height: 100%;
            width: 100%;
    }
.modalPopup {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            width: 70%;
            padding: 0 0 30px;
            -webkit-box-shadow: 0 2px 10px 3px rgba(0,0,0,.2);
            -moz-box-shadow: 0 2px 10px 3px rgba(0,0,0,.2);
            box-shadow: 0 2px 10px 3px rgba(0,0,0,.2);
            border-radius: 10px;
    }
.modalContent {padding: 0 2em;}
.headerBar {
        width: 100%;
        background: #639f04;
        margin: 0;
      text-align: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
}

