/*HTML*/
body {
  font-size: 20px;
  font-weight: 500;
  font-family: "MuseoSans";
  line-height: 1.4;
  color: #53565A;
}

section {
  padding-top: 45px;
  padding-bottom: 45px;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
  padding-left: 1em;
  margin: 0;
}

/*Bootstrap*/
.modal-dialog {
  max-width: 552px;
}

.modal-content {
  border-radius: 0;
}

.modal-backdrop {
  background-color: #53565A;
}
.modal-backdrop.show {
  opacity: 0.9;
}

/*Self Defined*/
header {
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
  background-color: #001489;
  z-index: 12;
}
header .header-items {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-items .mob-nav-controller {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 0;
  width: 34px;
  height: 24px;
  cursor: pointer;
}
header .header-items .mob-nav-controller span {
  width: 100%;
  height: 4px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
header .header-items .mob-nav-controller.active span:first-child {
  transform: rotateZ(45deg) translate(6px, 8px);
}
header .header-items .mob-nav-controller.active span:nth-child(2) {
  opacity: 0;
}
header .header-items .mob-nav-controller.active span:last-child {
  transform: rotateZ(-45deg) translate(6px, -8px);
}
header .header-items .banner-header {
  max-width: 350px;
}
header .header-items .logo-header {
  height: 119px;
}

nav {
  position: sticky;
  top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FFFFFF;
  color: #ffffff;
  background-color: #001489;
  z-index: 12;
}
nav .nav-items {
  display: flex;
  justify-content: space-between;
}
nav .nav-items ul {
  display: flex;
  align-items: center;
  font-size: 20px;
  list-style: none;
  padding: 0;
}
nav .nav-items ul > li {
  position: relative;
  margin-right: 45px;
  border-bottom: 2px solid transparent;
}
nav .nav-items ul > li:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 14px;
  margin-left: 6px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/ic-locked.svg");
}
nav .nav-items ul > li .btn-register:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/ic-external-link.svg");
}
nav .nav-items ul > li:hover, nav .nav-items ul > li.active {
  border-bottom-color: #fff;
}
nav .nav-items ul.loggedin > li:after {
  display: none;
}
nav .nav-items .menu-trigger {
  width: 32px;
  height: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
nav .nav-items .menu-trigger > div {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
}
nav .nav-items .menu-trigger > div:before, nav .nav-items .menu-trigger > div:after {
  position: absolute;
  content: "";
  width: 100%;
  height: inherit;
  border-radius: 4px;
  background-color: #ffffff;
}
nav .nav-items .menu-trigger > div:before {
  top: 0;
}
nav .nav-items .menu-trigger > div:after {
  bottom: 0;
}
@media (max-width: 991.98px) {
  nav {
    position: fixed;
    width: calc(100% - 30px);
    min-height: calc(100vh - 60px);
    top: 61px;
    left: 0;
    transform: translateX(-110%);
    transition: transform 0.6s ease;
  }
  nav .nav-items ul {
    margin-top: 45px;
    min-height: 30vh;
    justify-content: space-around;
    flex-direction: column;
    align-items: flex-start;
  }
  nav .nav-items .d-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  nav.active {
    transform: translateX(0);
  }
}

footer {
  width: 100%;
  margin-top: 65px;
  background-color: #001489;
  color: #FFFFFF;
  font-size: 20px;
}
footer .f-branding {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .f-branding a {
  margin-bottom: 20px;
}
footer .f-branding a img {
  max-width: 230px;
}
footer .f-branding span {
  font-size: 13px;
}
@media (max-width: 991.98px) {
  footer .f-branding span {
    font-size: 12px;
  }
}
footer .f-links {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .f-links ul {
  display: flex;
  font-weight: 700;
  list-style: none;
  padding: 0;
}
footer .f-links ul li {
  padding-right: 30px;
}
footer .f-links ul li a:hover {
  text-decoration: underline;
}
footer .f-links img {
  height: 190px;
  margin-top: -65px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrapper .sections {
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .wrapper {
    padding-top: 61px;
  }
}

.d-btn {
  position: relative;
  display: inline-block;
  padding: 6px 35px;
  border-radius: 5px;
  border: 2px solid transparent;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}
.d-btn.d-red {
  color: #FFFFFF;
  background-color: #CF004D;
}
.d-btn.d-red.active {
  background-color: transparent;
  border-color: #FFFFFF;
}
.d-btn.d-red:hover {
  background-color: #9d053e;
}
.d-btn.d-transparent {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.d-btn.d-transparent:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.d-btn.btn-blue {
  background-color: #001489;
  color: #fff;
}
.d-btn.btn-blue:hover {
  background-color: #05115c;
}
.d-btn.btn-register {
  padding-left: 20px;
  padding-right: 20px;
}
.d-btn.btn-register:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/ic-external-link.svg");
}

.btn-outer {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-outer .close-btn {
  display: block;
  width: 2rem;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  transition: transform 0.3s ease 0.4s;
  transform: rotate(-45deg);
}
.btn-outer .close-btn:before, .btn-outer .close-btn:after {
  content: "";
  display: block;
  width: 2rem;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.btn-outer .close-btn:before {
  top: 0px;
  opacity: 1;
}
.btn-outer .close-btn:after {
  bottom: 0px;
  transform: rotate(-90deg);
}
.btn-outer .close-btn.animate {
  transform: rotate(-45deg);
}
.btn-outer .close-btn.animate:before {
  top: 0px;
  opacity: 0;
}
.btn-outer .close-btn.animate:after {
  bottom: 0px;
  transform: rotate(-90deg);
}

.d-ic.ic-direction {
  width: 20px;
  height: 34px;
  display: block;
  margin: 0 auto;
  border: 2px solid #001489;
  border-radius: 10px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.825' height='6.826' viewBox='0 0 10.825 6.826'%3E%3Cg id='arrow-down' transform='translate(9.41 1.414) rotate(90)'%3E%3Cline id='Linie_148' data-name='Linie 148' x2='3.998' y2='3.998' fill='none' stroke='%23001489' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Linie_149' data-name='Linie 149' y1='3.998' x2='3.998' transform='translate(0 3.998)' fill='none' stroke='%23001489' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position-y: 20px;
  animation: 0.6s animate-direction ease-in-out alternate infinite;
}
.d-ic.ic-direction.ic-white {
  border-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.825' height='6.826' viewBox='0 0 10.825 6.826'%3E%3Cg id='arrow-down' transform='translate(9.41 1.414) rotate(90)'%3E%3Cline id='Linie_148' data-name='Linie 148' x2='3.998' y2='3.998' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Linie_149' data-name='Linie 149' y1='3.998' x2='3.998' transform='translate(0 3.998)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.d-ic.ic-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.825' height='6.826' viewBox='0 0 10.825 6.826'%3E%3Cg id='arrow-down' transform='translate(9.41 1.414) rotate(90)'%3E%3Cline id='Linie_148' data-name='Linie 148' x2='3.998' y2='3.998' fill='none' stroke='%23001489' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Linie_149' data-name='Linie 149' y1='3.998' x2='3.998' transform='translate(0 3.998)' fill='none' stroke='%23001489' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  border: 2px solid #001489;
  transform: rotate(180deg);
  animation: none;
  z-index: 10;
  cursor: pointer;
}

.ucb {
  padding-top: 75px;
  padding-bottom: 75px;
}
.ucb .ucb-single {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  height: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.ucb .ucb-single .content-txt {
  flex-grow: 1;
  position: relative;
  padding: 15px;
  padding-bottom: 90px;
  background-color: #F2F4F8;
  font-size: 16px;
}
.ucb .ucb-single .d-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #001489;
}
.ucb .ucb-single .d-btn:hover {
  background-color: #05115c;
}

.cta {
  position: relative;
  background-color: #001489;
}
.cta .cta-bg {
  height: 100%;
  position: absolute;
  top: 0;
  left: 52%;
}
.cta h2 {
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .cta .cta-bg {
    transform: translateX(-50%);
  }
}

.time-remained {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #CF004D;
}
.time-remained > div {
  width: 89px;
  height: 72px;
  padding: 10px 0;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 15px;
  line-height: 1;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.13);
}
.time-remained > div b {
  font-size: 35px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .time-remained {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    justify-content: center;
  }
  .time-remained > div {
    width: 77px;
    height: 62px;
    font-size: 12px;
  }
  .time-remained > div b {
    font-size: 29px;
  }
}
.time-remained.time-remained-center {
  justify-content: center;
}

#loginModal .modal-content .login-area {
  padding: 30px 30px;
}
#loginModal .modal-content .login-area form {
  max-width: 330px;
  margin: 0 auto;
  text-align: center;
}
#loginModal .modal-content .login-area .loginFormError {
  display: none;
  color: #CF004D;
  font-size: 12px;
}
#loginModal .modal-content .login-area #loginFormBtn.disable {
  opacity: 0.6;
  pointer-events: none;
}
#loginModal .modal-content .d-btn:hover {
  background-color: #CF004D;
}
#loginModal .modal-content #popup-close {
  background-color: #CF004D;
  width: 50px;
  height: 50px;
}

#registerInfo .modal-content, #pflichtInfoModal .modal-content {
  position: relative;
  padding: 20px 20px 60px;
}
#registerInfo .modal-content .close-btn, #pflichtInfoModal .modal-content .close-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/ic-close-register.svg");
  cursor: pointer;
}

#pflichtInfoModal .modal-dialog {
  max-width: 1020px;
  width: 98%;
}
#pflichtInfoModal .modal-dialog .modal-content {
  padding: 30px 30px 40px 30px;
}

@media screen and (max-width: 1199.98px) {
  .branding {
    height: 90px;
  }
  .branding .location {
    font-size: 18px;
  }
  .branding .location > span {
    font-size: 27px;
  }
  .branding .logo_with_x {
    height: 90px;
  }
}
@media screen and (max-width: 991.98px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
  }
  header .header-items {
    justify-content: center;
  }
  header .header-items .mob-nav-controller {
    display: flex;
  }
  header .header-items .banner-header {
    display: none;
  }
  header .header-items .logo-header {
    height: 60px;
  }

  footer .f-branding {
    text-align: center;
  }
  footer .f-links {
    position: relative;
    justify-content: center;
    padding-bottom: 30px;
  }
  footer .f-links ul {
    display: block;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  footer .f-links ul li {
    padding: 0;
    margin: 12px 0;
  }
  footer .f-links img {
    position: absolute;
    margin-top: 0;
    top: -48px;
    left: 50%;
    transform: translateX(-40px);
  }
}
@media screen and (max-width: 575.98px) {
  .branding .location {
    font-size: 14px;
  }
  .branding .location > span {
    font-size: 22px;
  }
  .branding .logo_with_x {
    height: 70px;
  }
}
@keyframes animate-direction {
  100% {
    background-position-y: 16px;
  }
}

/*# sourceMappingURL=components.css.map */
