/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.colorbar {
  position: relative;
  width: 100%;
  min-height: 3rem;
}
.colorbar:before, .colorbar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 1;
}
.colorbar:after {
  opacity: 0.1;
  background: transparent url(./linien.png) left bottom repeat-x;
  background-size: 50rem auto;
}
.colorbar.blue:before {
  background-color: #05598C;
}
.colorbar.gradient:before {
  background: -o-linear-gradient(32deg, #05598C, #ADCF6E);
  background: linear-gradient(58deg, #05598C, #ADCF6E);
}
.colorbar.with-image {
  min-height: unset;
  overflow: hidden;
}
.colorbar.with-image:after {
  background-size: auto 50%;
}
.colorbar.with-image figure, .colorbar.with-image img {
  width: 100% !important;
  height: auto;
  z-index: 0;
}
.colorbar.cover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.colorbar.cover img, .colorbar.cover figure {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.colorbar__content {
  padding: 1rem 0 2.75rem;
  color: #fff;
  position: relative;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media (min-width: 767px) {
  .colorbar__content {
    padding: 3rem 0 2rem;
  }
}
.colorbar__content .container {
  z-index: 5;
}
.colorbar__content .region-breadcrumb .block {
  display: inline-block;
}
@supports selector(:has(*)) {
  .colorbar__content {
    z-index: 3;
  }
  .colorbar__content:has(.dropbutton-multiple.open) {
    z-index: 5;
  }
}