html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'PortalPlatz';
    font-size: 16px;
    line-height: 28px;
}

@font-face {
    font-family: 'PortalPlatz';
    font-style: normal;
    font-weight: normal;
    src: local('PortalPlatz'),local('PortalPlatz-Regular'),
 url('../media/font/PortalPlatz.woff') format('woff'),
 url('../media/font/PortalPlatz.ttf') format('truetype');
}

@font-face {
    font-family: 'PortalPlatz';
    font-style: normal;
    font-weight: bold;
    src: local('PortalPlatz Bold'),local('PortalPlatz-Bold'),
 url('../media/font/PortalPlatz-Bold.woff') format('woff'),
 url('../media/font/PortalPlatz-Bold.ttf') format('truetype');
}

.HeaderWrap {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LogoHeader {
    width: 75px;
    height: 75px;
}

.HeaderLogoWrap {
    display: flex;
}

p {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    color: #808080;
    margin-top: 15px;
    margin-bottom: 15px;
}

h1 {
    font-family: PortalPlatz;
    font-size: 24px;
    color: #00AAFF;
}

h2 {
    font-family: PortalPlatz;
    font-size: 24px;
    color: #00AAFF;
    line-height: 30px;
    font-weight: bold;
}

h3 {
    font-family: PortalPlatz;
    font-size: 20px;
    color: #00AAFF;
    margin-top: 15px;
    margin-bottom: 15px;
}

h4 {
    font-family: PortalPlatz;
    font-size: 24px;
    color: #00aaff;
}

a {
    text-decoration: none;
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #00AAFF;
}

a:hover {
    color: #004099;
    transition: 0.3s;
}

a:active {
    color: #004099;
    transition: 0.3s;
}

a:focus {
    color: #004099;
    transition: 0.3s;
}

span {
    color: #808080;
    line-height: 20px;
    font-size: 16px;
    font-family: PortalPlatz;
}

.Button {
    font-family: PortalPlatz;
    font-size: 16px;
    color: #ffffff;
    background-color: #00AAFF;
    padding: 10px 20px;
    border-style: none;
    border-radius: 20px;
    box-shadow: 0px 3px 5px rgba(0, 51, 77, 0.25) , inset 0px -2px 5px rgba(0, 51, 77, 0.25) , inset 0px 5px 3px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    line-height: 20px;
    font-weight: normal;
}

.Button:active {
    box-shadow: 0px 4px 8px rgba(0, 51, 77, 0.25) , inset 0px -2px 5px rgba(0, 51, 77, 0.25) , inset 0px 5px 3px rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    transition: 0.3s;
}

.Button:focus {
    box-shadow: 0px 4px 8px rgba(0, 51, 77, 0.25) , inset 0px -2px 5px rgba(0, 51, 77, 0.25) , inset 0px 5px 3px rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    transition: 0.3s;
}

.Button:hover {
    box-shadow: 0px 4px 8px rgba(0, 51, 77, 0.25) , inset 0px -2px 5px rgba(0, 51, 77, 0.25) , inset 0px 5px 3px rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    transition: 0.3s;
    color: #ffffff;
}

input::placeholder {
    color: #d3d3d3;
}

label {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    font-weight: normal;
    color: #808080;
}

input {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #808080;
    padding: 5px 10px;
    border: 1px solid #d0d9df;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: #ffffff;
    cursor: pointer;
    margin-left: 0;
}

input[type="checkbox"]:checked {
    background-color: #ffffff;
}

input[type="checkbox"]:checked:before {
    content: url('/media/Check.svg');
    color: #00aaff;
    position: absolute;
    left: 5px;
    width: 18px;
    height: 18px;
    top: 3px;
    animation: checkbox-check 0.5s forwards;
}

@keyframes checkbox-check {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0% 0 0);
    }
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: #ffffff;
    cursor: pointer;
    margin-left: 0;
}

input[type="radio"]:checked {
    background-color: #ffffff;
}

input[type="radio"]:checked:before {
    content: url('/media/Check.svg');
    color: #00aaff;
    position: absolute;
    left: 5px;
    width: 18px;
    height: 18px;
    top: 3px;
    animation: checkbox-check 0.5s forwards;
}

textarea {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #808080;
    padding: 5px 10px;
    border: 1px solid #d0d9df;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
}

textarea::placeholder {
    color: #d3d3d3;
}

.FormularError {
    color: #cc0000;
    line-height: 20px;
}

.HeaderLogoTextUnter {
    color: #808080;
    margin-top: 0;
    margin-bottom: 0;
}

.HeaderLogoTextOben {
    font-size: 24px;
    color: #00AAFF;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width:500px) {
    .HeaderLogoTextWrap {
        display: none;
    }
}

.FooterWrap {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 20px;
}

.FooterWrapBG {
    background-color: #F0F4F7;
}

.FooterIcon {
    width: 50px;
    height: 50px;
}

.FooterIconText {
    font-size: 16px;
    color: #6D8692;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 20px;
}

.FooterIconWrap {
    text-align: center;
}

@media only screen and (max-width:500px) {
    .FooterIconText {
        font-size: 12px;
        margin-top: -8px;
    }

    .FooterIcon {
        width: 35px;
        height: 35px;
    }
}

.FooterBottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 100000;
}

.FooterIconTextAktiv {
    color: #00AAFF;
}

.ContentWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    padding: 50px;
}

@media only screen and (min-width:501px) and (max-width:999px) {
    .ContentWrap {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (max-width:500px) {
    .ContentWrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.TextCenter {
    text-align: center;
}

.LoginFormularFeldWrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.LoginFormularLabel {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #00AAFF;
}

.LoginFormularFeld {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #808080;
    padding: 5px 10px;
    border: 1px solid #d0d9df;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
}

.LoginFormularWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0px 14px 30px rgba(0, 51, 77, 0.25) , inset 0px -3px 8px rgba(0, 51, 77, 0.15) , inset 0px 7px 8px #ffffff , inset 0px 4px 5px rgb(244, 248, 249);
    border-radius: 20px;
    background-image: linear-gradient(180deg, #f4f8f9 0%, rgb(255, 255, 255) 100%);
    margin-bottom: 500px;
}

.LoginFormularButtonWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LoginFormularError {
    font-family: PortalPlatz;
    font-size: 16px;
    color: #cc0000;
    padding-top: 10px;
}

.KategorieAendernFormWrap {
    position: relative;
}

.autocomplete-items {
    background-color: #ffffff;
    border: 1px solid #d0d9df;
    border-radius: 5px;
    position: absolute;
    z-index: 100;
    width: 100%;
}

.autocomplete-items > div {
    padding-left: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: PortalPlatz;
    color: #808080;
    cursor: pointer;
}

.autocomplete-items > div:hover {
    background-color: #f4f8f9;
}

.autocomplete-active {
    background-color: #f4f8f9;
}

.FooterWrapper {
    display: flex;
}

.FooterInfoWrap {
    width: 30%;
    min-width: 337px;
}

.FooterLogoWrap {
    display: flex;
}

.FooterLogo {
    width: auto;
    height: 100px;
    margin-right: 15px;
}

.FooterBrand {
    margin-top: 0;
    margin-bottom: 0;
}

.FooterLogoTxt {
    line-height: 20px;
}

@media only screen and (max-width:500px) {
    .FooterInfoWrap {
        width: auto;
        min-width: auto;
    }
}

.TxtGrau {
    color: #808080;
}

.FooterBG {
    background-color: #e5eef2;
}

.MenuTitel {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.HeaderLogoTextWrap {
    width: 170px;
}

@media only screen and (max-width:500px) {
    .HeaderWrap {
        flex-wrap: wrap;
    }
}

.BGVerlauf {
    background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, #eff3f7 100%);
}

.TitleWrap {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.TitleImg {
    height: 50px;
    width: 50px;
    border-radius: 35px;
    padding: 10px;
    margin-right: 15px;
}

.Badge {
    box-shadow: 0px 5px 15px rgba(0, 51, 77, 0.1) , inset -2px -5px 8px rgba(17, 56, 67, 0.1) , inset 3px 5px 5px #ffffff;
    background-image: radial-gradient(circle at center, rgb(255, 255, 255) 0%, rgb(237, 244, 246) 80%, #b6ccd2 100%);
}

.NewsWrap {
    text-align: left;
    width: 300px;
}

.LadeninfosWrap {
    display: flex;
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 50px;
    overflow: scroll;
    scrollbar-width: none;
}

.FieldWrap {
    border-radius: 20px;
    box-shadow: 0px 14px 30px rgba(0, 51, 77, 0.20) , inset 0px -3px 8px rgba(0, 51, 77, 0.15) , inset 0px 7px 8px #ffffff , inset 0px 4px 5px rgb(244, 248, 249);
    background-image: linear-gradient(180deg, #f4f8f9 0%, rgb(255, 255, 255) 100%);
    padding: 20px;
}

.ScrollWrapper {
    padding-left: 0;
    padding-right: 0;
}

.MarginBottom0 {
    margin-bottom: 0 !important;
}

.MarginTop0 {
    margin-top: 0;
}

.PaddingBottom0 {
    padding-bottom: 0;
}

@media only screen and (min-width:500px) and (max-width:999px) {
    .LadeninfosWrap {
        padding-left: 25px;
    }
}

@media only screen and (max-width:500px) {
    .LadeninfosWrap {
        padding-left: 20px;
    }
}

.FieldBadge {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 35px;
    position: absolute;
    top: 0;
    left: 0;
}

.FieldWrapper {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

@media only screen and (max-width:500px) {
    .FieldWrapper {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding-right: 20px;
        box-sizing: border-box;
    }
}

.HFeld {
    margin-top: 0;
    margin-left: 45px;
    white-space: nowrap;
}

.NewsWrapper {
    padding-bottom: 50px;
}

@media only screen and (min-width:1000px) {
    .LadeninfosWrap {
        overflow: auto;
        flex-wrap: wrap;
        justify-content: space-evenly;
        padding-left: 0;
        gap: 50px;
    }
}

.ScrollIcon {
    width: 50px;
    height: 50px;
    margin-left: 25px;
    position: absolute;
    margin-top: -40px;
}

.FieldLabel {
    margin-bottom: 0;
    color: #c0c0c0;
}

.EditIcon {
    width: 30px;
    height: 30px;
    margin-left: auto;
    display: block;
    cursor: pointer;
}

@media only screen and (min-width:750px) {
    .ScrollIcon {
        display: none;
    }
}

.PageEnd {
    height: 109px;
    background-color: #F0F4F7;
}

@media (max-width:500px) {
    .LoginH1Wrap {
        padding-bottom: 0;
    }
}

.ScrollAnzeigeWrap {
    display: flex;
    justify-content: space-between;
}

@media (min-width:501px) {
    .ScrollAnzeigeWrap {
        display: none;
    }
}

.ScrollAnzeigePfeil {
    width: 40px;
    height: 41px;
}

.ScrollAnzeigePunkt {
    background-color: #CFDFE2;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.ScrollAnzeigePunkteWrap {
    display: flex;
    align-items: center;
}

.ScrollAnzeigePunktAktiv {
    background-color: #6C8693;
}

.LadeninfosWrap::-webkit-scrollbar {
    display: none;
}

.FieldsWrapper {
    display: flex;
    padding: 10px 50px 50px;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 7%;
    row-gap: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width:501px) and (max-width:999px) {
    .FieldsWrapper {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (max-width:500px) {
    .FieldsWrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width:500px) {
    .FieldWrapperScroll {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        margin-right: 50px;
    }
}

@media (max-width:999px) {
    .FieldWrapperScroll {
        margin-right: 50px;
    }
}

.OverviewMenu {
    display: flex;
    overflow: scroll;
    scrollbar-width: none;
}

.OverviewMenu a {
    color: #ffffff;
    background-color: #CFDFE2;
    padding: 5px 15px;
    margin-right: 25px;
    border-radius: 20px;
    white-space: nowrap;
}

.EinstellungenMenu {
    margin-top: 25px;
    margin-bottom: 50px;
}

.EinstellungenMenu a:first-child {
    margin-left: 135px;
}

@media only screen and (max-width:999px) {
    .EinstellungenMenu a:first-child {
        margin-left: 20px;
    }
}

.EinstellungenMenu::-webkit-scrollbar {
    display: none;
}

.OverviewMenu a:hover {
    background-color: #6D8692;
}

.OverviewMenu a:active {
    background-color: #6D8692;
}

.OverviewMenu a:focus {
    background-color: #6D8692;
}

.MarginTopBottom0 {
    margin-top: 0;
    margin-bottom: 0;
}

.ZeitenFormWrap {
    display: flex;
    position: relative;
    margin-bottom: 15px;
}

.ZeitenForm {
    font-family: PortalPlatz;
    font-size: 16px;
    line-height: 28px;
    color: #808080;
    padding: 5px 10px;
    border: 1px solid #d0d9df;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background-color: #ffffff;
}

.ZeitenFormTxt {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5px;
}

.ZeitenFormWrapper {
    position: relative;
    width: calc(50% - 30px);
    margin-right: 5px;
}

.FlexCenterVertical {
    display: flex;
    align-items: center;
}

.Flex {
    display: flex;
}

.Width50prc {
    width: 50%;
}

.CheckboxWrapForm {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#OeffnungszeitenForm {
    display: none;
}

#mo2feld {
    display: none;
}

.LinkAddOeffnungszeiten {
    display: block;
    margin-bottom: 10px;
    color: #808080;
}

.TxtBlau {
    color: #00aaff;
}

#di2feld {
    display: none;
}

#mi2feld {
    display: none;
}

#do2feld {
    display: none;
}

#fr2feld {
    display: none;
}

#sa2feld {
    display: none;
}

#so2feld {
    display: none;
}

.ButtonForm {
    margin-top: 25px;
}

.InfoMeldung {
    position: fixed;
    padding: 25px;
    left: 50%;
    max-width: 300px;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    background-color: rgba(242, 252, 252, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 0px 3px 0px #ffffff , 0px 5px 15px rgba(0, 51, 77, 0.15) , inset 0px -3px rgba(186, 211, 211, 0.5);
    border-radius: 20px;
    z-index: 100000;
    display: none;
    width: calc(100vw - 60px);
}

.InfoButton {
    color: #ffffff;
    background-color: #e3ecee;
    border-radius: 25px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    font-size: 14px;
}

.FieldHWrap {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.FieldHWrap .InfoButton {
    margin-top: 2px;
}

.InfoMeldungField {
    padding: 10px;
    background-color: rgba(242, 252, 252, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: absolute;
    border-radius: 20px;
    right: 0;
    box-shadow: inset 0px 3px 0px #ffffff , 0px 5px 15px rgba(0, 51, 77, 0.15) , inset 0px -3px rgba(186, 211, 211, 0.5);
    display: none;
    bottom: 100%;
    z-index: 10000;
}

.AniInfoMeldung {
}

.InfoClose {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #c1ced1;
    cursor: pointer;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    text-align: center;
}

.FieldForm {
    width: 100%;
    box-sizing: border-box;
}

#TitelForm {
    display: none;
}

#AdresseForm {
    display: none;
}

#BeschreibungSForm {
    display: none;
}

#BeschreibungMForm {
    display: none;
}

#BeschreibungLForm {
    display: none;
}

#KategorieForm {
    display: none;
}

#AttributeForm {
    display: none;
}

#TelefonForm {
    display: none;
}

#WebsiteForm {
    display: none;
}

#SpezielleLinksForm {
    display: none;
}

#SozialeMedienForm {
    display: none;
}

#LoginEMailForm {
    display: none;
}

#PasswortForm {
    display: none;
}

#NameForm {
    display: none;
}

#EMailForm {
    display: none;
}

.FieldLabelInfoWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.Field2FelderWrapper {
    display: flex;
    column-gap: 10px;
}

.Width33prc {
    width: 33%;
}

.Width66prc {
    width: 66%;
}

.FieldLabelInfoWrap .InfoButton {
    margin-top: 10px;
}

.TextareaBeschreibung {
    min-height: 250px;
}

.PositionRelative {
    position: relative;
}

.LabelRadio {
    margin-right: 20px;
}

.FieldsSubWrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 7%;
    row-gap: 50px;
    width: 100%;
}

.FieldLongStr {
    word-break: break-all;
}

.TxtOrange {
    color: #ffab00;
}

.BestaetigungWrapper {
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}

.MarginBottom500px {
    margin-bottom: 500px;
}

.MaxWidth1000px {
    max-width: 1000px;
}

.PortalWrapper {
    position: relative;
    padding-top: 20px;
    padding-left: 20px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

.PortalWrap {
    border-radius: 20px;
    box-shadow: 0px 14px 30px rgba(0, 51, 77, 0.2) , inset 0px -3px 8px rgba(0, 51, 77, 0.15) , inset 0px 7px 8px #ffffff , inset 0px 4px 5px rgb(244, 248, 249);
    background-image: linear-gradient(180deg, #f4f8f9 0%, rgb(255, 255, 255) 100%);
    padding: 20px;
}

.PortalHeading {
    margin-top: 0;
    margin-left: 45px;
    white-space: nowrap;
}

.PortalLogoBadge {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    filter: drop-shadow(5px 5px 4px rgba(0, 51, 77, 0.2));
}

.PortalSwitch {
    height: 40px;
    width: 82px;
    background-image: url('../media/Switch-Off.png');
    background-size: contain;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-style: none;
    background-color: transparent;
    background-repeat: no-repeat;
    cursor: pointer;
}

.MaxWidth750px {
    max-width: 750px;
}

.FieldWrap50prc {
    width: 50%;
    max-width: 500px;
}

.FieldWrapper50prc {
    display: flex;
    gap: 50px;
    justify-content: space-evenly;
}

@media only screen and (max-width:749px) {
    .FieldWrapper50prc {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .FieldWrap50prc {
        width: auto;
    }
}

.SliderWrapper {
    position: relative;
    padding: 25px 0;
}

.SliderArrowLeft {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.SliderArrowRight {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.SliderPaginationWrap {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 25px;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: calc(100% - 70px);
    margin-left: auto;
    margin-right: auto;
}

.SliderPaginationItem {
    background-color: #CFDFE2;
    opacity: 1;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    margin-top: 0;
    margin-bottom: 0;
}

.SliderSlide {
    width: calc(100% - 100px);
    min-width: calc(100% - 100px);
    padding-left: 50px;
    padding-right: 50px;
}

.SliderSlidesWrap {
    display: flex;
    overflow: scroll;
    padding-bottom: 50px;
    padding-top: 25px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media only screen and (max-width:749px) {
    .SliderSlide {
        width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .SliderArrowRight {
        bottom: 20px;
        margin-top: 0;
        margin-bottom: 0;
        top: auto;
    }

    .SliderArrowLeft {
        top: auto;
        bottom: 20px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ImgFitRound {
    width: 100%;
    border-radius: 15px;
}

.LinkArrow {
    position: relative;
}

.LinkArrow:after {
    content: url('/media/icons/Pfeil-Rechts-Blau.svg');
    width: 12px;
    height: 12px;
    display: inline-block;
    position: absolute;
    right: -15px;
    transition: 0.3s;
    margin-top: 1px;
}

.LinkArrow:hover:after {
    right: -18px;
}

.MarginBottom50px {
    margin-bottom: 50px;
}

.FontSize20px {
    font-size: 20px !important;
    line-height: 32px;
}

.TxtBlack {
    color: #000000 !important;
}

.KontaktIcon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin-right: 10px;
}

.DisplayNone {
    display: none;
}

.SliderSlidesWrap::-webkit-scrollbar {
    display: none;
}

.InfoMeldungImg {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 20px;
}

.MarginBottom100px {
    margin-bottom: 100px;
}

tr {
    border-top-style: none;
}

td {
    padding-right: 10px;
    padding-left: 10px;
    border-top: 1px solid #d0d9df;
}

table {
    border-collapse: collapse;
}