.cl-switch {
  /*
  Switcher Style
   */
  /*
  When Checked
   */
  /*
  Switch large style
   */
  /*
  Switch xlarge style
   */
  /*
  Switch Black color style
   */
  /*
  Switch Red color style
   */
  /*
  Switch green color style
   */
  /*
  Switch green color style
   */
}
.cl-switch input[type="checkbox"] {
  display: none;
  visibility: hidden;
}
.cl-switch .switcher {
  display: inline-block;
  border-radius: 100px;
  width: 35px;
  height: 15px;
  background-color: #ccc;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
.cl-switch .switcher:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  margin-top: -2.5px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.cl-switch .switcher:active:before {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(61, 117, 211, 0.3);
  transition: all, 0.1s;
}
.cl-switch .label {
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  vertical-align: middle;
  margin: 0 5px;
}
.cl-switch input[type="checkbox"]:checked + .switcher {
  background-color: #90b0e6;
}
.cl-switch input[type="checkbox"]:checked + .switcher:before {
  left: 100%;
  margin-left: -20px;
  background-color: #3d75d3;
}
.cl-switch [disabled]:not([disabled="false"]) + .switcher {
  background: #ccc !important;
}
.cl-switch [disabled]:not([disabled="false"]) + .switcher:active:before {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.cl-switch [disabled]:not([disabled="false"]) + .switcher:before {
  background-color: #e2e2e2 !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.cl-switch.cl-switch-large .switcher {
  width: 52px;
  height: 22px;
}
.cl-switch.cl-switch-large .switcher:before {
  width: 30px;
  height: 30px;
  margin-top: -4px;
}
.cl-switch.cl-switch-large .label {
  font-size: 18px;
}
.cl-switch.cl-switch-large input[type="checkbox"]:checked + .switcher:before {
  margin-left: -30px;
}
.cl-switch.cl-switch-xlarge .switcher {
  width: 87px;
  height: 37px;
}
.cl-switch.cl-switch-xlarge .switcher:before {
  width: 50px;
  height: 50px;
  margin-top: -6px;
}
.cl-switch.cl-switch-xlarge .label {
  font-size: 24px;
}
.cl-switch.cl-switch-xlarge input[type="checkbox"]:checked + .switcher:before {
  margin-left: -50px;
}
.cl-switch.cl-switch-black input[type="checkbox"]:checked + .switcher {
  background-color: #676767;
}
.cl-switch.cl-switch-black input[type="checkbox"]:checked + .switcher:before {
  background-color: #343434;
}
.cl-switch.cl-switch-black .switcher:active:before {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(52, 52, 52, 0.3);
}
.cl-switch.cl-switch-red input[type="checkbox"]:checked + .switcher {
  background-color: #ffcece;
}
.cl-switch.cl-switch-red input[type="checkbox"]:checked + .switcher:before {
  background-color: #ff6868;
}
.cl-switch.cl-switch-red .switcher:active:before {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(255, 104, 104, 0.3);
}
.cl-switch.cl-switch-green input[type="checkbox"]:checked + .switcher {
  background-color: #77e4c0;
}
.cl-switch.cl-switch-green input[type="checkbox"]:checked + .switcher:before {
  background-color: #29cc97;
}
.cl-switch.cl-switch-green .switcher:active:before {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(41, 204, 151, 0.3);
}
.cl-switch.cl-switch-orange input[type="checkbox"]:checked + .switcher {
  background-color: #ffc166;
}
.cl-switch.cl-switch-orange input[type="checkbox"]:checked + .switcher:before {
  background-color: #ff9800;
}
.cl-switch.cl-switch-orange .switcher:active:before {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(255, 152, 0, 0.3);
}

/* ---------------------------------------------
------------------[IOS style]----------------------------
 --------------------------------------------- */
.cl-switch.ios {
  /*
Switcher Style
 */
  /*
  When Checked
   */
  /*
  Switch large style
   */
  /*
  Switch xlarge style
   */
  /*
  Switch Black color style
   */
  /*
  Switch Red color style
   */
  /*
  Switch green color style
   */
  /*
  Switch green color style
   */
}
.cl-switch.ios .switcher {
  width: 45px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #d3d3d5;
  box-shadow: 0 0 0 0 #4bd964 inset;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cl-switch.ios .switcher:before {
  width: 24px;
  height: 24px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 0;
  top: -1px;
  right: -1px;
  margin-right: 0;
  border: 1px solid #d3d3d5;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cl-switch.ios input[type="checkbox"]:checked + .switcher {
  background-color: #fff;
  box-shadow: 0 0 0 20px #4bd964 inset;
}
.cl-switch.ios input[type="checkbox"]:checked + .switcher:before {
  right: 100%;
  margin-right: -22px;
  background-color: #fff;
}
.cl-switch.ios [disabled]:not([disabled="false"]) + .switcher {
  background: #ccc !important;
}
.cl-switch.ios [disabled]:not([disabled="false"]) + .switcher:active:before {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.cl-switch.ios [disabled]:not([disabled="false"]) + .switcher:before {
  background-color: #e2e2e2 !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.cl-switch.ios.cl-switch-large .switcher {
  width: 62px;
  height: 34px;
}
.cl-switch.ios.cl-switch-large .switcher:before {
  width: 34px;
  height: 34px;
}
.cl-switch.ios.cl-switch-large .label {
  font-size: 18px;
}
.cl-switch.ios.cl-switch-large input[type="checkbox"]:checked + .switcher:before {
  margin-right: -30px;
}
.cl-switch.ios.cl-switch-xlarge .switcher {
  width: 80px;
  height: 40px;
}
.cl-switch.ios.cl-switch-xlarge .switcher:before {
  width: 40px;
  height: 40px;
  margin-top: 0;
}
.cl-switch.ios.cl-switch-xlarge .label {
  font-size: 24px;
}
.cl-switch.ios.cl-switch-xlarge input[type="checkbox"]:checked + .switcher:before {
  margin-right: -39px;
}
.cl-switch.ios.cl-switch-black .switcher {
  box-shadow: 0 0 0 0 #343434 inset;
}
.cl-switch.ios.cl-switch-black input[type="checkbox"]:checked + .switcher {
  box-shadow: 0 0 0 20px #343434 inset;
  background: #ffffff;
}
.cl-switch.ios.cl-switch-black input[type="checkbox"]:checked + .switcher:before {
  background-color: #fff;
}
.cl-switch.ios.cl-switch-black .switcher:active:before {
  box-shadow: none;
}
.cl-switch.ios.cl-switch-red .switcher {
  box-shadow: 0 0 0 0 #ff6868 inset;
}
.cl-switch.ios.cl-switch-red input[type="checkbox"]:checked + .switcher {
  box-shadow: 0 0 0 20px #ff6868 inset;
  background: #ffffff;
}
.cl-switch.ios.cl-switch-red input[type="checkbox"]:checked + .switcher:before {
  background-color: #fff;
}
.cl-switch.ios.cl-switch-red .switcher:active:before {
  box-shadow: none;
}
.cl-switch.ios.cl-switch-green .switcher {
  box-shadow: 0 0 0 0 #29cc97 inset;
}
.cl-switch.ios.cl-switch-green input[type="checkbox"]:checked + .switcher {
  box-shadow: 0 0 0 20px #29cc97 inset;
  background: #ffffff;
}
.cl-switch.ios.cl-switch-green input[type="checkbox"]:checked + .switcher:before {
  background-color: #fff;
}
.cl-switch.ios.cl-switch-green .switcher:active:before {
  box-shadow: none;
}
.cl-switch.ios.cl-switch-orange .switcher {
  box-shadow: 0 0 0 0 #ff9800 inset;
}
.cl-switch.ios.cl-switch-orange input[type="checkbox"]:checked + .switcher {
  box-shadow: 0 0 0 20px #ff9800 inset;
  background: #ffffff;
}
.cl-switch.ios.cl-switch-orange input[type="checkbox"]:checked + .switcher:before {
  background-color: #fff;
}
.cl-switch.ios.cl-switch-orange .switcher:active:before {
  box-shadow: none;
}

#cookie-bar {
  background: #111111;
  height: auto;
  line-height: 24px;
  color: #eeeeee;
  text-align: center;
  padding: 3px 0;
}

#cookie-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

#cookie-bar.fixed.bottom {
  bottom: 0;
  top: auto;
}

#cookie-bar p {
  margin: 0;
  padding: 0;
}

#cookie-bar a {
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  padding: 0 6px;
  margin-left: 8px;
}

#cookie-bar .cb-enable {
  background: #3d75d3;
  font-size: 11px;
}

#cookie-bar .cb-enable:hover {
  background: #3d75d3;
}

#cookie-bar .cb-disable {
  background: #990000;
  font-size: 11px;
}

#cookie-bar .cb-disable:hover {
  background: #bb0000;
}

#cookie-bar .cb-policy {
  background: #0033bb;
}

#cookie-bar .cb-policy:hover {
  background: #0055dd;
}

.switch-button-label {
  float: left;
  font-size: 10pt;
  cursor: pointer;
}

.switch-off, .switch-on {
  color: #adadad;
}

.on .switch-off {
  color: #ae130f;
}

.on .switch-on {
  color: #3d75d3;
}

.switch-button-background {
  float: left;
  position: relative;
  background: #B4181D;
  border: 1px solid #aaa;
  margin: 1px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}
.switch-button-background.checked {
  background-color: #3d75d3;
}

.switch-button-button {
  position: absolute;
  left: -1px;
  top: -1px;
  background: #FAFAFA;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* Border radius
------------------------------------------------------------------------------*/
/* Box shadow
------------------------------------------------------------------------------*/
/* Box sizing
------------------------------------------------------------------------------*/
/* Transition
------------------------------------------------------------------------------*/
/* Text Shadow
------------------------------------------------------------------------------*/
/* Font Size
------------------------------------------------------------------------------*/
/* BG Gradient
------------------------------------------------------------------------------*/
.icon-cookies, .icon-cookies-close {
  
  display: inline-block;
  width: 30px;
  height: 30px;
}

.icon-cookies-close {
  width: 18px;
  height: 18px;
  background-position: 0 0;
}

.icon-cookies-settings {
  
  display: block;
  width: 30px;
  height: 30px;
}

.cookie-administration-close-link {
  position: sticky;
  top: 0px;
  background-color: white;
}

.svg-icon-close {
 
  display: block;
  width: 30px;
  height: 30px;
}

.btn-cookie-bar, .btn-cookie-bar-green {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  font-size: 11px;
  display: inline-block;
  padding: 5px 10px;
  white-space: nowrap;
  cursor: pointer;
}


input.btn_send_accept, .btn_send_accept {
    background-color: #28a745;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 13px 25px;
    line-height: 13px;
    font-size: 14px;
    min-width: 4em;
    color: #FFF;
    border: 0px solid #035083;
    font-family: "Open Sans", Verdana, sans-serif;
    -webkit-appearance: none;
}

input.btn_send_decline, .btn_send_decline {
    background-color: #aaa!important;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 13px 25px;
    line-height: 13px;
    font-size: 14px;
    min-width: 4em;
    color: #333!important;
    border: 0px solid #035083;
    font-family: "Open Sans", Verdana, sans-serif;
    -webkit-appearance: none;
}

.btn-cookie-bar {
  background-color: #951618;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#AB2224), to(#771819));
  background-image: -webkit-linear-gradient(top, #AB2224, #771819);
  background-image: -moz-linear-gradient(top, #AB2224, #771819);
  background-image: -ms-linear-gradient(top, #AB2224, #771819);
  background-image: -o-linear-gradient(top, #AB2224, #771819);
  background-image: linear-gradient(top, #AB2224, #771819);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr=#AB2224, EndColorStr=#771819)";
  border: 1px solid #771819;
}
.lt-ie9 .btn-cookie-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
}
.btn-cookie-bar:hover {
  background-color: #951618;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#AB2224), to(#771819));
  background-image: -webkit-linear-gradient(top, #AB2224, #771819);
  background-image: -moz-linear-gradient(top, #AB2224, #771819);
  background-image: -ms-linear-gradient(top, #AB2224, #771819);
  background-image: -o-linear-gradient(top, #AB2224, #771819);
  background-image: linear-gradient(top, #AB2224, #771819);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr=#AB2224, EndColorStr=#771819)";
  border-color: #333;
  color: #FFF;
  text-decoration: none;
}
.lt-ie9 .btn-cookie-bar:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
}
.btn-cookie-bar:active, .btn-cookie-bar.active {
  -webkit-box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.25);
}

.btn-cookie-bar-green {
  background-color: #3d75d3;
  background-image: none;
  border: none;
}
.btn-cookie-bar-green:hover, .btn-cookie-bar-green:active {
  background-color: #4a80db;
  background-image: none;
  border: none;
}

#hide-cookie-bar {
  display: none;
  background: none;
  border: none;
  float: right;
  margin: 10px 0 25px 10px;
  padding: 0;
  float: right;
}

@media only screen and (max-device-width: 480px) and (orientation: portrait) {
  #hide-cookie-bar {
    display: inline-block;
  }
}
.cookie-further-info h4 + .btn {
  font-size: 16px;
  font-size: 1.06667rem;
  background: transparent;
  color: #343434;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.cookie-administration-page {
  letter-spacing: 0 !important;
}
.cookie-administration-page p, .cookie-administration-page li {
  font-size: 0.9rem;
}
.cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3, .cookie-administration-page p, .cookie-administration-page li {
  letter-spacing: 0;
  color: #3c3c3c;
}
.cookie-administration-page h1 {
  font-size: 18px;
}
.cookie-administration-page h2 {
  font-size: 16.5px;
}
.cookie-administration-page h3 {
  font-size: 15px;
}
.cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3 {
  display: inline-block;
  width: 250px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

.unstyled-link {
  color: inherit;
  text-decoration: underline;
}

.form-block {
  width: 340px;
}

.form-block-hinweis {
  padding: 20px;
  background: #fafafa;
  margin: 20px 0 20px 10px;
  line-height: 17px;
  font-size: 0.8rem;
  border: 1px solid #E7E2DF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.cl-switch .label {
  color: #999999;
}
.cl-switch .switcher.active + .label {
  color: #3d75d3;
}

.cookie-further-info .col-72 {
  margin-left: 8px;
}

.typo3-text {
  word-break: break-word;
}

#scrollUp {
  display: none;
}

.cookie-further-info .container-fluid, .cookie-further-info .row, .cookie-further-info .container, .cookie-further-info .px-6, .cookie-further-info .py-9, .cookie-further-info .py-md-14, .cookie-further-info .px-6, .cookie-further-info .py-8 {
  padding: 0;
}

@media print {
  #cookie-bar,
  .cookie-administration-link {
    display: none !important;
  }
}
.cookie-administration-link {
  font-size: 15px;
  font-family: Roboto, Verdana;
  position: fixed;
  bottom: 13px;
  left: 13px;
  background-color: #eee;
  border: 1px solid #ddd;
  padding: 4px;
  color: grey;
  z-index: 9998;
  display: flex;
}

.switch-wrapper {
  display: inline-flex;
  align-items: center;
}

.switch-button-button {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  width: 15px !important;
  height: 15px !important;
  top: -2px;
  border-radius: 20px;
  border: none;
  background-color: #e2e2e2;
}
.checked .switch-button-button {
  background-color: #fff;
}

.switch-button-background {
  border: none;
  border-radius: 100px;
  background-color: #c0c0c0;
}

.switch-button-label {
  font-size: 15px;
}

#footer {
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.cookie-administration-page {
  font-family: Roboto, Verdana;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  font-size: 15px !important;
  display: none;
  background-color: white;
  position: fixed;
  bottom: 85px;
  left: 20px;
  width: 500px;
  padding: 9px;
  max-height: 80%;
  z-index: 9999;
  overflow: auto;
  line-height: 1.5em;
}
.cookie-administration-page .content {
  color: #3c3c3c;
}
.cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3, .cookie-administration-page h4 {
  background: none;
  font-family: Roboto, Verdana;
  font-weight: 500;
  text-transform: none;
  margin-left: 0;
  margin-right: 0;
  width: auto;
}
.cookie-administration-page a {
  color: #B4181D;
  text-decoration: none;
}
.cookie-administration-page hr {
  margin: 10px 0;
}

@media screen and (max-height: 400px) {
  .cookie-administration-page {
    top: 10px;
  }
}
.cookie-youtube-overlay {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: white;
  position: absolute;
  display: flex;
  position: absolute;
  padding: 5px;
  background: rgba(0, 0, 0, 0.7);
}
.cookie-youtube-overlay .overlay-content {
  margin: auto;
  max-width: 300px;
}

#cookie-bar {
  -webkit-box-shadow: 2px 0 20px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 2px 0 20px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 2px 0 20px 0px rgba(0, 0, 0, 0.6);
  font-size: 15px;
  color: #c0c0c0;
  background-color: #565656;
  z-index: 9999;
  padding: 8px;
}
#cookie-bar a {
  color: #fff;
  padding: 0;
  margin-left: 0;
}
#cookie-bar a:hover {
  text-decoration: underline;
}
#cookie-bar p {
  color: #c0c0c0;
}
#cookie-bar .cookie-message {
  font-size: 13.5px;
  font-family: Roboto, Verdana;
  width: 50%;
  display: inline-block;
  line-height: 1.43em;
  vertical-align: baseline;
  margin-bottom: 10px;
}
#cookie-bar .cookie-message p {
  color: #c0c0c0;
}
#cookie-bar a.cb-disable,
#cookie-bar a.cb-enable {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 13.5px;
  font-family: Roboto, Verdana;
  padding: 5px 10px;
  position: relative;
  top: -14px;
  vertical-align: bottom;
}
#cookie-bar a.cb-enable {
  color: #FFF;
  margin: 0 10px;
  background-color: #3d75d3 !important;
}
#cookie-bar a.cb-disable {
  background-color: #aaa !important;
  color: #333 !important;
}

.cookie-further-info {
  display: none;
}

.cookie-administration-page .print {
  display: none;
}

/* Mobile Queries */
/*
body, html {
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
*/
@media screen and (orientation: landscape) {
  #cookie-bar {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  #cookie-bar .cookie-message {
    width: 100%;
  }
  #cookie-bar a.cb-disable, #cookie-bar a.cb-enable {
    top: 0;
  }
}
@media only screen and (max-device-width: 700px) {
  #cookie-bar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
  }

  .cookie-administration-page {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    max-height: 100%;
  }
  .cookie-administration-page .icon-cookies-close {
    position: fixed;
    right: 3px;
  }
  .cookie-administration-page a.cb-disable, .cookie-administration-page a.cb-enable {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3, .cookie-administration-page h4 {
    width: 100%;
  }
}
@media only screen and (orientation: landscape) and (max-device-width: 700px) {
  #cookie-bar {
    line-height: 1.2em;
    font-size: 20px;
  }
  #cookie-bar p.cookie-message {
    width: 100%;
    vertical-align: baseline !important;
  }
  #cookie-bar .cookie-administration-page, #cookie-bar .cookie-message, #cookie-bar a.cb-disable, #cookie-bar a.cb-enable {
    line-height: 1.2em;
    font-size: 20px;
  }
  #cookie-bar a.cb-disable, #cookie-bar a.cb-enable {
    width: 40%;
    position: relative;
    top: 0;
    margin: 20px 2%;
    padding: 15px;
    vertical-align: bottom;
  }
  #cookie-bar .cookie-message {
    font-size: 20px;
    line-height: 1.2em;
    width: 100%;
  }

  .cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3, .cookie-administration-page h4, .cookie-administration-page .content, .cookie-administration-page a, .cookie-administration-page .navigation, .cookie-administration-page .switch-button-label, .cookie-administration-page p, .cookie-administration-page li, .cookie-administration-page span {
    font-size: 20px;
    line-height: 1.2em;
  }
  .cookie-administration-page .icon-cookies-close {
    zoom: 2;
  }

  .switch-button-background {
    zoom: 2;
  }
}
@media only screen and (orientation: portrait) and (max-device-width: 480px) {
  #cookie-bar {
    line-height: 1.2em;
    font-size: 14px;
  }
  #cookie-bar a.cb-disable, #cookie-bar a.cb-enable {
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 1em;
    margin: 0.5em 0;
  }
  #cookie-bar .cookie-message {
    font-size: 1em;
    line-height: 1.2em;
    width: 100%;
  }

  .cookie-administration-page {
    font-size: 14px;
  }
  .cookie-administration-page h1, .cookie-administration-page h2, .cookie-administration-page h3, .cookie-administration-page h4, .cookie-administration-page .content, .cookie-administration-page a, .cookie-administration-page .navigation, .cookie-administration-page .switch-button-label, .cookie-administration-page p, .cookie-administration-page li, .cookie-administration-page span {
    font-size: 1em;
    line-height: 1.2em;
  }

  .cookie-administration-page .icon-cookies-close {
    zoom: 5;
  }

  .switch-button-background {
    zoom: 5;
  }
}
.title-author {
  color: #9c9c9c !important;
}

