@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-regular.woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-regular.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-700.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-italic.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-italic.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/lora-v16-latin-700italic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

html * {
    font-family: "LORA", "BlinkMacSystemFont", -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
}

html * button {
    font-family: "LORA", "BlinkMacSystemFont", -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", "sans-serif" !important;
}

html {
    overflow-y: auto !important;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.login-pf body {
    background: white;
    min-width: auto !important;
}

.header {
    width: 100%;
    height: 130px;
    border-bottom: 1px solid #888888;
}

@media (max-width: 1280px) {
    .header {
        height: 64px;
    }
}

.home-logo img {
    height: 130px;
    align-self: center;
}

@media (max-width: 1280px) {
    .home-logo img {
        height: 64px !important;
    }
}

.header-container-desktop {
    margin: 0 auto;
    max-width: 1890px;
    display: grid;
    grid-column-gap: 32px;
    grid-template-columns: 320px 1fr 130px;
    align-items: end;
}

@media (max-width: 1280px) {
    .header-container-desktop {
        display: none;
    }
}

@media (max-width: 1400px) {
    .header-container-desktop {
        grid-template-columns: 1fr 1fr;
    }
}

.header-container-desktop .header-middle {
    display: grid;
    grid-auto-rows: 1fr;
    margin-bottom: 1px;
}

@media (max-width: 1400px) {
    .header-container-desktop .header-middle {
        display: none;
    }
}

.header-container-desktop .header-middle .header-links {
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 100%;
    max-width: 1000px;
}

.header-container-desktop .header-middle .header-icons {
    display: flex;
    justify-content: end;
    margin: auto;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.header-container-desktop .header-middle .header-icons .fas {
    font-size: 25px;
    margin-left: 25px;
    pointer-events: none;
    cursor: default;
    color: #ccc;
}

.header-container-desktop .header-right {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

@media (max-width: 1280px) {
    .header-container-desktop .header-right {
        display: none;
    }
}

@media (max-width: 1400px) {
    .header-container-desktop .header-right {
        margin-left: auto;
        margin-right: 1rem;
    }
}

.header-container-desktop .header-right a:hover {
    text-decoration: none;
}

.header-container-desktop .header-right .logo-right {
    width: 100px;
}

.header-container-desktop .dropdown-menu {
    width: 340px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    background: white;
    margin-top: 1px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.175);
}

.header-container-mobile {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
}

@media (min-width: 1280px) {
    .header-container-mobile {
        display: none;
    }
}

.header-container-mobile .header-icons {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    font-size: 24px;
}

.header-container-mobile .header-icons .fas {
    pointer-events: none;
    cursor: default;
    color: #ccc;
}

main {
    margin: 0 auto;
    padding: 1rem 1rem;
    max-width: 1440px;
}

main h1, main h2, main p, main label, main span, main strong {
    color: #534a41;
}

main h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

main h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22.5px;
}

main p, main label, main span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

main li {
    display: inline-block;
    white-space: nowrap;
}

main #forgot-password {
    font-size: 16px;
    font-weight: 700;
    float: right;
    line-height: 20.48px;
    color: #6e645e;
    text-decoration: underline;
}

main #registration-link-wrapper {
    width: 100%;
    text-align: center;
}

@media (min-width: 1280px) {
    main #registration-link-wrapper {
        display: none;
    }
}

main #registration-link-wrapper a {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    line-height: 20.48px;
    color: #6e645e;
    text-decoration: underline;
}

main .main-wrapper {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 1rem;
}

@media (max-width: 1280px) {
    main .main-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 568px) {
    main .main-wrapper {
        display: grid;
    }
}

main .main-wrapper .tile {
    width: 568px;
    min-width: 568px;
    max-width: 568px;
}

@media (max-width: 568px) {
    main .main-wrapper .tile {
        min-width: 200px;
        width: auto;
    }

    main .main-wrapper .tile li {
        white-space: wrap;
    }
}

main .main-wrapper .tile .tile-content {
    border: 1px solid #DEE4E8;
    border-radius: 4px;
    padding: 2rem;
    height: fit-content;
}

main .main-wrapper .tile .tile-content .tile-content-title {
    display: grid;
    align-items: center;
    grid-template-columns: 40px 1fr;
}

main .main-wrapper .tile .tile-content .tile-content-title .fas {
    font-size: 24px;
}

main .main-wrapper .tile .tile-content hr {
    color: #cac7c6;
}

main .main-wrapper .tile .tile-content .bold-text {
    font-weight: 700;
}

main .main-wrapper .tile .tile-content .italic-text {
    font-style: italic;
}

.footer {
    padding: 24px 32px;
    border-top: 1px solid #534a41;
    background-color: #ffffff;
    height: 130px;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .footer {
        display: none;
    }
}

.footer-content {
    max-width: 1890px;
    margin: auto;
    display: grid;
    grid-template-areas: "socials links brand";
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-rows: 82px;
    gap: 32px;
}

.footer__socials {
    grid-area: socials;
}

.footer__social-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.footer__social-link {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    border: 1px solid #bbb9b9;
    color: #6e645e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link:hover {
    background-color: #6e645e;
    color: #ffffff;
}

.footer__links {
    grid-area: links;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.footer__link-category {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__link-category:not(:last-child) {
    border-right: 1px solid #bbb9b9;
}

.footer__category-links {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.footer__link-header {
    color: #534a41;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.footer__link {
    color: #534a41;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.footer__brand {
    grid-area: brand;
    display: grid;
    justify-content: center;
}

.footer__brand-text {
    color: #534a41;
}

.logo-text {
    color: #534a41;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0.25rem;
    display: block;
}

.page-title {
    color: #534a41 !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
}

.dropdown {
    align-self: end;
    padding: 12px 16px 10px 16px;
    border-radius: 8px 8px 0 0;
}

.dropdown.service {
    background: #e0eff5;
}

.dropdown.marktplatz:hover, .dropdown.marktplatz.is-active {
    background: #EED7CF;
}

.dropdown.gutscheine:hover, .dropdown.gutscheine.is-active {
    background: #B8DBAF;
}

.dropdown.trinkwasser:hover, .dropdown.trinkwasser.is-active {
    background: #B6DFF4;
}

.dropdown.sehenswertes:hover, .dropdown.sehenswertes.is-active {
    background: #F7D0A3;
}

.dropdown.wissen:hover, .dropdown.wissen.is-active {
    background: #FBF4CD;
}

.dropdown .dropdown-content {
    padding: 32px 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dropdown .dropdown-content.service {
    background: #e0eff5;
}

.dropdown .dropdown-content.marktplatz {
    background: #EED7CF;
}

.dropdown .dropdown-content.gutscheine {
    background: #B8DBAF;
}

.dropdown .dropdown-content.trinkwasser {
    background: #B6DFF4;
}

.dropdown .dropdown-content.sehenswertes {
    background: #F7D0A3;
}

.dropdown .dropdown-content.wissen {
    background: #FBF4CD;
}

.update-password-criteria {
  display: block;
  padding-inline-start: 40px;
  list-style: disc;
}
.update-password-criteria li {
  display: list-item;
}
.update-password-criteria li ul {
  display: block;
  padding-inline-start: 40px;
  list-style: circle;
}
.update-password-criteria li ul li {
  display: list-item;
}

.dropdown-trigger span {
    color: #534a41;
}

.dropdown-trigger .button {
    font-size: 20px !important;
    cursor: default;
    border: none;
    background: none;
    padding: 0;
    font-weight: 600;
    height: auto;
}

.dropdown-trigger .button:hover {
    text-decoration: none;
}

.dropdown-menu {
    padding: 0 !important;
    border: none;
    width: 330px;
}

.dropdown-divider {
    background-color: #534a41 !important;
    opacity: 40% !important;
    margin: 10px 0 !important;
}

.dropdown-item {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dropdown-item.with-icon {
    display: inline-flex;
    align-items: center;
}

.dropdown-item a, .dropdown-item span {
    margin-top: 0.5rem;
    color: #534a41 !important;
    font-size: 18px;
}

.dropdown-item .fas {
    margin-right: 12px;
    font-size: 20px;
}

.dropdown-item.level-1 {
    font-weight: 700;
    padding-left: 0;
}

.dropdown-item.level-2 {
    font-weight: 700;
    padding-left: 0;
}

.dropdown-item.level-2:hover {
    cursor: default;
}

.dropdown-item.level-2.magento-url {
    padding-left: 1rem;
    font-weight: normal;
}

.dropdown-item.level-2.magento-url:hover {
    cursor: pointer;
}

.dropdown-item.level-3 {
    padding-left: 2rem;
}

.dropdown-item.level-2 a::after, .dropdown-item.level-3 a::after {
    content: attr(data-text);
    content: attr(data-text)/"";
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    font-weight: bold;
    display: block;
}

.button.is-dark {
    background-color: #6e645e !important;
    border-color: transparent;
    color: #fff;
    font-size: 16px;
    white-space: wrap;
    height: auto;
}

.button.is-dark span {
    color: #fff;
}

.button.is-dark:hover {
    text-decoration: none;
    background: #6e645e !important;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.175);
}

.login-pf {
    background: white !important;
}

.has-margin-0 {
    margin: 0rem !important;
}

.has-padding-0 {
    padding: 0rem !important;
}

.has-margin-top-0 {
    margin-top: 0rem !important;
}

.has-padding-top-0 {
    padding-top: 0rem !important;
}

.has-margin-right-0 {
    margin-right: 0rem !important;
}

.has-padding-right-0 {
    padding-right: 0rem !important;
}

.has-margin-bottom-0 {
    margin-bottom: 0rem !important;
}

.has-padding-bottom-0 {
    padding-bottom: 0rem !important;
}

.has-margin-left-0 {
    margin-left: 0rem !important;
}

.has-padding-left-0 {
    padding-left: 0rem !important;
}

.has-margin-1 {
    margin: 0.125rem !important;
}

.has-padding-1 {
    padding: 0.125rem !important;
}

.has-margin-top-1 {
    margin-top: 0.125rem !important;
}

.has-padding-top-1 {
    padding-top: 0.125rem !important;
}

.has-margin-right-1 {
    margin-right: 0.125rem !important;
}

.has-padding-right-1 {
    padding-right: 0.125rem !important;
}

.has-margin-bottom-1 {
    margin-bottom: 0.125rem !important;
}

.has-padding-bottom-1 {
    padding-bottom: 0.125rem !important;
}

.has-margin-left-1 {
    margin-left: 0.125rem !important;
}

.has-padding-left-1 {
    padding-left: 0.125rem !important;
}

.has-margin-2 {
    margin: 0.25rem !important;
}

.has-padding-2 {
    padding: 0.25rem !important;
}

.has-margin-top-2 {
    margin-top: 0.25rem !important;
}

.has-padding-top-2 {
    padding-top: 0.25rem !important;
}

.has-margin-right-2 {
    margin-right: 0.25rem !important;
}

.has-padding-right-2 {
    padding-right: 0.25rem !important;
}

.has-margin-bottom-2 {
    margin-bottom: 0.25rem !important;
}

.has-padding-bottom-2 {
    padding-bottom: 0.25rem !important;
}

.has-margin-left-2 {
    margin-left: 0.25rem !important;
}

.has-padding-left-2 {
    padding-left: 0.25rem !important;
}

.has-margin-3 {
    margin: 0.5rem !important;
}

.has-padding-3 {
    padding: 0.5rem !important;
}

.has-margin-top-3 {
    margin-top: 0.5rem !important;
}

.has-padding-top-3 {
    padding-top: 0.5rem !important;
}

.has-margin-right-3 {
    margin-right: 0.5rem !important;
}

.has-padding-right-3 {
    padding-right: 0.5rem !important;
}

.has-margin-bottom-3 {
    margin-bottom: 0.5rem !important;
}

.has-padding-bottom-3 {
    padding-bottom: 0.5rem !important;
}

.has-margin-left-3 {
    margin-left: 0.5rem !important;
}

.has-padding-left-3 {
    padding-left: 0.5rem !important;
}

.has-margin-4 {
    margin: 1rem !important;
}

.has-padding-4 {
    padding: 1rem !important;
}

.has-margin-top-4 {
    margin-top: 1rem !important;
}

.has-padding-top-4 {
    padding-top: 1rem !important;
}

.has-margin-right-4 {
    margin-right: 1rem !important;
}

.has-padding-right-4 {
    padding-right: 1rem !important;
}

.has-margin-bottom-4 {
    margin-bottom: 1rem !important;
}

.has-padding-bottom-4 {
    padding-bottom: 1rem !important;
}

.has-margin-left-4 {
    margin-left: 1rem !important;
}

.has-padding-left-4 {
    padding-left: 1rem !important;
}

.has-margin-8 {
    margin: 2rem !important;
}

.has-padding-8 {
    padding: 2rem !important;
}

.has-margin-top-8 {
    margin-top: 2rem !important;
}

.has-padding-top-8 {
    padding-top: 2rem !important;
}

.has-margin-right-8 {
    margin-right: 2rem !important;
}

.has-padding-right-8 {
    padding-right: 2rem !important;
}

.has-margin-bottom-8 {
    margin-bottom: 2rem !important;
}

.has-padding-bottom-8 {
    padding-bottom: 2rem !important;
}

.has-margin-left-8 {
    margin-left: 2rem !important;
}

.has-padding-left-8 {
    padding-left: 2rem !important;
}

.has-margin-16 {
    margin: 4rem !important;
}

.has-padding-16 {
    padding: 4rem !important;
}

.has-margin-top-16 {
    margin-top: 4rem !important;
}

.has-padding-top-16 {
    padding-top: 4rem !important;
}

.has-margin-right-16 {
    margin-right: 4rem !important;
}

.has-padding-right-16 {
    padding-right: 4rem !important;
}

.has-margin-bottom-16 {
    margin-bottom: 4rem !important;
}

.has-padding-bottom-16 {
    padding-bottom: 4rem !important;
}

.has-margin-left-16 {
    margin-left: 4rem !important;
}

.has-padding-left-16 {
    padding-left: 4rem !important;
}

.has-margin-32 {
    margin: 8rem !important;
}

.has-padding-32 {
    padding: 8rem !important;
}

.has-margin-top-32 {
    margin-top: 8rem !important;
}

.has-padding-top-32 {
    padding-top: 8rem !important;
}

.has-margin-right-32 {
    margin-right: 8rem !important;
}

.has-padding-right-32 {
    padding-right: 8rem !important;
}

.has-margin-bottom-32 {
    margin-bottom: 8rem !important;
}

.has-padding-bottom-32 {
    padding-bottom: 8rem !important;
}

.has-margin-left-32 {
    margin-left: 8rem !important;
}

.has-padding-left-32 {
    padding-left: 8rem !important;
}

.help.is-danger {
    font-size: 14px;
}

:focus-visible {
    outline: 4px solid #0071b8 !important;
    outline-offset: 2px !important;
}

input:focus {
    outline: none !important;
    box-shadow: 0 0 3px 5px #0071b8 !important;
}

.input {
    border-color: #7f8e97 !important;
}

.input.is-danger {
    border-color: #f14668 !important;
}

.main-content-skip {
    opacity: 0;
    position: absolute;
    left: -9999px;
    top: 5px;
    padding: 5px;
    background: white;
    border: 2px solid #76a3f1;
    border-radius: 10px;
    color: black;
}

.main-content-skip:focus {
    left: 5px;
    opacity: 1;
}

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