body {
    font-family: GilroyRegular;
    color: var(--color-black);
    background-color: var(--color-light-grey);
    position: relative;
}

a {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 600;
    border-bottom: 2px solid var(--color-blue);
    transition: border-bottom var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: inherit;
    border-bottom: 2px solid var(--color-yellow);
}

strong {
    font-family: GilroySemiBold;
}

h1 {
    color: var(--color-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    font-size: 2.625rem;
    font-family: GilroyRegular;
    line-height: 30px;
    margin-bottom: 40px;
}

h1 {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

container {
    max-width: var(--max-width);
}

.main-content-container {
    padding:0;
}

.region-content {
    padding-left:0;
    padding-right: 0;
}

.region-header {
    width:100%;
    position: relative;
}

.page-header-wrapper {
    padding:0;
}

.headline,
.populaereAngebote .ueberschrift, 
.populaereOE .ueberschrift
{
    color: var(--color-blue);
    font-family: GilroySemiBold;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 29px;
    word-wrap: break-word;
}

.subline {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 28px;
    word-wrap: break-word;
}

.sub-headline {
    color: var(--color-blue);
    font-family: GilroySemiBold;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 15px;
    text-transform: uppercase;
    word-wrap: break-word;
}


/* Buttons */
.btn, input.Infoschalter {
    display: inline-block;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-blue);
    border-radius: 31.5px;
    background-color: var(--color-white);
    padding: 15px 46px;
    margin: 5px 0;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    border: 2px solid var(--color-blue);
}

.btn:hover, input.Infoschalter:hover, 
.btn-primary:hover  {
    color: var(--color-white);
    background-color: var(--color-yellow);
    border-color: transparent!important;
}

.btn:active, input.Infoschalter:active, 
.btn-primary:active  {
    color: var(--color-black)!important;
    background-color: var(--color-white)!important;
    border-color: transparent!important;
}

.btn-primary {
    color: var(--color-white);
    background-color: var(--color-blue);
    border-color: transparent;
}

.button-text-arrows {
    position: relative;
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-text-arrows::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    margin-left: 68px;
    margin-top: 2px;
}

.button-text-arrows:hover, .button-text-arrows:focus {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-rounded-corners {
    display: inline-block;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-black);
    border-radius: 31.5px;
    background-color: var(--color-light-grey);
    padding: 15px 46px;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.button-rounded-corners:hover {
    background-color: var(--color-yellow);
}

/* Formular Elemente */
.form-control,
.input-group-text {
    background: none;
    background-color: var(--color-white);
    border: 0px solid;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border-radius: 31.5px;
    box-shadow: inset 0 0 5px 0 var(--box-shadow-rgba-menu);
    padding: 12px 20px 12px 20px!important;
}

.form-control:focus {
    border-color:var(--color-white)!important;
    box-shadow: inset 0 0 5px 0 var(--box-shadow-rgba-menu);
}

.form-floating {
    margin: 12px 0px 12px 0px;
    max-width:100%;
}

.form-floating>label {
    padding-left: 20px!important;
}

.form-floating>input {
    padding-left: 20px!important;
    padding-top: 1.625rem!important;
}

.form-check-input:checked {
    background-color: var(--color-blue);
    border-color: var(--color-light-grey);
}

.form-check-input:focus,
.form-select:focus {
    border-color: var(--color-darker-grey);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(30 30 30 / 15%);
}

.user-login-form {
    padding-left: 110px;
    padding-right: 10px;
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-yellow);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    margin-top: -15px;
}

/* Tabs */
.nav-tabs .nav-link {
    display: inline-block;
    font-family: GilroySemiBold;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--color-blue);
    border-radius: 23px;
    border: 2px solid var(--color-blue);
    transition: all var(--transition-speed) var(--transition-ease);
    transition-property: color, border;
    background-color: var(--color-white);
    padding: 9px 29px;
    margin-right: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.hover {
    color: var(--color-black);
    border: 2px solid var(--color-yellow);
}

/* Topleisten News Warnings */
.warnings {
    height: 128px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
}

.warnings .warnings-wrapper {
    height: 100%;
    width: 100%;
    max-width: 972px;
    display: flex;
}

.view-topleisten-news .warnings-close {
    background-color: var(--color-blue);
    -webkit-mask: url(../img/icons/close.svg) no-repeat center;
    mask: url(../img/icons/close.svg) no-repeat center;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 17px;
    right: 60px;
    top: 30px;
    z-index:1;
}

.page-header-wrapper.closed .view-topleisten-news-wrapper {
  margin-top:-100%;
}

.page-header-wrapper .view-topleisten-news-wrapper {
  overflow: hidden;
  position: relative;
}

.view-topleisten-news-wrapper,
.view-topleisten-news-wrapper .views-element-container,
.view-topleisten-news-wrapper .views-element-container .slick-list {
    width:100%;
}

.view-topleisten-news .warnings-close:hover {
    background-color: var(--color-white);
}

.warnings .warnings-wrapper .slick-list .warning-row {
    margin-top:15px;
}

.warnings .warnings-wrapper .slide-item .warning {
    height: 100%;
    margin-left: 28px;
    margin-right: 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: -15px;
}

.warnings .warnings-wrapper .field--name-field-media-svg img {
    max-width: 64px;
    max-height: 64px;
}

.warnings .warnings-wrapper .field--name-field-top-news-text {
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    font-family: GilroySemiBold;
}

.warnings .warnings-wrapper .field--name-field-top-news-text p {
    margin-bottom:0;
}

.warnings .warnings-wrapper .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.warnings .warnings-wrapper .slick-dots li {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.warnings .warnings-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 11px;
    height: 11px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.warnings .warnings-wrapper .slick-dots li button::before {
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--color-white);
    position: absolute;
    top: 0px;
    left: 0px;
}

.warnings .warnings-wrapper .slick-dots li.slick-active button::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-black);
    position: absolute;
    top: 2px;
    left: 2px;
}

/* Header Startseite / Hero */
.hero .hero-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}

.hero-general {
    background-color: var(--color-white);
    padding: 0;
}

.hero .hero-content::before {
    content: ' ';
    background-image: url(../img/blue_triangle_60.svg);
    position: absolute;
    width: 120px;
    background-size: contain;
    height: 278px;
    right: 0px;
    bottom: -72px;
    display: block;
    z-index: 1;
}

.page-node-type-startseite .hero .hero-content::before {
  z-index: 0;
}

.path-frontpage .hero .hero-content::before {
  content: ' ';
  background-image: url(../img/blue_triangle_60.svg);
    bottom: -36px;
    display: block;
  width: 235px;
  height: 543px;
}

.hero-content-wrapper {
    width: 100%;
    position: relative;
    /** i#9 padding: 205px 175px 164px 175px; **/
    padding: 205px 175px 95px 175px;
}

.path-frontpage .hero-content-wrapper {
    padding: 0;
}

.hero-content {
    background-color: var(--color-white);
    padding: 0;
}

.path-frontpage .hero-content {
    background-color: transparent;
}

.hero {
    padding: 0;
}

.path-frontpage .hero {
    height: 900px;
    min-height: 900px;
    background: url(../img/hero.jpg) center / cover no-repeat;
}

.hero .hero-content .navbar-brand {
    position: absolute;
    left: 60px;
    top: 52px;
    z-index: 4;
}

.hero .hero-content .navbar-brand.hero-logo img {
    display: block;
    width: 164px;
    height: auto;
}

.hero .hero-content .hero-button-menu {
    position: absolute;
    right: 60px;
    top: 40px;
    z-index: 4;
}

#button-close:focus,
#button-close:active,
#button-close:focus-visible,
.lev-2-btn:focus,
.lev-2-btn:active,
.lev-2-btn:focus-visible {
    border:1px solid var(--color-blue);
    outline: 1px solid var(--color-blue);
    display:inline-block;
}

.mmenulevel1 .mmenulevel2:has(ul li a:focus-visible),
.mmenulevel1 .mmenulevel3:has(ul li a:focus-visible) {
    z-index: 99;
}

.hero .hero-content .region-nav-additional {
    position: absolute;
    top: 206px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero .hero-content .region-nav-headline {
    color: var(--color-blue);
}

.hero .hero-content .region-nav-headline h1 {
    font-size: 2.625rem;
    font-family: GilroyRegular;
    line-height: 50px;
    margin-bottom: 40px;
    color: var(--color-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.path-frontpage .hero .hero-content .region-nav-headline {
    position: absolute;
    left: 175px;
    top: 478px;
    color: var(--color-white);
    font-family: GilroyRegular;
}

.path-frontpage .hero .hero-content .region-nav-headline h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 29px;
    color: var(--color-white);
}

.hero .hero-content .region-nav-headline h1 strong {
    font-family: GilroyRegular;
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 60px;
    margin-bottom: 20px;
    display:block;
}

.header-design.beside {
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.header-design.beside .region-nav-headline,
.header-design.beside .field--name-field-einleitung {
    flex: 0 0 auto;
    width: 50%;
}

.header-design .field--name-field-einleitung {
    color: var(--color-black);
    font-size: 1.225rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 30px;
}

/* navbar/menu */
.main-menu-top {
    position: fixed!important;
    position: absolute;
    width: 465px;
    max-width: 100%;
    height: 100vh;
    top: 0;
    right: -505px;
    transition: right var(--transition-speed) var(--transition-ease);
    z-index: 1000;
}

.main-menu-top.open {
    right: 0;
}

.menu .menu-content {
    border-left: 6px solid var(--color-yellow);
    background-color: var(--color-white);
    width: 100%;
    height: 100vH;
    position: fixed;
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-35);
    display: block;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu .menu-content-inner {
  overflow-y:hidden;
}


.menu-quick {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
}

.navbar-hero {
    position: absolute;
    right: 60px;
    top: 40px;
}

.button-menu {
    display: inline-block;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--color-black);
    border-radius: 31.5px;
    background-color: var(--color-light-grey);
    padding: 15px 46px;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    border:none;
}

.path-frontpage .button-menu {
    background-color: var(--color-white);
}

.button-menu::before {
    content: url(../img/icons/Burger.svg);
    display: inline-block;
    width: 19px;
    height: 14px;
    margin-right: 8px;
}

.button-menu:hover {
    background-color: var(--color-yellow);
}

.menu-content-top .menu-quick {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 60px;
    position: relative;
}

.menu-content-top .menu-quick a,
.menu-content-top .menu-quick a:hover {
    text-decoration: none;
    border-bottom: none;
}

.menu-content-top .menu-quick-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 99px;
    font-size:0;
}

.menu-content-top .menu-quick-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100px;
    position: relative;
    font-size:0;
}

.menu .menu-content .menu-content-top .menu-quick .menu-quick-right::after {
    content: '';
    position: absolute;
    left: 46px;
    height: 22px;
    border-left: 1px solid var(--color-darker-grey);
    transition: border-left var(--transition-speed) var(--transition-ease);
}

.button-icon {
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.button-icon.simple-language,
.btn.einfache-sprache:before {
    -webkit-mask: url(../img/icons/icon_einfache_sprache.svg) no-repeat center;
    mask: url(../img/icons/icon_einfache_sprache.svg) no-repeat center;
    width: 20px;
    height: 26px;
}

.button-icon.sign-language {
    -webkit-mask: url(../img/icons/icon_gebaerdensprache.svg) no-repeat center;
    mask: url(../img/icons/icon_gebaerdensprache.svg) no-repeat center;
    width: 20px;
    height: 25px;
}

.button-icon.cr_bf_assistenz {
    -webkit-mask: url(../img/icons/icon_bf_assistenz.svg) no-repeat center;
    mask: url(../img/icons/icon_bf_assistenz.svg) no-repeat center;
    width: 20px;
    height: 26px;
}

.button-icon.search {
    -webkit-mask: url(../img/icons/icon_search.svg) no-repeat center;
    mask: url(../img/icons/icon_search.svg) no-repeat center;
    width: 26px;
    height: 26px;
}

.button-icon.close,
.button-icon.close:hover {
    -webkit-mask: none;
    mask: none;
    background: none;
    border: none;
}

.button-icon.close:before {
    -webkit-mask: url(../img/icons/close.svg) no-repeat center;
    mask: url(../img/icons/close.svg) no-repeat center;
    width: 16px;
    height: 17px;
    display:block;
    content:' ';
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.button-icon.close:hover:before {
    background-color: var(--color-yellow);
}

.button-icon:hover {
    background-color: var(--color-yellow);
}

.menu-find {
    display:none;
}

.menu-content-top ul li a {
    display: block;
    width: 100%;
    position: relative;
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    border-bottom: transparent;
    padding-top:0;
    padding-bottom:24px;
}

.menu-content-top ul li a.nav-link {
    padding-left: 0;
    padding-right: 0;
}

.no-js-tag .menu-content .menu-content-top .button-menu-rounded-corners,
.mm-back-btn,
.main-button-menu-rounded-corners {
    display: inline-block;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-black);
    border-radius: 31.5px;
    background-color: var(--color-light-grey);
    padding: 15px 46px 15px 46px;
    transition: background-color var(--transition-speed) var(--transition-ease);
    position: relative;
    border:none;
    width: auto;
    margin-bottom: 12px;
    cursor: default;
}

.menu-content .menu-content-top a.button-menu-rounded-corners.active,
.menu-content .menu-content-top a.button-menu-rounded-corners:hover {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow) !important;
    text-decoration: underline;
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

span.nav-link.active,
.menu-content-top ul li a.active {
  text-decoration-color: var(--color-yellow) !important;
}

.mm-back-btn {
    cursor: pointer;
    margin-bottom: 60px;
    display: inline-block !important;
    padding-bottom: 12px !important;
}

.main-button-menu-rounded-corners {
    margin-bottom: 60px;
    left: 50%;
    transform: translate(-50%,0%);
}

.mm-back-btn:before {
    content: url(../img/icons/arrow_back.svg);
    position: absolute;
    width: 9px;
    height: 15px;
    margin-left: -20px;
    top: 17px;
}

.mm-back-btn:hover {
    background-color: var(--color-yellow);
}

.lev-1-btn,
.lev-2-btn,
.lev-3-btn {
    display: block;
    width: 100%;
    position: relative;
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: currentcolor;
    text-decoration-thickness: auto;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0;
    padding-bottom: 24px;
}

.lev-1-btn::after,
.lev-2-btn::after,
.lev-3-btn::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    right: 0px;
    margin-top: 2px;
}

ul.mmenulevel1 {
    padding-left: 0;
}

.menu-content .menu-content-top .mmenulevel1 .lev-1-btn:hover {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow) !important;
    text-decoration: underline;
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.menu-content .button-menu-select.dropdown {
    position: relative;
    text-align: center;
}

.menu-content .nav-level-1 .button-menu-select.dropdown {
    text-align: left;
}

.menu-content .menu-content-top .button-menu-rounded-corners:hover {
    border:none;
    text-decoration: none;
}

.menu-content .menu-content-top .dropdown ul {
    text-align: left;
    list-style:none;
    padding-left: 0;
    margin-left:0;
}

.menu-content .menu-content-top .dropdown ul li {
    list-style:none;
}

.menu-content .menu-content-top .dropdown ul li a,
.menu-content .menu-content-top .dropdown ul li span {
  padding-bottom: 24px;
  display:block;
}

.button-menu-select a:hover,
.button-menu-select a:focus,
.menu-content-top ul li a:hover,
.menu-content-top ul li a:focus {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

span.lev-2-btn:hover,
span.lev-2-btn:focus {
  color: var(--color-black);
  text-decoration-color: var(--color-yellow);
}

span.lev-3-btn:hover,
span.lev-3-btn:focus {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-menu-icon {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 8px;
    height: 115px;
    gap: 10px;
    margin-bottom: 16px;
}

.menu-content-bottom a {
    text-decoration:none;
}

.menu-content-top {
  min-height: calc( 100vH - 304px );
}

.button-menu-icon .button-menu-icon-text {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    text-underline-offset: 6px;
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-menu-icon:hover > .button-menu-icon-text {
    text-decoration-color: var(--color-yellow);
}

.menu .menu-content .menu-content-bottom {
    background-color: var(--color-light-grey);
    padding-left: 10px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
  /*
    position: absolute;

   */
    bottom: 0px;
    z-index: 1001;
    display: block;
    width: 100%;
    height: 304px;
}

.mmenu-wrapper li {
    list-style:none;
}

/* Breadcrumb */
nav .breadcrumb {
    background: none;
    margin-bottom: 64px;
}

nav .breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav .breadcrumb li {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    margin-left: 30px;
    padding-left:0 !important;
}

nav .breadcrumb li:first-child {
    margin-left: 0px;
}

nav .breadcrumb li + li::before {
    position: absolute;
    content: '';
    background-color: var(--color-dark-grey);
    -webkit-mask: url(../img/icons/breadcrumb_arrow_active.svg) no-repeat center;
    mask: url(../img/icons/breadcrumb_arrow_active.svg) no-repeat center;
    width: 12px;
    height: 9px;
    top: 5px;
    left: -24px;
}

nav .breadcrumb li:last-child::before {
    background-color: var(--color-black);
}

nav .breadcrumb li:last-child {
    text-decoration: underline;
    text-decoration-color: var(--color-yellow);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    color: var(--color-black);
}

nav .breadcrumb li a {
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: all var(--transition-speed) var(--transition-ease);
    color: var(--color-dark-grey);
    border-bottom: transparent;
}

nav .breadcrumb li a:hover {
    text-decoration-color: var(--color-yellow);
    color: var(--color-black);
}

/* Suche */
.hero .hero-content .search-block-form h2 {
    color: var(--color-black);
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.hero .hero-content .search-block-form {
    width: 100%;
    max-width: 660px;
}

.hero .hero-content .search-block-form form {
    display: flex;
    justify-content: center;
    background-color: var(--color-white);
    width: 100%;
    max-width: 660px;
    height: 64px;
    border-radius: 31.5px;
    box-shadow: inset 0 0 5px 0 var(--box-shadow-rgba-menu);
    padding: 0px 27px;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.hero .hero-content .search-block-form .form-type-search {
    width: calc(100% - 48px);
}

.hero .hero-content .search-block-form .form-type-search input {
    background: none;
    background-color: transparent;
    border: 0px solid;
    position: relative;
    z-index: 155;
    border-right: 1px solid var(--color-darker-grey);
    border-radius: 0;
    box-shadow: none;
    height: 30px;
    padding: 1px 2px !important;
}

.hero .hero-content .search-block-form input.button {
    width: 26px;
    height: 26px;
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    -webkit-mask: url(../img/icons/icon_search.svg) no-repeat center;
    mask: url(../img/icons/icon_search.svg) no-repeat center;
    position: relative;
    z-index: 155;
    cursor: pointer;
    font-size: 0;
}

/* Hero Overlay - Häufig gesucht */
.path-frontpage main {
    margin-top:-100px;
}

.hero-overlay .hero-overlay-content {
    padding-left: 110px;
    padding-right: 10px;
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-yellow);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    display: flex;
    flex-direction: row;
}

.hero-overlay .hero-overlay-content .hero-overlay-content-left {
    max-width: 340px;
    width: 100%;
}

.hero-overlay .hero-overlay-content .hero-overlay-content-left .hero-overlay-headline {
    margin-bottom: 50px;
}

.hero-overlay .hero-overlay-content .hero-overlay-content-right {
    width: 100%;
}

.hero-overlay .hero-overlay-content .hero-overlay-content-right .row > div {
    margin-bottom: 50px;
}


.button-head-text-arrows {
    background: none;
}

.button-head-text-arrows .head {
    margin-bottom: 10px;
}

.button-head-text-arrows .copy {
    margin-right: 40px;
    position: relative;
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-head-text-arrows:visited > .copy , .button-head-text-arrows:active > .copy {
    color: var(--color-black);
}

.button-head-text-arrows:hover > .copy, .button-head-text-arrows:focus > .copy {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-head-text-arrows .copy::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    left: 305px;
    margin-top: 2px;
    bottom: 0;
}

/* Footer */
footer {
    margin-top: 160px;
    padding:0;
}

.footer-wrapper {
    display: flex;
    flex-direction: row;
    min-height: 200px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(29,73,114,1) 70%, rgba(29,73,114,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(29,73,114,1) 70%, rgba(29,73,114,1) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(29,73,114,1) 70%, rgba(29,73,114,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#1d4972",GradientType=1);
}

footer .navbar-nav a.nav-link {
    padding:0;
    border-bottom: none !important;
}

footer .navbar-nav a.nav-link:hover {
    padding:0;
    color: var(--color-yellow);
    border-bottom: 2px solid transparent;
}


footer .footer-left {
    min-height: inherit;
    background-color: var(--color-white);
    padding-left: 174px;
    padding-top: 23px;
    padding-bottom: 30px;
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
}

footer .footer-left .region-footer-impress {
    min-height: inherit;
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media only screen and (max-width: 992px) {
    footer {
      margin-top: 80px;
    }

    footer .footer-left .region-footer-impress {
        justify-content: space-around;
    }
}

footer .footer-right {
    min-height: inherit;
    background: url(../img/blue_footer_60.svg) left / cover no-repeat;
    padding-left: 214px;
    padding-right: 66px;
    padding-top: 23px;
    padding-bottom: 30px;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}

footer .footer-right {
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 15px;
  align-content: center;
  width: 100%;
}

footer .footer-right .footer-right-links .region-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
  padding: 0;
}

footer .footer-right .footer-right-links .region-footer nav,
footer .footer-right .footer-right-links .region-footer nav ul {
    max-width: 450px;
    width: 100%;
}

footer .footer-right .footer-right-links .region-footer nav ul {
    margin-bottom: 1rem;
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-direction: row;
}

footer .footer-right .footer-right-social .field--name-body {
  display: flex;
  align-content: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 384px;
}

footer .footer-right .footer-right-social .block-title {
  margin-bottom:30px;
}

.footer-right a:hover {
    border-bottom: transparent;
}

.button-social {
  height: 30px;
  background-color: var(--color-white);
  transition: background-color var(--transition-speed) var(--transition-ease);
}

.button-social:hover {
  background-color: var(--color-yellow);
}

.button-social.facebook {
  -webkit-mask: url(../img/icons/facebook.svg) no-repeat center;
  mask: url(../img/icons/facebook.svg) no-repeat center;
  width: 25px;
}

.button-social.instagram {
  -webkit-mask: url(../img/icons/instagram.svg) no-repeat center;
  mask: url(../img/icons/instagram.svg) no-repeat center;
  width: 35px;
}

.button-social.vimeo {
  -webkit-mask: url(../img/icons/vimeo.svg) no-repeat center;
  mask: url(../img/icons/vimeo.svg) no-repeat center;
  width: 35px;
}

.button-social.youtube {
  -webkit-mask: url(../img/icons/youtube_white.svg) no-repeat center;
  mask: url(../img/icons/youtube_white.svg) no-repeat center;
  width: 40px;
}

.button-social.linkedin  {
    -webkit-mask: url(../img/icons/linkedin.svg) no-repeat center;
    mask: url(../img/icons/linkedin.svg) no-repeat center;
    width: 40px;
}

/* Views */
.view-empty {
    background-color: var(--color-white);
    padding: 80px 176px 80px 176px;
}

/* Share Page */
#block-sharebuttons {
    margin-left: 60px;
    margin-right: 60px;
}

#block-sharebuttons .social-share {
    margin-top: 160px;
    padding: 40px 128px 40px 40px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
}

.social-share .social-share-button-wrapper .social-share-button-group {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 80px;
     flex-direction: row;
     width: 100%;
 }

 .social-share-headline {
    color: var(--color-blue);
    font-family: GilroySemiBold;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 29px;
    word-wrap: break-word;
}

.social-share .social-share-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-direction: row;
    width: 75%;
}

.social-share .social-share-button-wrapper .social-share-button-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-direction: row;
    width: 100%;
}

.button-social-xxl a {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-direction: row;
    cursor: pointer;
    border-bottom: none;
}

.button-social-xxl a:hover,
.button-social-xxl a:hover .icon {
    padding: 0;
    color: var(--color-yellow);
}

.button-social-xxl a .label {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.62px;
    line-height: 22px;
    white-space: nowrap;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-social-xxl a:hover .label {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-social-xxl a:hover .icon {
    background-color: var(--color-yellow);
}

.button-social-xxl .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-social-xxl:hover > .icon {
    background-color: var(--color-yellow);
}

.button-social-xxl.facebook .icon::after {
    content: url(../img/icons/facebook.svg);
    width: 15px;
    height: 26px;
}

.button-social-xxl.instagram .icon::after {
    content: url(../img/icons/instagram.svg);
    width: 26px;
    height: 26px;
}

.button-social-xxl.email .icon::after {
    content: url(../img/icons/ic_email.svg);
    width: 26px;
    height: 21px;
}

.button-social-xxl.whatsapp .icon::after {
    content: url(../img/icons/ic_whatsapp.svg);
    width: 31px;
    height: 31px;
}

.button-social-xxl .label {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.62px;
    line-height: 22px;
    white-space: nowrap;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-social-xxl:hover > .label {
    text-decoration-color: var(--color-yellow);
}

.button-social-xxl-wrapper {width: 100%;}

/* Views */
.region-content .view .view-content {
    padding-bottom: 56px;
}

.region-content .view .latest-news-center {
    background-color: #fff;
    padding-left: 115px;
}

.view .pager {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-left:0;
    padding-left:0;
    margin-bottom: 0;
}

.view .pager .button {
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-black);
    border-radius: 31.5px;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    background-color: var(--color-white);
    padding: 15px 100px;  display: inline-block;
    border-bottom:none;
}

.view .pager .button:hover {
    background-color: var(--color-yellow);
    border-bottom:none;
}

.view-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.page-entries-info {
    color: var(--color-dark-grey);
    font-size: 0.688rem;
    letter-spacing: 0.85px;
    line-height: 15px;
}

/* taxonomy view */
.view-taxonomy-term .view-content,
.view-news .view-content {
    background: none;
    padding: 0;
    padding-left: 115px;
}

.view-taxonomy-term .view-content .views-row,
.view-news .view-content .views-row {
     --bs-gutter-x: 10rem;
     --bs-gutter-y: 5rem;
 }

.view-taxonomy-term .view-content .distributor-teaser-card-wrapper,
.view-news .view-content .distributor-teaser-card-wrapper {
    background: none;
    height: 440px;
}


/* news vorschau */
.distributor-teaser-card-wrapper .content-wrapper {
    position:relative;
    min-width: 265px;
    height: 100%;
}

.distributor-teaser-card {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 0px;
}

.distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper {
    position: absolute;
    bottom: 22px;
    right: 0px;
    width: 251px;
    height: 286px;
    padding-left: 30px;
    padding-top: 32px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-blue);
    transition: border-left var(--transition-speed) var(--transition-ease);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.distributor-teaser-card .content-wrapper .card-wrapper::after {
  content: url(../img/icons/chevron-chevron_right.svg);
  position: absolute;
  width: 16.49px;
  height: 16px;
  right: 30px;
  bottom: 30px;
}

.distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .head {
  margin-bottom: 10px;
}

.distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper {
    background: none;
    position: relative;
}

.distributor-teaser-card .content-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
}

.distributor-teaser-card .sub-headline {
  color: var(--color-blue);
  font-family: GilroySemiBold;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 15px;
  text-transform: uppercase;
  word-wrap: break-word;
  margin-bottom: 10px;
  display: inline-block;
}

.distributor-teaser-card a {
  border-bottom: none;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .copy h3,
.distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .copy div { 
  color: var(--color-black);
  font-family: GilroySemiBold;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: var(--color-transparent);
  text-underline-position: under;
  text-decoration-thickness: 2px;
  transition: text-decoration-color var(--transition-speed) var(--transition-ease);
  margin-bottom: 10px;
}

.distributor-teaser-card .content-wrapper .card-wrapper:hover > .text-wrapper .copy h3,
.distributor-teaser-card .content-wrapper .card-wrapper:hover > .text-wrapper .copy div {
  text-decoration-color: var(--color-yellow);
}

.distributor-teaser-card .content-wrapper .card-wrapper:hover {
  border-left: 6px solid var(--color-yellow);
}

/* News Startseiten Vorschau */
.latest-news {
    margin-top: 160px;
    background-color: var(--color-white);
}

.latest-news .latest-news-content .latest-news-top {
    height: 620px;
    background: url(../img/yellow_shape_desktop.svg) left bottom no-repeat;
    background-size: auto;
    background-size: cover, contain;
    padding-left: 115px;
    margin-bottom: 80px;
}

.latest-news .latest-news-content .latest-news-top {
    height: 620px;
    background: url(../img/yellow_shape_desktop.svg) left bottom no-repeat;
    background-size: cover, contain;
    padding-left: 115px;
    margin-bottom: 80px;
}

.latest-news .latest-news-content .latest-news-top .top {
    padding-top: 80px;
    padding-bottom: 80px;
}

.latest-news .latest-news-content .latest-news-top .top .latest-news-headline {
    background: none;
}

.latest-news .latest-news-content .latest-news-top .bottom {
    display: flex;
    flex-direction: row;
}

.latest-news .latest-news-content .latest-news-top .bottom .img-copyright {
    max-width: 748px;
    flex-grow: 1;
    position: relative;
}

.latest-news .latest-news-content .latest-news-top .bottom .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--color-yellow);
}

.view-aktuelle-news .attachment-before .view-aktuelle-news .view-header .top {
    padding-top: 80px;
    padding-bottom: 80px;
}

.view-aktuelle-news .attachment-before .view-aktuelle-news .view-header .top .latest-news-headline {
    background: none;
}

.latest-news-bottom a {
    border-bottom:none;
}

.topnews-big-wrapper {
    display: flex;
    flex-direction: row;
}

.topnews-big-wrapper .field--name-field-header-bild {
    max-width: 748px;
    flex-grow: 1;
    position: relative;
}

.topnews-big-wrapper .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.topnews-big-wrapper .button-wrapper a {
    border-bottom:none;
}

.view-aktuelle-news .slick-slider .slick-list .slick-track {
  height: 460px;
}

.slick-track {
    margin-bottom: 2em;
}

.view-aktuelle-news .slick-slide > div,
.view-aktuelle-news .slick-slide .slick-slider {
  height: 100%;
}

.button-head-subhead-text-arrows {
    background: none;
    max-width: 286px;
}

a.button-wrapper-link {
    border-bottom:none;
}

.button-head-subhead-text-arrows .sub-head {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: currentcolor;
    text-decoration-thickness: auto;
    text-decoration-color: var(--color-transparent);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    margin-bottom: 14px;
}

.button-head-subhead-text-arrows:hover > .sub-head, .button-head-subhead-text-arrows:focus > .sub-head {
    color: var(--color-black);
    text-decoration-color: var(--color-blue);
}

.button-head-subhead-text-arrows .sub-headline {
    margin-bottom: 10px;
}

.button-head-subhead-text-arrows .copy {
    position: relative;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
}

.button-head-subhead-text-arrows .copy::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    left: 270px;
    bottom: -20px;
}


.view-aktuelle-news .view-footer {
    padding-left: 115px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.view-aktuelle-news .distributor-teaser-card-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 0px;
    padding-right: 50px;
}

.view-aktuelle-news .news-preview.distributor-teaser-card {
    width: 100%;
    height: 100%;
    padding-right: 50px;
}

/* Copyright Icon */
.copyright-info {
  position: absolute;
  left: 4px;
  margin-top: -22px;
  z-index: 20;
  max-width: 375px;
  width: 30px;
}

.copyright-info-inner {
  color:transparent;
}

.copyright-info:hover,
.copyright-info:active,
.copyright-info:focus {
  width: 100%;
  animation-name: copyright;
  animation-duration: 0.5s;
}

@keyframes copyright {
  0%   {
    width: 30px;}
  100% {
    width:100%;
    border-radius:0px;}
}

.copyright-info:hover .copyright-info-inner,
.copyright-info:active .copyright-info-inner,
.copyright-info:focus .copyright-info-inner {
  animation-name: copyrightcolor;
  animation-duration: 0.5s;
}

@keyframes copyrightcolor {
  0%   {
    color: transparent;
    border-radius:40px;
    background-color: var(--color-white);}
  100% {
    color: var(--color-white);
    border-radius:0px;
    background-color: #1E1E1E;}
}

.copyright-info::after {
    content: url(../img/icons/copyright.svg);
    float:left;
    margin-right:6px;
    height: 18px;
    width: 18px;
    left: 10px;
    bottom: 10px;
    cursor: pointer;
}

.copyright-info .copyright-info-inner {
    display: none;
}

.copyright-info:hover .copyright-info-inner,
.copyright-info:active .copyright-info-inner,
.copyright-info:focus .copyright-info-inner {
    display: block;
    height: 72px;
    max-width: 375px;
    width: calc(100% - 32px);
    white-space: nowrap;
    background-color: #1E1E1E;
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    position: absolute;
    z-index: 10;
    padding: 8px 10px 10px 35px;
    color: var(--color-white);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 20px;
    text-transform: uppercase;
    left: 0px;
    top: 0px;
    transition: opacity var(--transition-speed) var(--transition-ease);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
    margin-left: -4px;
    margin-top: -7px;
}


/* Paragraphs */
/* Zitat */
.cr_cite_block {
    margin-bottom: 2em;
    margin-top: 2em;
    position: relative;
}

.cr_quote {
    font-weight: bolder;
    font-size: 1.125rem;
    padding-left: 4em;
    padding-right: 4em;
    margin: 0 0 1rem;
}

.cr_quote::before {
    background-color: initial;
    color: var(--color-yellow);
    content: '"';
    font-size: 10em;
    left: 0;
    position: absolute;
    bottom:0;
    line-height: 24px;
}

.cr_quote::after {
    background-color: initial;
    color: var(--color-yellow);
    content: '"';
    font-size: 10em;
    right: 0;
    position: absolute;
    top:0.3em;
    line-height: 24px;
}

.cr_cite {
    font-style: italic;
    position: relative;
    padding-left: 4em;
    display: block;
}

/* Auflistung */
.our-service-list {
    /**i#9 margin-top: 160px; **/
    margin-top: 120px;
    background: none;
    /**i#9 padding: 0px 0px 80px 176px;**/
    padding: 0px 0px 0px 176px;
}

.our-service-list h2.our-service-list-headline {
    margin-bottom: 40px;
}

.our-service-list .our-service-list-list {
    background: none;
}

.our-service-list .our-service-list-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-darker-grey);
}

.our-service-list .our-service-list-list ul li {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 10px;
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 28px;
    position: relative;
    border-bottom: 1px solid var(--color-darker-grey);
}

.our-service-list .our-service-list-list ul li::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: var(--color-blue);
    border-radius: 50%;
    left: 0px;
    top: 51px;
}

/* icon_kacheln_3_spalten */
/* content-container */
.content-container {
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    position: relative;
    transform: translate3d(0,0,0);/*menu hack*/
    clip-path: inset(0 0 0 0);
}

.content-container .content-wrapper.left60.right60 {
    margin-left: 60px;
    margin-right: 60px;
}

.content-container .content-wrapper.left60 {
    margin-left: 60px;
}

.content-container .content-wrapper.right60 {
    margin-right: 60px;
}

/* urban-portals */
.urban-portals {
    margin-top: 160px;
    background: none;
    display: flex;
    flex-direction: row;
}

.urban-portals .urban-portals-left {
    max-width: 336px;
    width: 100%;
}

.urban-portals .urban-portals-left .urban-portals-headline {
    margin-bottom: 40px;
}

.urban-portals .urban-portals-right {
    width: 100%;
}

/* button-card-icon */
.button-card-icon {
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-blue);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 20px;
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: border-left var(--transition-speed) var(--transition-ease);
    margin-top: 30px;
}

.button-card-icon:hover {
    border-left: 6px solid var(--color-yellow);
}

.button-card-icon img {
    display: block;
    width: 51px;
    height: auto;
}

.button-card-icon .button-card-text {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-card-icon:hover > .button-card-text {
    text-decoration-color: var(--color-yellow);
}

/* quickly-clicked - 4 spalten */
.quickly-clicked {
    margin-top: 160px;
    background: none;
}

.quickly-clicked .quickly-clicked-headline {
    margin-bottom: 10px;
}

/* further-topics */
.further-topics {
    /**i#9 margin-top: 160px; **/
    margin-top: 120px;
    background-color: var(--color-white);
}

.further-topics-top {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.further-topics .further-topics-top .further-topics-headline {
    margin-bottom: 0px;
}

.further-topics .further-topics-center {
    height: 700px;
}

.further-topics .further-topics-center .slick-list,
.further-topics .further-topics-center .slick-track,
.further-topics .further-topics-center .slick-track .slick-slide,
.further-topics .further-topics-center .slick-track .slick-slide > div,
.further-topics .further-topics-center .slide-item {
    height: 100%;
}

.further-topics .further-topics-center .further-topics-card {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper {
    position: relative;
    height: 100%;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper {
    position: absolute;
    bottom: 50px;
    right: 0px;
    width: 344px;
    height: 202px;
    padding-left: 30px;
    padding-top: 32px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-blue);
    transition: border-left var(--transition-speed) var(--transition-ease);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper:hover {
    border-left: 6px solid var(--color-yellow);
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper .text-wrapper {
    background: none;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper .text-wrapper .head {
    margin-bottom: 10px;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper .text-wrapper .copy {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper:hover > .text-wrapper .copy {
    text-decoration-color: var(--color-yellow);
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper .icon-wrapper {
    display: flex;
    justify-content: end;
}

.further-topics .further-topics-center .further-topics-card .content-wrapper .card-wrapper .icon-wrapper .icon {
    background: url(../img/icons/chevron-chevron_right.svg) left / cover no-repeat;
    width: 16.49px;
    height: 16px;
}

.further-topics .further-topics-bottom {
    height: 188px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

/* institutionen // municipal-family */
.municipal-family {
    margin-top: 160px;
    background-color: var(--color-white);
    padding-bottom: 80px;
}

.municipal-family .municipal-family-content {
    background: none;
}

.municipal-family .municipal-family-content .municipal-family-top {
    background: url(../img/yellow_shape_desktop_2.svg) right top no-repeat;
    background-size: contain, contain;
    padding-left: 115px;
}


.municipal-family .municipal-family-content .municipal-family-top .top {
    padding-top: 80px;
    padding-bottom: 80px;
}

.municipal-family .municipal-family-content .municipal-family-top .copyright-info {
    left:unset;
    margin-left: 4px;
}

.municipal-family .municipal-family-content .municipal-family-top .top .municipal-family-headline {
    background: none;
}

.municipal-family .municipal-family-content .municipal-family-top .bottom {
    padding-right: 176px;
}

.municipal-family .municipal-family-content .municipal-family-top .bottom .content-flip-wrapper {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 1;
}

.municipal-family .municipal-family-content .municipal-family-top .bottom .content-flip-wrapper .content-flip {
    border-left: 6px solid var(--color-yellow);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--color-white);
    width: 800px;
    margin-top: -125px;
}

.municipal-family .municipal-family-content .municipal-family-top .bottom .content-flip-wrapper .content-flip .content-flip-top {
    margin-bottom: 90px;
    padding-left: 115px;
    padding-right: 115px;
}

.municipal-family .municipal-family-content .municipal-family-top .bottom .content-flip-wrapper .content-flip .content-flip-bottom .row > div {
    padding-right: 80px;
}

/* Ansicht ohne Javascript */
.content-flip-top {
    display:none;
}

/* institution - button-switch */
.button-switch {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 50px;
}

.button-switch .button {
    position: relative;
    width: inherit;
    height: inherit;
}

.button-switch .button .label {
    position: absolute;
    top: 0;
    width: 50%;
    height: inherit;
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color var(--transition-speed) var(--transition-ease);
    pointer-events: none;
}

.button-switch .button .label.left {
    left: 0px;
    color: var(--color-black);
}

.button-switch .button .label.right {
    right: 0px;
    color: var(--color-dark-grey);
}

.button-switch .button input {
    opacity: 0;
    width: 0;
    height: 0;
}

.button-switch .button .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    background-color: var(--color-white);
    box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.2);
}

.button-switch .button .slider::before {
    content: '';
    position: absolute;
    height: 46px;
    width: 50%;
    border: 2px solid var(--color-blue);
    border-radius: 32px;
    left: 2px;
    bottom: 2px;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.button-switch .button input:checked + .slider::before {
    transform: translateX(calc(100% - 4px));
}

.button-switch .button input:checked ~ .label.right {
    color: var(--color-black);
}

.button-switch .button input:checked ~ .label.left {
    color: var(--color-dark-grey);
}

/* institution button-municipal-family */
.button-municipal-family {
    background: none;
    margin-bottom: 30px;
    width: calc(100% - 17px);
    position: relative;
}

.button-municipal-family .copy {
    width: inherit;
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.button-municipal-family:visited > .copy , .button-municipal-family:active > .copy {
    color: var(--color-black);
}

.button-municipal-family:hover > .copy, .button-municipal-family:focus > .copy {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-municipal-family.arrows::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    right: 0px;
    top: 3px;
    cursor: pointer;
}

/* Slick Slider */
.slick-slider-controls {
    width: 100%;
    height: 100%;
    max-height: 188px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}

.slick-slider-controls .slick-prev,
.slick-lightbox .slick-prev {
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    -webkit-mask: url(../img/icons/arrow-left_on.svg) no-repeat center;
    mask: url(../img/icons/arrow-left_on.svg) no-repeat center;
    width: 100px;
    height: 100px;
    cursor: pointer;
    font-size: 0;
}

.slick-slider-controls .slick-prev:hover,
.slick-lightbox .slick-prev:hover {
    background-color: var(--color-yellow);
}

.slick-slider-controls .slick-next,
.slick-lightbox .slick-next {
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
    -webkit-mask: url(../img/icons/arrow-right_on.svg) no-repeat center;
    mask: url(../img/icons/arrow-right_on.svg) no-repeat center;

    width: 100px;
    height: 100px;
    cursor: pointer;
    font-size: 0;
    order:3;
}

.slick-slider-controls .slick-next:hover,
.slick-lightbox .slick-next:hover {
    background-color: var(--color-yellow);
}

.slick-lightbox .slick-next {
    position:absolute;
    right:15px;
}

.slick-lightbox .slick-next,
.slick-lightbox .slick-prev {
    width: 50px;
    height: 50px;
}

.slick-lightbox-control {
    position:absolute;
    bottom:0;
    background-color:rgba(255,255,255,0.8);
    width:100%;
    z-index:5;
}

.slick-slider-controls .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0px;
    margin-left:0;
    margin-bottom:0;
    padding-left:0;
    order:2;
}

.slick-slider-controls .slick-dots li {
    width: 52px;
    height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-slider-controls .slick-dots li button {
    font-size:0;
    width: 100%;
    border: 0;
    height: 4px;
    background-color: var(--color-darker-grey);
    transition: background-color var(--transition-speed) var(--transition-ease);
}

.slick-slider-controls .slick-dots li.slick-active button {
    background-color: var(--color-blue);
}

.slick-slider-controls .slick-dots li:hover button {
    background-color: var(--color-yellow);
}

.slick-slider .slick-list {
    overflow-y: hidden;
    width: 100%;
}

/* Bilderstrecke Paragraphs */
.monuments-gallery {
    /** i#9 margin-top: 160px; **/
    margin-top: 120px;
    background-color: var(--color-white);
} 

.monuments-gallery .monuments-gallery-top {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.monuments-gallery .monuments-gallery-top .monuments-gallery-headline {
    margin-bottom: 0px;
}

.monuments-gallery .monuments-gallery-center {
    height: 600px;
}

.monuments-gallery .field--name-field-bilderstrecke-bilder-ref .slick-list {
    height:100% !important;
}

.monuments-gallery .monuments-gallery-center .monuments-gallery-card {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

.monuments-gallery .monuments-gallery-center .monuments-gallery-card .content-wrapper .image-wrapper {
    width: 100%;
}

.monuments-gallery .monuments-gallery-center .monuments-gallery-card .content-wrapper .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.monuments-gallery .monuments-gallery-center .monuments-gallery-card .content-wrapper .text {
    color: var(--color-black);
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 20px;
    margin-top: 10px;
}

.monuments-gallery .monuments-gallery-bottom {
    height: 188px;
    position: relative;
    z-index: 1;
}

.monuments-gallery .image-wrapper {
    position: relative;
}

/* Paragarph Tabelle Info */

.info-list {
    /**i#9 margin-top: 160px; **/
    margin-top: 120px;
    padding: 0px 128px 0px 46px;
    background: none;
}

.info-list .info-list-content {
    border-top: 1px solid var(--color-darker-grey);
    border-bottom: 1px solid var(--color-darker-grey);
}

.info-list .info-list-content .info-list-top {
    padding-top: 40px;
    padding-bottom: 40px;
}

.info-list .info-list-content .info-list-top .info-list-headline {
    margin-bottom: 6px;
}

.info-list .info-list-content .info-list-bottom .info-list-entry {
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 28px;
    width: 100%;
    border-top: 1px solid var(--color-darker-grey);
}

.info-list .info-list-content .info-list-bottom .info-list-entry.padding-top-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.info-list .info-list-content .info-list-bottom .info-list-entry.padding-top-bottom.hide-top-line {
    border-top: none;
    padding-top: 0px;
    margin-top: -30px;
}

.info-list .info-list-content .info-list-bottom .info-list-entry .row {
    margin-bottom: 8px;
}

.info-list .info-list-content .info-list-bottom .info-list-entry .row > div:first-child {
    font-weight: 600;
}

.info-list .info-list-content .info-list-bottom .info-list-entry .row > div:nth-child(3) {
    text-align: right;
}

/* Kontakt Tabelle */
.contact-list {
    /**i#9 margin-top: 160px; **/
    margin-top: 120px;
    padding: 0px 128px 80px 40px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-yellow);
}

.contact-list .contact-list-headline {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-list .contact-list-content {
    border-top: 1px solid var(--color-darker-grey);
}

.contact-list .contact-list-content .contact-list-entry {
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 28px;
    width: 100%;
}

.contact-list .contact-list-content .contact-list-entry.border-bottom {
    border-bottom: 1px solid var(--color-darker-grey);
}

.contact-list .contact-list-content .contact-list-entry.padding-top-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact-list .contact-list-content .contact-list-entry .row {
    margin-bottom: 8px;
}

.contact-list .contact-list-content .contact-list-entry .row > div:first-child {
    font-weight: 600;
}

.contact-list .contact-list-content .contact-list-entry .row > div:nth-child(5) {
    text-align: right;
}

.contact-list .contact-list-content .contact-list-entry .row table {
    table-layout: fixed;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.contact-list .contact-list-content .contact-list-entry .row table tr td {
    vertical-align: top;
}

.contact-list .contact-list-content .contact-list-entry .row table td:first-child {
    width: 90px;
}

.contact-list .contact-list-content .accordion .accordion-item button .contact-list-entry .row {
    margin-bottom: 0px;
}

.contact-list .contact-list-content .accordion .accordion-item button .contact-list-entry .row > div:nth-child(2) {
    padding-left: 18px;
}

/* Par Akkordeon Element */
.accordion {
    --bs-accordion-border-color: var(--color-transparent);
    --bs-accordion-border-width: 0px;
    --bs-accordion-border-radius: 0px;
    --bs-accordion-btn-icon: none;
    border-top: 1px solid var(--color-darker-grey);
    border-bottom: 1px solid var(--color-darker-grey);
}

.accordion .accordion-item {
    border-bottom: 1px solid var(--color-darker-grey);
}

.accordion .accordion-item button {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    padding: 30px 0px 30px 0px;
    position: relative;
}

.accordion .accordion-item button::after {
    content: url(../img/icons/arrow-down_on.svg);
    transform: rotate(180deg);
    width: 17px;
    height: 9px;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.accordion .accordion-item button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(0deg);
}

.accordion .accordion-item button:focus {
    outline: 0;
    border: none;
    box-shadow: none;
}

.accordion .accordion-item .accordion-body {
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    padding: 0px 0px 50px 0px;
}

.accordion .accordion-item .accordion-body p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    padding-right: 30px;
}

/* z.B. Zustandsbild Sportanlagen im Akkordeon */
.accordion-header img {
    padding-left: 0.6em;
}

.contact-list-entry .accordion {
    border-top: none;
    border-bottom: none;
/*    margin-top: -30px;*/
    padding-bottom: -30px;
}

/* Akkordeon List */
.accordion-list {
    /**i#9 margin-top: 80px; **/
    margin-top: 120px;
    padding: 0px 0px 0px 176px;
}

.accordion-list .accordion-list-content {
    padding: 80px 60px 80px 60px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-yellow);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
}

.accordion-list .accordion-list-content .accordion-list-headline {
    margin-bottom: 80px;
}

.accordion-list .accordion-list-content .accordion .accordion-item .accordion-body .sub-headline {
    margin-top: 40px;
    margin-bottom: 30px;
}

.accordion-list .accordion-list-content .accordion .accordion-item .accordion-body .button-text-description-download {
    margin-bottom: 40px;
}

/* PDF Button */
.button-text-description-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.button-text-description-download .left {
    font-family: GilroySemiBold;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--color-blue);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
}

.button-text-description-download:visited > .left , .button-text-description-download:active > .left {
    color: var(--color-black);
}

.button-text-description-download:hover > .left, .button-text-description-download:focus > .left {
    color: var(--color-black);
    text-decoration-color: var(--color-yellow);
}

.button-text-description-download .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.button-text-description-download .right .description {
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    color: var(--color-dark-grey);
    text-transform: uppercase;
}

.button-text-description-download .right .icon img {
    display: block;
}

/* Par Auch Interessant */
.also-interesting {
    /**i#9 margin-top: 160px;**/
    margin-top: 120px;
}

.also-interesting .also-interesting-content {
    padding-left: 115px;
    background-color: var(--color-white);
}

.also-interesting .also-interesting-content .also-interesting-top .also-interesting-headline {
    padding-top: 80px;
    padding-bottom: 80px;
}

.also-interesting .also-interesting-content .also-interesting-center {
    background: none;
    padding-bottom: 80px;
}

.also-interesting .slick-slide > div,
.also-interesting .slick-slide .slick-slider,
.also-interesting .slick-slide .slick-wrapper-element,
.also-interesting .slick-list .slick-track,
.also-interesting .slick-list  {
    height: 100%;
}

.also-interesting .slick-slider .slick-list .slick-track {
    margin-top: 0px;
}

.also-interesting .also-interesting-content .also-interesting-center .slick-slider {
    height: 460px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 0px;
    padding-right: 50px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper {
    position: relative;
    height: 100%;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
    padding-right: 50px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper {
    position: absolute;
    bottom: 25px;
    right: 50px;
    width: 251px;
    height: 286px;
    padding-left: 30px;
    padding-top: 32px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-blue);
    transition: border-left var(--transition-speed) var(--transition-ease);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper:hover {
    border-left: 6px solid var(--color-yellow);
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    right: 30px;
    bottom: 30px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper .text-wrapper {
    background: none;
    position: relative;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper .text-wrapper .head {
    margin-bottom: 10px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper .text-wrapper .copy {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    /* text-underline-offset: 6px; */
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    margin-bottom: 10px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper:hover > .text-wrapper .copy {
    text-decoration-color: var(--color-yellow);
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-card .content-wrapper .card-wrapper .text-wrapper .text {
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-center-slider-controls-wrapper {
    position: relative;
    z-index: 1;

}

.also-interesting .also-interesting-content .also-interesting-center .also-interesting-center-slider-controls-wrapper .slick-slider-controls {
    max-height: 100px;
}

.also-interesting .distributor-teaser-card-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 0px;
    padding-right: 50px;
}
/*
.also-interesting .slick-slider .slick-list .slick-track {
    margin-top: 160px;
}
*/

/* Menu js */
.fadeout {
    position: absolute;
    right: -495px;
}

.textblock {
    /** i#9 margin-top: 160px; **/
    margin-top: 120px;
    background: none;
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    padding: 0px 290px 0px 290px;
}

.textblock .textblock-headline {
    margin-bottom: 40px;
}

.textblock .sub-headline {
    margin-top: 40px;
    margin-bottom: 30px;
}

.textblock .button-text-description-download {
    padding-top: 20px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--color-darker-grey);
}


@media only screen and (max-width: 1200px) {
    .textblock {
        padding: 0px 242px 0px 242px;
    }
}

@media only screen and (max-width: 992px) {
    .textblock {
        margin-top: 80px;
        padding: 0px 115px 0px 115px;
    }
}

@media only screen and (max-width: 576px) {
    .textblock {
        padding: 0px 48px 0px 48px;
        font-size: 1rem;
    }
}


/* Mobile Menü */
.navbar-nav.nav-level-0 {
    position: relative;
    width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.mmenu-wrapper {
  position:relative;
  overflow: hidden;
}

.mmenulevel2,
.mmenulevel3,
.mmenulevel4 {
  position: absolute !important;
  left: calc( 100% + 60px );
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
  transition: 0.25s ease-in-out;
  margin: 0;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.mmenulevel2.active,
.mmenulevel3.active,
.mmenulevel4.active {
    left:0%;
    transition: 0.25s ease-in-out;
}

.mmenulevel3 .mm-back-btn,
.mmenulevel4 .mm-back-btn {
  margin-left:auto;
  margin-right:auto;
  left: 50%;
  transform: translate(-50%,0%);
}

.menu-content .nav-level-1 .button-menu-select.dropdown.mmenulevel3,
.menu-content .nav-level-1 .button-menu-select.dropdown.mmenulevel4 {
  text-align:center;
  height: 100vH;
}

.menu-content .nav-level-1 .button-menu-select.dropdown.mmenulevel3 ul,
.menu-content .nav-level-1 .button-menu-select.dropdown.mmenulevel4 ul {
  text-align:left;
}

.wide, .sitemap {
	padding: 0px 80px 0px 176px!important;	
}

.textedit-img-left,
.textedit-img-right,
.textedit-img-center {
    position:relative;
}

/* Bilder volle Breite */
.cr_img-box-100 {
    max-width:100%;
    padding-top:10px;
    padding-bottom:10px;
    display:block;

}

/* Bilder halbe Breite */
.cr_img-box-right-50 {
    float: right!important;
    width:50%;
    padding-left:10px;
    padding-bottom:10px;
}

.cr_img-box-left-50 {
    float: left!important;
    width:50%;
    padding-right:10px;
    padding-bottom:10px;
}

.cr_img-box-right-50 .copyright-info {
    margin-left:10px;
}

/* Content Switch Button Einfache Sprache */
.btn.einfache-sprache {
    display: inline-block;
    font-family: GilroySemiBold;
    color: var(--color-black);
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--color-black);
    border-radius: 31.5px;
    border: 2px solid var(--color-blue);
    background-color: var(--color-light-grey);
    padding: 15px 46px;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
}

.btn.einfache-sprache:hover,
.btn.einfache-sprache.active {
    background-color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
}

.btn.einfache-sprache.active:hover {
    border: 2px solid var(--color-blue);
    background-color: var(--color-light-grey);
    border-color: var(--color-blue)!important;
}

.btn.einfache-sprache:before {
    content: ' ';
    display: block;
    float: left;
    margin-top: -4px;
    margin-right: 10px;
    background-color: var(--color-blue);
    transition: background-color var(--transition-speed) var(--transition-ease);
}

.field--name-dynamic-block-fieldnode-einfache-sprache-button,
.field--name-dynamic-twig-fieldnode-urspruengliche-seite-button {
    position: relative;
    /*right:60px;*/
    top: 30px;
    z-index:4000;
    text-align: center;
}

.field--name-dynamic-block-fieldnode-einfache-sprache-button .view-content {
    margin-bottom:0;
    padding-bottom: 0;
}

.menu-bg.open {
    background-color: rgba(255,255,255,0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

/* par-videos */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    margin-top: 2em;
    margin-bottom: 2em;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe.geoportal {
    width: 100%; 
    height: 75em;
     border: lightgrey solid 1px;
}
/*
distributor-teaser-list start
*/
.distributor-teaser-list {
    margin-top: 160px;
    background: none;
    padding: 0;
    padding-left: 115px;
}

.distributor-teaser-list .distributor-teaser-list-top {
    background: none;
}

.distributor-teaser-list .distributor-teaser-list-top .row {
    --bs-gutter-x: 10rem;
    --bs-gutter-y: 5rem;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper {
    background: none;
    height: 440px;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 0px;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper {
    position: relative;
    height: 100%;	
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper {
    position: absolute;
    bottom: 22px;
    right: 0px;
    width: 251px;
    height: 286px;
    padding-left: 30px;
    padding-top: 32px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 6px solid var(--color-blue);
    transition: border-left var(--transition-speed) var(--transition-ease);
    box-shadow: 0 0 var(--box-shadow-spread) 0 var(--box-shadow-rgba-15);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper:hover {
    border-left: 6px solid var(--color-yellow);
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper::after {
    content: url(../img/icons/chevron-chevron_right.svg);
    position: absolute;
    width: 16.49px;
    height: 16px;
    right: 30px;
    bottom: 30px;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper {
    background: none;
    position: relative;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .head {
    margin-bottom: 10px;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .copy {
    color: var(--color-black);
    font-family: GilroySemiBold;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-color: var(--color-transparent);
    text-underline-position: under;
    text-decoration-thickness: 2px;
    transition: text-decoration-color var(--transition-speed) var(--transition-ease);
    margin-bottom: 10px;
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper:hover > .text-wrapper .copy {
    text-decoration-color: var(--color-yellow);
}

.distributor-teaser-list .distributor-teaser-list-top .row .distributor-teaser-card-wrapper .distributor-teaser-card .content-wrapper .card-wrapper .text-wrapper .text {
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
}

.distributor-teaser-list .distributor-teaser-list-bottom {
    padding-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.distributor-teaser-list .distributor-teaser-list-bottom .button-rounded-corners {
    background-color: var(--color-white);
    padding: 15px 100px;
}

.distributor-teaser-list .distributor-teaser-list-bottom .button-rounded-corners:hover {
    background-color: var(--color-yellow);
}

/*
distributor-teaser-list end
*/


/* Sportanlagen */
.view-sportanlagen .copyright-info {
    display: none;
}

/*
search-result-list start
*/
.search-result-list {
  background-color: var(--color-white);
  padding: 0px 176px 0px 176px;
}

.search-result-list .search-result-list-top {
  box-shadow: 0px 1px 0px var(--color-darker-grey);
  padding-bottom: 24px;
}

.search-result-list .search-result-list-top .head {
  margin-bottom: 35px;
}

.search-result-list .search-result-list-top .button-search-filter-select-wrapper {
  display: block;
}

.search-result-list .search-result-list-top .dropdown-search-filter-select-wrapper {
  display: none;
}

.search-result-list .search-result-list-center {
  background: none;
}

.search-result-list .search-result-list-bottom {
  padding-top: 76px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.search-result-list .search-result-list-bottom .button-rounded-corners {
  padding: 15px 100px;
}

/*
search-result-list end
*/

/*
button-search-filter-select start
*/
.button-search-filter-select {
  display: inline-block;
  font-family: GilroySemiBold;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-blue);
  border-radius: 23px;
  border: 2px solid var(--color-blue);
  transition: all var(--transition-speed) var(--transition-ease);
  transition-property: color, border;
  background-color: var(--color-white);
  padding: 9px 29px;
  margin-right: 16px;
  margin-bottom: 16px;
  cursor: pointer;
}

.button-search-filter-select.active {
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
}

.button-search-filter-select:hover {
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
}
/*
button-search-filter-select end
*/

/*
button-search-result-list start
*/
.button-search-result-list {
  width: 100%;
  position: relative;
  box-shadow: 0px 1px 0px var(--color-darker-grey);
  transition: box-shadow var(--transition-speed) var(--transition-ease);
  margin-top: 40px;
  padding-bottom: 20px;
}

.button-search-result-list:hover {
  box-shadow: 0px 2px 0px var(--color-yellow);
}

.button-search-result-list::after {
  content: url(../img/icons/chevron-chevron_right.svg);
  position: absolute;
  width: 16.49px;
  height: 16px;
  right: 0px;
  bottom: 26px;
  cursor: pointer;
}

.button-search-result-list .content {
  width: calc(100% - 50px);
}

.button-search-result-list .content .head {
  margin-bottom: 10px;
}

.button-search-result-list .content .copy {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 24px;
  margin-bottom: 16px;
}

.button-search-result-list .content .text {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
}

/*
button-search-result-list end
*/

/*
button-text start
*/
.button-text {
  color: var(--color-white);
  transition: color var(--transition-speed) var(--transition-ease);
}

.button-text:visited, .button-text:active {
  color: var(--color-white);
}

.button-text:hover, .button-text:focus {
  color: var(--color-yellow);
}
/*
button-text end
*/

/* Veranstaltungen aus destination.one */
.text-wrapper .sub-headline {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;}
  
  .cr_vk_description, .cr_vk_titel {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
  }

/* */

.video-container {
    height: 100%;
    aspect-ratio: 16 / 9;
    width: 100%;
    }

.paragraph--type--video {
    padding: 0px 290px 0px 290px;
    }

h2 {
    font-family: GilroySemiBold;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 29px;
    margin-top: 20px;
    color: var(--color-blue);
}


.form-radio {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    border-top-color: rgba(0, 0, 0, 0.25);
    border-right-color: rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(0, 0, 0, 0.25);
    border-left-color: rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.form-radio:checked {
    background-color: var(--color-blue);
    border-color: var(--color-light-grey);
    background-color: var(--color-blue);
    border-color: var(--color-light-grey);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"] {
    float: left;
    width: 2em;
    margin-right: 1em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
  }

  .form-check-input[type="checkbox"]:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }

  
/*Position : Image mit Keks, mobile Ansicht andere Werte s.u. */
.klaro .cookie-notice::before  {	
	content:url(/sites/default/files/styles/thumbnail/public/2024-03/keks.png);
    position: absolute;
    top: -90px;
    right: 20px;
    max-width: 200px;
    height:100px;
}

.klaro {
    font-family: inherit;
    font-family: var(--font-family, inherit);
    font-size: 14px;
    font-size: var(--font-size, 14px)
}

.klaro button {
    font-family: inherit;
    font-family: var(--font-family, inherit);
    font-size: 14px;
    font-size: var(--font-size, 14px)
}

.klaro.cm-as-context-notice {
    height: 100%;
    padding-bottom: 12px;
    padding-top: 12px
}

.klaro .cookie-modal .cm-switch-container,.klaro .context-notice .cm-switch-container,.klaro .cookie-notice .cm-switch-container {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8);
    display: block;
    position: relative;
    padding: 10px;
    padding-left: 66px;
    line-height: 20px;
    vertical-align: middle;
    min-height: 40px
}

.klaro .cookie-modal .cm-switch-container:last-child,.klaro .context-notice .cm-switch-container:last-child,.klaro .cookie-notice .cm-switch-container:last-child {
    border-bottom: 0
}

.klaro .cookie-modal .cm-switch-container:first-child,.klaro .context-notice .cm-switch-container:first-child,.klaro .cookie-notice .cm-switch-container:first-child {
    margin-top: 0
}

.klaro .cookie-modal .cm-switch-container p,.klaro .context-notice .cm-switch-container p,.klaro .cookie-notice .cm-switch-container p {
    margin-top: 0
}

.klaro .cookie-modal .cm-switch,.klaro .context-notice .cm-switch,.klaro .cookie-notice .cm-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px
}

.klaro .cookie-modal .cm-list-input:checked+.cm-list-label .slider,.klaro .context-notice .cm-list-input:checked+.cm-list-label .slider,.klaro .cookie-notice .cm-list-input:checked+.cm-list-label .slider {
    background-color: #1a936f;
    background-color: var(--color-yellow);
}

.klaro .cookie-modal .cm-list-input.half-checked:checked+.cm-list-label .slider,.klaro .context-notice .cm-list-input.half-checked:checked+.cm-list-label .slider,.klaro .cookie-notice .cm-list-input.half-checked:checked+.cm-list-label .slider {
    background-color: #1a936f;
    background-color: var(--color-yellow);
    opacity: 0.6
}

.klaro .cookie-modal .cm-list-input.half-checked:checked+.cm-list-label .slider::before,.klaro .context-notice .cm-list-input.half-checked:checked+.cm-list-label .slider::before,.klaro .cookie-notice .cm-list-input.half-checked:checked+.cm-list-label .slider::before {
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.klaro .cookie-modal .cm-list-input.only-required+.cm-list-label .slider,.klaro .context-notice .cm-list-input.only-required+.cm-list-label .slider,.klaro .cookie-notice .cm-list-input.only-required+.cm-list-label .slider {
    background-color: #24cc9a;
    background-color: var(--color-yellow);
    opacity: 0.8
}

.klaro .cookie-modal .cm-list-input.only-required+.cm-list-label .slider::before,.klaro .context-notice .cm-list-input.only-required+.cm-list-label .slider::before,.klaro .cookie-notice .cm-list-input.only-required+.cm-list-label .slider::before {
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.klaro .cookie-modal .cm-list-input.required:checked+.cm-list-label .slider,.klaro .context-notice .cm-list-input.required:checked+.cm-list-label .slider,.klaro .cookie-notice .cm-list-input.required:checked+.cm-list-label .slider {
    background-color: #24cc9a;
    background-color: var(--color-yellow);
    opacity: 0.8;
    cursor: not-allowed
}

.klaro .cookie-modal .slider,.klaro .context-notice .slider,.klaro .cookie-notice .slider {
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19)
}

.klaro .cookie-modal .cm-list-input,.klaro .context-notice .cm-list-input,.klaro .cookie-notice .cm-list-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 50px;
    height: 30px
}

.klaro .cookie-modal .cm-list-title,.klaro .context-notice .cm-list-title,.klaro .cookie-notice .cm-list-title {
    font-size: 0.9em;
    font-weight: 600
}

.klaro .cookie-modal .cm-list-description,.klaro .context-notice .cm-list-description,.klaro .cookie-notice .cm-list-description {
    color: #7c7c7c;
    color: var(--color-light-grey);
    font-size: 0.9em;
    padding-top: 4px
}

.klaro .cookie-modal .cm-list-label .cm-switch,.klaro .context-notice .cm-list-label .cm-switch,.klaro .cookie-notice .cm-list-label .cm-switch {
    position: absolute;
    left: 0
}

.klaro .cookie-modal .cm-list-label .slider,.klaro .context-notice .cm-list-label .slider,.klaro .cookie-notice .cm-list-label .slider {
    background-color: #f2f2f2;
    background-color: var(--color-dark-grey);
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    width: 50px;
    display: inline-block
}

.klaro .cookie-modal .cm-list-label .slider::before,.klaro .context-notice .cm-list-label .slider::before,.klaro .cookie-notice .cm-list-label .slider::before {
    background-color: #e6e6e6;
    background-color: var(--white3, #e6e6e6);
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 5px;
    transition: 0.4s
}

.klaro .cookie-modal .cm-list-label .slider.round,.klaro .context-notice .cm-list-label .slider.round,.klaro .cookie-notice .cm-list-label .slider.round {
    border-radius: 30px
}

.klaro .cookie-modal .cm-list-label .slider.round::before,.klaro .context-notice .cm-list-label .slider.round::before,.klaro .cookie-notice .cm-list-label .slider.round::before {
    border-radius: 50%
}

.klaro .cookie-modal .cm-list-label input:focus+.slider,.klaro .context-notice .cm-list-label input:focus+.slider,.klaro .cookie-notice .cm-list-label input:focus+.slider {
    box-shadow-color: #48dfb2;
    box-shadow-color: var(--green3, #48dfb2);
    box-shadow: 0 0 1px var(color, green3)
}

.klaro .cookie-modal .cm-list-label input:checked+.slider::before,.klaro .context-notice .cm-list-label input:checked+.slider::before,.klaro .cookie-notice .cm-list-label input:checked+.slider::before {
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.klaro .cookie-modal .cm-list-input:focus+.cm-list-label .slider,.klaro .context-notice .cm-list-input:focus+.cm-list-label .slider,.klaro .cookie-notice .cm-list-input:focus+.cm-list-label .slider {
    box-shadow: 0 4px 6px 0 rgba(125,125,125,0.2),5px 5px 10px 0 rgba(125,125,125,0.19)
}

.klaro .cookie-modal .cm-list-input:checked+.cm-list-label .slider::before,.klaro .context-notice .cm-list-input:checked+.cm-list-label .slider::before,.klaro .cookie-notice .cm-list-input:checked+.cm-list-label .slider::before {
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.klaro .cookie-modal .slider,.klaro .context-notice .slider,.klaro .cookie-notice .slider {
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19)
}

.klaro .cookie-modal a,.klaro .context-notice a,.klaro .cookie-notice a {
    color: #1a936f;
    color: var(--color-yellow);
    text-decoration: none
}

.klaro .cookie-modal p,.klaro .cookie-modal strong,.klaro .cookie-modal h1,.klaro .cookie-modal h2,.klaro .cookie-modal ul,.klaro .cookie-modal li,.klaro .context-notice p,.klaro .context-notice strong,.klaro .context-notice h1,.klaro .context-notice h2,.klaro .context-notice ul,.klaro .context-notice li,.klaro .cookie-notice p,.klaro .cookie-notice strong,.klaro .cookie-notice h1,.klaro .cookie-notice h2,.klaro .cookie-notice ul,.klaro .cookie-notice li {
    color: #fafafa;
    color: var(--light1, #fafafa)
}

.klaro .cookie-modal p,.klaro .cookie-modal h1,.klaro .cookie-modal h2,.klaro .cookie-modal ul,.klaro .cookie-modal li,.klaro .context-notice p,.klaro .context-notice h1,.klaro .context-notice h2,.klaro .context-notice ul,.klaro .context-notice li,.klaro .cookie-notice p,.klaro .cookie-notice h1,.klaro .cookie-notice h2,.klaro .cookie-notice ul,.klaro .cookie-notice li {
    display: block;
    text-align: left;
    margin: 0;
    padding: 0;
    margin-top: 0.7em
}

.klaro .cookie-modal h1,.klaro .cookie-modal h2,.klaro .cookie-modal h3,.klaro .cookie-modal h4,.klaro .cookie-modal h5,.klaro .cookie-modal h6,.klaro .context-notice h1,.klaro .context-notice h2,.klaro .context-notice h3,.klaro .context-notice h4,.klaro .context-notice h5,.klaro .context-notice h6,.klaro .cookie-notice h1,.klaro .cookie-notice h2,.klaro .cookie-notice h3,.klaro .cookie-notice h4,.klaro .cookie-notice h5,.klaro .cookie-notice h6 {
    font-family: inherit;
    font-family: var(--title-font-family, inherit)
}

.klaro .cookie-modal .cm-link,.klaro .context-notice .cm-link,.klaro .cookie-notice .cm-link {
    margin-right: 0.5em;
    vertical-align: middle
}

.klaro .cookie-modal .cm-btn,.klaro .context-notice .cm-btn,.klaro .cookie-notice .cm-btn,
.cn-learn-more
 {
   
    font-family: GilroySemiBold;
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1rem;
    color: var(--color-blue)!important;
    border-radius: 31.5px;
    background-color: var(--color-white);
    padding: 15px 25px;
    margin: 5px 0;
    transition: background-color var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    border: 2px solid var(--color-blue);

}

.cn-decline {
	   background-color: var(--color-yellow)!important;
}


.klaro .cookie-modal .cm-btn,.klaro .context-notice .cm-btn,.klaro .cookie-notice .cm-btn:hoover {
    color: var(--color-white);
    background-color: var(--color-yellow);
    border-color: transparent!important;	
}

.klaro .cookie-modal .cm-btn:disabled,.klaro .context-notice .cm-btn:disabled,.klaro .cookie-notice .cm-btn:disabled {
    opacity: 0.5
}

.klaro .cookie-modal .cm-btn.cm-btn-close,.klaro .context-notice .cm-btn.cm-btn-close,.klaro .cookie-notice .cm-btn.cm-btn-close {
    background-color: #c8c8c8;
    background-color: var(--light2, #c8c8c8)
}

.klaro .cookie-modal .cm-btn.cm-btn-success,.klaro .context-notice .cm-btn.cm-btn-success,.klaro .cookie-notice .cm-btn.cm-btn-success {
    background-color: #1a936f;
    background-color: var(--color-yellow);
}

.klaro .cookie-modal .cm-btn.cm-btn-success-var,.klaro .context-notice .cm-btn.cm-btn-success-var,.klaro .cookie-notice .cm-btn.cm-btn-success-var {
    background-color: #24cc9a;
    background-color: var(--color-yellow);
}

.klaro .cookie-modal .cm-btn.cm-btn-info,.klaro .context-notice .cm-btn.cm-btn-info,.klaro .cookie-notice .cm-btn.cm-btn-info {
    background-color: #2581c4;
    background-color: var(--color-yellow);
}

.klaro .context-notice {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #c8c8c8;
    border-color: var(--light2, #c8c8c8);
    background-color: #fafafa;
    background-color: var(--light1, #fafafa);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 100%
}

.klaro .context-notice.cm-dark {
    background-color: #333;
    background-color: var(--dark1, #333);
    border-color: #5c5c5c;
    border-color: var(--dark2, #5c5c5c)
}

.klaro .context-notice.cm-dark p {
    color: #fafafa;
    color: var(--light1, #fafafa)
}

.klaro .context-notice.cm-dark p a {
    color: #459cdc;
    color: var(--blue2, #459cdc)
}

.klaro .context-notice p {
    color: #333;
    color: var(--dark1, #333);
    flex-grow: 0;
    text-align: center;
    padding-top: 0;
    margin-top: 0
}

.klaro .context-notice p a {
    color: #24cc9a;
    color: var(--color-yellow);
}

.klaro .context-notice p.cm-buttons {
    margin-top: 12px
}

.klaro .cookie-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: 1000
}

.klaro .cookie-modal.cm-embedded {
    position: relative;
    height: inherit;
    width: inherit;
    left: inherit;
    right: inherit;
    z-index: 0
}

.klaro .cookie-modal.cm-embedded .cm-modal.cm-klaro {
    position: relative;
    -ms-transform: none;
    transform: none
}

.klaro .cookie-modal .cm-bg {
    background: rgba(0,0,0,0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0
}

.klaro .cookie-modal .cm-modal.cm-klaro {
    background-color: #333;
    background-color: var(--color-blue);
    color: #fafafa;
    color: var(--light1, #fafafa);
    z-index: 1001;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19);
    width: 100%;
    max-height: 98%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: fixed;
    overflow: auto
}

@media (min-width: 660px) {
    .klaro .cookie-modal .cm-modal.cm-klaro {
        border-radius:4px;
        border-radius: var(--border-radius, 4px);
        position: relative;
        margin: 0 auto;
        max-width: 640px;
        height: auto;
        width: auto
    }
}

.klaro .cookie-modal .cm-modal .hide {
    border-style: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1
}

.klaro .cookie-modal .cm-modal .hide svg {
    stroke: #fafafa;
    stroke: var(--light1, #fafafa)
}

.klaro .cookie-modal .cm-modal .cm-footer {
    border-top-color: #5c5c5c;
    border-top-color: var(--dark2, #5c5c5c);
    border-top-width: 1px;
    border-top-width: var(--border-width, 1px);
    border-top-style: solid;
    border-top-style: var(--border-style, solid);
    padding: 1em
}

.klaro .cookie-modal .cm-modal .cm-footer-buttons {
    display: flex;
    flex-flow: row;
    justify-content: space-between
}

.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by {
    font-size: 0.8em;
    padding-top: 4px;
    text-align: right;
    padding-right: 8px;
    display: none;
}

.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by a {
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c)
}

.klaro .cookie-modal .cm-modal .cm-header {
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-color: #5c5c5c;
    border-bottom-color: var(--dark2, #5c5c5c);
    padding: 1em;
    padding-right: 24px
}

.klaro .cookie-modal .cm-modal .cm-header h1 {
    margin: 0;
    font-size: 2em;
    display: block
}

.klaro .cookie-modal .cm-modal .cm-header h1.title {
    padding-right: 20px
}

.klaro .cookie-modal .cm-modal .cm-body {
    padding: 1em
}

.klaro .cookie-modal .cm-modal .cm-body ul {
    display: block
}

.klaro .cookie-modal .cm-modal .cm-body span {
    display: inline-block;
    width: auto
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes {
    padding: 0;
    margin: 0
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-caret,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-caret {
    color: #a0a0a0;
    color: var(--light3, #a0a0a0)
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content {
    margin-left: -40px;
    display: none
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content.expanded,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content.expanded {
    margin-top: 10px;
    display: block
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose {
    position: relative;
    line-height: 20px;
    vertical-align: middle;
    padding-left: 60px;
    min-height: 40px
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service:first-child,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose:first-child,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service:first-child,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose:first-child {
    margin-top: 0
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p {
    margin-top: 0
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p.purposes,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p.purposes,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p.purposes,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p.purposes {
    color: #a0a0a0;
    color: var(--color-lighter-grey);
    font-size: 0.8em
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service.cm-toggle-all,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose.cm-toggle-all,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service.cm-toggle-all,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose.cm-toggle-all {
    border-top-width: 1px;
    border-top-width: var(--border-width, 1px);
    border-top-style: solid;
    border-top-style: var(--border-style, solid);
    border-top-color: #5c5c5c;
    border-top-color: var(--dark2, #5c5c5c);
    padding-top: 1em
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-list-title,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-list-title,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-list-title,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-list-title {
    font-weight: 600
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-opt-out,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-required,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-opt-out,.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-required,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-opt-out,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-required,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-opt-out,.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-required {
    color: #5c5c5c;
    color: var(--color-light-grey);
    padding-left: 0.2em;
    font-size: 0.8em
}

.klaro .cookie-notice:not(.cookie-modal-notice) {
    background-color: #333;
    background-color: var(--color-blue);
    z-index: 999;
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0
}

@media (min-width: 1024px) {
    .klaro .cookie-notice:not(.cookie-modal-notice) {
        border-radius:4px;
        border-radius: var(--border-radius, 4px);
        position: fixed;
        position: var(--notice-position, fixed);
        right: 20px;
        right: var(--notice-right, 20px);
        left: auto;
        left: var(--notice-left, auto);
        bottom: 20px;
        bottom: var(--notice-bottom, 20px);
        top: auto;
        top: var(--notice-top, auto);
        max-width: 400px;
        max-width: var(--notice-max-width, 400px);
        box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19)
    }
}

@media (max-width: 1023px) {
    .klaro .cookie-notice:not(.cookie-modal-notice) {
        border-style:none;
        border-radius: 0
    }
    
	

}

.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded {
    position: relative;
    height: inherit;
    width: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
    z-index: 0
}

.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded .cn-body {
    padding-top: 0.5em
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body {
    margin-bottom: 0;
    margin-right: 0;
    bottom: 0;
    padding: 1em;
    padding-top: 0
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
    margin-bottom: 0.5em
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p.cn-changes {
    text-decoration: underline
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
    display: inline-block;
    flex-grow: 1
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
    display: inline-block;
    margin-top: -0.5em
}

@media (max-width: 384px) {
    .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
        width:100%
    }
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
    margin-top: 0.5em
}

@media (max-width: 384px) {
    .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
        width:calc(50% - .5em)
    }
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok {
    margin-top: -0.5em;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: right;
    align-items: baseline
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok a,.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok div {
    margin-top: 0.5em
}

.klaro .cookie-modal-notice {
    background-color: #333;
    background-color: var(--dark1, #333);
    color: #fafafa;
    color: var(--light1, #fafafa);
    z-index: 1001;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19);
    width: 100%;
    max-height: 98%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: fixed;
    overflow: auto;
    padding: 1em;
    padding-top: 0.2em
}

@media (min-width: 400px) {
    .klaro .cookie-modal-notice {
        border-radius:4px;
        border-radius: var(--border-radius, 4px);
        position: relative;
        margin: 0 auto;
        max-width: 400px;
        height: auto;
        width: auto
    }
}

.klaro .cookie-modal-notice .cn-ok {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em
}

.klaro .cookie-notice-hidden {
    display: none !important
}

.klaro-ide .cm-switch-container {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8);
    display: block;
    position: relative;
    padding: 10px;
    padding-left: 66px;
    line-height: 20px;
    vertical-align: middle;
    min-height: 40px
}

.klaro-ide .cm-switch-container:last-child {
    border-bottom: 0
}

.klaro-ide .cm-switch-container:first-child {
    margin-top: 0
}

.klaro-ide .cm-switch-container p {
    margin-top: 0
}

.klaro-ide .cm-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px
}

.klaro-ide .cm-list-input:checked+.cm-list-label .slider {
    background-color: #1a936f;
    background-color: var(--color-yellow);
}

.klaro-ide .cm-list-input.half-checked:checked+.cm-list-label .slider {
    background-color: #1a936f;
    background-color: var(--color-yellow);
    opacity: 0.6
}

.klaro-ide .cm-list-input.half-checked:checked+.cm-list-label .slider::before {
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.klaro-ide .cm-list-input.only-required+.cm-list-label .slider {
    background-color: #24cc9a;
    background-color: var(--color-yellow);
    opacity: 0.8
}

.klaro-ide .cm-list-input.only-required+.cm-list-label .slider::before {
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.klaro-ide .cm-list-input.required:checked+.cm-list-label .slider {
    background-color: #24cc9a;
    background-color: var(--color-yellow);
    opacity: 0.8;
    cursor: not-allowed
}

.klaro-ide .slider {
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19)
}

.klaro-ide .cm-list-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 50px;
    height: 30px
}

.klaro-ide .cm-list-title {
    font-size: 0.9em;
    font-weight: 600
}

.klaro-ide .cm-list-description {
    color: #7c7c7c;
    color: var(--dark3, #7c7c7c);
    font-size: 0.9em;
    padding-top: 4px
}

.klaro-ide .cm-list-label .cm-switch {
    position: absolute;
    left: 0
}

.klaro-ide .cm-list-label .slider {
    background-color: #f2f2f2;
    background-color: var(--white2, #f2f2f2);
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    width: 50px;
    display: inline-block
}

.klaro-ide .cm-list-label .slider::before {
    background-color: #e6e6e6;
    background-color: var(--white3, #e6e6e6);
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 5px;
    transition: 0.4s
}

.klaro-ide .cm-list-label .slider.round {
    border-radius: 30px
}

.klaro-ide .cm-list-label .slider.round::before {
    border-radius: 50%
}

.klaro-ide .cm-list-label input:focus+.slider {
    box-shadow-color: #48dfb2;
    box-shadow-color: var(--green3, #48dfb2);
    box-shadow: 0 0 1px var(color, green3)
}

.klaro-ide .cm-list-label input:checked+.slider::before {
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.klaro-ide .cm-list-input:focus+.cm-list-label .slider {
    box-shadow: 0 4px 6px 0 rgba(125,125,125,0.2),5px 5px 10px 0 rgba(125,125,125,0.19)
}

.klaro-ide .cm-list-input:checked+.cm-list-label .slider::before {
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.klaro-ide .cm-language-select,.klaro-ide .cm-theme-select,.klaro-ide .cm-purpose-select {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #fff;
    background-color: var(--white1, #fff);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #c8c8c8;
    border-color: var(--light2, #c8c8c8);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.11);
    padding: 12px;
    margin-bottom: 12px
}

.klaro-ide .cm-language-select ul.cm-languages,.klaro-ide .cm-language-select ul.cm-themes,.klaro-ide .cm-language-select ul.cm-purposes,.klaro-ide .cm-theme-select ul.cm-languages,.klaro-ide .cm-theme-select ul.cm-themes,.klaro-ide .cm-theme-select ul.cm-purposes,.klaro-ide .cm-purpose-select ul.cm-languages,.klaro-ide .cm-purpose-select ul.cm-themes,.klaro-ide .cm-purpose-select ul.cm-purposes {
    margin-top: -4px
}

.klaro-ide .cm-language-select ul.cm-languages li,.klaro-ide .cm-language-select ul.cm-themes li,.klaro-ide .cm-language-select ul.cm-purposes li,.klaro-ide .cm-theme-select ul.cm-languages li,.klaro-ide .cm-theme-select ul.cm-themes li,.klaro-ide .cm-theme-select ul.cm-purposes li,.klaro-ide .cm-purpose-select ul.cm-languages li,.klaro-ide .cm-purpose-select ul.cm-themes li,.klaro-ide .cm-purpose-select ul.cm-purposes li {
    color: #fafafa;
    color: var(--light1, #fafafa);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-color: #24cc9a;
    border-color: var(--color-yellow);
    background-color: #1a936f;
    background-color: var(--color-yellow);
    display: inline-block;
    margin-right: 4px;
    margin-top: 4px;
    padding: 2px 4px;
    font-size: 0.9em
}

.klaro-ide .cm-language-select ul.cm-languages li a,.klaro-ide .cm-language-select ul.cm-themes li a,.klaro-ide .cm-language-select ul.cm-purposes li a,.klaro-ide .cm-theme-select ul.cm-languages li a,.klaro-ide .cm-theme-select ul.cm-themes li a,.klaro-ide .cm-theme-select ul.cm-purposes li a,.klaro-ide .cm-purpose-select ul.cm-languages li a,.klaro-ide .cm-purpose-select ul.cm-themes li a,.klaro-ide .cm-purpose-select ul.cm-purposes li a {
    color: #fff;
    color: var(--white1, #fff)
}

.klaro-ide .cm-search-select {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex
}

.klaro-ide .cm-search-select input:not(:focus) ~ .cm-candidates {
    display: none
}

.klaro-ide .cm-search-select .cm-candidates:hover {
    display: block !important
}

.klaro-ide .cm-search-select .cm-candidates {
    background-color: #fff;
    background-color: var(--white1, #fff);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-color: #f2f2f2;
    border-color: var(--white2, #f2f2f2);
    position: absolute;
    top: 55px;
    left: 0;
    z-index: 10;
    margin-bottom: 10px;
    width: 100%
}

.klaro-ide .cm-search-select .cm-candidates .cm-candidate {
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-color: #7c7c7c;
    border-bottom-color: var(--dark3, #7c7c7c);
    padding: 12px;
    cursor: pointer
}

.klaro-ide .cm-search-select .cm-candidates .cm-candidate p {
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c);
    font-size: 0.9em
}

.klaro-ide .cm-search-select .cm-candidates .cm-candidate:last-child {
    border-bottom-style: none
}

.klaro-ide .cm-obj-selector {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 20px;
    width: 100%;
    height: 40px;
    overflow: visible
}

@media (min-width: 768px) {
    .klaro-ide .cm-obj-selector {
        width:300px
    }
}

.klaro-ide .cm-obj-selector span.cm-obj-selector-more {
    display: block;
    position: absolute;
    right: 0.5em;
    padding-top: 0.6em;
    padding-right: 0.3em;
    z-index: 2;
    pointer-events: none;
    -ms-transform: scaleY(0.6) scaleX(0.8);
    transform: scaleY(0.6) scaleX(0.8);
    font-weight: 800
}

.klaro-ide .cm-obj-selector ul {
    background-color: #fff;
    background-color: var(--white1, #fff);
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.klaro-ide .cm-obj-selector ul li {
    background-color: #fff;
    background-color: var(--white1, #fff);
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #f2f2f2;
    border-bottom-color: var(--white2, #f2f2f2);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33);
    margin: 0;
    width: auto;
    display: none;
    width: 100%;
    order: 2
}

.klaro-ide .cm-obj-selector ul li:last-child {
    border-bottom-style: none
}

.klaro-ide .cm-obj-selector ul li.cm-obj-is-active {
    background-color: #c8c8c8;
    background-color: var(--light2, #c8c8c8);
    display: flex;
    order: 1
}

.klaro-ide .cm-obj-selector ul li a.cm-obj-item {
    width: 100%;
    padding: 8px;
    padding-right: 40px
}

.klaro-ide .cm-obj-selector ul li.cm-obj-add {
    padding: 8px;
    display: none;
    justify-content: space-between;
    order: 3
}

.klaro-ide .cm-obj-selector ul li.cm-obj-add input {
    color: #333;
    color: var(--dark1, #333);
    border-color: #5c5c5c;
    border-color: var(--dark2, #5c5c5c);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    flex-grow: 1;
    flex-shrink: 1;
    padding: 4px;
    font-size: 0.9em
}

.klaro-ide .cm-obj-selector ul li.cm-obj-add a.cm-btn {
    color: #fff;
    color: var(--white1, #fff);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #7c7c7c;
    background-color: var(--dark3, #7c7c7c);
    padding: 8px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: 10px;
    width: auto;
    display: inline-block
}

.klaro-ide .cm-obj-selector ul:not(.cm-is-active) li.cm-obj-is-active {
    background-color: #fff;
    background-color: var(--white1, #fff)
}

.klaro-ide .cm-obj-selector ul.cm-is-active {
    z-index: 4
}

.klaro-ide .cm-obj-selector ul.cm-is-active li {
    display: flex
}

.klaro-ide .cm-switch {
    padding: 12px
}

.klaro-ide p.cm-description {
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c);
    font-size: 0.9em;
    padding-top: 2px;
    margin-bottom: 4px
}

.klaro-ide .cm-select {
    margin-top: 16px
}

.klaro-ide .cm-select select {
    background-color: #fff;
    background-color: var(--white1, #fff);
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-color: #f2f2f2;
    border-color: var(--white2, #f2f2f2);
    display: block;
    width: 100%;
    padding: 12px 5px;
    font-size: 0.9em;
    text-indent: 5px
}

.klaro-ide .cm-select select[disabled] {
    background-color: #c8c8c8;
    background-color: var(--light2, #c8c8c8)
}

.klaro-ide .cm-retracting-label-input {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 0 6px;
    margin-top: 4px
}

.klaro-ide .cm-retracting-label-input>.cm-label {
    background-color: #fff;
    background-color: var(--white1, #fff);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #c8c8c8;
    border-color: var(--light2, #c8c8c8);
    position: absolute;
    top: 16px;
    left: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    pointer-events: none;
    transition: transform 150ms cubic-bezier(0.47, 0, 0.74, 0.71),opacity 150ms cubic-bezier(0.47, 0, 0.74, 0.71),color 150ms cubic-bezier(0.47, 0, 0.74, 0.71);
    padding: 0 8px;
    -ms-transform: scale(0.75) translateX(-16%) translateY(-26px);
    transform: scale(0.75) translateX(-16%) translateY(-26px)
}

.klaro-ide .cm-input {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #fafafa;
    background-color: var(--light1, #fafafa);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #1a936f;
    border-color: var(--color-yellow);
    font-size: 0.9em;
    box-sizing: border-box;
    padding: 12px 18px;
    width: 100%
}

.klaro-ide .cm-input[disabled] {
    background-color: #c8c8c8;
    background-color: var(--light2, #c8c8c8)
}

@media (min-width: 768px) {
    .klaro-ide .cm-tabs span.cm-more {
        display:none
    }
}

.klaro-ide .cm-tabs {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    white-space: nowrap
}

@media (min-width: 768px) {
    .klaro-ide .cm-tabs span.cm-tabs-more {
        display:none
    }
}

@media (max-width: 768px) {
    .klaro-ide .cm-tabs {
        border-radius:4px;
        border-radius: var(--border-radius, 4px);
        border-radius: 4px;
        border-radius: var(--border-radius, 4px);
        background-color: #fff;
        background-color: var(--white1, #fff);
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33)
    }

    .klaro-ide .cm-tabs span.cm-tabs-more {
        display: block;
        position: absolute;
        right: 0.5em;
        padding-top: 0.6em;
        padding-right: 0.3em;
        -ms-transform: scaleY(0.6) scaleX(0.8);
        transform: scaleY(0.6) scaleX(0.8);
        font-weight: 800
    }

    .klaro-ide .cm-tabs ul {
        flex-wrap: wrap
    }

    .klaro-ide .cm-tabs ul li {
        display: block;
        position: relative;
        width: 100%;
        text-align: left
    }

    .klaro-ide .cm-tabs ul li a {
        justify-content: left;
        border-bottom: 0 !important
    }

    .klaro-ide .cm-tabs:not(.cm-tabs-active) ul li:not(.cm-tab-is-active) {
        display: none
    }

    .klaro-ide .cm-tabs.cm-tabs-active ul li {
        order: 2;
        display: block
    }

    .klaro-ide .cm-tabs.cm-tabs-active ul li.cm-tab-is-active {
        background-color: #c8c8c8;
        background-color: var(--light2, #c8c8c8);
        order: 1
    }
}

.klaro-ide .cm-tabs:not(:last-child) {
    margin-bottom: 1.5rem
}

.klaro-ide .cm-tabs ul {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8);
    align-items: center;
    display: flex;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
    margin: 0;
    padding: 0
}

.klaro-ide .cm-tabs ul li {
    display: block
}

.klaro-ide .cm-tabs ul li a {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8);
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c);
    display: flex;
    align-items: flex-start;
    justify-content: left;
    margin-bottom: -1px;
    padding: 0.5em 1em
}

.klaro-ide .cm-tabs ul li.cm-tab-is-active a {
    color: #2581c4;
    color: var(--blue1, #2581c4);
    border-bottom-color: #2581c4;
    border-bottom-color: var(--blue1, #2581c4)
}

@media (max-width: 767px) {
    .klaro-ide .cm-tabs.tabs-active {
        position:relative;
        min-height: 40px;
        overflow: visible;
        z-index: 10
    }

    .klaro-ide .cm-tabs.tabs-active ul {
        background-color: #fff;
        background-color: var(--white1, #fff);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        position: absolute;
        width: 100%;
        height: auto;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33)
    }

    .klaro-ide .cm-tabs.tabs-active ul li {
        margin: 0 !important
    }

    .klaro-ide .cm-tabs.tabs-active ul li:not(.cm-tab-is-active) {
        order: 2;
        display: block
    }

    .klaro-ide .cm-tabs.tabs-active ul li.cm-tab-is-active {
        background-color: #fafafa;
        background-color: var(--light1, #fafafa);
        order: 1;
        display: block
    }
}

.klaro-ide .cm-list .cm-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-items: flex-end
}

@media (min-width: 768px) {
    .klaro-ide .cm-list .cm-item span.cm-is-action {
        display:none
    }

    .klaro-ide .cm-list .cm-item:hover span.cm-is-action {
        display: inline-block
    }
}

.klaro-ide .cm-list .cm-item:last-child {
    border-bottom: 0
}

.klaro-ide .cm-list .cm-item:nth-child(2n) {
    background-color: #fafafa;
    background-color: var(--light1, #fafafa)
}

.klaro-ide .cm-list .cm-item.cm-is-header {
    font-weight: 600;
    margin-bottom: 4px;
    background: none
}

.klaro-ide .cm-list .cm-item.cm-is-card {
    background-color: #fff;
    background-color: var(--white1, #fff);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33);
    margin-bottom: 24px
}

.klaro-ide .cm-list .cm-item.cm-is-clickable {
    cursor: pointer
}

.klaro-ide .cm-list .cm-item.cm-is-expandable {
    cursor: pointer
}

.klaro-ide .cm-list .cm-item form {
    margin: 0
}

.klaro-ide .cm-list .cm-item form label.label {
    font-weight: 300
}

.klaro-ide .cm-list .cm-item span.cm-is-action {
    position: absolute;
    right: 1rem;
    top: 1rem
}

.klaro-ide .cm-list .cm-item .cm-col {
    align-content: center;
    flex-basis: 0;
    margin: 8px;
    flex-grow: 1
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-xs {
    flex-grow: 1
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-sm {
    flex-grow: 2
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-md {
    flex-grow: 5
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-lg {
    flex-grow: 10
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-xl {
    flex-grow: 20
}

.klaro-ide .cm-list .cm-item .cm-col.cm-is-icon {
    flex-basis: 50px;
    text-align: right;
    flex-grow: 0
}

.klaro-ide .cm-list .cm-item .cm-content {
    flex: 10
}

.klaro-ide .cm-dropdown {
    position: relative
}

.klaro-ide .cm-dropdown>button {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    font-size: 1em;
    border: 0;
    background-color: transparent
}

.klaro-ide .cm-dropdown>button:focus,.klaro-ide .cm-dropdown>button:hover {
    background-color: #fafafa;
    background-color: var(--light1, #fafafa);
    border-radius: 25px
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent {
    background-color: #fff;
    background-color: var(--white1, #fff);
    display: none;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33);
    width: auto
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent.cm-dropdownexpanded {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    display: block;
    position: absolute;
    top: 35px;
    z-index: 100;
    left: 0
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #5c5c5c;
    border-color: var(--dark2, #5c5c5c);
    list-style: none;
    text-align: left;
    max-width: 300px;
    min-width: 200px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu li {
    height: auto
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu li a {
    display: block;
    padding: 8px;
    padding-left: 16px
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu li a span {
    display: inline-flex;
    align-items: center
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu li a .icon {
    margin-right: 0.45em
}

.klaro-ide .cm-dropdown>.cm-dropdowncontent ul.cm-dropdownmenu li a:hover {
    background-color: #2581c4;
    background-color: var(--blue1, #2581c4);
    color: #fff;
    color: var(--white1, #fff)
}

.klaro-ide .cm-dropdown.is-right .cm-dropdowncontent.cm-dropdownexpanded {
    right: 0;
    left: auto
}

.klaro-ide label {
    display: inline-block
}

.klaro-ide .cm-global-fields,.klaro-ide .cm-config-controls,.klaro-ide .cm-translations-fields,.klaro-ide .cm-service-fields {
    max-width: 600px
}

.klaro-ide .cm-json .cm-file-import {
    display: none
}

.klaro-ide .cm-json .cm-upload-label {
    cursor: pointer
}

.klaro-ide .cm-json .cm-upload-label button {
    pointer-events: none
}

.klaro-ide .cm-json pre code {
    white-space: pre-wrap
}

.klaro-ide .cm-message {
    padding: 12px
}

.klaro-ide .cm-message.cm-error,.klaro-ide .cm-message.cm-success {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    color: #fff;
    color: var(--white1, #fff);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.11);
    margin-bottom: 24px
}

.klaro-ide .cm-message.cm-error {
    background-color: #e15669;
    background-color: var(--red2, #e15669)
}

.klaro-ide .cm-message.cm-success {
    background: #24cc9a;
    background: var(--color-yellow);
}

.klaro-ide .cm-space-sm {
    margin-bottom: 8px !important
}

.klaro-ide .cm-space-md {
    margin-bottom: 12px !important
}

.klaro-ide .cm-space-lg {
    margin-bottom: 24px !important
}

.klaro-ide .cm-json h1,.klaro-ide .cm-json h2,.klaro-ide .cm-json h3,.klaro-ide .cm-json h4,.klaro-ide .cm-global-fields h1,.klaro-ide .cm-global-fields h2,.klaro-ide .cm-global-fields h3,.klaro-ide .cm-global-fields h4,.klaro-ide .cm-config-controls h1,.klaro-ide .cm-config-controls h2,.klaro-ide .cm-config-controls h3,.klaro-ide .cm-config-controls h4,.klaro-ide .cm-translations-fields h1,.klaro-ide .cm-translations-fields h2,.klaro-ide .cm-translations-fields h3,.klaro-ide .cm-translations-fields h4,.klaro-ide .cm-service-fields h1,.klaro-ide .cm-service-fields h2,.klaro-ide .cm-service-fields h3,.klaro-ide .cm-service-fields h4 {
    font-size: 2em;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600
}

.klaro-ide .cm-json h1,.klaro-ide .cm-global-fields h1,.klaro-ide .cm-config-controls h1,.klaro-ide .cm-translations-fields h1,.klaro-ide .cm-service-fields h1 {
    border-style: solid;
    border-style: var(--border-style, solid);
    border-width: 1px;
    border-width: var(--border-width, 1px);
    border-color: #c8c8c8;
    border-color: var(--light2, #c8c8c8);
    text-transform: none;
    margin-bottom: 20px;
    display: inline-block
}

.klaro-ide .cm-json h2,.klaro-ide .cm-global-fields h2,.klaro-ide .cm-config-controls h2,.klaro-ide .cm-translations-fields h2,.klaro-ide .cm-service-fields h2 {
    font-size: 1.6em
}

.klaro-ide .cm-json h3,.klaro-ide .cm-global-fields h3,.klaro-ide .cm-config-controls h3,.klaro-ide .cm-translations-fields h3,.klaro-ide .cm-service-fields h3 {
    font-size: 1.3em
}

.klaro-ide .cm-json h4,.klaro-ide .cm-global-fields h4,.klaro-ide .cm-config-controls h4,.klaro-ide .cm-translations-fields h4,.klaro-ide .cm-service-fields h4 {
    font-size: 1em;
    font-weight: 600
}

.klaro-ide p.cm-section-description {
    color: #5c5c5c;
    color: var(--dark2, #5c5c5c);
    text-align: justify;
    margin-top: 8px;
    margin-bottom: 24px
}

.klaro-ide .cm-purpose-order ul {
    margin-top: 12px;
    margin-bottom: 12px
}

.klaro-ide .cm-purpose-order ul li {
    display: flex
}

.klaro-ide .cm-purpose-order ul li span.cm-buttons {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    flex-grow: 0;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.11)
}

.klaro-ide .cm-purpose-order ul li span.cm-buttons a {
    padding: 12px;
    display: inline-block
}

.klaro-ide .cm-purpose-order ul li span.cm-buttons a:hover {
    background: #1a936f;
    background: var(--color-yellow);
}

.klaro-ide .cm-purpose-order ul li span.cm-value {
    flex-grow: 1;
    padding: 12px
}

.klaro-ide .cm-translations-fields .cm-translations-for-key {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #fff;
    background-color: var(--white1, #fff);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.11);
    padding: 12px;
    margin-bottom: 24px
}

.klaro-ide .cm-translations-fields .cm-translations-for-key li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.klaro-ide .cm-translations-fields .cm-translations-for-key li span.cm-lang {
    font-family: Courier;
    display: block;
    padding: 20px;
    margin-top: 5px;
    flex-grow: 0
}

.klaro-ide .cm-service-list .cm-status,.klaro-ide .cm-config-list .cm-status {
    text-align: left
}

.klaro-ide .cm-service-list .cm-status span,.klaro-ide .cm-config-list .cm-status span {
    padding-left: 10px
}

.klaro-ide .cm-service-list .cm-status .cm-status-is-active,.klaro-ide .cm-config-list .cm-status .cm-status-is-active {
    color: #1a936f;
    color: var(--color-yellow);
}

.klaro-ide .cm-service-list .cm-status .cm-status-is-inactive,.klaro-ide .cm-config-list .cm-status .cm-status-is-inactive {
    color: #da2c43;
    color: var(--red1, #da2c43)
}

.klaro-ide .cm-service-list .cm-name,.klaro-ide .cm-config-list .cm-name {
    text-transform: uppercase;
    font-weight: 600
}

.klaro-ide p.cm-no-cookies,.klaro-ide p.cm-no-services {
    margin-top: 6px;
    margin-bottom: 6px;
    font-weight: 600
}

.klaro-ide .cm-cookie-config .cm-cookie-forms .cm-cookie-form {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8)
}

.klaro-ide .cm-demo .cm-config-controls .cm-retracting-label-input {
    width: auto;
    flex-grow: 1;
    margin-right: 12px
}

.klaro-ide .cm-demo .cm-config-controls:first-child {
    border-bottom-style: solid;
    border-bottom-style: var(--border-style, solid);
    border-bottom-width: 1px;
    border-bottom-width: var(--border-width, 1px);
    border-bottom-color: #c8c8c8;
    border-bottom-color: var(--light2, #c8c8c8)
}

.klaro-ide .cm-config-controls {
    margin-top: 8px;
    margin-bottom: 24px;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: baseline;
    justify-content: space-between
}

.klaro-ide .cm-config-controls h2 {
    margin-right: 24px;
    display: block;
    flex-grow: 1
}

.klaro-ide .cm-config-controls .cm-control {
    flex-shrink: 1;
    display: inline-block;
    margin-bottom: 20px
}

.klaro-ide .cm-config-controls .cm-control .cm-retracting-label-input {
    max-width: 400px;
    display: block
}

.klaro-ide .cm-config-controls .cm-control input {
    max-width: 400px
}

.klaro-ide .cm-config-controls .cm-control select {
    border-color: #1a936f;
    border-color: var(--color-yellow);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    border-style: solid;
    border-style: var(--border-style, solid);
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #fff;
    background-color: var(--white1, #fff);
    padding: 12px;
    margin-bottom: 12px;
    display: block
}

.klaro-ide .cm-config-controls .cm-control-button {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    background-color: #459cdc;
    background-color: var(--blue2, #459cdc);
    color: #fff;
    color: var(--white1, #fff);
    border-style: none;
    padding: 12px;
    margin-top: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.33);
    margin-right: 6px
}

.klaro-ide .cm-config-controls .cm-control-button.cm-delete {
    background-color: #e77887;
    background-color: var(--red3, #e77887);
    float: right
}

.klaro-ide .cm-config-controls .cm-control-button.cm-secondary {
    background-color: #e15669;
    background-color: var(--red2, #e15669)
}

.klaro-ide .cm-config-controls .cm-control-button.cm-success {
    background-color: #1a936f;
    background-color: var(--color-yellow);
}

.klaro-ide .cm-config-controls .cm-control-button:disabled {
    background-color: #fafafa;
    background-color: var(--light1, #fafafa);
    color: #333;
    color: var(--dark1, #333);
    cursor: not-allowed
}

.klaro-ide .cookie-modal .cm-modal.cm-ide {
    background-color: #333;
    background-color: var(--dark1, #333);
    color: #fafafa;
    color: var(--light1, #fafafa);
    z-index: 1001;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2),5px 5px 10px 0 rgba(0,0,0,0.19);
    width: 100%;
    max-height: 98%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: fixed;
    overflow: auto
}

@media (min-width: 1020px) {
    .klaro-ide .cookie-modal .cm-modal.cm-ide {
        border-radius:4px;
        border-radius: var(--border-radius, 4px);
        position: relative;
        margin: 0 auto;
        max-width: 1000px;
        height: auto;
        width: auto
    }
}
