/* config */
/* grid config */
/* screen min-width */
/* basic colors */
/* colors */
/* brand colors */
/* transition time */
.cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cookie .clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
}
.cookie .switch {
  position: relative;
  float: left;
  display: inline-block;
  width: 45px;
  height: 24px;
}
.cookie .switch .slider {
  border-radius: 14px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #aaa;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cookie .switch .slider:before {
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cookie .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie .switch input:checked + .slider {
  background-color: #256AB3;
}
.cookie .switch input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}
.cookie .switch input:focus + .slider {
  box-shadow: 0 0 1px #256AB3;
}
.cookie .button {
  cursor: pointer;
  display: inline-block;
  padding: 7px 20px 5px 20px;
  margin: 0 10px;
  border: none;
  background: transparent;
  font-size: 1em;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.cookie .button.white {
  background: white;
  color: #256AB3;
}
.cookie .button.white:hover {
  background: #256AB3;
  border: 1px solid white;
  color: white;
}
.cookie .button.plain {
  background: none;
  border: 0;
  text-decoration: underline;
}
.cookie .button.plain:hover {
  background: none;
  color: #cccccc;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
}
.cookie .button.color {
  background: #DC3701;
  color: white;
}
.cookie .button.color:hover {
  background: #a92a01;
  color: white;
}
.cookie .button:hover {
  background: white;
}
.cookie .close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.cookie .container {
  padding: 30px;
}
.cookie.backdrop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}
.cookie.closeable .cookieHinweisWrapper .close {
  display: block;
}
.cookie .cookieHinweisWrapper {
  position: fixed;
  z-index: 9999;
  width: 30%;
  box-sizing: border-box;
  bottom: 0;
  left: 20px;
  color: white;
  background: #256AB3;
  transform: translateY(100%);
  transition: transform 1s ease-in-out;
  padding: 30px;
}
@media (max-width: 1200px) {
  .cookie .cookieHinweisWrapper {
    width: 50%;
  }
}
@media (max-width: 769px) {
  .cookie .cookieHinweisWrapper {
    width: calc(100% - 40px);
  }
}
.cookie .cookieHinweisWrapper.view {
  transform: translateY(-20px);
}
.cookie .cookieHinweisWrapper .close {
  display: none;
}
.cookie .cookieHinweisWrapper h1,
.cookie .cookieHinweisWrapper h2,
.cookie .cookieHinweisWrapper h3 {
  color: white;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie .cookieHinweisWrapper p,
.cookie .cookieHinweisWrapper a {
  font-size: 1em;
  line-height: 1.2em;
  color: white;
}
@media (max-width: 544px) {
  .cookie .cookieHinweisWrapper p,
  .cookie .cookieHinweisWrapper a {
    font-size: 15px !important;
  }
}
.cookie .cookieHinweisWrapper a {
  text-decoration: underline;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper {
  display: none;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div {
  padding: 5px 15px 5px 15px;
  display: inline-block;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div:first-of-type {
  padding: 5px 10px 5px 0;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div.disabled {
  cursor: not-allowed;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div.disabled span {
  color: #ccc;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div.disabled .switch {
  cursor: not-allowed;
  color: #ccc;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div.disabled .switch input:checked + .slider {
  background-color: #ccc;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div.disabled .switch input:checked + .slider:before {
  background-color: #ddd;
}
.cookie .cookieHinweisWrapper .cookieSettingsWrapper > div span {
  float: left;
  line-height: 1.5em;
  font-size: 1em;
  padding-left: 10px;
}
.cookie .cookieHinweisWrapper .cookieControls {
  margin-top: 20px;
  text-align: right;
}
.cookie .cookieHinweisWrapper .cookieControls .acceptAll {
  text-decoration: none;
}
.cookie .cookieHinweisWrapper .cookieControls .button.settings {
  font-size: 1em;
  text-decoration: underline;
}
.cookie .cookieModal {
  z-index: 9999;
  display: none;
  color: black;
  background: white;
  width: 40%;
  height: 70%;
  position: fixed;
  overflow-y: scroll;
  left: 30%;
  top: 15%;
  box-sizing: border-box;
  padding: 30px;
}
.cookie .cookieModal h1,
.cookie .cookieModal h2,
.cookie .cookieModal h3 {
  color: black;
}
.cookie .cookieModal h1 {
  margin-top: 0;
}
.cookie .cookieModal h1,
.cookie .cookieModal h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 20px 0;
}
@media (max-width: 544px) {
  .cookie .cookieModal h1,
  .cookie .cookieModal h2 {
    font-size: 1.25em;
  }
}
.cookie .cookieModal p {
  font-size: 1em;
  line-height: 24px;
  color: black;
}
.cookie .cookieModal p a {
  display: block;
}
.cookie .cookieModal a {
  cursor: pointer;
  text-decoration: underline;
  color: #256AB3;
}
.cookie .cookieModal .button {
  margin: 10px 0 20px;
}
.cookie .cookieModal .description {
  background: #f3f3f3;
  margin-bottom: 40px;
  padding: 20px;
}
.cookie .cookieModal .description .description {
  padding: 10px 0;
}
.cookie .cookieModal .description .h3Container h3 {
  margin: 0;
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 544px) {
  .cookie .cookieModal .description .h3Container h3 {
    font-size: 1.2em;
  }
}
.cookie .cookieModal .description .h3Container div {
  display: inline-block;
  float: right;
}
.cookie .cookieModal .description .h3Container div:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
}
.cookie .cookieModal .description .h3Container div span.info {
  font-size: 1em;
  color: #256AB3;
}
.cookie .cookieModal .description p {
  font-size: 1em;
}
.cookie .cookieModal .description .infoTrigger {
  cursor: pointer;
  color: #DC3701;
  font-size: 1em;
  text-decoration: underline;
}
.cookie .cookieModal .description .cookieTable table {
  width: 100%;
  font-size: 1em;
  padding: 0;
  margin-top: 5px;
}
.cookie .cookieModal .description .cookieTable table tr {
  background: white;
}
.cookie .cookieModal .description .cookieTable table tr td {
  padding: 5px 10px;
  border-bottom: 1px solid #f3f3f3;
}
.cookie .cookieModal .description .cookieTable table tr td:first-of-type {
  font-weight: 600;
  width: 30%;
}
.cookie .cookieModal .description .cookieTable table tr:last-of-type td {
  border: 0;
}
.cookie .cookieModal .cookieTable {
  display: none;
  margin-top: 20px;
}
.cookie .cookieModal .cookieTable .description .h3Container {
  margin-bottom: 10px;
}
.cookie .cookieModal .cookieTable .description .h3Container div {
  float: left;
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .cookie .cookieModal {
    width: 60%;
    left: 20%;
  }
}
@media (max-width: 769px) {
  .cookie .cookieModal {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 15px;
  }
}
/*# sourceMappingURL=cookieBanner.css.map */