/* Bild rechts - Text Links 50% */
.bildcontainer_rechts {
  float:right;
  width: 50%;
  height: 50%;
  margin: 0px 0px 10px 20px;
}

/* Bild links - Text rechts 50% */
.bildcontainer_links {
  float:left;
  width: 50%;
  height: 50%;
  margin: 0px 20px 10px 0px;
}

/* Bild rechts - Text Links 33% */
.bildcontainer_rechts33 {
  float:right;
  width: 33%;
  height: 33%;
  margin: 0px 0px 10px 20px;
}

/* Bild links - Text rechts 33% */
.bildcontainer_links33 {
  float:left;
  width: 33%;
  height: 33%;
  margin: 0px 20px 10px 0px;
}

/* ----- Ein Bild rechts oder links mit Margin für Text-----*/

/* Bild links - Text rechts 47% */
.bildcontainer_rechts47 {
  float:right;
  width: 47%;
  height: 47%;
  margin: 0px 0px 20px 20px; 
}

/* Bild rechts - Text Links 47% */
.bildcontainer_links47 {
  float:left;
  width: 47%;
  height: 47%;
 margin: 0px 20px 20px 0px;
}

/* --------Zwei Bilder in einer Reihe  OHNE TEXT---------*/

/* Bild links - KEIN TEXT 49% */
.bildcontainer_rechts49 {
  float:right;
  width: 49%;
  height: 49%;
  margin: 0px 0px 20px 0px; 
}

/* Bild rechts - KEIN TEXT 49% */
.bildcontainer_links49 {
  float:left;
  width: 49%;
  height: 49%;
 margin: 0px 0px 20px 0px;
}


/*-----------------------------------------*/
/*------drei Bilder in einer Reihe---------*/
/*-----------------------------------------*/

/*Struktur im Beitrag:

<div class="row align-items-center">
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
  </div>

Bei "One of three columns" Bild mit Klasse "bildcontainer_3inarow" einsetzen */

.bildcontainer_3inarow {
    display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 90%;
  height: 90%;
  }

/* Notitz: margin Reihenfolge top,right,bottom,left */


/* ------------------------------ */
/* Header Beearbeitung für Banner */
/* ------------------------------ */

/* Rand oben und unten wegmachen */
#wrapper {
  padding-top: 0;
  padding-bottom: 0;
/*padding-top: var(--allrounder-padding-top);
  padding-bottom: var(--allrounder-padding-bottom); */
}

/*Headerkörper schmaler machen, damit in der mobilen ansicht der Headerkörper nicht zu sehen ist*/
#header {
min-height: 20px;
}

/*schwarzen "Balken" unter dem Logo wegmachen */
#header .ribbon { display: none; }


 /*Logo zentrieren */
#logo {
  text-align: center;
  }

/* Bannerbild auf Seitenbreite */
/* verwendetes Bild unter System -> Site Template Stile -> allrounder -> Logokonfiguration -> Medialogo) */
#logo img
{
  float: none;
  width: 100%;
  height: 100%;
}
a.medialogo {
  float: none;
  width: 100%;
  height: 100%;
}


/* Menü oben (nervöses Zappeln beseitigen)*/
#topmenu ul.nav > li a:hover,
#topmenu ul.nav > li a:active,
#topmenu ul.nav > li a:focus {
  font-weight: normal !important;
}
#topmenu .mod-menu li.nav-item.current a {
  font-weight: normal !important;
  /*color: #ff0000*/
}

/* abstand zwischen SeitenMenueüberschrift und Menuepunkten*/
.allroundersidebarchrome > div .module-inner {
margin-top: -15px;
}


/* ---------------------------------------- */
/* ----------Pagination responsive--------- */
/* ----Leiste Unten für Beitragsseiten----- */
/* ---------------------------------------- */

.pagination {
  flex-wrap: 
  wrap;
}