﻿body, html {
	overflow: hidden;
	scroll-behavior: smooth;
	margin-right: 20px;
	margin-left: 20px;
	font-family: Roboto, sans-serif;
	font-weight: 300;
	font-size: 18px;
}

h1 {
	font-family: Roboto, sans-serif;
	font-weight: 400;
	font-size: 28px;
	margin-bottom: 5px;
}

h2 {
	font-family: Roboto, sans-serif;
	font-weight: 300;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
}

table {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 18px;
}

button,
input[type=submit],
input[type=button]{
	background-color: #84BD00; /* Green */
	border: none;
	color: white;
	padding: 15px 40px;
	text-align: center;
	display: inline-block;
	font-family: Roboto, sans-serif;
	font-size: 24px; 
	font-weight: 300;
	border-radius: 15px;
	box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 1);
	margin-top: 20px;
	margin-right: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"]{ 
	margin-bottom: 10px;
	background-color: transparent;
	box-sizing: border-box;
	padding: 10px 30px;
	outline: none;
	font-size: 24px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	border: none;
	border-bottom: 2px solid #ccc;
}

input[type="date"]{ 
	width: 35%;
	background-color: transparent;
	box-sizing: border-box;
	padding: 10px 50px;
	outline: none;
	font-size: 24px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	border: none;
	border-bottom: 2px solid #ccc;
	margin-top: 35px
}

input[type="tel"]{ 
	background-color: transparent;
	box-sizing: border-box;
	padding: 10px 30px;
	outline: none;
	font-size: 24px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	border: none;
	border-bottom: 2px solid #ccc;
	margin-bottom: 10px;
}

select {
	padding: 10px 40px;
	background: transparent;
	font-size: 24px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	border: none;
	border-bottom: 2px solid #ccc;
}

select.abo {
	padding: 10px 10px;
	background: transparent; 
	font-size: 18px; 
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	border: none;
}

/* GRAUE SCHRIFT IM PLACEHOLDER */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #ccc;
}


/* RADIO-SELECT FÜR ABO */
section {
  display: flex;
  flex-flow: row wrap;
}

section > div {
  flex: 1;
  padding: 0.5rem;
}

input[type="radio"] {
  display: none;
}
input[type="radio"]:not(:disabled) ~ label.abo {
  cursor: pointer;
}

input[type="radio"]:disabled ~ label.abo {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
}

label.abo {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  background: #FFF;
  border: 2px solid #84BD00;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 1);
  position: relative;
  color: #84BD00;
}

label.abo h4 {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 5px;
	margin-top: 15px;
}

label.abo h5 {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 15px;
	margin-bottom: 15px;
	margin-top: 5px;
}

input[type="radio"]:checked + label.abo {
  background: #84BD00;
  color: white;
  transform: scale(1.0);
}

input[type="radio"]:checked + label.abo::after {
  color: #3d3f43;
  font-family: FontAwesome;
  border: 2px solid #CF9;
  content: "\f00c";
  font-size: 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 700px) {
  section {
    flex-direction: column;
  }
}

.preisbox {
	margin-top: 0.5rem;
	margin-bottom: 0.1rem;
	display: block;
	background: #FFF;
	border: 2px solid #84BD00;
	border-radius: 15px;
	padding: 0.2rem;
	box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 1);
	position: relative;
	color: #FFFFFF;
	text-align: center;
}

.lite {background: #84BD00;}
.basic {background: #84BD00;}
.standard {background: #84BD00;}
.premium {background: #84BD00;}

input.endpreis {
	margin-top: 5px;
	padding: 2px;
	width: 180px;
	border: none;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #FFF;
}


.endpreis::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FFF;
  opacity: 1; /* Firefox */
}

.endpreis:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #FFF;
}

.endpreis::-ms-input-placeholder { /* Microsoft Edge */
  color: #FFF;
}


