:root{
  --ann-h: 40px;
  --nav-h: 64px;
  --header-total: calc(var(--ann-h) + var(--nav-h));
}

/* Grundlayout */
html, body { margin:0; padding:0; }
body{
  font-family: 'Quicksand', sans-serif;
  color:#000;
  overflow-x: hidden;
}


  section {
  scroll-margin-top: var(--header-total);
}


/* ---------- Laufband ---------- */
/*.announcement-bar{
  position: fixed; top:0; left:0; width:100%;
  height: var(--ann-h);
  background:#fee7f4; color:#333;
  overflow:hidden; z-index:2000;
  display:flex; align-items:center;
}
.announcement-bar a { color:#666; text-decoration:underline; display:inline-flex; gap:5px; }
.announcement-track{ display:flex; width:max-content; animation: scrollLeft 50s linear infinite; }
.announcement-content{ display:flex; gap:50px; padding-right:100px; }
.announcement-content span{ white-space: nowrap; font-size:14px; }
@keyframes scrollLeft{ 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
*/

/* ---------- Laufband (responsive, Icon + Text inline) ---------- */
.announcement-bar {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%;
  height: var(--ann-h);
  background: #fee7f4; 
  color: #333;
  overflow: hidden; 
  z-index: 2000;
  display: flex; 
  align-items: center;
  padding: 0 16px; /* Abstand links/rechts */
  font-size: 14px;
}

.announcement-track {
  display: flex; 
  width: max-content; 
  animation: scrollLeft 50s linear infinite; 
}

.announcement-content {
  display: flex; 
  gap: 50px; 
  padding-right: 100px; 
}

.announcement-content span {
  white-space: nowrap; 
  display: inline-flex; 
  align-items: baseline; /* Icon und Text auf Grundlinie */
  gap: 4px;
}

.announcement-content span a {
  color: #111; 
  text-decoration: none; /* keine Unterstreichung */
  display: inline-flex; 
  align-items: baseline;
  gap: 4px;
  transition: color 0.2s ease;
}

.announcement-content span a i {
  line-height: 1; 
  vertical-align: baseline; 
  position: relative;
  top: 1px; /* kleine Feinanpassung für Icon auf Textgrundlinie */
}

/* Hover-Effekt */
.announcement-content span a:hover {
  color: #000; 
  text-decoration: underline; 
}

/* Scrollanimation */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Mobile Anpassungen ---------- */
@media (max-width: 480px) {
  .announcement-bar {
    padding: 0 8px;
    font-size: 12px;
  }

  .announcement-content {
    gap: 30px;
    padding-right: 50px;
  }

  .announcement-content span a {
    gap: 3px;
  }

  .announcement-content span a i {
    top: 0; /* auf kleineren Displays leicht anpassen */
  }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  z-index: 1500;
}
.nav-container {
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 16px;*/
  padding: 0 120px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  padding: 6px 0 2px 0;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media(max-width:768px){ .logo img{ height:46px; } }
@media(max-width:480px){ .nav-container { padding: 0 16px; align-items: normal; } .logo img{ height:46px; max-width: 90%; } }

/* ---------- Nav Links ---------- */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .25rem;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: .65rem .9rem;
  text-decoration: none;
  color: #000;
  border-radius: 10px;
}
.nav-links a:hover { background: rgba(0,0,0,.05); }

/* ---------- Submenus ---------- */
.has-submenu > a { display: flex; align-items: center; gap: .4rem; }

.submenu {
  display: none;
  background: #fff;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: .4rem 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}
.submenu li a {
  padding: .6rem 1rem;
  white-space: nowrap;
  color: #000;
}
.has-submenu.open > .submenu { display: block; }

/* ---------- Chevron Styles ---------- */
.fa-chevron-down, .fa-chevron-right {
  transition: transform 0.3s ease;
}
.fa-chevron-down.rotated { transform: rotate(180deg); }
.fa-chevron-right.rotated { transform: rotate(90deg); }

/* Sub-Submenu */
.submenu .has-submenu { position: relative; }
.submenu .has-submenu > a i { margin-left: auto; }

/* ---------- Hamburger ---------- */
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  color: #000;
  padding: .25rem;
  position: relative;
}
/*.menu-toggle .fa-times { display: none; }
.menu-toggle.active .fa-bars { display: none; }
.menu-toggle.active .fa-times { display: inline-block; }*/
.menu-toggle .fa-xmark { display: none; }
.menu-toggle.active .fa-bars { display: none; }
.menu-toggle.active .fa-xmark { display: inline-block; }

/* ---------- Mobile bis 1070px ---------- */
@media(max-width:1070px){
  .menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(85vw,320px);
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
    padding: 8px 0;
    display: none;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .85rem 1rem; }

  .submenu { position: static; box-shadow: none; border-radius: 0; padding: 0; }
  .submenu li a { padding-left: 1.5rem; }
  .submenu .has-submenu > .submenu { position: static; box-shadow: none; border-radius: 0; padding-left: 1.5rem; }
  /*.submenu .has-submenu > a i { transform: rotate(90deg); }*/

  .logo { margin: 0 auto; }
}

/* ---------- Desktop ab 1071px ---------- */
@media(min-width:1071px){
  /* Erste Ebene: Submenu unterhalb Hauptpunkt */
  .nav-links > .has-submenu > .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    border-radius: 0 0 12px 12px;
  }
  .nav-links > .has-submenu.open > .submenu { display: block; }

  /* Zweite Ebene: Sub-Submenu rechts daneben */
  .submenu .has-submenu > .submenu { position: absolute; top: 0; left: 100%; }

  /* Rechtsrand-Korrektur für alle Ebenen */
  .submenu.right-edge,
  .submenu .has-submenu > .submenu.right-edge {
    left: auto;
    right: 100%;
  }
}

/* ---------- Suche ---------- */
.search-item { position: relative; }
.search-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: .65rem .9rem;
  color: #000;
}
.search-box { display: none; }
#my-search-74414812 input {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: .4rem .6rem;
  font-family: 'Quicksand', sans-serif;
  font-size: .95rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#my-search-74414812 input:focus { border-color: #666; box-shadow:0 0 4px rgba(0,0,0,.2); outline:none; }

/* Mobile Suche */
@media(max-width:1070px){
  .search-item.open .search-box { display: block; width: 100%; padding: .5rem 1rem; box-sizing: border-box; }
  #my-search-74414812 input { width: 100%; }
}

/* Desktop Suche */
@media(min-width:1071px){
  .search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: .5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 220px;
    max-width: 80vw;
    display: none;
  }
  .search-item.open .search-box { display: block; }
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../img/bg-image-3.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 3rem;
  padding-top: var(--header-total);
  box-sizing: border-box;
}
.hero-content {
  max-width:650px;
  text-align:left;
  color:#000;
  opacity:0;
  transform:translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
  animation-delay:0.6s;
}
.hero-content h1{ font-size:clamp(2rem,5vw,3.5rem); font-weight:400; line-height:1.2; letter-spacing:0.02em; margin-bottom:1.2rem; }
.hero-content h2{ font-size:clamp(1.5rem,3vw,2.5rem); font-weight:400; line-height:1.2; letter-spacing:0.02em; margin-bottom:1.2rem; } 
.hero-content p{ font-size:clamp(1rem,2vw,1.5rem); font-weight:400; line-height:1.6; margin-bottom:1rem; }
@keyframes fadeInUp { from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);} }

/* Slider */
/* Touch-Steuerung für mobile Geräte */
.slider {
  touch-action: pan-y;   /* erlaubt Scrollen nach oben/unten */
  -ms-touch-action: pan-y;
}
.slider { position:relative; width:100%; height:100vh; padding-top: var(--header-total); overflow:hidden; box-sizing:border-box; }
.slide { position:absolute; top:0; left:0; width:100%; height:100%; background-size:cover; background-position:center; opacity:0; transition:opacity 1.5s ease-in-out; }
.slide.active{ opacity:1; z-index:10; }
/*.slide-content{ position:absolute; bottom:20%; left:10%; color:black; font-family:'Quicksand',sans-serif; animation:fadeInUp 1.2s ease both; }*/
.slide-content{ position:absolute; bottom:20%; left:50%; color:black; font-family:'Quicksand',sans-serif; animation:fadeInUp 1.2s ease both; }
.cta-button-white{ display:inline-block; margin-top:1rem; padding:.6rem 1.4rem; border-radius:25px; font-size:1rem; font-weight:600; text-decoration:none; color:#fff; background:rgba(255,255,255,0.4); transition:background 0.3s ease; }
.cta-button-white:hover{ background:rgba(255,255,255,0.7); }

/* Pfeile */
/*.slider .prev, .slider .next{
  position:absolute; top:50%; transform:translateY(-50%); font-size:2rem; color:rgba(0,0,0,0.5);
  cursor:pointer; z-index:20; transition:color 0.3s ease; user-select:none;
}
.slider .prev:hover, .slider .next:hover{ color:rgba(0,0,0,0.8); }
.slider .prev{ left:10px; } .slider .next{ right:10px; }
*/
/* Pfeile */
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.7);             /* Pfeilfarbe */
  background: rgba(255, 255, 255, 0.6);  /* Weißlicher transparenter Hintergrund */
  border: none;                          /* Kein Rahmen */
  border-radius: 8px;                    /* Abgerundete Ecken wie CTA */
  padding: 0.5rem 0.9rem;                /* Klickfläche, rechteckig */
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;             /* Gleicher Transition-Effekt wie CTA */
  user-select: none;
}

.slider h1{ font-size:clamp(2rem,5vw,3.5rem); font-weight:400; line-height:1.2; letter-spacing:0.02em; margin-bottom:1.2rem; }
.slider h2{ font-size:clamp(1.5rem,3vw,2.5rem); font-weight:400; line-height:1.2; letter-spacing:0.02em; margin-bottom:1.2rem; } 
.slider p{ font-size:clamp(1rem,2vw,1.5rem); font-weight:400; line-height:1.6; margin-bottom:1rem; }

.slider .prev:hover, 
.slider .next:hover {
  background: rgba(255, 255, 255, 0.9);  /* Etwas weniger transparent beim Hover */
  color: rgba(0, 0, 0, 0.9);             /* Pfeil etwas dunkler */
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

/* Auf kleinen Bildschirmen Pfeile ausblenden */
@media (max-width: 600px) {
  .slider .prev, 
  .slider .next {
    display: none;
  }
}

/* Dots */
.dots{ position:absolute; bottom:15px; width:100%; text-align:center; z-index:20; background:transparent; }
.dots span{ display:inline-block; width:10px; height:10px; margin:0 5px; background:rgba(0,0,0,0.7); border-radius:50%; cursor:pointer; transition:background 0.3s ease; }
.dots span.active{ background:rgba(0,0,0,0.9); }

/* --------- Sektion mit verlinkten Bildern --------- */
.image-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* flexible Breite */
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
}

/* Kleine Bildschirme: Padding/Gaps anpassen */
@media (max-width: 360px) {
  .image-section {
    padding: 20px;
    gap: 12px;
  }
}

.image-card {
  position: relative;
  display: block;              /* gesamter Bereich klickbar */
  width: 100%;
  aspect-ratio: 4 / 3;         /* gleichmäßige Höhe/Breite */
  background-size: cover;
  background-position: center;
  /*border-radius: 16px;*/
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

/* Hover-Effekt leicht skalierend */
.image-card:hover {
  transform: scale(1.02);
}

/* -------- Varianten der Textposition -------- */

/* 1: Zentraler Text (Mitte) */
.image-text1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 80%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3); /* dezenter Schatten */
}

/* 2: Unten links */
.image-text2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-align: left;
  width: 80%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* 3: Oben links */
.image-text3 {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-align: left;
  width: 80%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* 4: Oben rechts */
.image-text4 {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  text-align: right;
  width: 80%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* -------- Dynamische Schriftgrößen -------- */
.image-text1 h3,
.image-text2 h3,
.image-text3 h3,
.image-text4 h3 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* dynamisch */
  font-weight: 400;
}

.image-text1 p,
.image-text2 p,
.image-text3 p,
.image-text4 p {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 2rem); /* dynamisch */
  font-weight: 300;
  line-height: 1.4;
}

/* ---------- About Section ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 420px; /* Text + Bild */
  grid-template-areas: "text photo";
  gap: 32px;
  /*align-items: center;*/
  padding: 40px 20px; /* diskretes Padding rechts/links */
  box-sizing: border-box;
}

.about-text {
  grid-area: text;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65;
}

.about-text h2 { font-size:clamp(1.5rem,3vw,2.5rem); font-weight:400; line-height:1.2; letter-spacing:0.02em; margin: 0 0 0.6rem 0; text-align: center; }
.about-text p { font-size:clamp(1rem,2vw,1.5rem); font-weight:300; line-height:1.6; margin: 0 0 1rem 0; text-align: left; }

.about-photo {
  grid-area: photo;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo .photo-wrap {
  width: 100%;
  max-width: 418px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Anpassungen */
@media (max-width: 980px) {
  .about-section {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "text";
    gap: 20px;
    padding: 30px 16px;
  }

  .about-photo .photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ---------- Links im About-Text ---------- */
.about-text a {
  color: #333;            /* dunkles Grau */
  text-decoration: none;  /* keine Unterstreichung */
  font-weight: 400;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.about-text a:hover,
.about-text a:active {
  color: #111;            /* etwas dunkler beim Hover/Klick */
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer-minimal {
  background: #f7f7f7; /* dezentes Grau */
  color: #000;
  font-family: 'Quicksand', sans-serif;
  padding: 30px 16px;
  text-align: center;
}

.footer-minimal p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-minimal h4 { font-size:clamp(1rem,2vw,1.5rem); font-weight:500; line-height:1.6; margin: 0 0 1rem 0; }

.footer-minimal a {
  color: #000;
  text-decoration: none;
  font-weight: 500; /* etwas kräftiger */
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-minimal a:hover {
  color: #333;
  text-decoration: underline;
}

/*.footer-minimal__list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-minimal__list a {
  font-size: 1.2rem;
  color: #000;
  transition: color 0.2s ease;
}

.footer-minimal__list a:hover {
  color: #555;
}*/

.footer-minimal .rights {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #444;
}

/* ---------- Footer ---------- */
.footer-minimal {
  background: #f7f7f7; /* dezentes Grau */
  color: #000;
  font-family: 'Quicksand', sans-serif;
  padding: 30px 16px;
  text-align: center;
}

.footer-minimal p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-minimal h4 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.footer-minimal a {
  color: #000;
  text-decoration: none;
  font-weight: 500; /* etwas kräftiger */
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-minimal a:hover {
  color: #333;
  text-decoration: underline;
}

/*.footer-minimal__list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-minimal__list a {
  font-size: 1.2rem;
  color: #000;
  transition: color 0.2s ease;
}

.footer-minimal__list a:hover {
  color: #555;
}*/

.footer-minimal .rights {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #444;
}

/* ---------- Newsletter im Footer ---------- */
.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter h4 {
  margin-bottom: 10px;
}

.footer-newsletter p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #222;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.footer-newsletter .newsletter-input {
  flex: 1 1 auto;
  max-width: 320px;       /* Eingabefeld bleibt handlich */
  min-width: 200px;       /* nicht zu klein */
  padding: 10px 14px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
  box-sizing: border-box;
}

.footer-newsletter .newsletter-button {
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0; /* verhindert, dass der Button gestaucht wird */
}

.footer-newsletter .newsletter-button:hover {
  background: #333;
}

.footer-newsletter .newsletter-privacy {
  font-size: 0.8rem;
  color: #444;
  margin-top: 8px;
}

    /* LOADER */
    .ml-form-embedSubmitLoad {
      display: inline-block;
      width: 20px;
      height: 20px;
    }

    .g-recaptcha {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    height: ;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }

    .ml-form-embedSubmitLoad:after {
      content: " ";
      display: block;
      width: 11px;
      height: 11px;
      margin: 1px;
      border-radius: 50%;
      border: 4px solid #fff;
    border-color: #ffffff #ffffff #ffffff transparent;
    animation: ml-form-embedSubmitLoad 1.2s linear infinite;
    }
    @keyframes ml-form-embedSubmitLoad {
      0% {
      transform: rotate(0deg);
      }
      100% {
      transform: rotate(360deg);
      }
    }
      #mlb2-31495601.ml-form-embedContainer {
        box-sizing: border-box;
        display: table;
        margin: 0 auto;
        position: static;
        width: 100% !important;
      }
      #mlb2-31495601.ml-form-embedContainer h4,
      #mlb2-31495601.ml-form-embedContainer p,
      #mlb2-31495601.ml-form-embedContainer span,
      #mlb2-31495601.ml-form-embedContainer button {
        text-transform: none !important;
        letter-spacing: normal !important;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper {
        background-color: #f6f6f6;
        
        border-width: 0px;
        border-color: transparent;
        border-radius: 4px;
        border-style: solid;
        box-sizing: border-box;
        display: inline-block !important;
        margin: 0;
        padding: 0;
        position: relative;
              }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-align-left { text-align: left; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-align-center { text-align: center; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-align-right { text-align: right; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        height: auto;
        margin: 0 auto !important;
        max-width: 100%;
        width: undefinedpx;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
        padding: 20px 20px 0 20px;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
        padding-bottom: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
        text-align: left;
        margin: 0 0 20px 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 30px;
        font-weight: 400;
        margin: 0 0 10px 0;
        text-align: left;
        word-break: break-word;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 10px 0;
        text-align: left;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
        list-style-type: lower-alpha;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
        list-style-type: lower-roman;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
        color: #000000;
        text-decoration: underline;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
        text-align: left!important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
        margin-bottom: 5px;
        color: #333333;
        font-size: 14px;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-weight: bold; font-style: normal; text-decoration: none;;
        display: inline-block;
        line-height: 20px;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
        margin: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
        margin: 0;
        width: 100%;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        margin: 0 0 20px 0;
        width: 100%;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        float: left;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
        margin: 0;
        padding: 0 0 20px 0;
        width: 100%;
        height: auto;
        float: left;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
        margin: 0 0 10px 0;
        width: 100%;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
        margin: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
        margin: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          border-color: #cccccc!important;
          background-color: #ffffff!important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type="checkbox"]{
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
        border-radius: 4px!important;
      }


      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {
          border-color: #000000!important;
          background-color: #000000!important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
           top: 2px;
           box-sizing: border-box;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
           top: 0px!important;
           box-sizing: border-box!important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
        top: 0px!important;
           box-sizing: border-box!important;
      }

       #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
            top: 0px!important;
            box-sizing: border-box!important;
            position: absolute;
            left: -1.5rem;
            display: block;
            width: 1rem;
            height: 1rem;
            content: "";
       }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
        top: 0px!important;
        box-sizing: border-box!important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
          position: absolute;
          top: 2px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
          background: no-repeat 50%/50% 50%;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          background: no-repeat 50%/50% 50%;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
        position: relative;
        display: block;
        min-height: 1.5rem;
        padding-left: 1.5rem;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
          position: absolute;
          z-index: -1;
          opacity: 0;
          box-sizing: border-box;
          padding: 0;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
          color: #000000;
          font-size: 12px!important;
          font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
          line-height: 22px;
          margin-bottom: 0;
          position: relative;
          vertical-align: top;
          font-style: normal;
          font-weight: 700;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 28px 10px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        background: url('https://assets.mlcdn.com/ml/images/default/dropdown.svg') no-repeat right .75rem center/8px 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }


      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
        height: auto;
        width: 100%;
        float: left;
      }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
        background-color: #ffffff;
        color: #333333;
        border-color: #cccccc;
        border-radius: 4px;
        border-style: solid;
        border-width: 1px;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px;
        width: 100%;
        box-sizing: border-box;
        overflow-y: initial;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
        background-color: #000000 !important;
        border-color: #000000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px;
        box-shadow: none;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        font-weight: 700;
        line-height: 20px;
        margin: 0 !important;
        padding: 10px !important;
        width: 100%;
        height: auto;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
        background-color: #333333 !important;
        border-color: #333333 !important;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
        color: #000000;
        display: block;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        vertical-align: top;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
        font-weight: normal;
        margin: 0;
        padding: 0;
        position: relative;
        display: block;
        min-height: 24px;
        padding-left: 24px;

      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
        color: #000000;
        text-decoration: underline;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
        color: #000000 !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
        font-size: 12px !important;
        font-weight: normal !important;
        line-height: 18px !important;
        padding: 0 !important;
        margin: 0 5px 0 0 !important;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
        margin: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
        margin: 0 0 20px 0;
        float: left;
        width: 100%;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
        background-color: #000000 !important;
        border: none !important;
        border-radius: 4px !important;
        box-shadow: none !important;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 21px !important;
        height: auto;
        padding: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
        display: none;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
        background-color: #333333 !important;
      }
      .ml-subscribe-close {
        width: 30px;
        height: 30px;
        background: url('https://assets.mlcdn.com/ml/images/default/modal_close.png') no-repeat;
        background-size: 30px;
        cursor: pointer;
        margin-top: -10px;
        margin-right: -10px;
        position: absolute;
        top: 0;
        right: 0;
      }
      .ml-error input, .ml-error textarea, .ml-error select {
        border-color: red!important;
      }

      .ml-error .custom-checkbox-radio-list {
        border: 1px solid red !important;
        border-radius: 4px;
        padding: 10px;
      }

      .ml-error .label-description,
      .ml-error .label-description p,
      .ml-error .label-description p a,
      .ml-error label:first-child {
        color: #ff0000 !important;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
        color: #ff0000 !important;
      }
            @media only screen and (max-width: 400px){

        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
        .ml-form-formContent.horozintalForm { float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }

      }
    </style>

    
  
    
    <style type="text/css">
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions { text-align: left; float: left; width: 100%; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent {
        margin: 0 0 15px 0;
        text-align: left;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.horizontal {
        margin: 0 0 15px 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent h4 {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 700;
        line-height: 18px;
        margin: 0 0 10px 0;
        word-break: break-word;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 18px;
        margin: 0 0 10px 0;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 22px;
        margin: 0 0 10px 0;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p a {
        color: #000000;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p:last-child {
        margin: 0;
      }

      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p a {
        color: #000000;
        text-decoration: underline;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p:last-child { margin: 0 0 15px 0; }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptions {
        margin: 0;
        padding: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox {
        margin: 0 0 10px 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox:last-child {
        margin: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox label {
        font-weight: normal;
        margin: 0;
        padding: 0;
        position: relative;
        display: block;
        min-height: 24px;
        padding-left: 24px;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 18px;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        vertical-align: top;
        font-style: normal;
        font-weight: 700;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .description {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-style: italic;
        font-weight: 400;
        line-height: 18px;
        margin: 5px 0 0 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type="checkbox"] {
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR {
        padding-bottom: 20px;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {
        color: #000000;
        font-family: 'Quicksand', 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 14px;
        margin: 0;
        padding: 0;
      }
      #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p a {
        color: #000000;
        text-decoration: underline;

      }
      @media (max-width: 768px) {
        #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {
          font-size: 12px !important;
          line-height: 18px !important;
        }
        #mlb2-31495601.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {
          font-size: 10px !important;
          line-height: 14px !important;
        }
      }


