.ModalBackground {
    display: none;
    z-index: 1;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.ModalContent {
    background-color: rgba(255,255,255,0.9);
    margin: auto;
    padding: 20px;
    border-style: solid;
    border-width: 0px;
    border-color: black;
	position: absolute;
	        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
/*    width: 100%;*/
}

.Close {
    color: grey;
    float: right;
    font-size: 20px;
    font-weight: bold;
}

.Close:hover {
    color: black;
    cursor: pointer;
}