/*Modal*/

.logo-modal {
  width: 280px;
}

.icon-modal {
  width: 200px;
}

.myBtn-modal {
  display: none; /* Hidden by default */
}

.modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 97; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(169,200,44,0.9); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  text-align: left;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 70px; /*Distanz zum Text*/
  border: 0px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
  border-radius: 15px;
}

/* The Close Button */
.close-modal {
  color: #333333;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: #a9c82c;
  text-decoration: none;
  cursor: pointer;
}

/**************************************** Mediascreen ****************************************/

@media screen and (max-width: 1124px) {

/**************************************** Mediascreen ****************************************/

/*Modal*/

.logo-modal {
  width: 160px;
}
	
.icon-modal {
  width: 75px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  text-align: left;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 30px; /*Distanz zum Text*/
  border: 0px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
  border-radius: 15px;
}

}