/**
 *  AfD Baden-Württemberg CSS 2021 
 *  ------------------------------
 *  
 *  Based on Bootstrap 4.x
 *  Breakpoints
 *  ---------------------
 *  sm = 576+ px 
 *  md = 768+ px
 *  lg = 992+ px
 *  xl = 1200+ px 
 * 
 *  color scheme
 *  ------------
 *  @blue     = #00ccff   rgba(0,162,223, 1)
 *  @medblue  = #006699   rgba(0,102,166, 1)
 *  dkblue    = #173557   rgba(23,53,87, 1)
 *  red       = #cc0000   rgba(213,23,47, 1)
 *  
**/

@blue : #00ccff;

@medblue: #006699;

@dkblue : #173557;

@red : #cc0000;

@dkred : #c00;

@dark : #333;

@white : #fff;

@light: #f6f6f6;

@lightgrey: #ddd;

@grey: #666;

@font-color : #444;


@font-face {
  font-family: "Source Sans Pro";
  font-weight: 300;
  font-style: normal;
  src: url('../fonts/Source_Sans_Pro/SourceSansPro-Light.ttf') format('truetype');
}

@font-face {
  font-family: "Source Sans Pro";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf') format('truetype');
}

@font-face {
  font-family: "Source Sans Pro";
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow Condensed";
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Light.ttf') format('truetype');
}

@font-face {
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Bold.ttf') format('truetype');
}

@font-face {
  font-family: "Bitter";
  font-weight: 300;
  font-style: normal;
  src: url('../fonts/Bitter/static/Bitter-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'LigatureSymbols';
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.eot');
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.woff') format('woff'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype'),
         url('../fonts/LigatureSymbols/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
    src: url('../fonts/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.lsf, .lsf-icon:before {
  font-family: 'LigatureSymbols' !important;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.lsf-icon:before {
  content: attr(title);
  margin-right: 0.3em;
  font-size: 150%;
}

.lsf-icon.home:before {
  content: '\E072';
}


html, 
body  {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: @font-color;
  background-color: @white;
}

main {
  position: relative;
  z-index:1;
  background-color: @white;
  box-shadow: 0 10px 6px rgba(0,0,0,.15);
}

@media (min-width:1200px)
{
  body {
    overflow-x: hidden;
    font-size: 24px;
  }
}

h1 {
  font-size: 1.65rem;
  font-weight: 600;
  margin-top: 10px;
}

h2 {
  font-size: 1.45rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem; 
  font-weight: 600;
}

h4 {
  font-size: 1.25rem; 
}

h5 {
  font-size: 1.15rem; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed";
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: @dark;
  line-height: 110%;
}

h4,
h5, {
  line-height: 120%;
}

.small {
  font-size: .8em;
}

.blockquote {
  font-family: "Bitter";
  font-size: 2rem;
  line-height: 1.35em;
}

.headerFlashlight {
  width: 30px;
  height: 50px;
  background: transprante url('../img/flashlight.png') center no-repeat;
  transform: translateX(0);
  opacity: 0;
}

.flashing {
  animation-name: flashing;
  animation-duration: 3s;
  z-index: 10;
  position: absolute;
}

@keyframes flashing {
  0% {
    transform: translateX(0);    
    opacity: 0;
  }
  
  10% {
    transform: translateX(100px);    
    opacity: 1;  
  }
  
  90% {
    transform: translateX(1000px);    
    opacity: 0;  
  }
}

@media only screen and (min-width:992px) {
  h1 {
    font-size: 2.65rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 2rem; 
  }
  
  h4 {
    font-size: 1.5rem; 
  }
  
  h5 {
    font-size: 1.25rem; 
  }
}

.fontB {
  font-family: 'Bitter';
  font-weight: 400;
}

.blue {
  color: @blue;
}

.red {
  color: @red;  
}

.grey {
  color: @grey;
}

.lightgrey {
  color: @lightgrey;
}

.light {
  color: @light;
}

.white {
  color: @white;
}

.dkblue {
  color: @dkblue;
}

.bg-white {
  background-color: @white; 
}

.bg-white-translucent {
  background: rgba(255,255,255, .6);
  color: @font-color;
}

.bg-blue {
  background-color: @blue !important;
  color: @white !important;
}

.bg-blue-translucent {
  background: rgba(0,162,223, .5);
  color: @white;
}

.bg-dkblue {
  background: @dkblue;
  color: @white;
}

.bg-dkblue-translucent {
  background: rgba(23,53,87, .5);
  color: @white;
}

.bg-dkblue * {
  color: @white;
}

.bg-red {
  background-color: @red;
  color: @white;
}

.bg-light {
  background-color: @light;
}

.bg-grey {
  background: @grey;
}

.bg-blue-radiant {
  background: rgba(0,102,153,1);
  background: linear-gradient(45deg, rgba(0,102,153,1) 0%, rgba(0,204,255,1) 100%);
  color: @white;
}

.bg-red-radiant {
  background: rgb(162,17,38);
  background: linear-gradient(45deg, rgba(162,17,38,1) 0%, rgba(213,23,47,1) 100%);
  color: @white;
}

.bg-afd-radiance {
  background: rgb(0,102,153);
  background: linear-gradient(45deg, rgba(0,102,153,1) 0%, rgba(0,204,255,1) 100%);
  background-image: url('../img/bg_afd_2024_mobile.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width:1200px) {
  .bg-afd-radiance {
    background-image: url('../img/bg_afd_2024.jpg');
  }
}

a,
a:link,
a:visited {
  color: @font-color;
  text-decoration: none;
  transition: all linear .3s;
}

a:hover,
a:active {
  color: @blue;
  text-decoration: none;
}

.link-highlighted {
  display: inline-block;
  transition: all linear .3s;
}

.link-highlighted:focus,
.link-highlighted:hover,
.link-highlighted:active {
  box-shadow: 1px 1px 10px rgba(255,255,255, .8);
  text-shadow: 1px 1px 10px rgba(255,255,255, .8);
}

.bg-blue a,
.bg-blue a:link,
.bg-blue a:visited {
  color: @white;
  text-decoration: none;
  transition: all linear .3s;
}

.bg-blue a:hover,
.bg-blue a:active {
  color: @light;
  text-decoration: none;
}

.btn {
  border-radius: 0 !important;
}

.btn-afd,
.btn-afd:link,
.btn-afd:visited,
.btn-default,
.btn-default:link,
.btn-default:visited {
  background: @dkblue;
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.btn-afd:hover,
.btn-afd:active,
.btn-default:hover,
.btn-default:active {
  background: @blue;
  color: @white;
  text-decoration: none;
}

.btn-inverted,
.btn-inverted:link,
.btn-inverted:visited {
  background: @grey;
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.btn-inverted:hover,
.btn-inverted:active {
  background: @light;
  color: @font-color;
  text-decoration: none;
}

.btn-red,
.btn-red:link,
.btn-red:visited {
  background: @red;
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.btn-red:hover,
.btn-red:active {
  background: #a4081c;
  color: @white;
  text-decoration: none;
}

.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  background: linear-gradient(30deg, rgba(0,102,153,1) 0%, rgba(0,204,255,1) 100%);
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.btn-outline:hover,
.btn-outline:active {
  color: @font-color;
  text-decoration: none;
}

.btn-icon-close {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  text-align: center;
  margin-left: .5rem;
}

.btn-icon-close span {
  width: 28px;
  height: 2px;
  background-color: @white;
  display: inline-block;
  position: absolute;
  top: 1.35rem;
  left: 6px;
  z-index: 2;
}

.btn-icon-close span:nth-child(1) {
  transform: rotate(-45deg);
}

.btn-icon-close span:nth-child(2) {
  transform: rotate(45deg);
}

/* lists */

ul,
.content_area_text ul {
  list-style-position: inside;
  list-style-image: url('../img/list-arrow.svg');
}

.content_area_text ul li {
  display: block;
  position: relative;
  opacity: 0;
  margin-left: -30px;
  margin-top: 30px;
}

.stagger {
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 24px;
  background: transparent url('../img/list-arrow.svg') center no-repeat;
  margin-left: -30px;
  margin-top: 5px; 
}

.bg-blue .stagger,
.bg-dkblue .stagger,
.bg-red .stagger,
.bg-afd-radiance .stagger {
  background: @white;
  width: 6px;
  height: 6px;
  margin-top: 16px;
}

/* content area text */

.content_area_text img {
  max-width: 100% !important;
  max-height: auto !important;
}

img {
  width: 100%;
  height: auto;
}

@media (min-width:1400px) {
  img {
    width: auto;
    height: auto;
  }
}

/* lines */

.horizontal-line {
  max-width: 90%;
  height: 1px;
  background: @lightgrey;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* BS container model */
@media (min-width:1920px)
{
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl {
    max-width: 1280px;
  }
}

/* Video intro */

#home-multimedia {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; 
  z-index: 99999;
  background: rgba(0,0,0,.9);
}

.video-toolbar {
  position: absolute;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: @font-color;
  padding: 10px 15px;
  cursor: pointer;
  transition: all linear .3s;  
}

.video-toolbar img {
  width: 50%;
  max-width: 200px;
}

#closePlayer {
  position: absolute;
  z-index: 9999;
  top: 22px;
  right: 20px;
  background: @blue;
  color: @white;
  padding: 8px 15px;
  cursor: pointer;
  transition: all linear .3s;
}

#closePlayer:hover {
  text-shadow: 1px 1px 4px @white;
}

video#bgvid { 
  position: absolute;
  
  top: -5%;
  
  left: 0;
  bottom: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: no-repeat;
  background-size: cover; 
}

/* Layout: brand, logo*/

.navbar-brand {
  padding: 0 0;
}

.afd-site-logo {
  width: auto;
  height: 52px;
}

@media (min-width:576px)
{
  .afd-site-logo {
    margin-left: -5px;
  }
}

@media (min-width:1200px)
{
  .afd-site-logo {
    height: 100px;
  }
}

/* Layout: navbar */

.navbar-wrapper {
  background-color: @white;
}

.navbar {
  margin-bottom: 0;
  border: none;
  max-width: 100%;
  min-height: 80px;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,.2);
}

@media (min-width:1200px)
{
  .navbar {
    min-height: 120px;
    padding: 0 0;
  }
}

.navbar-minified {
  min-height: 80px !important;
}

.navbar-minified .afd-site-logo {
  height: 52px;
}

.navbar-default {
  background: @blue;
}

.navbar-toggler {
  background: transparent;
  border: none;
  z-index: 9991;
  position: absolute;
  top: 24px;
  right: 0;
  font-size: 180%;
  color: @dark;
}

.nav-icon {
  width: 28px;
  height: 28px;
  position: relative;
  margin: 0 auto 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: @font-color;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2),.nav-icon span:nth-child(3) {
  top: 10px;
}

.nav-icon span:nth-child(4) {
  top: 20px;
}

.nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navbar-nav {
  margin-top: 0px;
}

.nav-link {
  padding-right: 15px;
  padding-left: 15px;
  cursor: pointer;
}

.nav-link,
.nav-link:link,
.nav-link:visited {
  color: @font-color;
}

.nav-link:focus,
.nav-link:focus:hover,
.nav-link:focus:active {
  color: @dkblue;
}

.nav-link.active {
  background-color: @dkblue;
  color: @white !important;
  padding-left: .5rem;
  padding-right: .5rem;
}

.nav-item,
.dropdown-item {
  /* font-size: 1.35rem; */
  text-align: left;
}

.nav-item .lsf {
  font-size: 130%;
}

.dropdown-toggle::after {
  font-size: .9rem;
  color: @grey;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  min-width: 15rem;
  border-left: 3px solid @dkblue;
  margin-top: 0;
}

.dropdown-menu .dropdown-menu .dropdown-item {
  padding-left: 2rem;
}

.dropdown-item,
.dropdown-item:link,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:visited,
.dropdown-item.active {
  background-color: @white;
  color: @font-color;
  font-weight: 300;
}

@media (min-width:992px) {
    
  .dropdown-item,
  .dropdown-item:link,
  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active,
  .dropdown-item:visited,
  .dropdown-item.active {
    text-align: left;
  }
}

@media (min-width:1400px) {
  .nav-item,
  .dropdown-item {
    /* font-size: 1.15rem; */
    text-align: inital;
  }
  
  .dropdown-menu {
    box-shadow: 0 8px 6px rgba(0,0,0,.15);  
  }
}


/* additional css for fixted top navbar */

.navbar-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  /* border-bottom: solid 1px @white; */
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
}

.navbar-fixed-height {
  min-height: 80px;
  padding: 0 0 10px;
}

.navbar-fixed-height .afd-site-logo,
.navbar-fixed-height .navbar-logo {
  height: 50px !important;
  width: auto;
  margin-top: .5rem;
}

.navbar-fixed-height .navbar-nav {
  margin-top: 15px;
}

.navbar-fixed-height .navbar-toggler {
  top: 15px;  
}

@media only screen and (max-width:480px) {
  .navbar {
    min-height: 76px;
  }
  
  .navbar-logo {
    height: 50px;
    width: auto;
  }
}


/* breadcrumbs */

.breadcrumbs-wrapper {
  background: @light;
}

.breadcrumbs {
  padding: 1rem .5rem;
  font-size: .8rem;
  color: @grey;
}

@media (min-width:1200px)
{
  .breadcrumbs {
    padding: 1rem 0;
  }
}

/* box shadows */

.box-shadow-bottom {
  box-shadow: 0 5px 5px rgba(0,0,0,.3);
}

/* Carousel slider */

.homeBanner {}

.slider-wrapper,
.homeBanner {
  position: relative;
  width: 100%;
  background: @white;
  box-shadow: 0 5px 5px rgba(0,0,0,.3);
}

.slider-background {}

.slider-panel-image {
  width: 100%;
  /* max-width: 200%; */
}

.panel-sticker {
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 6%;
  right: 3%;
  width: auto;
  height: auto;
}

.panel-sticker.sticker-default-small {
  width: 100px;
}

.panel-sticker.sticker-default-medium {
  width: 160px;
}

.panel-sticker.sticker-default-large {
  width: 240px;
}

@media (min-width:1400px) {
  .panel-sticker.sticker-default-small {
    width: 160px;
  }

  .panel-sticker.sticker-default-medium {
    width: 320px;
  }

  .panel-sticker.sticker-default-large {
    width: 480px;
  }
}

/* Carousel elements */

.Carousel {
  margin-bottom: 60px;
}

.carousel {
  position: relative;
  margin-top: 0;
}

.carousel-item {
  height: auto;
  overflow: hidden;
}

.carousel-caption {
  display: inline-block;
  width: 60%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-caption.caption-top {
  top: 15%;
}

.carousel-caption.caption-bottom {
  bottom: 12%;
}

.carousel-caption .caption {
  font-size: 3rem;
  display: inline-block; 
  /* background: @white; */
  padding: .5rem 2rem;
}

.carousel-caption a,
.carousel-caption a:link,
.carousel-caption a:visited {
  color: @font-color;
  display: inline-block;
}

.carousel-inner > .item > a > img.desktop, 
.carousel-inner > .item > img.desktop, 
.thumbnail a > img, .thumbnail > img.desktop {
  display: inline-block;
}

.carousel-inner > .item > a > img.mobile, 
.carousel-inner > .item > img.mobile, 
.thumbnail a > img, .thumbnail > img.mobile {
  display: none;
}

.pageBannerCarousel {
  margin-bottom: 2rem;
}

.carousel-indicators {
  bottom: -60px;
}

.contentCarousel .carousel-indicators {
  bottom: -50px;
}

.carousel-indicators li {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  margin-left: 4px;
  background-color: @light;
  background-clip: padding-box;
  opacity: .5;
  border-radius: 50%;
  border: solid 2px @grey;
  box-shadow: 0px 0px 6px rgba(0,0,0,.5);
}

.carousel-indicators li.active {
  background: rgba(0,102,153,1);
  background: linear-gradient(45deg, rgba(0,204,255,1) 0%, rgba(0,102,153,1) 100%);
  box-shadow: 0px 0px 6px rgba(0,0,0,.5); 
}

@media (max-width:1200px) 
{
  .pageBannerCarousel {
    margin-bottom: 1rem;
  }
  .carousel-caption.caption-top {
    top: 5%;
  }
  
  .carousel-caption.caption-bottom {
    bottom: 4%;
  }
  
  .carousel-caption .caption {
    font-size: 1.75rem;
    padding: 1rem 1rem;
    line-height: 1.75rem;
  }

  .carousel-inner > .item > a > img.desktop, 
  .carousel-inner > .item > img.desktop, 
  .thumbnail a > img, .thumbnail > img.desktop {
    display: none !important;
  }
  
  .carousel-inner > .item > a > img.mobile, 
  .carousel-inner > .item > img.mobile, 
  .thumbnail a > img, .thumbnail > img.mobile {
    display: inline-block !important;
  }
  
  .carousel .item img.mobile {
    width: 100%;
    max-width: 130%;
    margin-left: 0;
  }  
}

@media (max-width:576px) 
{
  .carousel-item {
    height: 50vh;
  }
  
  .carousel-caption .caption {
    font-size: 1.25rem;
    padding: .5rem 1rem;
    line-height: 1.75rem;
  }
  
  .carousel-indicators li {
    height: 8px;
    width: 8px;
  }
}

.carousel-control.left,
.carousel-control.right {
  background: none;
}

.carousel-control .arrow-left,
.carousel-control .arrow-right {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .arrow-left {
  left: 0;
  margin-left: 0;
  transition: all linear .3s;
}

.carousel-control .arrow-left:hover {
  margin-left: 10px;
}

.carousel-control .icon-next,
.carousel-control .arrow-right {
  right: 0;
  margin-right: 0;
  transition: all linear .3s;
}

.carousel-control .arrow-right:hover {
  margin-right: 10px;
}

/* Carousel overlays */

.carousel-overlay-image {
  height: 320px !important;
  width: auto !important;
  position: absolute;
  bottom: 0;
  transition: all linear .3s;
}

.zoom-image {
  transform: translate(0px, 0px, 0px);
  animation-name: zoompic;
  animation-duration: 60s;
}

@keyframes zoompic {
  0% {
    transform: scale(1, 1);
  }
  
  100% {
    transform: scale(1.5, 1.5);
  }
}

.carousel-overlay-image.overlay-image-left {
  left: 15px;
  text-align: center;
}

.carousel-overlay-image.overlay-image-center {
  left: 15px;
  right: 15px;
  text-align: center;
}

.carousel-overlay-image.overlay-image-right {
  right: 15px;
  text-align: right;
}

.carousel-overlay-background {
  width: auto;
  margin-right: 15px;
  margin-left: 15px;
  padding: 1rem 1rem 0;
  position: absolute;
  bottom: 6%;
  opacity: .9;
  text-align: left;
  font-size: .7em;
}

.carousel-overlay-background.bg-dkblue hr {
  border-top: solid 1px rgba(255,255,255,1);
}

.carousel-header-subtitle {
  display: inline-block;
  font-family: 'Bitter';
  font-size: .9rem;
  padding: .15rem 1rem;
  background: transparent;
  text-shadow: 1px 1px 6px rgba(0,0,0,.3);
  margin-bottom: .5rem;
}

.carousel-overlay-background.bg-dkblue {
  background-color: transparent !important;   /* remove bg-color*/
}

.carousel-overlay-background.bg-dkblue .carousel-header {
  display: inline-block;
  background-color: @dkblue;
  padding: .35rem .35rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.carousel-overlay-background.overlay-text-left {
  width: auto;
  left: 5px;
  right: 5px;
  text-align: center;
}

.carousel-overlay-background.overlay-text-center {
  left: 5px;
  right: 5px;
  text-align: center;
  width: auto;
}

.carousel-overlay-background.overlay-text-right {
  width: auto;
  left: 5px;
  right: 5px;
  text-align: right;
}

@media (min-width:576px) {
  .carousel-overlay-image {
    height: 600px !important;
  }
  
  .carousel-header-subtitle {
    font-size: 1rem;
  }
  
  .carousel-overlay-image.overlay-image-left {
    left: 10%;
    text-align: left;
  }
  
  .carousel-overlay-image.overlay-image-center {
    left: 15%;
    text-align: center;
  }
  
  .carousel-overlay-image.overlay-image-right {
    right: 10%;
  }
  
  .carousel-overlay-background {
    bottom: 8.5%;
    font-size: auto;
  }
  
  .carousel-overlay-background.bg-dkblue .carousel-header {
    padding: .65rem 1rem;
    font-size: 1.25rem;
    margin-bottom: 3px;
  }
  
  .carousel-overlay-background.overlay-text-left {
    left: 5%;
    right: 35%;
    text-align: right;
  }

  .carousel-overlay-background.overlay-text-center {
    left: 15%;
    bottom: 20%;
    text-align: center;
  }

  .carousel-overlay-background.overlay-text-right {
    left: 35%;
    right: 5%;
    text-align: left;
  }

}

@media (min-width:768px) {

}

@media (min-width:992px) {
  .carousel-overlay-image {
    height: 360px !important;
  }
  
  .carousel-overlay-image.overlay-image-left {
    left: 10%;
    text-align: right;
  }
  
  .carousel-overlay-image.overlay-image-center {
    left: 35%;
    text-align: center;
  }
  
  .carousel-overlay-image.overlay-image-right {
    right: 10%;
    text-align: left;
  }
  
  .carousel-overlay-background {
    bottom: 10%;
  }
  
  .carousel-overlay-background.bg-dkblue .carousel-header {
    padding: .65rem 1rem;
    font-size: 1.65rem;
    margin-bottom: 3px;
  }

  .carousel-overlay-background.overlay-text-left {
    left: 5%;
    right: 35%;
  }

  .carousel-overlay-background.overlay-text-center {
    left: 35%;
  }

  .carousel-overlay-background.overlay-text-right {
    left: 35%;
    right: 5%;
  }

}

@media (min-width:1400px) {
  .carousel-overlay-image {
    height: 560px !important;
  }
  
  .carousel-overlay-image.overlay-image-left {
    left: 20%;
    text-align: right;
  }
  
  .carousel-overlay-image.overlay-image-center {
    left: 35%;
    text-align: center;
  }
  
  .carousel-overlay-image.overlay-image-right {
    right: 20%;
    text-align: left;
  }
  
  .carousel-overlay-background {
    bottom: 12%;
  }
  
  .carousel-overlay-background.bg-dkblue .carousel-header {
    padding: .65rem 1rem 1rem;
    font-size: 2.25rem;
    margin-bottom: 3px;
  }
  
  .carousel-header-subtitle {
    font-size: 1.65rem;  
  }
  
  .carousel-overlay-background.overlay-text-left {
    left: 5%;
    right: 40%;
  }

  .carousel-overlay-background.overlay-text-center {
    left: 35%;
  }

  .carousel-overlay-background.overlay-text-right {
    left: 40%;
    right: 5%;
  }

}

/* page Banner */

.pageBanner {
  position: relative;
}

.pageBannerImage {
  background-position: center;
  background-size: cover;
  height: 120px;
}

.pageBannerTitle {
  position: absolute;
  top: 50%;
  font-family: 'Bitter';
  font-weight: 400;
  font-size: 1.15rem;
  color: @white;
  text-shadow: 1px 1px 8px rgba(0,0,0,.3);
}

.pageBannerVideoclip {
  height: 78vh;
  overflow: hidden;
  position: relative;
}

.pageBannerVideoclip video {
  position: absolute;
  top: -10vh;
  width: 100vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.pageBannerVideoclip img.clipCover {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: auto;
  margin-left: -50%;
}

.pageBannerVideoclip .skipVideo {
  position: absolute;
  z-index: 10;
  bottom: 7.5%;
  left: 44%;
  display: inline-block;
  background: @dkblue;
  color: @white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  padding: 0;
  line-height: 38px;
}

@media (min-width:576px) {
  .pageBannerTitle { 
    top: 55%;
  }
  
  .pageBannerVideoclip {
    height: 42.5vw;
  }
  
  .pageBannerVideoclip .skipVideo {
    left: 48%;  
  }
}

@media (min-width:1200px) {
  .pageBannerImage {
    height: 280px;
  }  
  
  .pageBannerTitle {
    top: 60%;
    font-size: 2rem;
  }
}

@media (min-width:1400px) {
  .pageBannerVideoclip {
    height: 90vh;
  }
  
  .pageBannerVideoclip .skipVideo {
    left: 49.5%;  
  }
}

/* Layout: main content wrapper */

.content-wrapper {
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.content-wrapper .document ul li,
.content-wrapper .document ol li {
  margin-bottom: 1rem;
}

/* document content */

.content-panel,
.section-padding {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.content-panel h1 {
  margin-bottom: 30px;
  text-align: center;  
}

.content-panel-after {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width:1200px)
{
  .content-panel,
  .section-padding {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .content-panel h1 {
    margin-bottom: 60px;
    text-align: center;  
  }
  
  .content-panel-after {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* sections */

section {
  background-image: unset;
  background-repeat: no-repeat;
  background-size: cover;  
}

section.padding-small {
  padding-top: 15px;
  padding-bottom: 15px;
}

section.padding-medium,
section.padding-default {
  padding-top: 30px;
  padding-bottom: 30px;
}

section.padding-large {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.padding-xlarge {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width:1200px)
{
  section.padding-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  section.padding-xlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  } 
}

.pt-0 {
  padding-top: 0px;
}

.pt-25 {
  padding-top: .5rem;
}

.pt-50 {
  padding-top: 1rem;
}

.pt-75 {
  padding-top: 1.5rem;
}

.pt-100,
.pt-10 {
  padding-top: 2rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-25 {
  padding-bottom: .5rem;
}

.pb-50 {
  padding-bottom: 1rem;
}

.pb-75 {
  padding-bottom: 1.5rem;
}

.pb-100,
.pb-10 {
  padding-bottom: 2rem;
}

.plr-0,
.plr-5,
.plr-10,
.plr-15,
.plr-25 {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width:576px) {
  .pt-0 {
    padding-top: 0px;
  }

  .pt-25 {
    padding-top: 1rem;
  }

  .pt-50 {
    padding-top: 2rem;
  }

  .pt-75 {
    padding-top: 3rem;
  } 
  
  .pt-100,
  .pt-10 {
    padding-top: 4rem;
  }
  
  .pb-0 {
    padding-bottom: 0px;
  }

  .pb-25 {
    padding-bottom: 1rem;
  }

  .pb-50 {
    padding-bottom: 2rem;
  }

  .pb-75 {
    padding-bottom: 3rem;
  } 
  
  .pb-100,
  .pb-10 {
    padding-bottom: 4rem;
  }
}

@media (min-width:1400px) {
  .pt-0 {
    padding-top: 0px;
  }

  .pt-25 {
    padding-top: 1.5rem;
  }

  .pt-50 {
    padding-top: 3rem;
  }

  .pt-75 {
    padding-top: 4rem;
  } 
  
  .pt-100,
  .pt-10 {
    padding-top: 6rem;
  }
  
  .pb-0 {
    padding-bottom: 0px;
  }

  .pb-25 {
    padding-bottom: 1.5rem;
  }

  .pb-50 {
    padding-bottom: 3rem;
  }

  .pb-75 {
    padding-bottom: 4rem;
  } 
  
  .pb-100,
  .pb-10 {
    padding-bottom: 6rem;
  }
  
  .plr-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .plr-5 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .plr-10 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .plr-15 {
    padding-left: 15%;
    padding-right: 15%;
  }

  .plr-25 {
    padding-left: 25%;
    padding-right: 25%;
  }
}

/* content elements, boxes */

.contentElementBox {}

.contentElementBox.img-border-rounded img {
  border-radius: 50%;
  overflow: hidden;
}

.contentElementBox.img-border-roundShadow img {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 1px 1px 8px rgba(0,0,0,.15);
}

.contentElementBox img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.contentElementBox .boxTextPreview {
  height: 15.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.autorAvatarSmall {
  display: inline-block;
  margin-right: .5rem;
  margin-bottom: .65rem;
}

.autorAvatarSmall img {
  height: 80px;
  width: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 1px 1px 8px rgba(0,0,0,.15);
}

@media (min-width:576px) {
  .contentElementBox.img-border-rounded img,
  .contentElementBox.img-border-roundShadow img {
    max-width: 70%;
  }
}

@media (min-width:992px) {
  .contentElementBox.img-border-rounded img,
  .contentElementBox.img-border-roundShadow img {
    max-width: 100%;
  }
}


/* Multimedia */

.gallery-preview {
  margin-bottom: 1.25rem;
  height: auto;
}

.gallery-preview img {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: all linear .3s;  
}

.gallery-preview img:hover {
  opacity: .7;
}

.newsblog-teaser,
.calendar-teaser,
.youtube-preview {
  background-color: @white;
  padding: 10px;
  box-shadow: 1px 1px 20px rgba(0,0,0,.1);
  margin-bottom: 3rem;
}

.bg-color .newsblog-teaser,
.bg-color .calendar-teaser,
.bg-color .youtube-preview,
.bg-dkblue .newsblog-teaser,
.bg-dkblue .calendar-teaser,
.bg-dkblue .youtube-preview {
  background-color: none !important;
  /* box-shadow: none !important; */
}

.bg-color .teaser-headline,
.bg-dkblue .teaser-headline,
.bg-color .teaser-text,
.bg-dkblue .teaser-text {
  color: @font-color; 
} 

.bg-color .teaser-options .btn-outline,
.bg-dkblue .teaser-options .btn-outline {
  color: @font-color !important; 
  border-color: @font-color !important;
} 

.newsarticle,
.videoclip {
  background-color: @white;
  padding: 10px 1rem;
  box-shadow: 1px 1px 20px rgba(0,0,0,.1);
  margin-left: -15px;
  margin-right: -15px;  /* eliminate section x-paddings */
}

.newsblog-teaser .teaser-headline {
  word-break: break-word;
}

.newsblog-teaser .teaser-image {
  margin-bottom: 1rem;
}

.teaser-image .teaser-image-text {
  font-size: .8em;
  color: @grey;
  margin-top: .35rem;
}

.newsarticle .teaser-image img,
.newsblog-teaser .teaser-image img {
  width: 100%;
  height: auto;
}

.newsarticle .newsarticle-header {}

.newsarticle .newsarticle-subhead {
  font-weight: 400;
}

.newsarticle-gallery .gallery-preview {
  background: @dark;
  margin-bottom: 1.25rem;
  height: 132px;
  overflow: hidden;
}

.newsarticle-gallery .gallery-preview img {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: all linear .3s;  
}

.newsarticle-gallery .gallery-preview img:hover {
  opacity: .7;
}

.teaser-options {
  text-align: center;
  padding-top: .75rem;
}

.newsarticle-meta {
  border-top: solid 1px @light;
  border-bottom: solid 1px @light;
  font-size: .8em;
  padding: .25rem 0;
  margin: 1rem 0;
  color: @grey;
}

.newsarticle-meta .meta-item {
  display: inline-block;
  margin-right: 1rem;
}

.newsarticle-sharing .share-info {
  font-size: .85em;
  color: @grey;
}

.newsarticle-sharing a,
.newsarticle-sharing a:link,
.newsarticle-sharing a:hover,
.newsarticle-sharing a:active,
.newsarticle-sharing a:focus,
.newsarticle-sharing a:visited {
  display: inline-block;
  margin-left: .5rem;  
}

.newsarticle-weblink {
  margin-top: .75rem;
}

.newsarticle-weblink .weblink {
  display: block;
  margin-top: .35rem;
}

.newsarticle-weblink .lsf {
  font-size: 130%;
}

.newsarticle-sharing .lsf {
  font-size: 200%;
}

.loadNewsblogData {
  height:0px;
  overflow: hidden;
}

@media (min-width:768px)
{
  .gallery-preview {
    height: 230px;
  }
}

@media (min-width:768px)
{
  .gallery-preview {
    height: 300px;
  }
}

@media (min-width:1400px)
{  
  .newsblog-teaser,
  .newsarticle,
  .videoclip,
  .calendar-teaser,
  .youtube-preview {
    padding: 1rem 2rem;
  }
  
  .calendar-teaser {
    margin-bottom: 1rem;
  }
  
  .newsblog-teaser,
  .mediathek .youtube-preview {
    margin-bottom: 6rem;
  }
  
  .newsblog-teaser .teaser-image {
    margin-bottom: 0;
  }
  
  .newsarticle-gallery .gallery-preview {
    height: 132px;
  }
}

.youtube-preview {
    margin-bottom: 3rem;
  }

.youtube-preview iframe,
.youtube-clip {
  width: 100%; 
  height: 210px;
  max-height: 280px;
  margin-bottom: .65rem;
}

@media (min-width:768px)
{
  .youtube-preview iframe,
  .youtube-clip .youtube-clip {
    /* height: 360px; */
    /* max-height: 360px; */
  }
}

@media (min-width:1200px)
{
  .youtube-preview iframe,
  .youtube-clip {
    /* height: 320px; */
  }
  
  .teaser-headline {
    position: relative;
    height: 4em;
  }
  
  .teaser-headline .headline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .teaser-text {
    height: 9em;
  }
}

.videoclip {
  margin-bottom: 2rem;
}

.mediathek-player {}

.mediathek-player iframe,
.mediathek-player  {
  width: 100%;
  height: 320px;
  max-height: 320px;
}

.mediathek-description {
  padding-top: 2rem;
}

@media (min-width:768px)
{
  .mediathek-player iframe,
  .mediathek-player  {
    height: 640px;
    max-height: 640px;
  }
}

iframe.iframeVideo {
  width: 100%;
  /* height: 360px; */
}

@media (min-width:1200px) {
  iframe.iframeVideo {
    /* height: 600px; */
  }
}

/* Petition */

.petition {}

.petition-meta {
  margin-top: 1rem;
}

.petition-meta .meta-date {}

.petition-meta .meta-decision-maker {
  margin-top: 1rem;
}

.petition-cover {
  margin-bottom: 2rem;
}

.petition-description {}

.petition form label {
  font-size: .7em;
  font-weight: bold;
}

.petition .smaller {
  display: inline-block;
  font-size: .7em;
  line-height: 1.35em !important;
  padding-top: .35rem;
}

.petition-downloads {
  padding: 1rem;
}

.petition-downloads .download {
  text-align: center;
  margin-bottom: .35rem;
}

/* news list */

.news-list {}

.news-list .news-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px @light;
}

.news-list .news-item:last-child {
  border-bottom: none;
}

.news-list .news-item .meta {
  color: @grey;
  font-size: .85rem;
  padding: 5px;
  border-top: solid 1px @light;
  border-bottom: solid 1px @light;
  margin-bottom: .5rem;
}

.news-list .news-item .meta .lsf {
  margin-right: 5px;
}

.news-list .news-item .date,
.news-list .news-item .autor {
  display: inline-block;
  padding: 0 0;
}

.news-list .news-item .autor::before {
  content: '|';
  display: inline-block;
  margin: 0 10px;
}

.news-list .news-item .headline {
  text-align: left;
}

.news-list .news-item .image-link {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.news-list .news-item .image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  margin-bottom: 1rem;
}

.news-list .news-item .image:hover {
  box-shadow: 1px 1px 6px rgba(0,0,0,.25);
}

.news-list .news-item .teaser {}

.news-list .news-item .teaser::after {
  display: block;
  margin-bottom: 1rem;
}

.news-list .news-item .link::before {
  display: block;
  text-align: right;
  margin-top: 2rem;
  margin-left: 15px;
}

.news-list .news-item .link {
  display: inline-block;
  text-align: right;
  margin-top: .65rem;
  float: right;
  margin-right: 0;
}

@media (min-width:768px)
{  
  .home-news .news-image img {
    height: 220px;
  }
}

@media (min-width:1200px)
{
  .home-news .news-image img {
    height: 264px;
  }
  
  .home-news .news-header .news-headline {
    height: 3rem;
    overflow-y: hidden;
  }
  
  .home-news .home-teaser {
    height: 7.5rem;
    overflow-y: hidden;
  }
  
  .news-list .news-item .meta {
    margin: .5rem 0;
  }
  
  .news-list .news-item .image {
    margin-bottom: 0;
  }
}

/* calendar events */

.events-list {}

.events-list .event-item {
  margin-bottom: 2rem;
}

.eventDate {
  border: solid 5px @blue;
  padding: 10px 10px;
  text-align: center;
  display: inline-block;
  margin-top: .25rem;
}

.eventDate .eventDay,
.eventDate .eventMonth,
.eventDate .eventYear {
  display: block;
  line-height: 1.1em;
}

.eventDate .eventDay {
  font-size: 1rem;
  font-weight: 600;
}

.eventDate .eventYear {
  font-size: 1rem;
  font-weight: 600;
}

.event-item .eventHeader {
  margin-bottom: .5rem !important;
}

.event-item .eventMeta {
  padding: 0;
  color: @grey;
}

.modal .event-item .eventMeta {
  color: @white;
}

.event-item .eventMeta .meta-location,
.event-item .eventMeta .meta-time {
  display: inline-block;
  margin-right: .35rem;
  padding-right: .5rem;
  border-right: solid 1px @grey;
  font-size: .7em;
}

.event-item .eventMeta span:last-child {
  border-right: none;
}

.event-item .eventImage {
  margin-bottom: 1rem;
}

.event-item .eventImage img {
  width: auto;
  max-width: 100%;
}

.event-item .eventDescription {}

@media (min-width:1200px) {  
  .eventDate {
    margin-top: .5rem;  
  }
  
  .eventDate .eventDay {
    font-size: 2rem;
    letter-spacing: -1px;
    font-weight: 600;
  } 
  
  .eventDate .eventYear {
    font-size: 1.5rem;
    font-weight: 600;
  } 
}

/* faq */

.faqList {}

.faqElement {
  border-bottom: solid 1px @light;
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.faqElement:last-child {
  /* border-bottom: none; */
}

.faqElement .faqData {
  display: none;
}

.faqSwitchElement {
  cursor: pointer;
}

.faqSwitch {
  display: inline-block;
  color: @blue;
  font-size: 125%;
  font-weight: 300;
  margin-top: -10px;
}

.faqSelected {
  transform: rotate(180deg);
  padding-bottom: .35rem;
}

/* portraits listings */

.portraits-list {}

.portraits-list .portrait {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px @grey;
}

.portraits-list .portrait:last-child {
  border-bottom: none;
}

.portrait .portrait-image-border {
  text-align: center;
}

.portrait .portrait-image-border img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.portrait .portrait-data-border {
  position: relative;
  height: auto;
  min-height: 160px;
  margin-top: -2rem;
}

.portrait .portrait-name {
  display: inline-block;
  padding: .35rem .65rem;
}

.portrait .portrait-button {
  text-align: center;
}

@media (min-width:768px) {  
  .portrait .portrait-data-border {
    margin-top: 1rem;  
  }
}

/* document banner */

.document-banner {}

.document-banner img {
  width: 100%;
  height: auto;
}

/* document */

.document {}

.document .document-title {
  margin-bottom: .5em;
  text-align: center;
}

.document .document-subtitle {
  margin-bottom: 1.5em;
  text-align: center;
}

.document .news-teaser {
  /* background: @light; */
  min-height: 400px;
  /* padding: 15px; */
  margin-bottom: 20px;
}

.document .news-teaser .news-headline {
  color: @blue;
  font-family: "Barlow Condensed";
}

.document .news-teaser .news-autor {
  color: @grey;
  font-size: .9em;
  padding: 10px 0;
}

/* document: newsblog */

.document-news .news-header {
  height: 3.35em;
  overflow: hidden;
}

.document-news {
  background: @light;
  padding: 10px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px; 
  margin-bottom: 50px;
}

.document-news .news-image {
  width: 100%;
  height: 250px;
  position: relative;
  background: @blue;
  overflow: hidden;
}

.document-news .news-image-link {
  display: block;
  background: @white;
  border:solid 1px @light;
  padding: 2px;
  transition: all linear .3s;
}

.document-news .news-image-link,
.document-news .news-image-link img {}

.document-news .news-image-link:hover {
  border:solid 1px @blue;
}

.document-news .news-teaser {
  min-height: 200px;
  padding: 0;
  margin-bottom: 0;
}

@media (min-width:768px)
{  
  .document-news .news-image img {
    height: 220px;
  }
}

@media (min-width:1200px)
{
  .document-news .news-image img {
    height: 264px;
  }
  
  .document-news .news-header {
    margin-bottom: .5rem;  
  }
  
  .document-news .news-header .news-headline {
    height: 3.65rem;
    overflow-y: hidden;    
  }
  
  .document-news .home-teaser {
    height: 7.5rem;
    overflow-y: hidden;
  }
}

/* newsblog / newsarticle */

.newsarticle {}

.newsarticle .newsarticle-headline {
  text-align: left !important;
  margin-bottom: .65em;
}

.newsarticle .newsarticle-text {}

.newsarticle .newsarticle-image {
  display: inline-block;
  margin-bottom: 1rem;
}

.mobile-newsarticle-image {
  display: block;
  margin: 10px 0;
  max-height: auto;
  border: none;
}

.newsarticle .newsarticle-image img {
  width: 100%;
}

.news-date {
  color: @dkblue;
  font-size: .95em;
  padding: 5px 0 10px;
}

.newsarticle .newsarticle-actions,
.newsarticle .newsarticle-metadata {
  border-top: solid 1px @grey;
  border-bottom: solid 1px @grey;
  padding: 10px 2px;
  margin: 1em 0;
}

.newsarticle .actions-info,
.newsarticle .newsarticle-metadata {
  font-size: .8em;
  color: @grey;
  text-transform: uppercase;
}

.newsarticle .newsarticle-actions img {
  width: 30px;
  height: auto;
  margin-top: 5px;
  margin-right: 3px;
}

/* search */

.searchToggler {
  position: relative;
  background-color: @white;
  border: none;  
  display: inline-block;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.searchToggler .search-icon {
  display: inline-block;
  margin-top: -2px;
}

.searchToggler .search-icon .lsf {
  font-size: 130%;
}

.search-results-header {
  margin-top: 2rem;
}

.search-results {}

.search-result-preview {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px @light;
  margin-bottom: 1rem;
}

.search-result {}

.search-result .search-result-title {}

.search-result .search-result-meta .meta {
  color: @grey;
  font-size: .85rem;
  padding: 5px;
  border-top: solid 1px @light;
  border-bottom: solid 1px @light;
  margin-bottom: .5rem;
}

.search-result .search-result-meta .meta .lsf {
  margin-right: 5px;
}

@media (min-width:1400px) {
  .search-result-preview {
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
  }
}

/* Document Image map */

.imagemap-wrapper {
  width: 100%;
}

tspan {}

@media (min-width:1200px)
{
  .imagemap-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Image galleries */

.imageGalleryPreview {
  height: 180px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all linear .3s;
}

.image-gallery {
  position: relative;
}

.image-gallery .gallery-image {
  position: relative;
  max-height: 100px;
  overflow:hidden;
  margin-bottom: 1rem; 
  background-color: @white;
  border: solid 5px @white;
  overflow: hidden;  
  box-shadow: 0 2px 5px rgba(0,0,0,.15);
  transition: all linear .3s;
}

.image-gallery .gallery-image:hover {
  background-color: @dark;
  opacity: .8;
  border: solid 5px @blue;
}

.image-gallery .gallery-image .thumbnail {
  display: inline-block;
  background-color: @dark;
  opacity: 1;
  transition: all linear .3s;
}

.image-gallery .gallery-image .thumbnail:hover {
  opacity: .8;
}

.image-gallery .gallery-image .thumbnail img {
  width: 100%;
  height: auto;
}

.image-gallery .gallery-image .gallery-image-description {}

.image-gallery .image-gallery-description {}

.image-gallery .image-gallery-description.top-description {}

.image-gallery .image-gallery-description.bottom-description {}

@media (min-width:576px)
{
  .image-gallery .gallery-image {
    max-height: 140px;
  }
}

@media (min-width:992px)
{
  .image-gallery .gallery-image {
    max-height: 180px;
  }
}

@media (min-width:1400px)
{
  .image-gallery .gallery-image {
    max-height: 200px;
  }
}

/* Multiemdia document teaser */

.multimedia-teaser {
  width: 100%;
  background: @dkblue url('../img/bg_baden_wuerttemberg.jpg') center top no-repeat;
  max-height: 600px;
  overflow: hidden;
  padding: 60px 0;
}

.multimedia-teaser .multimedia-teaser-header {
  text-align: center;
  color: @white;
}

.multimedia-teaser .multimedia-teaser-text,
.multimedia-teaser a,
.multimedia-teaser a:link,
.multimedia-teaser a:visited {
  color: @white !important;  
}

iframe {
  width: 100%;
  /* min-height: 340px; */
}

iframe.youtube {
  width: 100%;
  height: 240px;
}

@media (min-width:576px)
{
  iframe {
    width: 100%;
    /* min-height: 480px; */
  }
  
  iframe.youtube {
    width:100%; 
    max-width:720px; 
    /* height: 480px; */
  }
}

/* Calendar */

.calendar-month-title {
  margin-bottom: 15px;
}

.calendar-month {   /* <ul> */
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px @light;
  margin-left: -40px;
}    

.calendar-entry {
  margin-bottom: 15px;
}

.entry-toggle {
  display: inline-block;
  background: @blue;
  color: @white;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
}

.calendar-entry .entry-title {
  font-size: 1.1em;
  color: @blue;
  margin-bottom: 4px;
  cursor: pointer;
}

.calendar-entry .entry-district {
  color: @grey;
  font-size: .85em;
}

.calendar-entry .entry-details {
  display: none;
  padding-top: 5px;
  padding-bottom: 10px;
  padding: 10px 15px 10px;
  background-color: @light;
}

.calendar-entry .entry-details .googleMap {}

.calendar-entry .entry-details .googleMap iframe {
  width: 100%; 
  height: 360px;
}

@media only screen and (max-width:480px) {
  .calendar-entry .entry-details .googleMap iframe {
    width: 100%; 
    height: 250px;
  }  
}

/* contact form */

.contactForm {}

.contact-form-border {
  background-color: @light;
  padding: 15px;
}

.contactForm .label,
.form label {
  font-size: .7em;
  margin-bottom: .15rem;
}

.contactForm #emailAddress,
.form #emailAddress {
  display: none;
}

/* subscribe forms */

.ajax-subscribe-form {
  background: @light;
  color: @font-color;
  padding: 1rem;
}

.ajax-subscribe-form h3 {
  color: @font-color !important;
}

.ajax-subscribe-form label {
  display: none;
}

.ajax-subscribe-form input {
  border: solid 1px @dark;
}

.ajax-subscribe-form button {}

.ajax-subscribe-form a,
.ajax-subscribe-form a:link,
.ajax-subscribe-form a:visited {
  font-weight: bold;
}

.ajax-message {
  padding: .5rem 1rem;
}

/* Search */

.search-info {
  padding: 1rem 1rem;
}

/* Pagination */

.pagination-wrapper {
  width: 100%;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}

.pagination {
  width: 100%;
  display: block;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-item .page-link {
  display: inline-block;
  font-size: .8rem;
}

.pagination .page-item .page-link.active,
.pagination .page-item .page-link.active:link,
.pagination .page-item .page-link.active:visited {
  background-color: #e9ecef !important;
  font-weight: bold;
}

/* newsflash */

.newsflash {
  background: rgba(0,0,0,.9);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999998;
  display: none;
}

.newsflash .newsflash-switch {
  position: fixed;
  z-index: 999999;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: @white;
  color: #333;
  text-align: center;
  line-height: 33px;
  font-weight: bold;
  border: solid 3px #333;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  cursor: pointer;
}

.newsflash .newsflash-box {
  background: @white;
  color: #333;
  padding: 15px;
  position: fixed;
  top: 10%;
  left: 15px;
  right: 15px;
  height: auto;
  border-radius: 5px;
}

@media (min-width:992px) {
  .newsflash .newsflash-box {
    max-width: 800px;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
  }  
}

/* Social Media */

.footer-bottom-links {}

.footer-bottom-links {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.social-media {}

.social-media .btn-social-media {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 2em;
  padding: 5px;
  line-height: 22px;
}

/* Footer */

footer {
  background: @blue url('../img/bg_afd_2024.jpg') center no-repeat;
  color: @white;
  padding-top: 30px; 
  padding-bottom: 30px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0; 
  overflow-y: auto;
  z-index: 0;
  height: 400px;
  font-size: .9em;
}

.small-footer {
  font-size: .8em;
}

footer .footer-box {
  position: relative;
  padding: .5rem 1rem;
  color: @white;
  text-align: center;
}

footer .footer-box .footer-box-header {
  font-family: "Barlow Condensed";
  color: @white;
  cursor: pointer;
}

.footer-box .footer-box-content {
  /* display: none; */
}

.toggleFooterBox {
  width: 14px;
  height: 14px;
  position: absolute;
  z-index: 10;
  top: -8px;
  right: 1rem;
  transform-origin: center !important;
  transform: rotate(45deg);
  cursor: pointer;
}

.toggleFooterBox.open {
  transform-origin: center;
  transform: rotate(0deg);
}

.toggleFooterBox .btn-icon-close {
  display: inline-block;
  height: 14px;
  width: 14px;
  background: transparent;
  transform-origin: center;
}

.toggleFooterBox .btn-icon-close span {
  display: inline-block;
  height: 2px;
  width: 14px;
  background: @white;
}

@media (min-width:576px)
{
  footer {
    overflow-y: hidden;
  }
  
  .footer-spacer {
    margin-bottom: 400px;
    height: 1px; 
    background: transparent;
  }
  
  footer {
    padding-top: 30px;
    padding-bottom: 15px;
    position: fixed; 
    z-index: -1;  
  }
  
  footer .footer-box {
    text-align: left;
  }
  
  .footer-box .footer-box-content {
    display: block;
  }
}

@media (min-width:1200px)
{
  footer .footer-box {
    padding: 2rem 1rem;
    text-align: left;
  }  
}

footer .footer-copyright {
  position: absolute;
  z-index: 99;
  bottom: 0;
  padding-bottom: .65rem;
  left: 0;
  right: 0;
  font-size: .7em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-spacer {
  margin-bottom: 0px;
  margin-bottom: 400px;
}

footer ul {
  list-style-type: none;
  list-style-image: none;
  list-style-position: inside;
  margin-left: -35px;
}

/* Animated */

.animated {
  opacity: 0;
}

.animated.animate__slideInUp {
  top: -80px;
}

.animated.animate__slideInLeft {
  left: -50px;
}

.animated.animate__slideInRight {
  right: -50px;
}

.scroll-animated {
  opacity: 0;
  position: relative;
  top: 80px;
}

.scroll-animated-inverted {
  opacity: 0;
  position: relative;
  top: -80px;
}

/* scroll top */

.scrolltop {
  width: 60px;  
  height: 30px;
  padding: .35rem .5rem;
  line-height: 30px;
  background-color: @dkblue;
  color: @white !important;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 47%;
  right: 47%;
}

/* modals */

.modal-content {
  border-radius: 0px;
  border: none;
  background-color: @dkblue;
}

.modal-header,
.modal-footer {
  border: none;
}

.modal-header {
  padding-bottom: .5rem;
}

.modal-body {
  padding-top: .5rem;
}

.modal-footer {
  text-align: center;
}

.modal-content,
.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4,
.modal-content h5,
.modal-content h6,
.modal-content a,
.modal-content a:link,
.modal-content a:visited,
.modal .close,
.modal .close span {
  color: @white !important;
}

.modal-content a:hover,
.modal-content a:active {
  text-shadow: 1px 1px 6px rgba(255,255,255,.7);
}

.modal-content .btn-afd,
.modal-content .btn-afd:link,
.modal-content .btn-afd:visited,
.modal-content .btn-default,
.modal-content .btn-default:link,
.modal-content .btn-default:visited {
  background: @red;
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.modal-content .btn-afd:hover,
.modal-content .btn-afd:active,
.modal-content .btn-default:hover,
.modal-content .btn-default:active {
  background: @dkred;
  color: @white;
  text-decoration: none;
}

@media (min-width:768px) {
  .modal-dialog {
    max-width: 680px;
  }
}

@media (min-width:1200px) {
  .modal-dialog {
    max-width: 800px;
  }
}

/* img width */

.w-100 img {
  width: 100%;
  height: auto;
}

.w-xs {
  width: 16px;
}

.w-sm {
  width: 30px;
}

.w-md {
  width: 60px;
}

.w-lg {
  width: 120px;
}

.w-xl {
  width: 240px;
}

@media (min-width:576px) {
  .w-100 img {
    /* max-width: 66vw; */
  }  
}

@media (min-width:768px) {
  .w-100 img {
    /* max-width: 50vw; */
  }  
}

@media (min-width:992px) {
  .w-100 img {
    max-width: auto;
  }  
}

.w-75 img {
  width: 75%;
  height: auto;
}

.w-50 img {
  width: 50%;
  height: auto;
}

/* color schemes */

.bg-dkblue,
.bg-grey,
.bg-afd-radiance,
.bg-grey h1,
.bg-grey h2,
.bg-grey h3,
.bg-afd-radiance h1,
.bg-afd-radiance h2,
.bg-afd-radiance h3 {
  color: @white;
}

.bg-dkblue .btn-afd,
.bg-dkblue .btn-afd:link,
.bg-dkblue .btn-afd:visited,
.bg-dkblue .btn-default,
.bg-dkblue .btn-default:link,
.bg-dkblue .btn-default:visited {
  background: @red;
  color: @white;
  text-decoration: none;
  transition: all linear .5s;
  display: inline-block;
  padding: 10px 30px;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.bg-dkblue .btn-afd:hover,
.bg-dkblue .btn-afd:active,
.bg-dkblue .btn-default:hover {
  background: @dkred;
  color: @white;
  text-decoration: none;
}

.bg-afd-radiance a,
.bg-afd-radiance a:link,
.bg-afd-radiance a:link:visited {
  color: @white;
}

.bg-afd-radiance a:link:hover,
.bg-afd-radiance a:link:active {
  color: @white;
  text-shadow: 1px 1px 6px rgba(255,255,255,.7);
}

.bg-dkblue .newsblog-teaser .teaser-headline *,
.bg-dkblue .newsblog-teaser .newsarticle-meta * {
  color: @font-color;
}

.bg-blue .carousel-indicators li,
.bg-dkblue .carousel-indicators li,
.bg-afd-radiance .carousel-indicators li {
  background-color: @white;
}

.bg-dkblue .news-list .news-item {
  border-color: #002447;
}

.bg-grey .news-list .news-item {
  border-color: #404040;
}

.bg-grey .news-list .news-item .meta {
  color: @light;
}
