/***
    Grid (Shaker)
*******************************************************************************/
/***
    Break-points
*******************************************************************************/
/***
    Color
*******************************************************************************/
/* Text Color  ********************************************/
/* Odd/Even Color ***********************************/
/* Form Input Felder ***********************************/
/***
    Font
*******************************************************************************/
/***
    Header
*******************************************************************************/
/***
    Menü
*******************************************************************************/
/***
    Components
*******************************************************************************/
/* Paragraphs *********************************************/
/* Paragraphs Timeline *********************************************/
/* Slider *************************************************/
/***
    Animation
*******************************************************************************/
/***
    Basic
****************************************************************************/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/***
    Layout
****************************************************************************/
.section {
  width: 100%;
}
.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .content {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 1170px) and screen and (max-width: 567px) {
  .content {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/*Padding Abstand zwischen den Paragraphen (Aussen) in PIXEL!*/
.padding-abstand {
  padding-left: 3%;
  padding-right: 3%;
}
@media screen and (max-width: 567px) {
  .padding-abstand {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/* Font Max Size*/
/***
    Components
****************************************************************************/
/* Link mit Pfeil 
 * --------------
 */
.link-mit-pfeil {
  text-decoration: none;
}
.link-mit-pfeil:hover {
  text-decoration: none;
}
.link-mit-pfeil:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em;
  padding: 0 0.3em;
  transition: padding 0.3s cubic-bezier(.65,.05,.36,1);
}
.link-mit-pfeil:hover:after {
  padding-left: 0.5em;
}
/* Buttons 
 * -------
 * dem a-Element hinzufügen
 */
/***
    States
****************************************************************************/
/* Button Animation 
 * ----------------
 * dem a-Element hinzuf端gen
 */
.button-animation:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
}
.button-animation:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: scale(1);
  -webkit-transform: scale(1);
}
@media only screen and (max-width: 768px) {
  .button-animation:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: none;
    -webkit-transform: none;
  }
  .button-animation:active {
    transform: none;
    -webkit-transform: none;
  }
}
/* Mixin f端r Image Zoom Effekt.
 * ----------------------------
 * Dem das Bild umgebenden Element hinzuf端gen.
 */
.image-zoom {
  overflow: hidden;
  display: block;
}
.image-zoom img {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
}
.image-zoom img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .image-zoom img {
    transform: none;
    -webkit-transform: none;
  }
  .image-zoom img:hover {
    transform: none;
    -webkit-transform: none;
  }
}
.noOpacity {
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .nomobile {
    display: none;
  }
}
/***
    Skins
****************************************************************************/
.box-bg {
  background-color: #ffffff;
}
/* Material Design Shadows 
 * -----------------------
 * Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)
 * https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d#.qwk59xyp0
 */
/***
    Vendor Prefixes
****************************************************************************/
.notselection {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.borderBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.animation_fadein {
  -webkit-animation: 1.2 ease 0s normal forwards 1 fadein;
  animation: 1.2s ease 0s normal forwards 1 fadein;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation_fade {
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
/* Â§Lightbox-Links **************************************************/
.lightbox:hover {
  cursor: zoom-in;
}
/* Button *********************************************/
a.button {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #7b3573;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-left: 0;
}
a.button:hover {
  background-color: #572652;
}
span.button a {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #7b3573;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-left: 0;
  color: #fff;
}
span.button a:hover {
  background-color: #572652;
}
/* Â§Indent & Justify classes ckEditor *******************************/
.rteindent1 {
  margin-right: 40px;
  margin-left: 40px;
}
.rteindent2 {
  margin-right: 80px;
  margin-left: 80px;
}
.rteindent3 {
  margin-right: 120px;
  margin-left: 120px;
}
.rteindent4 {
  margin-right: 160px;
  margin-left: 160px;
}
.rteindent1[dir=ltr] {
  margin-left: 40px;
  margin-right: 0;
}
.rteindent2[dir=ltr] {
  margin-left: 80px;
  margin-right: 0;
}
.rteindent3[dir=ltr] {
  margin-left: 120px;
  margin-right: 0;
}
.rteindent4[dir=ltr] {
  margin-left: 160px;
  margin-right: 0;
}
.off-canvas-wrapper {
  display: none;
}
.lang-de .block-language-blocklanguage-interface ul li.de {
  background: #7b3573;
  color: #7b3573;
}
.lang-fr .block-language-blocklanguage-interface ul li.fr {
  background: #7b3573;
  color: #7b3573;
}
.alert {
  background: no-repeat 10px 17px;
  border-radius: 2px;
  border-width: 1px 1px 1px 0;
  border: 1px solid;
  overflow-wrap: break-word;
  padding: 15px 20px 15px 35px;
  word-wrap: break-word;
}
[dir="rtl"].alert {
  background-position: right 10px top 17px;
  border-width: 1px 0 1px 1px;
  padding-left: 20px;
  padding-right: 35px;
  text-align: right;
}
.alert + .alert {
  margin-top: 1.538em;
}
.messages__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.messages__item + .messages__item {
  margin-top: 0.769em;
}
.alert-status {
  background-color: #f3faef;
  background-image: url(../img/misc/check.svg);
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  box-shadow: -8px 0 0 #77b259;
  color: #325e1c;
}
[dir="rtl"].alert-status {
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259;
  margin-left: 0;
}
.alert-warning {
  background-color: #fdf8ed;
  background-image: url(../img/misc/warning.svg);
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  box-shadow: -8px 0 0 #e09600;
  color: #734c00;
}
[dir="rtl"].alert-warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600;
}
.alert-error {
  background-color: #fcf4f2;
  background-image: url(../img/misc/error.svg);
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  box-shadow: -8px 0 0 #e62600;
  color: #a51b00;
}
.alert-error p.error {
  color: #a51b00;
}
[dir="rtl"].alert-error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600;
}
/* $Selektion, markieren *********************************************/
.selecion {
  color: #7b3573;
  background-color: #e6d9e5;
}
::-moz-selection {
  color: #7b3573;
  background-color: #e6d9e5;
}
::selection {
  color: #7b3573;
  background-color: #e6d9e5;
}
body.gin--classic-toolbar.user-logged-in {
  padding-top: 0 !important;
}
body.gin--classic-toolbar.user-logged-in.toolbar-tray-open #mm-0 .header-section {
  margin-top: 39px;
}
body.gin--classic-toolbar.user-logged-in #toolbar-bar.toolbar-bar {
  position: fixed;
}
body.user-logged-in:not(.toolbar-tray-open) .header-section {
  margin-top: 39px;
}
@media only screen and (max-width: 609px) {
  body.user-logged-in:not(.toolbar-tray-open) .header-section.small {
    margin-top: 0 !important;
  }
}
