@charset "utf-8";

/* The Modal (background) */ 
.modal {
    /*display: none; /* Hidden by default */
    display: block; /* Visible by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0; 
    width: 100%; /* Full width */
    height: 100%; /* 10% Höhe */ 
    /* overflow: auto; Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
/*     -webkit-animation-name: fadeIn; /* Fade in the background 
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s*/
}
 
/* Modal Content */
.modal-content {
    /* position: fixed;  
    bottom: 0;  */ 
	position: relative;
	top: 50%;
    background-color: #fefefe;
    width: 99%;         
    padding: 1em 2em 1em 2em;
    /* -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s*/
}

/* The Close Button */
.close {
    color: black; 
    float: right; 
	padding-top: 10px;       
	padding-right: 2em;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


