/* -------------------------------------------------- Colors */
/* -------------------------------------------------- Fonts */
/* -------------------------------------------------- Miscellaneous */
/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Default */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: Helvetica, Arial, Sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
}

h2 {
  color: #292929;
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}

img {
  display: inline-block;
  height: auto;
  width: 100%;
}

button,
select,
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: 0;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* -------------------------------------------------- General Styles */
header {
  margin: 0 auto;
  max-width: 100rem;
  position: relative;
}

.header__logo {
  color: #fff;
  height: 4.5rem;
  max-width: 8rem;
  order: 1;
}
@media (min-width: tabletpx) {
  .header__logo {
    max-width: 10rem;
  }
}
@media (min-width: desktoppx) {
  .header__logo {
    max-width: 20rem;
  }
}
.header__logo a {
  height: 100%;
}
.header__logo a img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.header__navigation {
  background: #0082C8;
  height: 10rem;
  padding: 1rem 1rem 0 1rem;
}
@media (min-width: tabletpx) {
  .header__navigation {
    height: 6rem;
    padding: 0.7rem 2rem 0 2rem;
  }
}
.header__top, .header__bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header__top {
  height: 4.5rem;
}
.header__top nav {
  order: 2;
  position: relative;
}
.header__bottom {
  height: 4.5rem;
  order: 5;
  padding-right: 0.6rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .header__bottom {
    order: 3;
    width: 25%;
  }
}
.header__userInfo {
  display: none;
  order: 3;
}
@media (min-width: tabletpx) {
  .header__userInfo {
    display: block;
  }
}
.header__userInfo .userInfoWrapper {
  align-items: center;
  cursor: default;
  display: flex;
}
.header__userInfo .userInfoData {
  color: white;
}
.header__userInfo .userInfoData .userInfoValue {
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 120px;
}
.header__notifications {
  order: 3;
  position: relative;
}
@media (min-width: tabletpx) {
  .header__notifications {
    order: 4;
  }
}
.header__notifications #notification {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #0082C8;
  cursor: pointer;
  display: flex;
  height: 2rem;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
}
.header__notifications #notification span {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3rem;
}
.header__notifications button {
  background: transparent;
  cursor: pointer;
}
.header__notifications i {
  color: #fff;
  font-size: 3rem;
}
.header__notifications .registerPrompt {
  border-color: #FFB400;
}
.header__notifications .registerPrompt__head {
  background-color: #FFB400;
}
.header__notifications .registerPrompt__section .button .onClickNotification {
  background-color: #0082C8;
}
.header__imageWrapper {
  position: relative;
  width: 100%;
}
.header__imageWrapper.slick-slider {
  margin-bottom: 0;
}
.header__imageWrapper a {
  float: left;
  position: relative;
  width: 100%;
}
.header__imageWrapper .slick-dots {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
}
.header__description {
  background: rgba(255, 255, 255, 0.77);
  bottom: 4rem;
  min-height: 6rem;
  padding: 0.9rem 1rem 0 1rem;
  position: absolute;
  width: 100%;
}
@media (min-width: tabletpx) {
  .header__description {
    padding: 0.9rem 3rem 0 3rem;
  }
}
.header__description.noSubtitle {
  align-items: center;
  display: flex;
  padding: 1rem 3rem;
}
.header__description.noSubtitle .header__subtitle {
  display: none;
}
.header__title {
  color: #292929;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
}
.header__subtitle {
  color: #292929;
  font-size: 1.5rem;
  width: 100%;
}
.header__imageContainer {
  display: flex;
  height: 48vw;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: desktoppx) {
  .header__imageContainer {
    height: auto;
  }
}
.header__image {
  flex-shrink: 0;
  height: 100%;
  width: auto;
}
@media (min-width: desktoppx) {
  .header__image {
    height: auto;
    width: 100%;
  }
}

.search {
  flex-grow: 1;
  margin-right: 1.5rem;
}
@media (min-width: tabletpx) {
  .search {
    margin-right: 0;
  }
}
.search__wrapper {
  border-radius: 1.5rem;
  height: 3rem;
  overflow: hidden;
  width: 100%;
}
.search__wrapper input {
  color: #0082C8;
  font-size: 1.5rem;
  height: 100%;
  padding: 0 1.5rem;
  width: 100%;
}

.navigation__top li {
  display: inline-block;
  margin: 0 0.5rem;
}
@media (min-width: tabletpx) {
  .navigation__top li {
    margin: 0 2rem;
  }
}
.navigation__top li a {
  color: #fff;
  font-size: 1.3rem;
}
@media (min-width: tabletpx) {
  .navigation__top li a {
    font-size: 1.5rem;
  }
}
.navigation__bottom {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (min-width: tabletpx) {
  .navigation__bottom {
    max-height: none;
  }
}
.navigation__bottom.active {
  max-height: 100vh;
  overflow: auto;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.navigation__tiles {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: tabletpx) {
  .navigation__tiles {
    padding: 0.5rem 0 1rem 0;
  }
}
.navigation__tiles li {
  align-items: center;
  background: #FFB400;
  display: flex;
  flex-direction: column;
  height: 9.4rem;
  margin: 0.5rem;
  padding-top: 0.5rem;
  width: 9.4rem;
}
@media (min-width: tabletpx) {
  .navigation__tiles li {
    height: 8rem;
    margin: 0.5rem 0.3rem 0 0.3rem;
    width: 12rem;
  }
}
@media (min-width: desktoppx) {
  .navigation__tiles li {
    height: 7.5rem;
    margin: 0.5rem 0.4rem 0 0.4rem;
    width: 7.5rem;
  }
}
.navigation__tiles li a {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
}
.navigation__tiles li i {
  color: #292929;
  font-size: 4rem;
}
@media (min-width: desktoppx) {
  .navigation__tiles li i {
    font-size: 3.5rem;
  }
}
.navigation__tiles li span {
  color: #292929;
  font-size: 1.5rem;
  padding-top: 0.5rem;
  text-align: center;
  width: 100%;
}
@media (min-width: tabletpx) {
  .navigation__tiles li span {
    font-size: 1.1rem;
  }
}
@media (min-width: desktoppx) {
  .navigation__tiles li span {
    font-size: 1.2rem;
  }
}
.navigation__icon {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media (min-width: tabletpx) {
  .navburger {
    display: none;
  }
}

.burger {
  cursor: pointer;
  height: 2.4rem;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  width: 3rem;
}
@media (min-width: tabletpx) {
  .burger {
    display: none;
  }
}
.burger span {
  background: #fff;
  border-radius: 2.5px;
  display: block;
  height: 0.3rem;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  width: 100%;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2),
.burger span:nth-child(3) {
  top: 1rem;
}
.burger span:nth-child(4) {
  top: 2rem;
}
.burger.active span:nth-child(1) {
  left: 50%;
  top: 1rem;
  width: 0;
}
.burger.active span:nth-child(2) {
  transform: rotate(45deg);
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.burger.active span:nth-child(4) {
  left: 50%;
  top: 1rem;
  width: 0;
}

.ticker__wrapper {
  background: #0082C8;
  height: 3.5rem;
  margin: 0 auto 1rem auto;
  max-width: 100rem;
}
.ticker__container {
  padding: 0 1rem;
}
@media (min-width: tabletpx) {
  .ticker__container {
    padding: 0 2.5rem;
  }
}

.simple-marquee-container {
  box-sizing: border-box;
  display: inline-block;
  float: left;
  height: 3.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simple-marquee-container * {
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.simple-marquee-container .marquee, .simple-marquee-container *[class^=marquee] {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
.simple-marquee-container .marquee {
  margin-left: 25%;
}
.simple-marquee-container .marquee-content-items {
  display: inline-block;
  height: 3.5rem;
  margin: 0;
  padding: 5px;
  position: relative;
}
.simple-marquee-container .marquee-content-items li {
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
.simple-marquee-container .marquee-content-items li a {
  color: #fff;
}
.simple-marquee-container .marquee-content-items li:after {
  content: " ";
  margin: 0 10rem;
}

#backLink {
  align-items: center;
  background: #0082C8;
  color: #fff;
  display: flex;
  height: 3.5rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  #backLink {
    padding: 0 3rem;
  }
}
#backLink i {
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1rem;
}
#backLink a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
}

#ContentArea {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100rem;
  width: 100%;
}

.last_news__tab {
  cursor: default;
  width: 100%;
}
.last_news__tab .news__header {
  background: #0082C8;
  color: #fff;
}
.last_news__link {
  display: flex;
  padding: 1rem;
  width: 100%;
}

.news {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  width: 100%;
}
.news__tabs {
  display: flex;
  width: 100%;
}
.news__tab {
  cursor: pointer;
  width: 100%;
}
.news__tab.active .news__header {
  border-bottom: 0.1rem solid #0082C8;
  color: #0082C8;
  font-weight: bold;
}
.news__container {
  border-bottom: 0.1rem solid #0082C8;
  width: 100%;
}
.news__tvg, .news__partner {
  display: none;
  flex-wrap: wrap;
  padding-top: 1rem;
}
.news__tvg.active, .news__partner.active {
  display: flex;
}
.news__header {
  border-bottom: 0.1rem solid lightgrey;
  color: lightgrey;
  font-weight: normal;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
}
.news__header span {
  font-size: 1.5rem;
  position: relative;
}
.news__header span .newcount {
  background: #94d838;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  height: 2rem;
  line-height: 2rem;
  overflow: hidden;
  position: absolute;
  right: -3rem;
  top: -0.1rem;
  width: 2rem;
}
.news__header:hover {
  border-bottom: 0.1rem solid #0082C8;
  color: #0082C8;
  font-weight: bold;
}
.news__link {
  display: flex;
  padding: 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .news__link {
    width: 50%;
  }
}
.news__image {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 4.781rem;
  justify-content: center;
  overflow: hidden;
  width: 8.5rem;
}
.news__content {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
  width: 100%;
}
.news__id {
  display: none;
}
.news__title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.news__title i {
  color: #94d838;
  font-size: 1.5rem;
  margin-right: 1rem;
}
.news__title .mark {
  background-color: #e0e0e0;
}
.news__info {
  margin-bottom: 0.3rem;
}
.news__info i.fa-edit {
  color: lightgrey;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.news__date, .news__author, .news__category {
  color: #292929;
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 0.6rem;
  white-space: nowrap;
}
.news__text {
  color: #292929;
  display: -webkit-box;
  font-size: 1.5rem;
  -webkit-line-clamp: 3;
  margin-bottom: 1rem;
  max-height: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  width: 100%;
}
.news__text .mark {
  background-color: #e0e0e0;
}
.news__text.html {
  display: none;
}
.news__text {
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}
.news__button {
  display: flex;
  justify-content: center;
  padding: 1rem 0 5rem 0;
  width: 100%;
}
.news__button a {
  background: #0082C8;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  width: 21rem;
}

.textElement,
.imageElement,
.videoElement,
.newsletterElement {
  padding: 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .textElement,
  .imageElement,
  .videoElement,
  .newsletterElement {
    width: 50%;
  }
}
@media (min-width: desktoppx) {
  .textElement,
  .imageElement,
  .videoElement,
  .newsletterElement {
    width: 33.3333%;
  }
}
.textElement__content,
.imageElement__content,
.videoElement__content,
.newsletterElement__content {
  /*box-shadow : inset 0 0 0 .1rem $primary;*/
  border: 0.1rem solid #0082C8;
  position: relative;
  width: 100%;
}
.textElement__link,
.imageElement__link,
.videoElement__link,
.newsletterElement__link {
  float: left;
  width: 100%;
}
.textElement__header,
.imageElement__header,
.videoElement__header,
.newsletterElement__header {
  background: #0082C8;
  height: 4.5rem;
  line-height: 4.5rem;
  padding: 0 2rem;
  text-transform: uppercase;
  width: 100%;
}
.textElement__header h2,
.imageElement__header h2,
.videoElement__header h2,
.newsletterElement__header h2 {
  color: #fff;
  line-height: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.textElement a,
.imageElement a,
.videoElement a,
.newsletterElement a {
  color: #292929;
  width: 100%;
}

.textElement__container {
  float: left;
  font-size: 1.4rem;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
@media (min-width: tabletpx) {
  .textElement__container {
    padding-top: calc((50vw - 9.1rem) * 0.656903766);
  }
}
@media (min-width: desktoppx) {
  .textElement__container {
    padding-top: 56.25%;
  }
}
.textElement__text {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 1rem 2rem 0 2rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.textElement__text.setPadding {
  padding: 0;
}
.textElement__text.setPadding img {
  height: 100% !important;
  width: 100% !important;
}
.textElement__text a {
  display: inline;
  text-decoration: underline;
}
.textElement__text img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
}

.imageElement .slick-slider {
  margin: 0px;
}
@media (min-width: desktoppx) {
  .imageElement__container {
    float: left;
    padding-top: calc(56.25% + 45px);
    position: relative;
    width: 100%;
  }
  .imageElement__gallery {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
  .imageElement__images {
    cursor: pointer;
    height: 100%;
    margin-bottom: 0 !important;
  }
  .imageElement__image {
    align-items: center;
    display: flex !important;
    height: 100%;
    justify-content: center;
    overflow: hidden;
  }
  .imageElement__image a {
    height: 100%;
    width: 100%;
  }
  .imageElement__image img {
    height: auto;
    max-height: 100%;
    width: auto;
  }
  .imageElement__prev, .imageElement__next {
    background: transparent;
    cursor: pointer;
    height: 100%;
    position: absolute;
    top: 0;
    width: 4rem;
    z-index: 1;
  }
  .imageElement__prev i, .imageElement__next i {
    color: #fff;
    font-size: 5rem;
  }
  .imageElement__prev i:before, .imageElement__next i:before {
    text-shadow: 0 0.2rem 0.3rem #979797;
  }
  .imageElement__prev {
    left: 0;
  }
  .imageElement__prev i {
    left: 0;
    position: relative;
  }
  .imageElement__next {
    right: 0;
  }
  .imageElement__next i {
    position: relative;
    right: 0.5rem;
  }
  .imageElement .slick-list {
    height: 100%;
  }
  .imageElement .slick-list .slick-track {
    height: 100%;
  }
}

.videoElement__content a {
  display: block;
}
.videoElement__container {
  padding-top: 56.25%;
  position: relative;
}
@media (min-width: tabletpx) {
  .videoElement__container {
    padding-top: calc((50vw - 9.1rem) * 0.656903766);
  }
}
@media (min-width: desktoppx) {
  .videoElement__container {
    padding-top: 56.25%;
  }
}
.videoElement__video {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% + 0.1rem);
}
.videoElement__video iframe {
  height: 100%;
  width: 100%;
}

.newsletterElement__items {
  padding-top: 56.25%;
  position: relative;
}
@media (min-width: tabletpx) {
  .newsletterElement__items {
    padding-top: calc((50vw - 9.1rem) * 0.656903766);
  }
}
@media (min-width: desktoppx) {
  .newsletterElement__items {
    padding-top: 56.25%;
  }
}
.newsletterElement__list {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.newsletterElement__link {
  align-items: center;
  display: flex;
  height: 3.5rem;
  padding: 0 2rem;
}
.newsletterElement__link:nth-child(even) {
  background: #FFB400;
}
.newsletterElement__title {
  color: #292929;
  flex-grow: 1;
  font-size: 1.5rem;
  overflow: hidden;
  padding-right: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsletterElement__download {
  color: #0082C8;
  font-size: 2rem;
  text-align: right;
  width: 3rem;
}

.overview {
  width: 100%;
  /*&__link {
  	background     : $primary;
  	color          : $white;
  	font-size      : $font-size--15;
  	font-weight    : bold;
  	height         : 3rem;
  	line-height    : 3rem;
  	position       : absolute;
  	right          : 0;
  	text-align     : center;
  	text-transform : uppercase;
  	width          : 13rem;
  }*/
}
.overview__actions {
  align-items: center;
  background: #0082C8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
}
@media (min-width: tabletpx) {
  .overview__actions {
    height: 3.5rem;
    padding: 0 3rem;
  }
}
.overview__filter, .overview__sorting {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (min-width: tabletpx) {
  .overview__filter, .overview__sorting {
    margin-bottom: 0;
  }
}
.overview__label {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
}
.overview .inputWrapper {
  border-radius: 3rem;
  height: 2.5rem;
  margin-right: 1rem;
  overflow: hidden;
  width: 20rem;
}
@media (min-width: tabletpx) {
  .overview .inputWrapper {
    width: 15rem;
  }
}
@media (min-width: desktoppx) {
  .overview .inputWrapper {
    width: 20rem;
  }
}
.overview .inputWrapper input {
  font-size: 1.5rem;
  height: 100%;
  padding: 0 2rem;
  width: 100%;
}
.overview .selectWrapper {
  border-radius: 3rem;
  height: 2.5rem;
  margin: 1rem 1rem 1rem 0;
  overflow: hidden;
  position: relative;
  width: 20rem;
}
@media (min-width: tabletpx) {
  .overview .selectWrapper {
    margin: 0 1rem 0 0;
    width: 15rem;
  }
}
@media (min-width: desktoppx) {
  .overview .selectWrapper {
    width: 20rem;
  }
}
.overview .selectWrapper:after {
  color: #0082C8;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 900;
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 0.2rem;
}
.overview .selectWrapper select {
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  height: 100%;
  padding: 0 2rem;
  width: 100%;
}
.overview .checkboxWrapper {
  align-items: center;
  display: flex;
  height: 2rem;
}
.overview .checkboxWrapper .optionCheckbox {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  line-height: 2rem;
}
.overview .checkboxWrapper .optionCheckbox input[type=checkbox] {
  background: #fff;
  cursor: pointer;
  height: 2rem;
  margin-right: 1rem;
  position: relative;
  width: 2rem;
}
.overview .checkboxWrapper .optionCheckbox input[type=checkbox]:checked:before {
  color: #0082C8;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-size: 1.8rem;
  font-weight: 900;
  left: 0.1rem;
  position: absolute;
  top: 0;
}
.overview .checkboxWrapper .optionCheckbox label {
  cursor: pointer;
  margin-top: 0.1rem;
}
.overview__results {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 1rem 0 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .overview__results {
    padding: 1.5rem 3rem 0 3rem;
  }
}
.overview__result {
  border-bottom: 1px solid #ddd;
  display: flex;
  padding: 1.5rem 0;
  width: 100%;
}
@media (min-width: tabletpx) {
  .overview__result {
    width: 100%;
  }
}
.overview__content {
  flex-grow: 1;
  padding: 0 1rem;
  position: relative;
  width: calc(100% - 8.5rem);
}
@media (min-width: desktoppx) {
  .overview__content {
    width: calc(100% - 22rem);
  }
}
.overview__content i {
  margin-right: 0.5rem;
}
.overview__image {
  align-items: center;
  display: none;
  flex-shrink: 0;
  height: 4.781rem;
  justify-content: center;
  overflow: hidden;
  width: 8.5rem;
}
@media (min-width: tabletpx) {
  .overview__image {
    display: flex;
    height: 12.375rem;
    width: 22rem;
  }
}
.overview__link {
  color: #292929;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: tabletpx) {
  .overview__link {
    left: 1rem;
    position: absolute;
  }
}
.overview__link.noImage {
  float: left;
  left: 0;
  position: relative;
}

.article {
  padding: 1rem 1rem 0 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .article {
    padding: 1rem 3rem 0 3rem;
  }
}
.article .news__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.article__text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.article__text a {
  color: #292929;
  text-decoration: underline;
}
.article__text p {
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.article__text ul {
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}
.article__text ul li {
  margin-bottom: 1rem;
}
.article__date, .article__author, .article__category {
  color: #292929;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
}
.article__gallery {
  margin-bottom: 2rem;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem 0 1rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .contacts {
    padding: 0 3rem 0 3rem;
  }
}
.contacts__intro, .contacts__outro {
  font-size: 1.5rem;
}
.contacts__intro a, .contacts__outro a {
  color: #292929;
  text-decoration: underline;
}
.contacts__intro p, .contacts__outro p {
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.contacts__intro ul, .contacts__outro ul {
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}
.contacts__intro ul li, .contacts__outro ul li {
  margin-bottom: 1rem;
}
.contacts__intro {
  padding-bottom: 3rem;
}
.contacts__outro {
  margin-bottom: 5rem;
  padding-top: 3rem;
}
.contacts__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: tabletpx) {
  .contacts__item {
    flex-wrap: nowrap;
    width: 50%;
  }
}
.contacts__headline {
  border-bottom: 1px solid;
  font-style: italic;
  margin-bottom: 10px;
  padding-bottom: 2px;
  width: 100%;
}
.contacts__image {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 4.781rem;
  justify-content: center;
  overflow: hidden;
  width: 8.5rem;
}
@media (min-width: tabletpx) {
  .contacts__image {
    height: 8.386rem;
    width: 15rem;
  }
}
@media (min-width: desktoppx) {
  .contacts__image {
    height: 12.375rem;
    width: 22rem;
  }
}
.contacts__image_user {
  align-items: flex-end;
  background: #ececec;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.contacts__image_user span {
  color: #979797;
  font-size: 4rem;
}
@media (min-width: tabletpx) {
  .contacts__image_user span {
    font-size: 7rem;
  }
}
@media (min-width: desktoppx) {
  .contacts__image_user span {
    font-size: 11rem;
  }
}
.contacts__content {
  flex-grow: 1;
  padding: 0 1rem;
  position: relative;
  width: 50%;
}
@media (min-width: tabletpx) {
  .contacts__content {
    width: auto;
  }
}
.contacts__content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  /*margin-bottom : .5rem;*/
  width: 100%;
}
.contacts__content h3.hasDisplayname {
  margin-bottom: 0;
}
.contacts__content .displayName {
  margin-bottom: 0.5rem;
}
.contacts__content p {
  font-size: 1.5rem;
  width: 100%;
}
.contacts__bottom {
  width: calc(100% - 1rem);
  word-break: break-word;
}
@media (min-width: desktoppx) {
  .contacts__bottom {
    bottom: 0;
    position: absolute;
  }
}
.contacts__bottom i {
  color: #0082C8;
  font-size: 1rem;
  margin-right: 0.5rem;
  text-align: center;
  width: 1rem;
}

.emptyResult {
  color: #ff7878;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  width: 100%;
}

footer {
  align-items: center;
  background: #0082C8;
  display: flex;
  height: 6rem;
  justify-content: space-between;
  margin: 2rem auto 0 auto;
  max-width: 100rem;
}
footer > div:first-child {
  width: 30rem;
}
footer > div:last-child {
  width: 30rem;
}

.footer__logo {
  flex-grow: 1;
  height: 5rem;
  max-width: 20rem;
}
.footer__logo a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.footer__logo a img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.footer__navigation_tiles {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  justify-content: flex-end;
  margin: 0 2rem 0 0;
}
.footer__navigation_tiles a {
  color: #000;
}
.footer__navigation_tiles li:after {
  content: "|";
  margin: 0 1rem;
}
.footer__navigation_tiles li:last-child:after {
  content: "";
  margin: 0 1rem;
}

/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Intranet Header */
:root {
  --background--intranet: #0693d0;
}

.b2bheader {
  font-family: Helvetica, Arial, Sans-serif;
  margin: 0 auto;
  max-width: 120rem;
}
.b2bheader ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.b2bheader a {
  text-decoration: none;
}
.b2bheader .header__top {
  flex-direction: column;
  gap: 1rem;
  height: auto;
  justify-content: center;
  min-height: 4.5rem;
}
@media (min-width: 768px) {
  .b2bheader .header__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.b2bheader .header__top nav {
  margin: 0 1rem;
}
@media (min-width: 768px) {
  .b2bheader .header__top nav {
    margin: 0;
    width: auto;
  }
}
.b2bheader .header__top li a {
  font-family: Helvetica;
  font-size: 1.4rem;
  font-weight: bold;
}
.b2bheader .header__imageContainer {
  height: auto;
}
.b2bheader .header__navigation {
  background: var(--background--intranet);
  border: none;
  height: inherit;
  padding: 0;
}
@media (min-width: 768px) {
  .b2bheader .header__navigation {
    padding: 0 0 0 2rem;
  }
}
.b2bheader .header__navigation__top {
  justify-content: space-between;
}
.b2bheader .header__userInfo {
  display: block;
  margin-right: 1rem;
  order: inherit;
  padding: 0 0 1rem 1rem;
}
@media (min-width: 768px) {
  .b2bheader .header__userInfo {
    padding: 0;
  }
}
.b2bheader .header__userInfo .userInfoWrapper .circle {
  background: none;
  border: none;
  border-radius: inherit;
  height: unset;
  width: unset;
}
.b2bheader .header__userInfo .userInfoWrapper .circle img {
  display: block;
  height: 2.4rem;
}
.b2bheader .header__userInfo .userInfoWrapper .userInfoData {
  color: #fff;
  margin: 0 0 0 1rem;
  min-width: unset;
}
.b2bheader .header__userInfo .userInfoWrapper .userInfoData .userInfoValue {
  font-family: Helvetica, serif;
  font-size: 1.4rem;
  font-weight: bold;
  width: unset;
}
.b2bheader .header__userInfo .userInfoWrapper .userInfoData .userInfoLevel {
  display: none;
}
.b2bheader .header__logout {
  margin-right: 1rem;
  order: inherit;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .b2bheader .header__logout {
    padding: 0;
  }
}
.b2bheader .header__logout a {
  height: 2.3rem;
}
.b2bheader .header__logout a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.b2bheader .header__notifications {
  margin-bottom: 0;
  margin-right: 1rem;
  order: inherit;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .b2bheader .header__notifications {
    padding: 0;
  }
}
.b2bheader .header__notifications .registerPrompt__wrapper {
  border-color: var(--background--intranet);
}
.b2bheader .header__notifications .registerPrompt__head {
  background: var(--background--intranet);
  color: white;
}
.b2bheader .header__notifications .registerPrompt__close i {
  color: white !important;
}
.b2bheader .header__notifications #notification {
  background: #ef0000;
  color: #fff;
  height: 1.5rem;
  width: 1.5rem;
}
.b2bheader .header__notifications #notification span {
  font-size: 1rem;
}
.b2bheader .header__notifications i {
  color: #fff;
}
.b2bheader .header__right {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  order: 3;
  width: 100%;
}
@media (min-width: 768px) {
  .b2bheader .header__right {
    width: auto;
  }
}
.b2bheader .header__right .language {
  align-items: center;
  color: white;
  display: flex;
  font-family: Helvetica, serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 1rem;
  position: relative;
}
.b2bheader .header__right .language .language__switch {
  align-items: center;
  cursor: pointer;
  display: flex;
}
.b2bheader .header__right .language img {
  height: 2.4rem;
  margin-right: 1rem;
}
.b2bheader .header__right .language__box {
  background-color: #eefaff;
  box-shadow: 0 2px 4px 0 rgba(127, 127, 127, 0.5);
  display: none;
  padding: 0 0.8rem 0.8rem;
  position: absolute;
  top: 3rem;
  z-index: 2;
}
.b2bheader .header__right .language__box .arrow {
  background-color: #eefaff;
  height: 10px;
  left: calc(50% - 5px);
  position: absolute;
  top: -5px;
  transform: rotate(45deg);
  width: 10px;
}
.b2bheader .header__right .language__box .language__choice {
  align-items: center;
  display: flex;
  margin-top: 0.8rem;
}
.b2bheader .header__right .language__box input {
  -moz-appearance: auto;
  -webkit-appearance: auto;
  appearance: auto;
  cursor: pointer;
  margin-right: 1.3rem;
}
.b2bheader .header__right .language__box label {
  color: #3c3c3c;
  cursor: pointer;
  font-family: Helvetica, serif;
  font-size: 1.4rem;
  font-weight: normal;
}
.b2bheader .header__right .language__box label.checked {
  color: #0093d0;
}
.b2bheader .header__right .language__box select {
  background: transparent;
  color: white;
  font-size: 2rem;
}
.b2bheader .header__right .language__box select option {
  color: black;
}
.b2bheader .header__right .search {
  display: none;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .b2bheader .header__right .search {
    display: block;
    max-width: 16rem;
    width: auto;
  }
}
@media (min-width: 1000px) {
  .b2bheader .header__right .search {
    max-width: none;
  }
}
.b2bheader .header__middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .b2bheader .header__middle {
    flex-direction: row;
  }
}
.b2bheader .header__logo {
  align-items: center;
  display: none;
  flex-shrink: 0;
  height: 4rem;
  margin-right: 1rem;
  max-width: 25rem;
}
@media (min-width: 768px) {
  .b2bheader .header__logo {
    display: flex;
  }
}
.b2bheader .header__logo a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .b2bheader .header__logo a {
    justify-content: flex-start;
  }
}
.b2bheader .header__bottom {
  height: 100%;
  padding-right: 0;
}
.b2bheader .header__mobile {
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .b2bheader .header__mobile {
    display: none;
    width: 100%;
  }
}
.b2bheader .header__mobile .header__logo {
  background: #fff;
  display: block;
  height: 5rem;
  margin: 0;
  order: 1;
  padding-right: 1rem;
  width: 50%;
}
.b2bheader .header__mobile .search {
  order: 2;
}
.b2bheader .navigation__tiles {
  display: flex;
  gap: 1.5rem;
}
.b2bheader .navigation__tiles li {
  background: #fff;
  flex-direction: row;
  height: inherit;
  margin: 0;
  padding: 0;
  width: inherit;
}
.b2bheader .navigation__tiles li span {
  color: #092a5e;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0;
}
.b2bheader .navigation__tiles li span img {
  margin-left: 0.5rem;
  width: 1.2rem;
}
.b2bheader .navigation__tiles li i {
  color: #092a5e;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
.b2bheader .navigation__tiles__submenu {
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(127, 127, 127, 0.5);
  display: none;
  padding: 1rem;
  position: absolute;
  top: 100%;
  z-index: 1;
}
.b2bheader .navigation__tiles__submenu li {
  margin: 0.5rem 0;
  width: -moz-max-content;
  width: max-content;
}
.b2bheader .navigation__tiles > li {
  position: relative;
}
.b2bheader .navigation__tiles > li:hover .navigation__tiles__submenu, .b2bheader .navigation__tiles > li:focus .navigation__tiles__submenu, .b2bheader .navigation__tiles > li:active .navigation__tiles__submenu {
  display: block;
}
.b2bheader .navigation__top {
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 425px) {
  .b2bheader .navigation__top {
    justify-content: flex-end;
  }
}
.b2bheader .navigation__top li {
  margin: 0;
}
.b2bheader .navigation__top li a {
  align-items: center;
  color: #fff;
  display: flex;
}
.b2bheader .navigation__top li img {
  height: 2.3rem;
  margin-right: 0.5rem;
  width: auto;
}
.b2bheader .navigation__bottom {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 7px;
  max-height: unset;
  order: 2;
  overflow: visible;
  width: 100%;
}
@media (min-width: 576px) {
  .b2bheader .navigation__bottom {
    justify-content: flex-start;
    width: auto;
  }
}
.b2bheader .search {
  height: 5rem;
  margin-right: 0;
  order: inherit;
}
.b2bheader .search__wrapper {
  border-radius: 0;
  height: 5rem;
}
.b2bheader .search__wrapper::after {
  color: #394040;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-size: 2.1rem;
  font-weight: 900;
  pointer-events: none;
  position: absolute;
  right: 1.3rem;
  top: 1.4rem;
}
.b2bheader .search__wrapper #suche {
  background-color: #f7f7f7;
  color: #3c3c3c;
}
.b2bheader .search__wrapper #suche::-moz-placeholder {
  color: #3c3c3c;
  opacity: 1;
}
.b2bheader .search__wrapper #suche::placeholder {
  color: #3c3c3c;
  opacity: 1;
}
.b2bheader .search__wrapper #suche:-ms-input-placeholder {
  color: #3c3c3c;
}
.b2bheader .search__wrapper #suche::-ms-input-placeholder {
  color: #3c3c3c;
}
.b2bheader .ticker__wrapper {
  background: #eff0f0;
  display: flex;
  height: 5.4rem;
  max-width: inherit;
}
.b2bheader .ticker__wrapper #backLink {
  height: 5.4rem;
}
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container {
  height: 5.4rem;
}
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container .marquee,
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container *[class^=marquee] {
  height: 5.4rem;
}
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container .marquee .marquee-content-items,
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container *[class^=marquee] .marquee-content-items {
  height: 5.4rem;
  padding: 0 0.5rem;
}
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container .marquee .marquee-content-items li,
.b2bheader .ticker__wrapper .ticker__container.simple-marquee-container *[class^=marquee] .marquee-content-items li {
  color: #092a5e;
  font-family: Helvetica, serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 5.4rem;
}
.b2bheader .ticker__wrapper .simple-marquee-container .marquee-content-items li a {
  color: #0693d0;
  font-family: Helvetica, serif;
  font-size: 14px;
}
.b2bheader .ticker__wrapper #backLink {
  background: #eefaff;
}
.b2bheader .ticker__wrapper #backLink a {
  color: #0693d0;
}

/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Intranet */
:root {
  --background--intranet: #71caf3;
}

.wkGallery .navigationSlider__circle--wrapper i {
  color: #979797;
}
.wkGallery .navigationSlider .slick-current .navigationSlider__image {
  border: 0.3rem solid #FFB400;
}
.wkGallery__slide--prev i, .wkGallery__slide--next i {
  color: #979797;
}

#ContentArea {
  display: grid;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 1.5rem 0 1.5rem;
}
@media (min-width: 576px) {
  #ContentArea {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  #ContentArea {
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    padding: 3rem 0 0 0;
  }
}

.ikImage {
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .ikImage {
    grid-column-start: span 2;
  }
}
@media (min-width: 1000px) {
  .ikImage {
    grid-column-start: span 3;
  }
}

.ikAccordion,
.ikTextImage__box,
.ikAgency__agencydata,
.ikAgency__commission {
  border: none;
  box-shadow: 0 0.2rem 0.9rem 0 rgba(174, 174, 174, 0.5);
  color: #394040;
  display: flex;
  flex-direction: column;
  font-family: Arial, serif;
  font-size: 1.4rem;
  height: 100%;
  padding: 2rem;
}
.ikAccordion__headline,
.ikTextImage__box__headline,
.ikAgency__agencydata__headline,
.ikAgency__commission__headline {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.ikTextImage {
  color: #3c3c3c;
  font-family: Arial, serif;
  font-size: 1.4rem;
  grid-column-start: span 3;
}
@media (min-width: 576px) {
  .ikTextImage {
    grid-column-start: span 1;
  }
}
.ikTextImage p {
  margin: inherit;
}
.ikTextImage__image a {
  height: 100%;
  width: 100%;
}
.ikTextImage__box.border0 {
  border-radius: 0;
  box-shadow: none;
}
.ikTextImage__box .ikTextImage__image {
  margin-bottom: 3rem;
}
.ikTextImage__box .ikTextImage__image img {
  display: block;
}
.ikTextImage__box .ikTextImage__image a {
  width: 100%;
}
.ikTextImage__box .ikTextImage__arrow {
  margin-left: 1rem;
}
.ikTextImage__content .ikTextImage__header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.ikTextImage__content .ikTextImage__text {
  margin-bottom: 2rem;
}
.ikTextImage__link {
  border: none;
  flex-grow: 1;
  padding-top: 1rem;
}
.ikTextImage__link a {
  align-items: center;
  color: #092a5e;
  display: flex;
  height: 100%;
  width: 100%;
}

.ikTextImage.two {
  grid-column-start: span 3;
}
@media (min-width: 1000px) {
  .ikTextImage.two {
    grid-column-start: span 2;
  }
}

.ikTextImage.full,
.ikAgency {
  grid-column-start: span 3;
  width: 100%;
  /*@include respond-to(576) {
  	grid-column-start : span 2;
  }*/
}
@media (min-width: 1000px) {
  .ikTextImage.full,
  .ikAgency {
    grid-column-start: span 3;
  }
}

.ikAccordion {
  grid-column-start: span 3;
  padding-bottom: 0;
  width: 100%;
}
.ikAccordion__headline {
  border-bottom: 0.1rem solid #3c3c3c;
  color: #394040;
  font-size: 2rem;
  font-weight: bold;
  grid-column-start: span 3;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  text-align: left;
  width: 100%;
}
.ikAccordion__box .ikAccordion__item {
  border-bottom: 0.1rem solid #3c3c3c;
  cursor: pointer;
  margin-bottom: 2rem;
}
.ikAccordion__box .ikAccordion__item .ikAccordion__header {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.ikAccordion__box .ikAccordion__item .ikAccordion__content {
  display: none;
}
.ikAccordion__box .ikAccordion__item .ikAccordion__content .ikAccordion__text {
  color: #394040;
  margin-bottom: 2rem;
}
.ikAccordion__box .ikAccordion__item .ikAccordion__content .ikAccordion__link {
  margin-bottom: 2rem;
}
.ikAccordion__box .ikAccordion__item .ikAccordion__content .ikAccordion__link a {
  color: #092a5e;
}
.ikAccordion__box .ikAccordion__item:last-child {
  border: none;
}

.ikAgency__agencydata {
  height: inherit;
}
.ikAgency__agencydata .ikAgency__headline {
  font-size: 2rem;
}
.ikAgency__agencydata .ikAgency__name, .ikAgency__agencydata .ikAgency__street, .ikAgency__agencydata .ikAgency__location {
  margin-bottom: 1rem;
}
.ikAgency__commission {
  height: inherit;
  margin-top: 3rem;
}
.ikAgency__commission--head {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.ikAgency__commission--box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ikAgency__commission--sales {
  margin-bottom: 1rem;
  order: 1;
}
@media (min-width: 1000px) {
  .ikAgency__commission--sales {
    width: 100%;
  }
}
.ikAgency__commission--barbox {
  margin-top: 1rem;
  order: 6;
  width: 100%;
}
@media (min-width: 1000px) {
  .ikAgency__commission--barbox {
    margin-top: 0;
    order: 2;
    width: 80%;
  }
}
.ikAgency__commission--bar {
  background: #cecece;
  border-radius: 1.2rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  position: relative;
}
.ikAgency__commission--barlevel {
  border-radius: 1.2rem;
  height: 2.3rem;
  position: absolute;
  width: 15rem;
}
.ikAgency__commission--barlevel:nth-child(1) {
  background: #d85048;
  z-index: 10;
}
.ikAgency__commission--barlevel:nth-child(2) {
  background: #f9903a;
  z-index: 9;
}
.ikAgency__commission--barlevel:nth-child(3) {
  background: #f9b83a;
  z-index: 8;
}
.ikAgency__commission--barlevel:nth-child(4) {
  background: #f9dd3a;
  z-index: 7;
}
.ikAgency__commission--barlevel:nth-child(5) {
  background: #8ebf00;
  z-index: 6;
}
.ikAgency__commission--levels {
  display: flex;
}
.ikAgency__commission--levels .ikAgency__commission--level {
  color: #3c3c3c;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 0.7rem;
  width: 20%;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(1) {
  border-left: 1px solid #d85048;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(1) .ikAgency__commission--commission {
  color: #d85048;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(2) {
  border-left: 1px solid #f9903a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(2) .ikAgency__commission--commission {
  color: #f9903a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(3) {
  border-left: 1px solid #f9b83a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(3) .ikAgency__commission--commission {
  color: #f9b83a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(4) {
  border-left: 1px solid #f9dd3a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(4) .ikAgency__commission--commission {
  color: #f9dd3a;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(5) {
  border-left: 1px solid #8ebf00;
}
.ikAgency__commission--levels .ikAgency__commission--level:nth-child(5) .ikAgency__commission--commission {
  color: #8ebf00;
}
.ikAgency__commission--result {
  display: flex;
  order: 3;
}
.ikAgency__commission--reachedp, .ikAgency__commission--reachedchf {
  align-items: center;
  color: #3c3c3c;
  display: flex;
  font-size: 1.2rem;
  font-weight: bold;
  justify-content: center;
  text-align: center;
}
.ikAgency__commission--reachedp {
  margin: 0 2rem;
  order: 3;
}
.ikAgency__commission--reachedchf {
  border-radius: 50%;
  height: 7rem;
  order: 4;
  padding: 0.5rem;
  width: 7rem;
}
.ikAgency__commission--reachedchf.level1 {
  background: #d85048;
}
.ikAgency__commission--reachedchf.level2 {
  background: #f9903a;
}
.ikAgency__commission--reachedchf.level3 {
  background: #f9b83a;
}
.ikAgency__commission--reachedchf.level4 {
  background: #f9dd3a;
}
.ikAgency__commission--reachedchf.level5 {
  background: #8ebf00;
}
.ikAgency__commission--legal {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  order: 7;
  width: 100%;
}

.ikIframe {
  grid-column-start: span 3;
  margin: 0 auto;
}
.ikIframe iframe {
  border: none;
}

.last_news__tab .news__header {
  background: var(--background--intranet);
}

.news {
  grid-column-start: span 3;
  padding: 0;
  /*@include respond-to(576) {
  	grid-column-start : span 2;
  }
  @include respond-to(1000) {
  	grid-column-start : span 3;
  }*/
}
.news__container {
  border-color: #092a5e;
}
.news__header {
  background: #eff0f0;
  border: none;
  border-color: #70cbf4;
  color: #092a5e;
  font-weight: bold;
  padding: 0 4rem;
}
.news__header span .newcount {
  background: #ffffff;
  color: #ef0000;
}
.news__header:hover {
  border-color: #70cbf4;
  color: #092a5e;
}
.news__tabs {
  background: #eff0f0;
  flex-wrap: wrap;
}
.news__tab {
  width: auto;
}
.news__tab.active .news__header {
  background-color: #70cbf4;
  border-color: #70cbf4;
  color: #fff;
}
.news__button {
  padding: 0;
}
@media (min-width: 576px) {
  .news__button {
    grid-column-start: span 2;
  }
}
@media (min-width: 1000px) {
  .news__button {
    grid-column-start: span 3;
  }
}
.news__button a {
  background: #092a5e;
}
.news__title {
  text-overflow: initial;
  white-space: normal;
}
.news__title i {
  color: #092a5e;
}
.news__text {
  color: #394040;
  text-overflow: initial;
  white-space: normal;
}
.news__image {
  height: inherit;
  width: 22rem;
}
.news__info {
  font-weight: bold;
}

footer {
  background: #fff;
  border-top: 0.1rem solid #092a5e;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  max-width: 120rem;
  min-height: 6rem;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  footer {
    justify-content: space-between;
  }
}
footer > div:first-child {
  display: none;
}
@media (min-width: 1024px) {
  footer > div:first-child {
    display: block;
  }
}
@media (min-width: 1024px) {
  footer > div:last-child {
    width: auto;
  }
}

.footer__logo {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .footer__logo {
    margin-bottom: 0;
  }
}
.footer__navigation_tiles {
  flex-wrap: nowrap;
  justify-content: center;
}

.overview {
  grid-column-start: span 3;
}
.overview__image {
  display: flex;
  height: 100%;
  width: 22rem;
}
.overview__image img {
  width: unset;
}
.overview__actions {
  background: none;
  border-bottom: 1px solid #394040;
}
.overview__actions .overview__label {
  color: #3c3c3c;
  width: 100%;
}
.overview__actions .inputWrapper {
  position: relative;
}
.overview__actions .inputWrapper .filter {
  background-color: #f7f7f7;
  color: #394040;
}
.overview__actions .inputWrapper .filter::-moz-placeholder {
  color: #394040;
  opacity: 1;
}
.overview__actions .inputWrapper .filter::placeholder {
  color: #394040;
  opacity: 1;
}
.overview__actions .inputWrapper::after {
  color: #394040;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 0.6rem;
}
.overview__actions .overview__filter .selectWrapper select {
  background: #f7f7f7;
  color: #394040;
}
.overview__actions .overview__filter .selectWrapper:after {
  color: #394040;
}
.overview__actions .checkboxWrapper .optionCheckbox {
  color: #3c3c3c;
}
.overview__actions .checkboxWrapper .optionCheckbox .filter {
  border: solid 2px #394040;
}
.overview__filter {
  height: 100%;
}
.overview__filter .inputWrapper {
  border-radius: 0;
  height: 100%;
}
.overview__filter .inputWrapper input {
  background: #eefaff;
  color: var(--background--intranet);
  height: 3rem;
}
.overview__filter .inputWrapper input::-moz-placeholder {
  color: var(--background--intranet);
  opacity: 1;
}
.overview__filter .inputWrapper input::placeholder {
  color: var(--background--intranet);
  opacity: 1;
}
.overview__filter .inputWrapper input:-ms-input-placeholder {
  color: var(--background--intranet);
}
.overview__filter .inputWrapper input::-ms-input-placeholder {
  color: var(--background--intranet);
}
.overview__filter .selectWrapper {
  border-radius: 0;
  height: 100%;
}
.overview__filter .selectWrapper select {
  background: #eefaff;
  color: var(--background--intranet);
  height: 3rem;
}
.overview__filter .selectWrapper:after {
  color: var(--background--intranet);
  top: 0.6rem;
}
.overview__results {
  padding: 1.5rem 0 0 0;
}
.overview__result {
  border-color: #092a5e;
}
.overview__result:last-of-type {
  border-bottom: 0;
}
.overview__link {
  background-color: #092a5e;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem 2rem;
  text-align: center;
  width: 13rem;
}

.imageElement {
  grid-column-start: span 3;
}
.imageElement__name {
  color: #394040;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: left;
}
.imageElement__content {
  border: none;
}
.imageElement__prev, .imageElement__next {
  color: white;
  cursor: pointer;
  font-size: 4rem;
  position: absolute;
  /* box-shadow: 0 0.2rem 0.9rem 0 rgba(174, 174, 174, 0.5); */
  /* box-shadow: 0 0.2rem 0.9rem 0 rgba(174, 174, 174, 0.5); */
  text-shadow: 1px 1px 2px #000;
  top: calc(50% - 2rem);
}
.imageElement__prev {
  left: 1rem;
}
.imageElement__next {
  right: 1rem;
}
.imageElement .ikImage {
  margin-bottom: 0;
}
.imageElement .ikTextImage .ikTextImage__box {
  margin: 0 4rem;
}

ul {
  list-style-type: disc;
  padding-left: 2rem;
}
/*# sourceMappingURL=intranet.css.map */
