#abo {
	display:flex;
	flex-flow: row wrap;
}
.abo-plan {
	position:relative;
	width: 46%;
	background-color: #f5f5f5ff;
	min-width: 280px;
	height: 350px;
	margin: 20px auto auto auto;
	border-radius: 0px;
	text-align:center;
}
.abo-plan h1 {
	font-size:1.5rem;
	margin: 20px 0 5px 0;
}
.abo-plan h2 {
	font-size:1rem;
	text-align:center;
	margin: 0 0 5px 0;
  	color: #000;
}
.abo-plan ul{
	margin: 0 30px 15px 15px;
	font-size:0.9rem;
	text-align:left;
}
.abo-button{
	position: absolute;
	bottom: 0;
	left: 50%;
	border: none;
	background-color: var(--main-color);
	color:#eaeaeaff;
	text-align: center;
	display: inline-block;
	width: 180px;
	padding: 10px 0px 10px 0px;
	margin: 0 0 20px -90px;
	border-radius: 0px;
	font-weight: bold;
	transition: border 0.2s ease 0s,color 0.2s ease 0s,background-color 0.2s ease 0s,box-shadow 0.2s ease 0s;
	box-shadow: 0 0 16px rgba(0,0,0,0.3),0 0 16px rgba(0,0,0,0.3);
}
.abo-button:hover {
	box-shadow: 0 0 16px rgba(0,0,0,0.3),0 0 16px rgba(0,0,0,0.3);
	background-color: var(--main-color-darker); 
}

*,*:focus,*:hover{
    outline:none;
}
.abo-button-single{
	border: none;
	background-color: var(--main-color);
	color:#eaeaeaff;
	text-align: center;
	width: 180px;
	padding: 10px 0px 10px 0px;
	border-radius: 0px;
	font-weight: bold;
	transition: border 0.2s ease 0s,color 0.2s ease 0s,background-color 0.2s ease 0s,box-shadow 0.2s ease 0s;
	box-shadow: 0 0 16px rgba(0,0,0,0.3),0 0 16px rgba(0,0,0,0.3);
}
.abo-button-single:hover {
	box-shadow: 0 0 16px rgba(0,0,0,0.3),0 0 16px rgba(0,0,0,0.3);
	background-color: var(--main-color-darker); 
}

#overlay1 {
	display:none;
}
#overlay2 {
	display:none;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); 
  z-index: 4;
  cursor: pointer;
  overflow-y: scroll;
}
.overlayText{
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 75%;
  padding: 10px 30px 20px 30px;
  background-color: white; 
  cursor: default;
}

@media (min-width: 30rem) {
  .overlayText {
  	padding: 10px 40px 20px 40px;
  	width: 60%;
  }
}

#overlayFreeAbo {
	display:block;
}
#overlayMailAbo {
	display:none;
}
.overlayCloseButton {
  position: absolute;
  top:-10px;
  right:-10px;
  border-radius: 50% 50% 50% 50%;
  border: 2px solid var(--main-color);
  background-color: var(--main-color);
  transition: 0.3s;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.overlayCloseButton:hover {
  background-color: white;
  color:black;
}
.noscroll {
  overflow: hidden;
}
