/* Dimensions */
/* Colors */
/* Fonts */
/* --- Responsive --- */
/* Touchscreen */
* {
  box-sizing: border-box;
  outline: none;
}
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10pt;
  line-height: 150%;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}
main {
  display: flex;
  flex-grow: 1;
}
.container {
  padding: 0 0.5rem;
}
@media screen and (min-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 992px;
    margin: auto;
  }
}
.container .row {
  display: flex;
}
.pagecontent {
  flex-basis: calc(100% - 200px);
  flex-grow: 1;
  overflow: visible;
}
a {
  display: contents;
  color: #e42230;
  transition: color 0.3s ease;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  color: lightgrey;
}
a.button {
  display: inline-block;
  padding: 0.6em 0.8em;
  background-color: #e42230;
  color: #ffff;
  font-weight: 500;
  border-radius: 1rem;
  box-shadow: 2px 2px 6px 1px #00000050;
  transition: box-shadow 0.3s ease;
}
a.button:hover {
  box-shadow: 2px 2px 12px 4px #00000050;
}
article {
  overflow: auto;
  margin-bottom: 4rem;
  padding: 0.5rem;
  box-shadow: 2px 2px 6px 1px #00000011;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  article {
    padding: 1rem;
    border-radius: 1rem;
  }
}
article table {
  margin-left: 0;
}
img {
  display: block;
  max-width: 100%;
  border: none;
  box-sizing: border-box;
}
table {
  margin: 2ch auto;
  border-spacing: 1px;
  border: none;
  font-size: inherit;
}
table .title {
  background-color: lightgrey;
  font-weight: bold;
}
table tr.title {
  text-align: center;
}
table td {
  border: 1px solid lightgrey;
  padding: 1ch;
}
table td.title {
  text-align: right;
}
table td table {
  margin: 0;
}
table td table td {
  border: none;
}
table td img {
  margin: auto;
}
h1,
h2,
h3 {
  display: inline-block;
  width: 100%;
  margin-top: 0;
  line-height: 150%;
  font-weight: 300;
}
h3 {
  margin-bottom: 1ch;
}
hr {
  border: 1px solid lightgrey;
}
p {
  margin: 0 0 2ch 0;
}
p:last-child {
  margin-bottom: 0;
}
.hidden {
  width: 0px;
  height: 0px;
  visibility: hidden;
}
div {
  float: none;
  display: block;
  box-sizing: border-box;
  overflow: auto;
}
div.image {
  margin-bottom: 1rem;
}
article div.image {
  float: none;
  max-width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 576px) {
  article div.image {
    float: left;
    margin: 0 1rem 1rem 0;
    max-width: 30%;
  }
}
article div.image.notext {
  margin: 0;
}
a div.image {
  transition: opacity 0.3s ease;
}
a div.image:hover {
  opacity: 0.7;
}
.fully-booked {
  position: relative;
}
.fully-booked::before,
.fully-booked::after {
  position: absolute;
  padding: 0.8rem;
  color: #e42230;
  background: #ffffffbb;
}
.fully-booked::before {
  content: "AUSGEBUCHT";
  top: 4rem;
  right: 1rem;
  transform: rotate(20deg);
  border: 0.35rem solid #e42230;
  font-size: 2rem;
  font-weight: 900;
}
.fully-booked--waitinglist::before {
  content: "AUSGEBUCHT*";
}
.fully-booked--waitinglist::after {
  content: "* Der aktuell ausgeschriebene Kurs ist ausgebucht, wir nehmen Sie aber gerne in unserer Warteliste auf.";
  text-align: right;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}
