.modalDialog {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fffed8;
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow-x: auto;
    overflow-y: auto;
}

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {

    background-color: #fffed8;
    height:auto;
    width: 100%
overflow-x: auto;
    overflow-y: auto;
}
.headingdiv{
    color: #018f4f;
    margin-top:50px;

    text-align: center;
}



.close3{
    z-index: 99999;

    color: #000;
    opacity: 100;

    position: fixed;
    text-align: center;
    right:25px;
    top: 0px;
    width: 80px;
    text-decoration: none;
    font-size: 40px;
    font-weight: normal;

}

.close3:hover {
    background: #018f4f;
    opacity:100;
}
