body {
  font-family: "Roboto Slab";
  color: #2a3f61;
  line-height: 1.5;
  margin: 0;
}

#container {
  
  padding: 2em 20%;
  min-height: 50vh;
  
}

@media screen and (max-width: 1200px) {
  #container {
    padding: 2em 10%;
  }
}

@media screen and (max-width: 991px) {
  #container {
    padding: 2em 5%;
  }
}

@media screen and (max-width: 767px) {
  #container {
    padding: 2em 30px;
  }
}

header {
  height: 8em;
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}

footer {
  height: 8em;
  display: flex;
  justify-content: center;
  align-items: center;
}

header a:hover {
  border: none;
}

header img {
  height: 100px;
  width: auto;
}

.ce_form {
  margin-top: 5em;
  margin-bottom: 5em;
}

h1 {
  text-transform: uppercase;
  font-family: "Roboto";
  font-weight: 900;
}

h2 {
  font-family: "Roboto Slab";
}

h2 + p {
  margin-top: 3em;
}

a {
  color: #f26651;
  text-decoration: none;
  transition: all .3s;
  font-weight: 700;
}

a:hover {
  color: #2a3f61;
  border-bottom: 1px dotted #2a3f61;
}

p strong {
  font-family: "Roboto";
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.3em;
  letter-spacing: .5px;
}

p.error {
  color: #f26651;
}


input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input:not([type]), textarea {
	  background: #fff none repeat scroll 0 0;
    border:1px #e4e4e4 solid;
    border-color: rgba(67, 75, 86, 0.25);
    border-radius: 4px;
    box-shadow:none; /* da im Contao-Default-Form-CSS vorhanden */
    box-sizing: border-box;
    display: inline-block;
    color: #2a3f61;
    font-weight:400;
    font-size: 1em;
    padding: 8px 0 8px 5px;
    transition: all 0.15s linear 0s;
    width: 75%;
    font-family: "Roboto Slab";
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input:not([type]), textarea {
    width: 100%;
  }
}

input:hover[type="text"], input:focus[type="text"], input:hover[type="checkbox"], input:focus[type="checkbox"], input:hover[type="email"], input:focus[type="email"], input:hover[type="tel"], input:focus[type="tel"], textarea:hover, textarea:focus {
	background: #e9f3f5 none repeat scroll 0 0;
}
label {
	width:25%;
	display:inline-block;
	padding: 8px 0;
}

.radio_container label {
	width:auto;
	margin-right:30px;
}
legend {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    bborder-color: -moz-use-text-color -moz-use-text-color #e5e5e5;
    border-image: none;
    border-style: none none solid;
    border-width: 0;
    color: #333;
    display: inline-block;
    font-size: 18px;
    line-height: inherit;
    margin-bottom: 20px;
    padding: 0;
    width: 25%;
}

@media screen and (max-width: 767px) {
  label, legend {
    width: 100%;
  }
}

.radio_container legend {
	padding:8px 0;
}
.widget-text {
  display: flex;
	padding-bottom:5px !important;
	margin-bottom:30px;
}

span.mandatory {
  color: #f00;
}

@media screen and (max-width: 767px) {
  .widget-text {
    display: block;
  }
}

.widget-text + .widget-checkbox {
  margin-top: 3em;
}

.widget-checkbox, .widget-radio {
  margin-bottom: 3em;
}

.widget-checkbox fieldset, .widget-radio fieldset {
  border: none;
  padding: 0;
}

.widget-checkbox fieldset legend {
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
  color: #2a3f61;
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-family: "Roboto";
}

.widget-checkbox fieldset span {
  display: flex;
  width: 75%;
  margin-left: 25%;
  align-items: center;
  margin-block: 1em;
}

.widget-radio fieldset span {
  display: block;
}

@media screen and (max-width: 767px) {
  .widget-checkbox fieldset span {
    width: 100%;
    margin-left: 0;
  }
}

.widget-checkbox fieldset span input {
  width: 30px;
  height: 30px;
  border:1px #e4e4e4 solid;
  border-color: rgba(67, 75, 86, 0.25);
}

.widget-checkbox fieldset span label {
  width: calc(100% - 30px);
  padding-left: 5px;
}

.widget-textarea {
	margin-bottom:15px;
}

.widget-textarea label {
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
  color: #2a3f61;
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-family: "Roboto";
}

.widget-textarea textarea {
  border:1px #e4e4e4 solid;
  border-color: rgba(67, 75, 86, 0.25);
  width: 75%;
  height: 10em;
  margin-left: 25%;
  font-family: "Roboto Slab";
  font-size: 1em;
}

@media screen and (max-width: 767px) {
  .widget-textarea textarea {
    width: 100%;
    margin-left: 0;
  }
}

.widget-submit {
	margin-top:30px;
}
.submit {
    display:block;
    background-color:#5ab7bd;
    padding:15px 40px;
    font-family:"Roboto Slab";
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 900;
	  font-size:1em;
    margin:10px 0 0 25%;
    color:#2a3f61;
    color: #fff;
    border:none;
    cursor:pointer;
    border-radius: 16px 5px;
}
.submit:focus, .submit:hover {
    opacity: .85;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.widget, .widget::after {
	width:100%;
}
label, legend {
	font-size:1em;
	margin-bottom:0;
}
form .widget .invisible {
	display:none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  border-radius: 4px;
} 
/*select {
  width:75%;
  border: 1px solid #bbb;
  padding:8px 0 8px 5px;
  box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
  background-color:white;
  background-image:url(../../files/theme_ranketing/img/pfeil.png);
  background-position: right;
  background-repeat: no-repeat;
}
*/
select:hover {
  box-shadow: 0 0 2px 0 rgba(0,0,0,0.2);
}
/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
  display:none;
}
.lt-ie10 select {
    background-image: none;
} 
input[type="submit"] {
	width:100%;
	border:0;
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-v48-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}


/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-600.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-v48-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-600.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-v48-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-800.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-v48-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-800.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-800.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-800.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-900.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-v48-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-v48-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-v48-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-slab-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-regular.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-700.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.eot'); /* IE9 Compat Modes */
  src: url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../../files/cto-theme/fonts/roboto-slab-v35-latin-800.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}
