body {
  font-family: "museo-sans";
  font-weight: 300;
  font-size: 17px;
  line-height: 1.3;
  color: #000000;
}

h1 {
  font-weight: 700;
}

h2, .h2, h3, .h3 {
  font-weight: 500;
}

h2, .h2 {
  font-size: 32px;
}

h3, .h3 {
  font-size: 24px;
}

i, .italic {
  font-style: italic;
  font-family: "museo-sans";
}

b, .bold, strong {
  font-weight: 700;
}

.semi-bold {
  font-weight: 500;
}

.font-weight-100 {
  font-weight: 100;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.fs-small {
  font-size: 14px;
}

.fs-x-small {
  font-size: 12px;
}

.green {
  color: #6BCABA;
}

.red {
  color: #D10200;
}

.blue {
  color: #001489;
}

.black {
  color: #000000;
}

.grey {
  color: #4B4F54;
}

.extra-bold {
  font-weight: 900;
}

.mt-large {
  margin-top: 90px;
}

.mt-medium {
  margin-top: 60px;
}

.mt-small {
  margin-top: 30px;
}

.mt-xs {
  margin-top: 15px;
}

.pt-60 {
  padding-top: 60px;
}

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

p:last-child {
  margin-bottom: 0;
}

hr {
  margin-top: 45px;
  margin-bottom: 45px;
  opacity: 1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ucb-btn {
  all: unset;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid;
  color: #001489;
  font-weight: 300;
  font-size: 16px;
  transition: 0.3s ease;
  cursor: pointer;
}
.ucb-btn > img {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.ucb-btn.btn-outlined:hover {
  backdrop-filter: brightness(95%);
}
.ucb-btn.btn-filled {
  color: #ffffff;
  background-color: #001489;
}
.ucb-btn.btn-filled:hover {
  filter: brightness(90%);
}
.ucb-btn.btn-filled.btn-orange {
  color: #001489;
  background-color: #F1B466;
  border-color: transparent;
}

.ucb-ic-btn {
  all: unset;
  display: inline-block;
  color: #000;
  line-height: 1;
  transition: 0.1s ease;
}
.ucb-ic-btn > span {
  padding-left: 15px;
}
.ucb-ic-btn:before {
  display: inline-block;
  vertical-align: middle;
}
.ucb-ic-btn.ic-plus {
  font-weight: 300;
}
.ucb-ic-btn.ic-plus:before {
  content: url("../img/dashboard/icons/ic-btn-plus.svg");
  padding-right: 20px;
}
.ucb-ic-btn.ic-edit:before {
  content: url("../img/dashboard/icons/ic-btn-edit.svg");
}
.ucb-ic-btn.ic-trash:before {
  content: url("../img/dashboard/icons/ic-btn-trash.svg");
}
.ucb-ic-btn:hover {
  filter: brightness(90%);
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
  color: #001489;
}
header .header-logo {
  width: 229px;
}
header .container {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
header .row {
  align-items: center;
}
header .header-contact {
  padding-right: 45px;
}
header nav {
  display: inline-block;
  vertical-align: middle;
}
header nav .nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}
header nav .nav-btn span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background-color: #001489;
  transform-origin: center;
  transition: 0.3s ease;
}
header nav .nav-btn span:first-child {
  background-color: #000;
}
header nav .main-menu {
  display: none;
  position: absolute;
  width: 312px;
  top: 100%;
  right: 0;
  text-align: left;
  box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.2);
}
header nav .main-menu li {
  background-color: #ffffff;
}
header nav .main-menu a {
  display: block;
  padding: 15px 15px 15px 15px;
}
header nav.active .nav-btn {
  background-color: #ECEDED;
  gap: 0;
}
header nav.active .nav-btn span {
  position: absolute;
}
header nav.active .nav-btn span:nth-child(1) {
  display: none;
}
header nav.active .nav-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
header nav.active .nav-btn span:nth-child(3) {
  transform: rotate(45deg);
}
header nav.active .main-menu {
  display: block;
}

#breadcrumb {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #001489;
}
#breadcrumb .breadcrumb-separator {
  padding: 0 10px;
}

main {
  flex-grow: 1;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

#freigabe-nummer {
  padding: 60px 15px;
  text-align: center;
}

footer {
  padding-top: 65px;
  padding-bottom: 65px;
  background-color: #cacccd;
  color: #4B4F54;
  font-size: 14px;
}
footer .footer-logo {
  width: 229px;
}
footer .footer-info-links {
  gap: 60px;
}
footer ul li {
  margin-bottom: 15px;
}
footer .footer-copyright {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-logos {
  display: flex;
  gap: 6px;
}
footer .footer-logos img {
  height: 30px;
  width: auto;
}

.form-control, .form-select {
  color: #001489;
}
.form-control:focus, .form-select:focus {
  color: #001489;
}

.form-label.required:after {
  content: "*";
}

@media (max-width: 991px) {
  body {
    font-size: 16px;
  }

  h2, .h2 {
    font-size: 30px;
  }

  h3, .h3 {
    font-size: 20px;
  }

  header .header-logo {
    width: 150px;
  }
  header .ucb-next-level-logo {
    font-size: 12px;
  }

  #freigabe-nummer {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 30px;
    text-align: center;
  }
  footer .footer-logos {
    justify-content: center;
    margin-top: 10px;
  }
  footer .footer-logos img {
    height: 23px;
  }
  footer ul {
    display: block;
  }
  footer ul li {
    margin-bottom: 10px;
  }
}

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