/************** MODAL JUBI-POPUP ****************/
/**============================================*/
/* The Modal (background) */
#myModal {
  /*display: none; *//* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  padding-top: 130px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */  
  /*transition: all 500ms ease-out;*/
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
@keyframes jubi {
  from {opacity:0;}
  to {opacity:1;}
}

#myModal {  
  animation: jubi 0.9s;
  opacity: 1;
}

/* Modal Content */
.modal-content {  
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;  
  width: 55vw;
  font-family: 'PT Sans',Arial,Sans-Serif;
  color:#070707;
  border:solid 3px rgb(255, 217, 0);
  border-radius:12px;
  background: #fff url("../grafik/25-jahre-april-26.webp") no-repeat center;
}
#myModal .modal-top {
  width: 100%;
  position: relative;
  height: auto;
  text-align: right;
}
/* The Close Button */
#myModal .modal-top #closeBtn{		
    position:relative;
    top: 5x;
	right: 5px;
	background-color:orangeRed;
	border:0px;
	padding: 4px 8px;
	color: #000;
	cursor: pointer;
}

#closeBtn:hover,
#closeBtn:focus {
  color: white;
  background-color:red;
  text-decoration: none;
  cursor: pointer;
}
/*#closeBtn {
  color: white;
  /*float: right;*/
  /*font-size: 28px;
  font-weight: bold;
  align-self: flex-end;
  margin-top: -1.3rem;
  background-color: darkred;
}*/