#myModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-radius: 25px;
	display:none;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
	display:none;
}

#overlay.open,#myModal.open{
	display:block;
}


#closeModal {
    width: 55px;
    position: absolute;
    top: 13px;
    right: 11px;
    border: none;
    background: none;
}

img{
    max-width: 100%;
    height: auto;
}