@charset "utf-8";
/* 
Style "coloured" = Main Colour CD/CI Company
Style "secondary" = Secondary CD/CI Colour (to highlight things, as hover, ..)

kulturscheune-liebenau Colours:
Stlyename | Description | HEX Value | RGB Value

coloured  | medium blue | #6666CC   | rgba(102, 102, 204)
with triadic color cc6666 as secondary (redish)
#4040bf as shadow

bg-green -> green
bg-gray -> gray
etc.
*/

/* via vendor/bs/css werden more Bootstrap Formats added, like
text-center, text-white, .. mixed in via scss utilities */

/* self hosted fonts */ 

/* noto-sans-regular - latin NotoSans-Regular.ttf: Copyright 2015-2021 Google LLC. All Rights Reserved. Licensed under the SIL Open Font License, Version 1.1. */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/noto-sans-v27-latin-regular.svg#NotoSans') format('svg'); /* Legacy iOS */
}
/* noto-sans-700 - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v27-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), 
       url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), 
       url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), 
       url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg'); 
}

/* HEADLINES */
/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-italic - latin */
@font-face {
  font-display: swap; 
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
}



/****** Bootstrap 4 *****/
/*
// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }  
*/


/***** general Setup *****/

/* CSS variables to adjust colours centrally */ 
:root {
/*  --coloured:  #bf4040; 
  --secondary: #4040bf;   */ 
 --coloured:  #cc6666; /*  primary company colour */ 
 --secondary: #6666cc;
/*** general colours ***/  
  --red:       #ff0000; /* general red -> unused */
  --green:     #a2bfa9; 
  --blue:      #0000ff; /* general blue -> unused */
  --dark:      #424242; /* dark gray */
  --gray:      #777777;   /* #c8c8c8; /* light gray */
  --white:     #ffffff;
  --black:     #000000;
}

/***needed due to bg image ***/
html, body {
  max-width: 100%;
  height:    100vh;  /* wg. Internet Explorer */
  /* overflow-x: hidden; */
}
body {
	width:  100%;
	height: 100%;
  /* position: fixed; */
  background-color: var(--white);
}

html {
  width:  100%;
  height: 100%;
  overflow-x: hidden;
}
/**** due to bg pic fullsize, otherwise not needed */

body {
  font-family: 'Noto Sans';
}

.container-fluid {
  padding-left:  0;
  padding-right: 0;
}

.h-100 {
  height: 100%!important;
}

/* Limit to FHD on XXXL-Monitors  */
.container-fluid, .row, .container {
  max-width: 1920px;
}

.row {
  margin-right: 0;
  margin-left:  0;
  padding-top:  20px;
  padding-bottom: 10px;
  max-width: 100%;
}


/* disable top- and bottom-padding in rows / cols if needed */ 
.nopad {
  padding-top:    0;
  padding-bottom: 0;
  padding-left:   0;
  padding-right:  0;
}

.abstand {
  padding-bottom: 5px;
  padding-top:    5px;
  padding-left:   25px;
  padding-right:  25px;
}



/*****     some Joomla specific stuff      *****/


/*#content .row {   /* needed to get rid of "display:flex" via grid.scss, which */
/*  display: unset; /* conflicts the responsive breaking in blog posts / lists  */
                  /* but: shall just affect content area, rest should be flex */
/*  }  */

/* row must be display:flex to have second coloumn (for sidemenu), but then 
blog-items in blog category view don't shrink .. so edited here to fit in */ 

#content .items-row, #content .blog-post, #content .item, 
#content .item-image IMG{
  width:     100%;
  max-width: 90vw;
}

/* set max sizes for images in blog category view (just there,  NOT in article
view etc) => better for text-width next to the images on small devices and 
benefit: bigger images get fitted to same size on thee blog list              */
@media (max-width: 699px) {
  #content .blog .item-image IMG {
    width: 90vw;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  #content .blog .item-image IMG {
    max-width: 200px;
  }
}
@media (min-width: 750px) and (max-width: 1199px) {
  #content .blog .item-image IMG {
    max-width: 250px;
  }
}
@media (min-width: 1200px) {
  #content .blog .item-image IMG {
    max-width: 350px;
  }
}

/***** some space around images in articles *****/
/*div[itemprop="articleBody"] IMG.pull-left {
    float: right;
    padding-right: 10px;
}
div[itemprop="articleBody"] IMG.pull-right {
    float: right;
    padding-left: 10px;
}
*/




/************ SLIDER, CAROUSEL and COUNTER etc in optionalstyles.css **********/





/* some space after blog contents before showing next section */
.blog { margin-bottom: 15px; }

/** limit slider size on item-page (referenzen) ***/
.item-page .carousel-item IMG { 
  max-height: 80vh;   /* generally fit to page height */
  max-width:  90vw;   /* if very large screen also fit to page width */
}


/* set inner area to max. 1600 px */
#content {
  max-width: 1600px;
  margin:    auto;
}

/* limit width of articles */
div[itemprop="articleBody"] { max-width: 1200px; }

/* in articles (only content area): assign 10px to to right if left-pulled IMG */ 
#content IMG.pull-left {
  /* padding-left: 10px!important; */
  padding-right: 10px!important;
}

/* assign some 10px blank space to the left of images that are pulled right */
#content IMG.pull-right {
  /* padding-left: 10px!important; */
  padding-left: 10px!important;
}


/***** some space around images in J3 articles *****/
/** alternative version to "only for area named=content" limitation as above **/
div[itemprop="articleBody"] IMG.pull-left {
  float:   left;
  padding-right: 10px;
}

div[itemprop="articleBody"] IMG.pull-right {
  float: right;
  padding-left: 10px;
}


.page-link {
  border: none!important;
  color: var(--secondary)!important;
}

.page-item.active .page-link  {  
  z-index: 1;
  border:  none!important;
  color:      var(--white)!important;
  background-color: var(--secondary);
}

.page-item:hover .page-link {
  color:     var(--white)!important;
  background-color: var(--coloured);
}


.icon-angle-left::before {
  content: ' \3008';
}
.icon-angle-right::before {
  content: ' \3009';
}
.icon-angle-double-left::before {
  content: ' \300a';
}
.icon-angle-double-right::before {
  content: ' \300b';
}


/*** modules spacing for following modules below / only pos sidemenu ***/
#sidemenu .moduletable,
#eventside .moduletable {
  margin-bottom: 30px;
}


@media (min-width: 768px) {
  div#sidemenu {
    padding-left: 10px;
  }
}

/* some space for items/text in modules */
.custom {
  padding-top:    20px;
  padding-bottom: 10px;
}

.custom P, 
.custom H1, .custom H2, .custom H3, .custom H4, .custom H5, .custom H6 {
  padding-left:  25px;
  padding-right: 25px;
}

.text P, .text H1, .text H2, .text H3, .text H4, .text H5, .text H6 {
  padding-left:   10px;
  padding-right:  10px;
  padding-top:    5px;
  padding-bottom: 5px;
}
/*** more font styling at fonts section later / ~line 550ff  ***/ 


/* remove custom padding for headpic / slider */
#headpic .custom, #slider .custom {
  padding-top:    0; 
  padding-bottom: 0; 
  max-width:   100%;
}

.custom IMG, mySides IMG,
#headpic .custom IMG, 
#slider .custom IMG {
  max-width: 100%;
}


/* readmore buttons in blog layout */
.readmore .btn {
  display: inline-block;
  font-weight: 400;
  color: var(--white);
  text-align:  center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border:  1px solid #000;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  background-color: var(--secondary);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.readmore .btn:hover {
  color:     var(--secondary);
  background-color: var(--coloured);
}


/****** content area styling ******/
/* after end of content -> at end of page above footer */
.footer-logo {
  padding-left:  20px;
  padding-right: 20px;
}


/********   Green Triangle Background overlay above white background  ********/
/*  needs a lot of modification to fit different cases (xs, sm & xl displays) */
/*  normal / max FullHD / from top right / fits for long and short content    */
/* (applied to the time, when alignement was top, not needed with bottom) */ 
.dreieck-green {
  background: url(../images/bg-scheune.jpg) bottom left no-repeat;  /* right */
  position:   relative;
  background-attachment: fixed;
}

/* XXL > W 1920px  .. (will repeat and also shift out of view if not this way */
@media (min-width: 1920px) {  
  .dreieck-green {
    background: url(../images/bg-scheune.jpg) bottom no-repeat;
    position:   relative;
    background-attachment: fixed;    
  }
}  

/* XXL > H 1080 .. (needed to stretch and fit in div on huge monitors) */
@media (min-height: 1080px) {  
  .dreieck-green {
    background: url(../images/bg-scheune.jpg) bottom no-repeat;
    position:   relative;
    background-attachment: fixed; 
    /*  -moz-background-size:100% 100%;
    -webkit-background-size:100% 100%;
    background-size:100% 100%;  */
  }
}  

/****** info box styling ******/

/* background triangle as layer above background image */
/* fixed height, otherwise modifications similar to greenD above needed */
.dreieck-white {
  height:    800px;
  background-image:  url(../images/background-whiteD.png);
  background-repeat: no-repeat;
  /*    background-position: center;  */ 
  position: relative;
}


#secondpic {
  height: 90vh;
}


#sideinfo {
  position: relative;
  top:   35px;
  right: 55px;
}


/***** background-image .. normal, large and XXL screens *****/
.bg-pic {
  background-image:  url(../images/bg-scheune.jpg); 
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  /* background-attachment: fixed; */
}


/* bg img small screens */
@media (max-width: 991px) {  
  .bg-pic {
    background-image:  url(../images/bg-scheune.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    /* background-attachment: fixed; */
    -webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
  }
  #sideinfo {
    position: absolute; 
    bottom:   unset; /* 35px; */ 
    right: 0px;
    left:  0px; 
  }
}  

/* XXL > Height .. (needed to stretch and fit in div on huge monitors) */
@media (min-height: 1020px) {  
  .bg-pic {
    background: url(../images/bg-scheune.jpg);
    background-repeat: no-repeat;
    background-position:  center;
    position: relative;
    /* background-attachment: fixed; */
    -webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
   }
} 


/***** sidemenu vertically => .nav needs to be unset from "flex" *****/
#sidemenu .nav {
  display:unset;
}


/* Klasse, um bilder innerhalb des DIVs automatisch auf responsiv zu setzen, */
/* damit man das in den beiträgen nicht extra machen muß */
.img-fluid IMG {
  max-width: 100%;
  height:    auto;
}

  
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, 
.col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11,
.col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, 
.col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11,
.col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7,
.col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, 
.col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, 
.col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-left:  0;
  padding-right: 0;
}

/* static navbar will cover slider/head-pic, so move it down a bit */
#headpic, #slider {
  /* margin-top: 75px; */
}


.header-logo {
  /* position: fixed; /* deaktiv wenn anderes menu */
  position: absolute;
  left: 0;
/*  right: 20px; /* deaktiv, wenn anderes menu */
/*  top:   30px;  /* usually 0, here lowered for design */
  z-index: 10000;
/* not fixed to left this time due to "centered" class for that area in tpl-index */
  margin-top:  0px;
  max-height:  125px; /* 125px;  /* 75 */
/* background: url(../img/ecke.png) 0 0 no-repeat;
  background-color: var(--white); 
  border-left:   1px solid rgba(230, 0, 3,.825);
  border-bottom: 1px solid rgba(230, 0, 3,.825); 
  border-bottom-left-radius: 10%!important; */ /* calc(.25rem - 1px); 
  z-index:10000;
*/
}

.header-logo IMG {
  height:     100px;
  max-height: 100px;
  width:      auto;
}

.header {
  /* background: url(../img/header-slide.png); */
  /* height: 680px; /*
  /* margin-top: 45px; */
  height: 75px;
}


.fixed-logo {
  position: fixed;
}





.links, .left {
  left:  0;
  text-align: left;
}

.rechts, .right {
  right:  0;
  text-align: right;
}

.centered {
  text-align:  center;
  align-items: center;
  justify-content: center;
  margin-left:  auto;
  margin-right: auto;
  align-content: center;
  align-self:    center;
  scroll-snap-align: center;
}

/* horizontal and vertical centered via flexbox */
.center-hv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


/* border stuff if needed */
.border-left {
  /* border-left:  1px solid rgba(36,156,227,.825); */
  border-left: 3px solid rgba(102, 102, 204, .5)!important;
     inset: 0 30px;  
}

.border-right {
  /* border-right:  1px solid rgba(36,156,227,.825); */
  border-right: 3px solid rgba(102, 102, 204, .5)!important;
     inset: 0 30px;
}

.bordered {
  border:  1px solid rgba(36,156,227,.825);
}




/***** Section Styling  *****/

.portfolio-item {
  padding:   unset;
  margin-bottom: 30px;
  padding-left:  15px;
}

.card-img-top, .card-img-top IMG {
  width: 100%;
/* border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
*/
}

IMG {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.card-title {
  margin-bottom: .75rem; 
}

.card-body {
  -ms-flex: 1 1 auto;
  flex:     1 1 auto;
  padding:  1.25rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card {
  position: relative;
  display:  -ms-flexbox;
  display:  flex;
  -ms-flex-direction: column;
  flex-direction:     column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--white);
  /*  background-clip: border-box;
  border: 1px solid rgba(36,156,227,.825); 
  border-radius: .25rem;  */   
  border: none; 
}

/* Section Projekte End */



/***** more optional Section stuff  *****/
.mb-3, .my-3 {
  margin-bottom: 1rem!important;
  margin-top:    1rem!important; 
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem!important;
  margin-top:    1.5rem!important;
}



/***** Fonts *****/
.big, big {
  font-size:   120%;
  font-weight: 700;
}

.small, small {
  font-size:   70%;
  font-weight: 400;
}

/** coloured and secondary switched because of background in primary colour! **/
/** usually a, h1-h6 = coloured, hover = secondary */
a /* a:visited */ {
  color:       var(--coloured);
  font-weight: 700;
}

/* general, different on coloured bg -> see there */
a:hover, a:focus {
  color: var(--gray);
}

div[itemprop="custom"]  {
  A {
    color: var(--coloured)!important;
  }
}


#copyright A {
  color: var(--dark)!important;
}



H1, H2, H3, H4, H5, H6 {
  font-weight: 400 !important;
  color:     var(--secondary);
  font-family: 'Playfair Display';
  /* font-style: italic;   */  
}

blockquote {
  font-family: 'Playfair Display';
  font-style:  italic;  
  font-size:   1.25rem;
}

H1, H2, H3, H4, H5, H6 {
  /* background: url(../img/title.png) 0 0 no-repeat; 
  padding-left: 10px; */
  padding-top: 5px;
}

H1 { font-size: 2rem;    padding-top: 25px; }  /* text-decoration: underline; */
H2 { font-size: 1.75rem; padding-top: 20px; }
H3 { font-size: 1.50rem; }
H4 { font-size: 1.25rem; }
H5 { font-size: 1.15rem; }
H6 { font-size: 1rem; font-weight: bold;}


HR {
  margin-top:    1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 3px solid rgba(102, 102, 204, .5)!important;
  /* color: var(--secondary); */
}

.btn-xl {
  text-transform: uppercase;
  padding:   1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}


/*****   Background Colours and Font Colours based on different states   *****/
/*** watch out:   coloured = bg-coloured     (always colours the Backgound,  */
/*** same with:   secondary = bg-secondary    never colouring the Font)      */
/*** --> Fonts in these areas are always coloured like assigned below        */ 
/*** BUT: blue (red, green,..) = assigns Font colour to blue (red, green,..) */
/*** AND: bg-blue, bg-red,..   = assigns background-color  + add. styles !   */

.coloured, .bg-coloured {
  background-color: var(--coloured);
}

.secondary, .bg-secondary {
  background-color: var(--secondary);
}

/* Headlines, Text, Links and Hover on coloured background */
.coloured P, .coloured H1, .coloured H2, .coloured H3, .coloured H4, .coloured H5, .coloured H6,
.coloured a, .coloured a:visited, .coloured a:focus, .coloured a:hover, .coloured a:active,
.bg-coloured P, .bg-coloured H1, .bg-coloured H2, .bg-coloured H3, .bg-coloured H4,
.bg-coloured H5, .bg-coloured H6, 
.bg-coloured a, .bg-coloured a:visited, .bg-coloured a:focus, .bg-coloured a:hover, .bg-coloured a:active {
  color: var(--white);
}

/* Headlines, Text, Links and Hover on background in secondary colour */
.secondary P, .secondary H1, .secondary H2, .secondary H3, .secondary H4, .secondary H5, .secondary H6,
.secondary a, .secondary a:visited, .secondary a:focus, .secondary a:hover, .secondary a:active,
.bg-secondary P, .bg-secondary H1, .bg-secondary H2, .bg-secondary H3, .bg-secondary H4,
.bg-secondary H5, .bg-secondary H6, 
.bg-secondary a, .bg-secondary a:visited, .bg-secondary a:focus, .bg-secondary a:hover, .bg-secondary a:active {
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}
/** slightly white opacity as overlay **/  
.bg-white-opa {
  background-color: rgba(255,255,255,0.6);
}

.bg-light {
  background-color: #c2c2c2!important;
}


/* general colours */
.red {
  color: var(--red);
}
.bg-red {
  background-color: var(--red);
  color: var(--white);
}
.bg-red a, .bg-red a:visited {
  color: var(--gray);
}  
.bg-red a:hover, .bg-red a:focus {
  color: var(--black);
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-red A, #mainnav .bg-red a:visited {
  color: var(--white);
}  
#mainnav .bg-red A:hover, #mainnav .bg-red a:focus {
  color: var(--black);
} 


.blue {
  color: var(--blue); 
}
.bg-blue {
  background-color: var(--blue);
  color: var(--white);
}
.bg-blue a, .bg-blue a:visited {
  color: var(--gray);
}  
.bg-blue a:hover, .bg-blue a:focus {
  color: var(--black);
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-blue A, #mainnav .bg-blue a:visited {
  color: var(--white);
}  
#mainnav .bg-blue A:hover, #mainnav .bg-blue a:focus {
  color: var(--white);
} 


.green {
  color: var(--green); 
}
.bg-green {
  background-color: var(--green);
  color: var(--white);
}
.bg-green a, .bg-green a:visited {
  color: var(--gray);
}  
.bg-green a:hover, .bg-green a:focus {
  color: var(--black);
}
/* modify #divname to fit "nav id" of outer div container for the navigation */  
#mainnav .bg-green A, #mainnav .bg-green a:visited {
  color: var(--white);
}   
#mainnav .bg-green A:hover, #mainnav .bg-green a:focus {
  color: var(--white);
} 


.black {
  background-color: var(--black) !important;
  /* background-color: 000 !important; */
}
.bg-black {
  background-color: var(--black);
  color: var(--white);
}
.bg-black a, .bg-black a:visited {
  color: var(--coloured);
}  
.bg-black a:hover, .bg-black a:focus {
  color: var(--white);
}

.bg-dark {
  background-color: var(--dark);
}


/** gray = special case, with opacity **/
.bg-gray {
/* background: #f8f8f8; */
  background-color: var(--gray);
/*  background: rgb(200, 200, 200); 
  background: rgba(200, 200, 200, .75);  */
}


.bg-hell {
background-color: #e8e8e8;
}



/*** Borders ***/
.rounded-pill {
  border-radius: 5rem;
}

/* round borders for images */
.rounded-circle {
  border-radius: 10%!important;
}


/*
.navbar {
  background: url(../img/topmenu2.jpg);
  height:220px;
  } 
*/





/* Navigation  */

/* linksbündig */
.ml-auto, .mx-auto {
  margin-left:auto!important; /* --> setzt home links und den rest ab rechts */
}

/* manuell nach links neben home, damit es nicht rechts (auto) unter dem Logo liegt */
/* .navbar-toggler {
  position: absolute;
  right: 50px;
  top:   10px;
  }
*/
/* white toggler btn */
.navbar-dark .navbar-toggler-icon {
  background-image: url(../images/toggler.png);
}
/* black toggler btn */
.navbar-white .navbar-toggler-icon {
  background-image: url(../images/toggler-black.png);
}

.navbar-white {
  padding-top:    1rem;
  padding-bottom: 1rem;
  background-color: var(--white);
  /* background-color: rgba(255, 255, 255, 1); */
}

.navbar-custom {
  padding-top:    1rem;
  padding-bottom: 1rem;
 /* background-color: rgba(0, 0, 0, 0.7); /* black */
  background-color: rgba(162, 191, 169, 0.7);  /*  var-coloured 70% opacity */ 
}

.navbar-custom .navbar-brand,
.navbar-white .navbar-brand,
.navbar-dark .navbar-brand  {
  text-transform: uppercase;
  font-size:      1rem;
  letter-spacing: 0.1rem;
  font-weight:    700;
}

.navbar-custom .navbar-nav .nav-item .nav-link,
.navbar-white .navbar-nav .nav-item .nav-link,
.navbar-dark .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size:      1rem;  /* 0.8rem */
  font-weight:    700;
  letter-spacing: 0.1rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,1);
}

.navbar-white .navbar-nav .nav-link {
  color: rgba(162, 191, 169, 1); /* primary green */
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-white .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(39, 75, 43, 1); /* secondary green */
}

/* nav items shifted from left because of Logo */
.leftspaced {
  left:     225px;
  position: absolute;
}


ul.topnav li a:hover, /* joo */
ul.navbar li a:hover, /* non joo */
ul.navbar-nav li a:hover {
  display:    block;
  text-align: center;
  /* padding: 10px 10px; */ /* disabled for dj megamenu */
  /* color:   var(--coloured); */
  text-decoration: none;
  border-bottom:   2px solid var(--coloured);
  /* border-bottom: none; */
  -webkit-transition: unset;
  -moz-transition: unset;
  transition: unset;
  line-height: 1;
}

/* non joo */
.navbar-expand-lg .navbar-nav  .nav-link {
  padding-right: 1.25rem;
  padding-left:  1.25rem;
}


header.masthead {
  position: relative;
  overflow: hidden;
  padding-top:    calc(7rem + 72px);
  padding-bottom: 7rem;
  /* background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%); */
  background: url(../images/topmenu2.jpg);
  background-repeat:   no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

header.masthead .masthead-content {
  z-index:  1;
  position: relative;
}

header.masthead .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead .masthead-content .masthead-subheading {
  font-size: 2rem;
}

header.masthead .bg-circle {
  z-index:  0;
  position: absolute;
  border-radius: 100%;
  background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}

header.masthead .bg-circle-1 {
  height: 90rem;
  width:  90rem;
  bottom: -55rem;
  left:   -55rem;
}

header.masthead .bg-circle-2 {
  height: 50rem;
  width:  50rem;
  top:    -25rem;
  right:  -25rem;
}

header.masthead .bg-circle-3 {
  height: 20rem;
  width:  20rem;
  bottom: -10rem;
  right:  5%;
}

header.masthead .bg-circle-4 {
  height: 30rem;
  width:  30rem;
  top:    -5rem;
  right:  35%;
}


@media (max-width: 1200px) {
  header.masthead {
    padding-top:    calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 4rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 2rem;
  }  
/*
 .header-logo IMG {
  max-width:150px;
} 
*/   
}

@media (min-width: 992px) {
  header.masthead {
    padding-top:    calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 6rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 4rem;
  }  
}




.bg-primary {
  background-color: var(--coloured) !important; 
}
/* !important; */
.btn-primary {
  background-color: var(--coloured);
  border-color:     var(--coloured);
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: var(--secondary) !important;
  border-color:     var(--secondary) !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(162, 191, 169, 0.5); /* primary */
}

.btn-secondary {
  background-color: var(--secondary);
  border-color:     var(--secondary);
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: var(--coloured) !important;
  border-color:     var(--coloured) !important; 
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5); /* to  do */
}


@media (max-width: 576px) {
  .display-4 {
    font-size:1.75rem;
  }
  .portfolio-item {
    margin-bottom: 10px;
    padding-left:  5px;
    padding-right: 2px;
  }
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, 
  .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
  .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11,
  .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, 
  .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11,
  .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7,
  .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11,
  .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7,
  .col-xl-8, .col-xl-9, .col-xl-auto {
    width:     auto;
    max-width: 100%; 
  }
  .header-logo IMG {
    max-width: 120px;
    height:    auto;
  }
  .navbar-custom, .navbar-white, .navbar-dark {
    padding-top: unset;
  }
}


/* Back to top Button */
#back-top {
  position: fixed;
  bottom:   50px;
  right:    20px;
  z-index:  10001;
}

#back-top a {
  width:   51px;
  display: block;
  text-align:  center;
  font-size:   12px;
  line-height: 18px;
  font-family: 'Noto Sans',  Arial, Helvetica, sans-serif;
  text-transform:  none;
  text-decoration: none;
  color: var(--gray);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}

#back-top span {
  width:   51px;
  height:  51px;
  display: block;
  margin-bottom: 7px;
  background: url(../images/up-arrow.png) no-repeat center center;
  opacity: 1;
  filter:  alpha(opacity=100);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}


@media (max-width: 991px) {
  #back-top {
    position: fixed;
    bottom:   15px;
    right:    20px;
    z-index:  10001;
  }
}



/*********************** MODAL in optionalstyles.css **************************/




/* padding zwischen den Bildern entfernen .. 3 start bereiche .. here unused */  
#referenzen div {
  padding:       unset;
  padding-left:  unset;
  padding-right: unset;
  /* margin-left: 10px;
  margin-right: 10px; */
}  


/* sections */
 




/*
#content div[itemprop="articleBody"] P,
.item-page div[itemprop="articleBody"] P {
  padding-left: 10px!important;
  padding-right: 10px!important;
}
*/

/* ANIMATIONS */
/***** CSS Zoom Transition for Icons, DIVs, Images, .. *****/
.zoom { 
  transition: all .2s ease-in-out; 
}

/* zoom whole DIV */
.zoom:hover {
  transform:       scale(1.02); 
  -moz-transform:  scale(1.02); 
  -webkit-transform: scale(1.02);
}

/* zoom only IMG in DIV with this class */
.zoom-img:hover IMG {
  transform:       scale(1.02); 
  -moz-transform:  scale(1.02); 
  -webkit-transform: scale(1.02);
}



/***** ##### Fade-in on scroll --> hide initially ##### *****/
/* Script on index.php needed to work */
.hideme { 
  opacity: 0;
}



/* container slightly smaller than screen */
/* .container {
max-width: 90vw;
}
*/


/**************** DJ mega menu and menu vertical in general **********/
/* dj mega menu */
.dj-mobile-open-btn {
  font-size: 3em;
}

/* joomla */
ul.nav.menu.nav-pills.navbar-white.mod-list,
/* non joomla */
.navbar-expand-lg .navbar-nav  .nav-link {
  padding-right: 1.25rem;
  padding-left:  1.25rem;
}

#navigation LI {
  margin-left:    15px;  /* 25 */
  margin-right:   15px;
  text-transform: uppercase;
}

/* footer nav */
/* unset display to override nav class in BS */
.vertical-nav {
  display: unset; 
}


.navigation {
  position: relative; 
  padding-left: 25px;
  z-index:     10000;
}

.navbar-nav {
  width: 100%;
}

.navbar-toggle {
  background-color: var(--secondary);
  float: left;
  margin-right: 50px;
  left: 25px;
}

.navbar-collapse.in {
  overflow: visible;
}

/*** Menu generell ***/
ul.nav.menu {  
  width: 100%;
  top:   20px;
  position: relative;  
}

.icon-bar {
  background-color: var(--coloured);
  margin:  3px;
  color:   var(--white);
  z-index: 10001;
} 

/* Dropdown Menu */
.navbar-nav ul {
  list-style: none;
  padding:    0px;
  margin:     0px;
  z-index:    100000;
}

.navbar-nav ul a { border-bottom: 1px dotted var(--white);  }

/* oberste Ebene zeigen */
.navbar-nav  ul li   {display: block;position: relative; z-index: 100000;  } /* float: right; */
/* Untermenu ausblenden */
.navbar-nav  li ul   {display: none;}
.navbar-nav  ul li a {
  display: block; text-decoration: none; /* background-color: var(--secondary); opacity: 0.85; padding: 5px 10px 5px 10px; */ 
  white-space: nowrap; color: var(--coloured); z-index: 100000;
}
 
/* span-Typ Headline in Nav-Menu */           
.nav-header {
  display: block; padding: 4px 5px 5px 5px;text-decoration: underline; /* background: var(--white); */ 
  white-space: nowrap; color: var(--coloured); z-index: 100000; font-weight:700; 
}


.navbar-nav  li:hover ul {color: var(--white);  background-color: var(--coloured);  display: block; position: absolute; z-index: 100000; }
.navbar-nav  ul li a:hover/*, .navbar-nav  ul li.active a */ {background: var(--coloured);  color: var(--white);/* opacity: 0.85;  */ z-index: 100000; }
/* hover bei untermenu */
.navbar-nav  li:hover li a:hover {color:var(--white); background: var(--coloured); z-index: 100000; }
/* .navbar-nav li ul li {border-top: 0px; z-index: 100000;} */

/* Untermenu einblenden bei hover */
.navbar-nav  li:hover li {background: var(--coloured); float: none; z-index: 100000; }
.navbar-nav  li:hover li a {color: var(--white); }

/* hover oberste Ebene */
.navbar-nav  li:hover a {/* background: var(--white);  opacity: 0.85; */z-index: 100000; }
.navbar-nav  li:hover a {color: var(--white); /* opacity: 0.8; */ z-index: 100000; }  
/* submenu, wenn hover auf erster Ebene */
.navbar-nav li ul {/*  background: var(--gray);  teal #00b8e4;  ist blau  opacity: 0.85; */ border-top: 0px; z-index: 100000; }
/* submenu-hoverfarbe wenn aufgeklappt */
.navbar-nav li:hover ul {background: var(--coloured);  /* opacity: 0.85; */  border-top: 0px; z-index: 100000; }

.dropdown-menu .divider {
  margin-top: 2px;
}


/* Linkfarbe in Navi */
.navbar-nav ul li a:hover  {
  color: var(--white);
}
.navbar-nav li a:hover {
  color: var(--white); 
}

.nav>li>a { padding: 2px 2px;}

ul.topnav li a:hover:not(.active) {
  background-color: unset;
  color: var(--secondary); /* unset; */
}

.nav-pills>li>a {
  border-radius: 0;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  background:  unset;
  color: var(--dark);
}

.nav>li>a:focus, .nav>li>a:hover {
  text-decoration:  none;
  background-color: var(--secondary);  /* #eee; */
  color:   var(--white);
}

/* .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {background: #007857; } */

/* Nav in Reihe darstellen */
.nav-pills>li.nav-pills>li { float:left; }

/* Nav untereinander, z.B. bei xs */
.nav-pills>li.nav-pills>li { float:none; } /* funzt net */

/* TOPNAV Vertikal */
ul.topnav {
  list-style-type: none;
  margin:   0;
  padding:  0;
  overflow: hidden;
  padding-bottom: 2px;
}

ul.topnav li { float: left; }

ul.topnav li a {
  display: block;
  color:   var(--coloured);
  text-align: center;
  padding:    5px 10px;
  text-decoration: none;
}
/*
ul.topnav li a:hover:not(.active) {background-color: var(--coloured); var(--white);}

ul.topnav li a.active {background-color: var(--coloured); color: var(--white);}
*/
ul.topnav li.right { float: right; }


.navigation .nav-pills {
  margin-bottom: 0;
  display:    flex;
  justify-content: center;
}


@media all and (max-width: 600px) {
  ul.topnav li.right, ul.topnav li {
    float: none;
  }     
}

/* Umbruch Menu auf vertikal für mobile Geräte */
/* funktioniert am Desktop */
@media all and (max-width: 800px) {
  ul.topnav li.right, ul.topnav li {
    float: none;
  } 
  .navigation .nav-pills {
    margin-bottom: 0;
    display:   unset;
    justify-content: center;
  }
  .nav {
    margin-bottom: unset;
    height:  auto;
    z-index: 100000;
    background-color: var(--green);
  }
}


/*** image in front of LI ***/
#sidemenu UL.nav {
  font-size: 20px;
  list-style-image: url(../images/dreieck.png);
}





/***** EVENTS SECTION  *****/ 
#events {
  padding-left:  50px;
  padding-right: 25px;
}
/****** EVENT HIGHLIGHT *******/
.eventfeature {
  border: 1px solid var(--secondary);
  background-color: rgba(230,	240,	220, 0.75); /* var(--gray); */
  /* opacity: 0.7; */
}

.eventfeature-green {
  border: 1px dotted var(--secondary);
  background-color: rgba(230,	240,	220, 0.6); /* var(--gray); */
  /* opacity: 0.7; */
}
.eventfeature-green A:hover {
  color: var(--black);
}



/********************* DJ EVENTS *********************************/
.djev_event_info {
  width:  unset;
  height: unset;
  max-width: 100%;
}

/*
#eventside, #eventfeature, #mainnav, .moduletable, .wrapper,
.djev_list .djev_item, .djev_image, .djev_image IMG, .djev_image_wrap,
.djev_item_content, .djev_item_title, .djev_intro, .djev_time,
.djevents, .djev_item, .djev_items, .djev_list, .djev_items_featured, .djev_featured, 
.djev_pagination, .djev_info, .pagination {
max-width: 100%;
}
*/


/*** dj events hat span4 bei view auf start, das muß col-3 und die row-fluid davor muß row
 * aber dann muß auch noch einiges mehr umprogrammiert werden, wenn mam die nebeneinander
 * haben wollen würde   ... das wäre ein erster Ansatz
.span4 {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
**/
/* man müßte erstmal das ganze div auf 12 bringen, highlight rechts geht dann nicht mehr
dann bei in djev_mod_items_in die folgende row-fluid auf row setzen
dann die span4 auf col-6
und in derr css die col-6 auf
flex: 0 0 50%;
max-width: 33% bei XL --> 3 nebeneinander
per media query dann bei unter 1400 auf 50%  --> 2 nebeneinander, später dann auf 100% ab unter 900 */
 
/*** page navigation .. for example in dj events list ***/
.pagination UL {
  /* display: -ms-flexbox; */
  /* display: unset; */
  padding-left: 0;
  width:        100%;
  list-style:   none;
  border-radius: .25rem;
  position: relative;
  display:  -ms-flexbox;
  display:  flex;
  -ms-flex-wrap:  wrap;
  flex-wrap:      wrap;
  -ms-flex-align: center;
  align-items:    center;
  -ms-flex-pack:  justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}

/* .pagination LI {
    border: 1px solid #009ee0;
    border-block-color: #009ee0;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-block-start-width: 10px;
    border-block-end-style: dotted;
    padding: 5px;
} */

/* some fancy borders .. */
.pagination LI {
  border: 1px solid #009ee0;
  /* border-radius: 1.25rem; */
  border-block-color: #009ee0;
  /* border-top-left-radius: 50%; */
  /* border-bottom-right-radius: 50%; */
  border-block-end-width: 5px;
  border-block-end-style: solid;
  /* border-block-width: 12px; */
  padding: 10px;
}


.pagination LI.page-item {
  border: none!important;
}

/*** end pagination */



/*   unused   */

/* alpha60, um den Hintergrund eines Bereiches mit 60% opacity des #008b99 Tons zu haben, dabei aber nicht den ganzen Bereich aufzuhellen, denn die Schrift soll ja voll bleiben **/
/* verwendet bei zeiten und inhalt */ 
.alpha60 {
  /* Fallback for web browsers that don't support RGBa */
  background-color: rgb(0,158,224);
  /* RGBa with 0.6 opacity */
  background-color: rgba(0,158,224, 0.8);   /* 0.6 */
  /* For IE 5.5 - 7  ... just 60% opacity, not colored, just shade of black  */
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  /* For IE 8*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

/* equal height columns - pos zeiten als beispiel */
/* Kästen der Zeiten und des Bereiches des Inhalts immer gleich hoch */
.eqWrap {
	display: flex;
}
.eq {
	padding: 10px;
}
.eq:nth-of-type(odd) {
/*	background: white; */
}
.eq:nth-of-type(even) {
/*	background: #008b99; */
/*	opacity:0.5; */
/*	color: #fff; */
}
.eq:nth-of-type(even) A, .eq:nth-of-type(even) A:focus, .eq:nth-of-type(even) A:hover, .eq:nth-of-type(even) A:visited, .eq:nth-of-type(even) H1, .eq:nth-of-type(even) H2, .eq:nth-of-type(even) H3, .eq:nth-of-type(even) H4, .eq:nth-of-type(even) H5, .eq:nth-of-type(even) H6,  .eq:nth-of-type(even) P {
	/* color: #fff; */
}

.equalHMRWrap {
	justify-content: space-between;
	flex-wrap: wrap;    
  -webkit-flex: 1; /* Safari 6.1+ */
  -ms-flex: 1; /* IE 10 */ 
  flex:     1;    
}
.equalHMR3 {
	width:    32%;
	margin-bottom: 2%;
}
.equalHMR6 {
	width:    64%;
	margin-bottom: 2%;
}

@media all and (max-width: 576px) {
  .eqWrap {
	  display: unset;
  }
}

/* Ende Equal Height Columns */



/******* UNUSED END *********/



/*****  J3 built-in Tpl Beez3 category blog layout as override ****************/
/********   blog layout multicolumn / gnu gpl sniplets from beez3      ********/
/** needs:  path/template/this_tpl/html/com_content/category/custom_blog.php **/

.blog-featured {
  padding: 0;
}

.items-leading {
  padding:  0 5px 10px 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.row-separator {
  display: block;
  clear:   both;
  margin:  0;
  border:  0;
  height:  1px;
}

.item-separator {
  display: none;
  margin:  0;
}

.shownocolumns {
  width: 98% !important;
}

#top {
  margin:   0 0 20px 0;
  overflow: hidden;
}

.cols-1 {
  display: block;
  float:   none !important;
  margin:  0 !important;
}

.cols-2 .column-1 {
  width: 46%;
  float: left;
}

.cols-2 .column-2 {
  width:  46%;
  float:  right;
  margin: 0;
}

/* Blogviewe einspaltig statt zweispaltig on mobile */
@media (max-width: 576px) {
  .cols-2 .column-1 {
    width: 100%;
    float: left;
  }

  .cols-2 .column-2 {
    width: 100%;
    float: left;
  }
}


.cols-3 .column-1 {
  float: left;
  width: 29%;
  padding:   0 5px;
  margin-right: 4%;
}

.cols-3 .column-2 {
    float:  left;
    width:  29%;
    margin-left: 0;
    padding: 0 5px;
}

.cols-3 .column-3 {
    float:   right;
    width:   29%;
    padding: 0 5px;
}

.items-row {
    overflow: hidden;
    margin-bottom: 10px !important;
}

.column-1,
.column-2,
.column-3 {
    padding: 10px 5px;
}

.column-2 {
    width:  55%;
    margin-left: 40%;
}

.column-3 {
    width: 30%;
}
 
.blog-more {
    padding: 10px 5px;
}
/***** end gnu/gpl snipplets from beez *****/



/******* End J4 multi coloumn blopg layout ******/
.blog-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap:     wrap;
    margin-bottom: 1em;
    margin-left: -.5em;
    margin-right: -.5em;
    padding: 0;
    width:   100%;
}

@media (min-width: 992px) {
    .blog-items.columns-2>div {
        width: 50%;
    }

    .blog-items.columns-3>div {
        width: 33.33333%;
    }

    .blog-items.columns-4>div {
        width: 25%;
    }
}

.blog-item {
    -webkit-box-orient:    vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction:     column;
    overflow: hidden;
    padding:  0 .5em 1em;
}

.boxed .blog-item {
    background-color: var(--white);
    -webkit-box-shadow: 0 0 2px rgba(51,57,66,.1),0 2px 5px rgba(51,57,66,.08),0 5px 15px rgba(51,57,66,.08),inset 0 3px 0 var(--cassiopeia-color-primary);
    box-shadow: 0 0 2px rgba(51,57,66,.1),0 2px 5px rgba(51,57,66,.08),0 5px 15px rgba(51,57,66,.08),inset 0 3px 0 var(--cassiopeia-color-primary);
}

.boxed .blog-item .item-content {
    padding: 25px;
}

.blog-item .item-image {
    margin-bottom: 15px;
    margin-top:    3px;
    overflow:   hidden;
}

.boxed .blog-item .item-image {
    margin-bottom: 0;
}

@media (min-width: 992px) {
  .image-right .blog-item .item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.image-bottom .blog-item .item-image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  margin-top: -15px;
  order: 1;
}

.image-left .blog-item .item-content {
  padding-left: 25px;
}

.image-right .blog-item .item-content {
  padding-right: 25px;
}

.image-left .blog-item,.image-right .blog-item {
  -webkit-box-orient:    vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction:    column;
  flex-direction:        column;
}


@media (min-width: 992px) {
  .image-left .blog-item,.image-right .blog-item {
    -webkit-box-orient:    horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction:    row;
    flex-direction:        row;
  }

  .image-left .blog-item .item-image,.image-right .blog-item .item-image {
    -webkit-box-flex: 1;
    -ms-flex:  1 0 40%;
    flex:  1 0 40%;
  }

  .image-left .blog-item .item-content,.image-right .blog-item .item-content {
    -webkit-box-flex: 1;
    -ms-flex:  1 0 60%;
    flex:  1 0 60%;
  }
}

.article-info dd {
  padding: 0;
}

@supports (display: grid) {
  .blog-items {
    grid-gap:  1em;
    display:   grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    margin: 0 0 1em;
  }

  .blog-items .blog-item {
    padding: 0;
  }

  .blog-items[class*=" columns-"]>div,.blog-items[class^=columns-]>div {
     -webkit-box-flex: 0;
     -ms-flex: 0 1 auto;
     flex:  0 1 auto;
     max-width: none;
     width: auto;
  }

  @media (min-width: 992px) {
    .blog-items.columns-2 {
      grid-template-columns: 1fr 1fr;
    }

    .blog-items.columns-3 {
      grid-template-columns: 1fr 1fr 1fr;
    }

    .blog-items.columns-4 {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
}



.blog-items[class*=" masonry-"],.blog-items[class^=masonry-] {
  -webkit-column-gap: 1em;
  -moz-column-gap:    1em;
  column-gap: 1em;
  display:    block;
}

.blog-items[class*=" masonry-"] .blog-item,.blog-items[class^=masonry-] .blog-item {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside:    avoid;
  break-inside: avoid;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom:     1em;
  page-break-inside: avoid;
}

@media (min-width: 992px) {
  .blog-items.masonry-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .blog-items.masonry-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  .blog-items.masonry-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}

.image-alternate .blog-item:nth-of-type(odd) .item-image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.image-alternate.image-left .blog-item:nth-of-type(odd) .item-image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  margin-left:    25px;
  margin-right:   0;
  order: 1;
}

.image-alternate.image-top .blog-item:nth-of-type(odd) .item-image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
/******* End J4 multi coloumn blopg layout ******/ 

/*
com-content-category-blog__items blog-items  columns-2 {

}
*/

/* Event Booking */
/* .uk-button, .uk-button-primary, */ 
.eb-register-button, .eb-individual-registration-button, .eb-button-button-link {
  background: var(--secondary) !important;
  color:      var(--white) !important;
  border:     none;
  transition: background 0.3s ease;
  box-sizing: border-box;
  font-size:   18px;
  line-height: 24px;
  width:   100%;
  cursor:  pointer;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px !important;
  padding:       12px 8px !important;
  text-align:    center;
}

/* .uk-button:hover, .uk-button-primary:hover, */
.eb-register-button:hover, .eb-individual-registration-button:hover, .eb-button-button-link:hover {
   background: var(--coloured) !important;
}




/*********** event kalder (menu link) ausblenden auf xs  **/
@media only screen and (max-width: 767px) {
  #eb-calendar-page {
    display: none!important; 
  } 
}



.maximenuck {margin-left: 0!important;}






