/***
    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;
}
html {
  font-size: 1.1em;
  line-height: 1.7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-animation: 1.2 ease 0s normal forwards 1 fadein;
  animation: 1.2s ease 0s normal forwards 1 fadein;
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 1em;
    line-height: 1.5;
  }
}
body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}
ul {
  list-style-type: none;
  display: inline;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
a {
  color: #7b3573;
  text-decoration: none;
}
.mm-wrapper {
  overflow-x: unset;
}
/* §Überschriften h1, h2, h3, h4, h5 ,h6*/
h6 {
  font-size: 15.69230769px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h6 a,
h6 a:link,
h6 a:hover,
h6 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
h5 {
  font-size: 17.23076923px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h5 a,
h5 a:link,
h5 a:hover,
h5 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
h4 {
  font-size: 20.30769231px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h4 a,
h4 a:link,
h4 a:hover,
h4 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
h3 {
  font-size: 24.92307692px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h3 a,
h3 a:link,
h3 a:hover,
h3 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
h2 {
  font-size: 31.07692308px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h2 a,
h2 a:link,
h2 a:hover,
h2 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
h1 {
  font-size: 38.76923077px;
  font-weight: 700;
  font-family: 'Hind', Arial, sans-serif;
  text-align: left;
  color: #7b3573;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 a,
h1 a:link,
h1 a:hover,
h1 a:visited {
  font-family: 'Hind', Arial, sans-serif;
  color: #7b3573;
  text-decoration: none;
}
.mm-wrapper {
  overflow-x: unset;
}
@media only screen and (max-width: 480px) {
  h6 {
    font-size: 15.17647059px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h5 {
    font-size: 15.70588235px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h4 {
    font-size: 17.41176471px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h3 {
    font-size: 20.29411765px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h2 {
    font-size: 24.35294118px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h1 {
    font-size: 29.58823529px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
}
img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}
figure {
  margin: 0;
}
strong,
b {
  font-weight: bold;
}
hr {
  border: 0;
  border-top: 3px solid #7b3573;
  height: 1px;
  margin-top: 4%;
  margin-bottom: 28px;
}
blockquote {
  background: #DFDFDF;
  border-left: 10px solid #CFCFCF;
  margin: 1.5em 0;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
blockquote:before {
  color: #CFCFCF;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
table thead {
  background: #c5c5c5;
}
table tbody tr:nth-child(2n+1) {
  background: #CFCFCF;
}
/* §Unpublished Node **************************************************/
.node--unpublished,
.paragraph--unpublished {
  background-color: rgba(255, 0, 0, 0.03);
  margin: 0 auto;
  min-height: 220px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 2%, rgba(233, 30, 99, 0.1) 2%, rgba(233, 30, 99, 0.1) 4%, rgba(255, 255, 255, 0.4) 4%);
}
.node--unpublished picture img,
.paragraph--unpublished picture img {
  opacity: 0.4;
}
.node--unpublished::before,
.paragraph--unpublished::before {
  color: #ffffff;
  content: attr(data-cta-msg);
  position: absolute;
  z-index: 10;
  height: 25px;
  padding: 5px 10px;
  background-color: #e91e63;
}
.p-slider-full.paragraph--unpublished::before,
.p-slider-klein.paragraph--unpublished::before,
.p-slider-blur.paragraph--unpublished::before,
.p-slider-gross.paragraph--unpublished::before {
  top: 20vh;
  content: "Slider Unveröffentlicht!";
}
/* iphone size-adjust ***********************************************/
p,
ul li,
ol,
li,
div {
  -webkit-text-size-adjust: none;
}
/* Animation ***********************************************/
.animation_fadein0 {
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
  -ms-transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
  transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
}
.animation_fadein1 {
  opacity: 1;
}
/* Editor Style ***********************************************/
span.tab {
  width: 180px;
  display: block;
  float: left;
}
@media only screen and (max-width: 768px) {
  span.tab {
    width: 100%;
    display: block;
    float: none;
    margin-top: 0.5em;
  }
}
/* Auf Content Breite für DIVs. ***********************************************/
.content-wraper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .content-wraper {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 1170px) and screen and (max-width: 567px) {
  .content-wraper {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/* imagelightbox ***********************************************/
#imagelightbox {
  background: #f5f5f5;
}
.page-wrapper {
  background-color: #f5f5f5;
}
.path-search .block-system-main-block {
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .path-search .block-system-main-block {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 1170px) and screen and (max-width: 567px) {
  .path-search .block-system-main-block {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.path-search section.search {
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .path-search section.search {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 1170px) and screen and (max-width: 567px) {
  .path-search section.search {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.path-search section.search ol {
  padding-left: 0;
}
.path-search section.search ol li:nth-child(2n+1) {
  background: #CFCFCF;
}
.menu--zweitnavigation {
  margin-top: 8%;
}
@media only screen and (max-width: 768px) {
  .menu--zweitnavigation {
    margin-top: 5%;
  }
}
.menu--zweitnavigation .menu .menu-item {
  margin-right: 20px;
  display: inline;
  color: #000000;
  font-size: 0px;
  padding-bottom: 5px;
}
.menu--zweitnavigation .menu .menu-item .benutzer-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007   ";
  font-size: 1.4vw;
}
@media only screen and (max-width: 480px) {
  .menu--zweitnavigation .menu .menu-item .benutzer-icon::before {
    font-size: 4vw;
  }
}
.menu--zweitnavigation .menu .menu-item .warenkorb-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f07a   ";
  font-size: 1.4vw;
}
@media only screen and (max-width: 480px) {
  .menu--zweitnavigation .menu .menu-item .warenkorb-icon::before {
    font-size: 4vw;
  }
}
.menu--zweitnavigation .menu .menu-item .wunschliste-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f004   ";
  font-size: 1.4vw;
}
@media only screen and (max-width: 480px) {
  .menu--zweitnavigation .menu .menu-item .wunschliste-icon::before {
    font-size: 4vw;
  }
}
:root {
  --ctColor1: #7b3573;
  --ctColor1Lighten: #e7c8e4;
  --ctColor1Background: #f5f5f5;
  --ctHeaderMaxHeightBig: 5vw;
}
