.dev-note{
    background: yellow;
    padding: 3px;
    border: 2.5px dashed #F0D500;
}
.dev-note:before {
    content:"Entwicklerhinweis:";
    padding-right: 5px;
    font-style: italic;
    text-decoration: underline;
    font-weight: bold;
}

html , body {
  height: 100%;
  --dark-blue: rgb(37, 89, 128);
  --light-blue: rgb(197, 226, 245);
}

/* Breakpoint Desktop: 992px */

:root{
  --light-gray: #333232;
}



/* START: Email Invitation Style */
html,
body,
.ui-widget,
input{
  /*
  'Barlow Condensed' = For latin letters like German, English, etc... (Original Font from Invitation)
  'PT Sans Narrow' = For krilic letters like Russia, etc... 
  */
  font-family: 'Roboto', 'Barlow Condensed', 'PT Sans Narrow', sans-serif; 
  font-size: 20px;
  font-weight: 350;
}
/* END: Email Invitation Style */ 

  body {
    /* background-image: linear-gradient(#f4efdf, #e5d9c3); */
    /* color: #243c7c; */
    background: white;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 10px;
  }

  p {
    font-size: clamp(16px, 3.1vw, 20px);
  }

  h1.position-md-absolute {
    font-weight: 700;
    font-size: clamp(38px, 3.7vw, 56px);

    @media(min-width: 992px) {
      position: absolute;
      bottom: 70px;
      left: 0;

      width: 60%;
    }
  }

  h2 {
    font-size: clamp(22px, 3.3vw, 24px);
  }

  #stage {
    width: 100%;

    @media(min-width: 992px) {
      width: 125%;
      max-width: 1100px;
    }
  }

form {
  .row {
    margin-top: 1rem;
  }
  label {
    margin-bottom: 4px;
    font-size: clamp(16px, 3.1vw, 18px);
    color: var(--light-gray);
    font-weight: 400;
  }
  button.btn-primary {
    white-space: nowrap;
    background-color: var(--dark-blue) !important;
    color: #fff;
    border-color: var(--dark-blue) !important;
    transition: border-color .25s;
    &:hover {
      border-color: white !important;
    }
  }
}
label{
    font-weight: bold;
}

option.avatar {
    background-repeat: no-repeat !important;
    padding-left: 30px;
  }
  .avatar .ui-icon-custom {
    background-position: left top;
  }
  .ui-icon-custom {
      width: 24px;
      height: 24px;
  }

  .ui-icon-custom{
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
  }

  .ui-menu .ui-icon-custom {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .4em;
    margin: auto 0;
}
h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h5 {
  color: var(--dark-blue);
}


.top-banner {
  background: var(--light-blue);
  padding: calc(var(--bs-gutter-x)/2);

  p {
    margin-bottom: 0px;
  }
}



/* Show correct banner (different banners posible for various languages) */ 
#app [class*="lang-only-"]{
  display: none;
}
#app.lang-de [class*="lang-only-de"],
#app.lang-en [class*="lang-only-en"],
#app.lang-es [class*="lang-only-es"],
#app.lang-fr [class*="lang-only-fr"],
#app.lang-nl [class*="lang-only-nl"],
#app.lang-ru [class*="lang-only-ru"],
#app.lang-ro [class*="lang-only-ro"]{
  display: block;
}

/* Video-Container, der gefloatet wird */
.container-text-float-video .float-video {
    padding-bottom: calc(var(--bs-gutter-x)/ 2);
  }

@media (max-width: 767px) {
  .container-text-float-video {
    display: flex;
    flex-wrap: wrap;
  }
  
  .container-text-float-video .float-video {
    width: 100%;
    order: 2;
  }
  
  .container-text-float-video .float-text {
    order: 1;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1120px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1120px;
  }
}

/* md: ≥768px */
@media (min-width: 768px) {
  .container-text-float-video .float-video {
    width: 50%;
    float: right;
    padding-left: calc(var(--bs-gutter-x)/ 2);
  }
}

/* lg: ≥992px */
@media (min-width: 992px) {
  .container-text-float-video .float-video {
    width: 41.6666%;
  }
}