:root {
  /*
  ILIAS blau: rgb(0,60,101)
  CaT blau: rgb(0,155,234)
  */
  --color-1: #ba7720; /* rgb(0,60,100); */
  --color-2: #931715; /* #fcc200 #f4ca16 */
  --color-3: #eb9c36; /* rgb(0,155,234); */
  --color-1-50: rgba(0,60,101,0.5);
  --color-21:rgb(225, 181, 76);
  --color-22: rgb(190, 143, 71); /*ocker*/
}

html, body {
  font-size: 105%;
}

h1,h2,h3,h4,h5,h6, strong { color: var(--color-2); font-weight:700; }
h4,h5,h6,strong { font-weight: 500; }

h2 {
  font-size: 2.2em;
  line-height: 1.2em;
}

p {
  line-height: 1.6em;
}

ul li { color: var(--color-2); font-weight:300; }
li { font-size: 1.1em; }

.scroll-area {height: 100vh; margin-top:0;}

.logo {
  height: auto;
  margin-left: -5px;
  margin-bottom: 40px;
  img {
    filter: drop-shadow(0 0 100px rgba(255, 255, 255, .7));
    margin-top: 10px;
    width: 150px;
  }
  &.footer img {
    width: 100px;
  }
}

.banner.ilias {
  height: 115vh;
  padding: 90px 0 60px;
  text-align: left;
}

.banner.ilias.intro {
  height: 100vh;
  padding: 0;
}

.section-offset-top {
  margin-top: -25vh;
}

.banner {
  animation: none;
  background-image: none;
}

.banner,
.banner.ilias,
.bg-gradient,
.bg-gradient-invert {
  background: rgb(0,60,101);
  background: radial-gradient(circle, var(--color-2) 20%, var(--color-3) 150%);
  animation: none;
  & h1,h2,h3,h4,h5,h6,p,strong {
    background: transparent;
    color: var(--text-color-invert);
    padding: 0;
  }
}

.bg-gradient-invert {
  background: radial-gradient(circle, var(--color-1) 0%, var(--color-2) 120%);
}

.bg-1 {
  background: #f9f0cf;
}

.bg-2 {
  background-color: var(--color-2);
}

.bg-radial-light {
  background: radial-gradient(circle, #fff -20%, var(--color-3) 150%);
}

footer { background: linear-gradient(148deg, #47433e 30%, #333333 80%); }

.innerspace {
  padding: 150px 0 80px 0;
}

/* img styles */
img.hero {
  opacity: 1;
  max-width: 700px;
  filter: drop-shadow(50px 50px 30px rgba(0,0,0,.1));
}

img.section {
  max-width: 500px;
}

.section-icon {
  opacity: .2;
  max-width: 20em;
  &.invert {
    filter: invert(1);
  }
}

img.shadow {
  filter: drop-shadow(-3px 5px 1px rgba(0,0,0,0.1));
}

/* dotted box style with textmarker headline */
h2, h3 {
    background: linear-gradient(var(--color-2) 20%, var(--color-3) 150%);
    padding: 3px 20px 0;
    color: white;
    margin: 10px 0 0 0;
    display: inline;
    box-decoration-break: clone;
    line-height: 145%;
  }

/* option box style */
.options {
  background: #f2f2f2;
  padding: 15px 35px 15px 45px;
  margin-bottom: 30px;
}
.opt-head {
  margin-top: 40px;
}

.option-text {
  flex-basis: 60%;
}

.option-img {
  flex-basis: 40%;
}

/* request form */
form#request {
  width: 100%;
  max-width: 500px;
}

/* submit buttons */
input {
  background: rgba(255,255,255,.5);
  border:0;
  margin-bottom: 10px;
}
input[type="submit"].btn-primary {
  background: linear-gradient(148deg, var(--color-3) 0%, var(--color-2) 100%);
  transition: all .4s ease;
  &:hover {
    background: linear-gradient(148deg, var(--color-2) 0%, var(--color-3) 100%);
  }
}

input[type="submit"].btn-secondary {
  background: transparent;
  border: 1px solid var(--text-color-invert);
  color: var(--text-color-invert);
  margin-top: 0;
  transition: all .4s ease;
  &:hover {
    background: var(--text-color-invert);
    color: var(--color-2);
  }
}

input {
  margin-top: 0;
}

/* accordion */
.tab {
  border-radius: var(--border-radius-xs);
  margin-bottom: 10px;
}
.tab-label {
  box-shadow: inset 0 0 0.01 var(--color-2);
  color: var(--color-1);
  font-size: 19px;
  padding: 1em 4em 1em 1.6em;
  line-height: 30px;
  &:hover {
      box-shadow: inset 900px 0 0 var(--color-2);
  }
  &:after {
    transform:rotate(310deg);
  }
}

.tab-label, .tab-content p {font-weight:300;}

.tab-content p {font-size:1.06em;}

/* listings */
ul,
footer ul {
  margin: 0 0 2em 0;
}
footer ul li {
  color: var(--text-color-invert);
  font-weight: 200;
  margin-bottom: .3em;
}

.checklist ul,
.list ul {
  padding-inline-start: 50px;
  list-style-type: none;
  margin: 20px 0 20px 40px;
}

.checklist ul li,
.list ul li {
  font-size: 1.1em;
  line-height: 1.4em;
  margin-bottom: 25px;
  text-indent: -50px;
  &:before {
    background: rgba(255,255,255,.5);
    box-shadow: 0 0 1px rgba(0,0,0,.3);
    border-radius: 2px;
    font-family: "cat-icons";
    content: "\e970";
    margin-right: 16px;
    padding: 7px;
  }
}
.list ul li:before {
  content: "\e97c";
}

/* links footer */
footer a:hover {
  background-color: rgba(255,255,255,.7);
  padding-inline: 10px;
  border-radius: 2px;
}

/* responsive fixes */
@media (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner.ilias {
    height: auto;
  }

  .section-offset-top {
    margin-top: -8vh;
  }
}

/*
--------------------
Tooltip
--------------------
*/

/* Tooltip container */
.tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
  border-bottom: 1px dotted #777;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #555;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 6px;
  font-size: .87em;
  font-weight: 400;
  line-height: 1.5em;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.cookie-container {
  background: rgba(0,0,0,.5);
  border: 0;
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
  overflow: visible;
  width:100vw
}

.cookie-banner {
  background-color: white;
  border: 0;
  box-shadow: 0 0 50px rgba(0,0,0,.5);
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
}

.cookie-content {
  padding: 2rem;
  max-width: 90ch;
  margin: 0 auto;
}

.btn-cookie {
  border: 0;
  border-radius: var(--border-radius-xl);
  padding: 8px 30px;
  margin-right: 10px;
  margin-bottom: 10px;
}

/*
---------------------
trackboxx
---------------------
*/

/* trackboxx switch */
.tb-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.tb-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.tb-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.tb-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .tb-slider {
  background-color: var(--color-1);
}

input:focus + .tb-slider {
  box-shadow: 0 0 1px var(--color-1);
}

input:checked + .tb-slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.tb-slider.tb-round {
  border-radius: 34px;
  margin-right:5px;
}

.tb-slider.tb-round:before {
  border-radius: 50%;
}

.contact-icon,
.social-icon img {
  width: auto;
}


/*
*************************************************
All Mobile Sizes (devices and browser)
*************************************************
*/

@media only screen and (max-width: 767px) {
  /* logo */
  .logo img { width: 120px; }

  /* spacing */
  .innerspace {
    padding: 60px 0;
  }

  /* banner */
  .banner {
    padding: 60px 0 0;
    & h1 { font-size: 32px; }
    & p { font-size: 1.2em; }
  }
  h2 { font-size: 1.7em; }
  h3 { font-size: 20px; }
  p { font-size: 1.1em; line-height: 1.5em; }

  .right {
    text-align: left;
  }

  .flex {
    flex-direction: column;
    &.options {
      align-items: center;
    }
  }

  /* list indent */
  .checklist,
  .list {
    & ul {
      margin: 20px 0 20px 0;
    }
  }
  /* option boxes */
  .option-text {
    order: 2;
  }
  .option-img {
    order: 1;
    max-width: 300px;
  }
}


