@import url(//fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic&subset=latin,cyrillic-ext,greek-ext,latin-ext,cyrillic);
/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
html {
  font-size: 16px;
}

.important{
  color: Red;
}

/* @media screen and (min-width: $media-small) {
  html {
    font-size: calc($font-size + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: $font-size-big;
  }
}  */
/* tags  */
body {
  background-color: #FCFCFC;
  /* margin: 5px;
  padding: 5px; */
  font-family: "Noto Sans", sans-serif;
  line-height: 1.4em;
  text-decoration: none;
  color: Black;
}

h1 {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.1em;
}

h2 {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.1em;
}

h3 {
  font-size: 1.2em;
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.1em;
}

a {
  text-decoration: none;
  color: #009913;
}

a:visited {
  text-decoration: none;
}

a:hover {
  color: #2DC940;
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto !important;
}

ul {
  list-style-type: none;
  padding-left: 0px;
}

p {
  line-height: normal;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

figure {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

form {
  width: 95%;
  margin: auto;
  margin-top: 5%;
  padding: 5px;
  background-color: #FFE439;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 2px solid #CCCCCC;
}

fieldset {
  border: none;
}

/* dt{
	display: block;
    margin-inline-start: 40px;
}

dd {
    display: block;
    margin-inline-start: 40px;
	align-items:left;
	align:left;
} */
option:hover {
  background-color: #FFEA63;
}

input, textarea, select, button {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.1em;
}

input, select, textarea {
  width: 80%;
  background-color: #FFEA63;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=checkbox] {
  width: auto;
  height: 25px;
}

input[type=button], input[type=submit], input[type=reset] {
  width: auto;
  background-color: #FFEA63;
  border: none;
  color: Black;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #FFDD00;
}

label {
  display: block;
  vertical-align: center;
}

option {
  background-color: #FFEA63;
}

table {
  border-collapse: collapse;
  margin-top: 10px;
}

td, th {
  padding: 0.2em;
  padding-left: 0.4em;
  padding-right: 0.4em;
  word-break: break-all;
  text-align: left;
}

thead th {
  border-bottom: 2px solid #599438;
}

@media all and (max-width: 1200px) {
  table, tbody, tr, th, td {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    padding: 1em;
    border-top: 0 none;
  }

  th {
    padding: 0;
  }

  td:first-child {
    border-bottom: 2px solid #599438;
    border-top: 2px solid #599438;
  }
}
/* class selectors */
/* container */
.flex-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}

.container {
  padding: 0px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.container-small {
  width: 250px;
  padding: 0px;
  margin: 10px;
}

/* page */
div.page {
  width: 100%;
  background-color: #FCFCFC;
}

/* header */
div.page_header {
  background-image: url("../img/header/sommer-md.jpg");
  height: 100px;
  vertical-align: center;
  position: relative;
  clear: all;
}

.header_text {
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  left: 100px;
  bottom: 5px;
  color: #0000ff;
  text-shadow: 5px 5px 10px yellow;
  line-height: 1;
  float: right;
}

div.teaser {
  display: -webkit-flex;
  display: flex;
}

div.main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;
}

div.main_left {
  display: none;
}

div.main_inhalt {
  width: 100%;
}

div.main_right {
  flex: 1 0 200px;
  -webkit-flex: 1 0 200px;
}

@media all and (min-width: 768px) {
  form {
    width: 80%;
  }

  div.main {
    -webkit-flex-flow: row;
    flex-flow: row;
  }

  div.main_inhalt {
   width: calc(100% - 200px );
  }

  .header_text {
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  form {
    width: 70%;
  }

  div.page_header {
    background-image: url("../img/header/sommer-lg.jpg");
    height: 200px;
  }

  .header_text {
    font-size: 50px;
    left: 50px;
    top: 80px;
  }

  /* div.main_left{
  	flex: 0 0 200px;
  	-webkit-flex: 0 0 200px;
  	text-align: left;
  	margin-right: 5px;
  	display: initial;
  }  */
  div.main_inhalt {
    width: calc(100% - 200px );
  }
}
div.page_footer {
  margin-top: 20px;
  padding: 0px;
  border-top: 2px solid DarkGrey;
}

div.content, div.content-tiles {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  /* Then we define how is distributed the remaining space */
  justify-content: space-around;
  align-items: flex-start;
}

div[class*=frame-layout] {
  padding: 5px;
  margin: 5px;
}

.content-tiles > [class=frame-layout-2] {
  box-shadow: 5px 10px 18px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.2);
}
.content-tiles > [class=frame-layout-2] header h2 {
  text-align: center;
}

.content-tiles > [class=frame-layout-3] {
  box-shadow: 5px 10px 18px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.2);
}
.content-tiles > [class=frame-layout-3] header h2 {
  text-align: center;
}

/* mobile first*/
div[class*=frame-layout] {
  width: 100%;
}

@media all and (min-width: 768px) {
  div.frame-layout-2 {
    width: calc(50% - 22px);
  }

  div.frame-layout-3 {
    width: calc(50% - 22px);
  }
}
@media all and (min-width: 1200px) {
  form {
    width: 60%;
  }

  div.frame-layout-2 {
    width: calc(50% - 22px);
  }

  div.frame-layout-3 {
    width: calc(33% - 22px);
  }
}
@media all and (min-width: 1200px) {
  div.page {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
  }
}
table.footer {
  padding-bottom: 0px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  width: 800px;
  background-color: #3655C3;
}

/*  popup */
#overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #999;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 100;
}
@media all and (max-width: 1199px) {
#popup {
  position: fixed;
  display: none;
  background-color: #FCFCFC;
  top: 0px;
  left: 0px;
  width:100%;
  height: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 2s linear;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
}
}



@media all and (min-width: 1200px) {
#popup {
  position: fixed;
  display: none;
  background-color: #FCFCFC;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  opacity: 0;
  transition: opacity 2s linear;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
}
}


#popup:hover {
  opacity: 1;
}

#popupclose {
  float: right;
  padding: 10px;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
}

#cookieconsent-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  /* exclude padding when dealing with width */
  display: none;
  flex-direction: row;
  justify-content: space-between;
  z-index: 9999;
  background-color: #FFDD00;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 0.7em;
  font-weight: bold;
  padding: 0.2em;
}

#cookieconsent-content {
  position: absloute;
  left: 20px;
  text-align: left;
  padding-right: 10%;
  width: 80%;
}

#cookieconsent-button {
  cursor: pointer;
  background-color: #7B58C2;
  padding: 0.4em 0.8em;
  font-size: 1em;
  font-weight: bold;
  border-width: 1px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  opacity: 0.9;
  min-width: 20px;
  vertical-align: middle;
  line-height: 16px;
  height: 16px;
  margin: auto;
  border-radius: 4px;
}

#cookieconsent-button:hover {
  opacity: 1;
}

#login {
  font-weight: bold;
  padding: 0px;
  margin-top: 10px;
  border-width: 1px;
  border-style: none;
  border-radius: 4px;
}

#login-text {
  margin: 5px;
  padding: 0px;
}

#login-link {
  margin: 5px;
  padding: 0px;
}

/*# sourceMappingURL=ASCP_styles.css.map */
