/*------------------------------------------------------------------------------------------------------
------------------------------------------- Variablen Anfang --------------------------------------------
---------------------------------------------------------------------------------------------------- */

:root {
    --primary-color: #F95700;
    --secondary-color: #fff;
    --primary-transparent: rgba(169, 148, 117, 0.9);
    --secondary-transparent: rgba(238, 238, 238, 0.9);
    --text-color: #444;
    --text-invert: #fff;
    --farbverlauf: linear-gradient(to right, #F95700 30%, #F4F1EF 50%, #F95700 70%);
    --background: #F4F1EF;
}

/*------------------------------------------------------------------------------------------------------
------------------------------------------- Variablen Ende ----------------------------------------------
---------------------------------------------------------------------------------------------------- */

/* ALLGEMEIN Anfang ---------------------------------------------------------------------------------------------- */

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

*:first-child {
    margin-top: 0;
}

div.form-group {
    margin-bottom: 15px;
}

h1+p {
    margin-bottom: 2rem;
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-color);
}

p:has(+ h1) {
    color: var(--primary-color);
    text-align: center;
    display: block;
    font-size: 3.5rem;
    margin-bottom: 0rem;
    letter-spacing: 2px;
    line-height: 3.5rem;
    margin-top: 0rem;
    text-transform: uppercase;
    font-weight: 700;
}

.home h1 {
    margin-bottom: 0rem;
    text-align: center;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
}

h2:has(+ span) {
	margin-bottom: 0;
}

.color-background h2 + span {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    font-weight: 400;
}

.vorstellung h2 + span {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    font-weight: 400;
}

.cta.color-background h2 {
    text-align: left;
}

.cta.color-background h2 + p {
    text-align: left;
}

aside>div {
    margin-bottom: 3rem;
    border-left: 2px solid var(--primary-color);
    padding-left: 3rem;
}

aside p {
    margin-bottom: 1rem;
}

footer img {
    width: 100%;
    padding: 5rem;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

ul,
ol {
    padding-left: 20px;
}

li::marker {
    color: var(--primary-color);
}

.kk-star-ratings {
    margin-top: 3rem;
}

@media (max-width: 991px) {

    .page-id-85 iframe {
        margin-top: 3rem;
    }

}

@media (min-width: 767px) {

    .bildimtext {
        width: 40%;
    }
	
	.footer-copyright2 {
		padding-bottom: 1rem;
	}

}

@media (max-width: 767px) {

    .bildimtext {
        width: 60%;
    }

    footer.footerv1 a>img {
        max-width: 100px;
        margin-top: 5rem;
        padding: 0;
    }

}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
    background: var(--primary-color);
}

.dtp div.dtp-date, .dtp div.dtp-time {
    background: var(--primary-transparent);
}

.dtp table.dtp-picker-days tr > td > a.selected {
    background: var(--primary-color);
}

.dtp .p10 > a {
    color: var(--primary-color);
}
/* ALLGEMEIN Ende ---------------------------------------------------------------------------------------------- */

/* Trenner Anfang
----------------------------------------------------------------------------------------------------------------------------------------------*/
div.trenner {
    width: 60px;
    position: relative;
    margin: 1rem auto 10rem auto;
}

@media (max-width:991px) {

    div.trenner {
        margin: 3.5rem auto 4rem;
    }

}

div.trenner:before {
    content: '';
    width: 25vw;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 150%;
    top: 29px;
    border-radius: 1px;
}

div.trenner:after {
    content: '';
    width: 25vw;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 150%;
    top: 29px;
    border-radius: 1px;
}

.trenner img {
    width: 100%;
}

@media (max-width: 991px) {

    div.trenner:before {
        width: 80px;
    }

    div.trenner:after {
        width: 80px;
    }

}

/* Trenner Ende ----------------------------------------------------------------------------------*/

/* Bewegung ANFANG ---------------------------------------------------------------------------------------------*/

.come-in {
    animation: come-in 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.on-view-fade {
    opacity: 0;
}

@keyframes come-in {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

/* Bewegung ENDE ---------------------------------------------------------------------------------------------------*/

/* ALLGEMEIN ENDE ---------------------------------------------------------------------------------------------- */

/* SLIDERBOXEN Anfang ---------------------------------------------------------------------------------------------- */

.slider-boxen {
    position: fixed;
    right: 0;
    z-index: 5000;
    display: flex;
    width: 50px;
    flex-flow: column wrap;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center;
}

.slider-boxen .box {
    background: var(--background);
    padding: 1rem 2rem 1rem 2rem;
    margin-bottom: 1rem;
    width: 350px;
    transform: translatex(-10px);
    transition: all .2s ease-in;
    border-radius: 40px 0px 0 40px;
    border: 1px solid var(--text-color);
}

.slider-boxen .box:hover {
    transform: translatex(-165px);
    transition: all .2s ease-in;
}

svg path {
    fill: var(--primary-color);
}

.slider-boxen .telefonlink:before {
    display: none;
}

.slider-boxen .box a {
    color: var(--text-color);
}

@media (min-width: 768px) {
    .slider-boxen .box a {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        column-gap: 1rem;
    }
}

@media (max-width: 991px) {
    .slider-boxen .box svg {
        margin-right: 1rem;
    }
}

@media (max-width:767px) {
    .slider-boxen {
        bottom: 0;
        justify-content: center;
        display: block;
        left: 0;
        width: 100%;
        top: auto;
        transform: none;
    }

    .slider-boxen .box path {
        fill: var(--text-invert);
    }

    .slider-boxen svg {
        width: 20px;
        height: 20px;
    }

    .slider-boxen .box a {
        font-size: 1.5rem;
        color: var(--text-invert);
        display: flex;
    }

    .slider-boxen>div {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-content: stretch;
        background: var(--farbverlauf)
    }

    .slider-boxen .box {
        transform: none !important;
        margin-bottom: 0;
        border-top-width: 2px;
        width: calc(100% / 2);
        flex-basis: calc(100% / 2);
        max-width: calc(100% / 2);
        border-radius: 0;
        display: flex;
        justify-content: center;
        overflow: hidden;
        background: transparent;
        border-color: var(--text-invert);
    }
}

/* SLIDERBOXEN ENDE
------------------------------------------------------------------------------------------------------ */

/* Color Hintergrund ANFANG
--------------------------------------------------------------------------------------------*/

div.container:before,
div.container:after {
    display: none;
}

.color-background {
    background: var(--background);
}

.color-background h2 {
    color: var(--primary-color);
    margin-top: 0rem;
    text-align: center;
}

.color-background p:last-of-type:not(:first-of-type) {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}

.color-background li {
    color: var(--text-color);
    line-height: 2;
}

.color-background a {
    color: var(--primary-color);
}

.color-background a:hover {
    color: var(--text-color);
}

.color-background p {
    text-align: center;
    color: var(--text-color);
}

section.color-background>div.container>div.flex-start>div.sprechzeiten p {
    text-align: left;
    color: var(--text-color);
    font-weight: 600;
}

.sprechzeiten p>span {
    float: right;
    text-align: right;
    font-size: inherit;
}

section.color-background .sprechzeiten div.flex-start img {
    width: 50px;
    margin-bottom: 1.5rem;
}

section.color-background .sprechzeiten div.flex-start a img {
    width: 20px;
    margin: 0;
}

section.color-background .sprechzeiten div.flex-start svg {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

section.color-background .sprechzeiten div.flex-start>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.color-background .sprechzeiten div.flex-start>div p {
    text-align: center;
}

section.color-background div.sprechzeiten div.flex-start {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {

    section.color-background .sprechzeiten div.flex-start>div {
        flex-basis: calc(100% / 5 - 3rem * 4 / 5);
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    section.color-background .sprechzeiten div.flex-start>div {
        flex-basis: calc(100% / 3 - 2 * 3rem / 3);
    }

}

@media (min-width: 768px) {

    section.color-background>div.container>div.flex-start {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    section.color-background.cta>div.container>div.flex-start:last-of-type {
        align-items: flex-end;
    }

    section.color-background div.sprechzeiten div.flex-start {
        gap: 3rem;
    }

}

@media (max-width: 767px) {

    .flex-start>.sprechzeiten {
        width: 90%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .color-background.cta .aufzaehlung {
        margin-top: 2rem;
    }

    section.color-background div.sprechzeiten div.flex-start {
        gap: 3rem 1.5rem;
    }

    section.color-background .sprechzeiten div.flex-start>div {
        flex-basis: calc(100% / 2 - 1 * 1.5rem / 2);
    }

}

@media (max-width: 992px) {

    .color-background p {
        text-align: left;
    }

}

@media (min-width: 992px) {

    .color-background p {
        text-align: left;
    }

    .color-background.zwo p {
        text-align: center;
    }

}

/* Color Hintergrund ENDE
--------------------------------------------------------------------------------------------------*/

/* Buttons Anfang -----------------------------------------------------------------------------------------------*/

a.more-link,
input.more-link {
    display: flex;
    align-items: center;
    padding: 1rem 3rem;
    border-radius: 10rem;
    color: var(--text-color);
    font-weight: 300;
    border: 1px solid var(--primary-color);
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    width: fit-content;
    background: var(--secondary-color);
}

a.more-link:hover,
input.more-link:hover {
    color: var(--text-invert);
    border-color: var(--text-invert);
}

a.more-link.invert,
input.more-link.invert {
    border: 1px solid var(--primary-color);
}

a.more-link:before,
input.more-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all .3s;
    border-radius: 10rem;
    z-index: -1;
}

a.more-link:after,
input.more-link:after {
    background-image: url(/wp-content/uploads/2023/03/pfeil-icon-grau.png);
    display: inline-block;
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    content: '';
    margin: 0.5rem;
    transition: all 0.3s;
}

a.more-link:hover:after,
input.more-link:hover:after {
    margin-left: 2rem;
}

a.more-link.invert:after,
input.more-link.invert:after {
    background-image: url(/wp-content/uploads/2023/03/pfeil-icon.png);
}

a.more-link:hover:after,
input.more-link:hover:after {
    background-image: url(/wp-content/uploads/2023/03/pfeil-icon.png);
}

a.more-link.invert:before,
input.more-link.invert:before {
    background: var(--primary-color);
}

a.more-link:hover:before,
input.more-link:hover:before {
    width: 100%;
}

a.more-link.invert,
input.more-link.invert {
    color: var(--text-invert);
    background: var(--primary-color);
}

a.more-link.invert:hover,
input.more-link.invert:hover {
    color: #fff;
}

a.more-link img,
input.more-link img {
    width: 24px;
    vertical-align: bottom;
    margin-left: 1rem;
    transition: all 0.4s ease;
}

/* Buttons Ende -----------------------------------------------------------------------------------------------*/

/* Vorstellung Unterseiten ANFANG -------------------------------------------------------------------------------*/

div.container:before,
div.container:after {
    display: none;
}

section.vorstellung {
    background: var(--background);
    padding: 0;
    width: 100%;
}

.vorstellung>.row {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

.vorstellung img {
    display: none;
}

.vorstellung>.row>div:nth-of-type(1) {
    background-image: url(/wp-content/uploads/2025/01/neue-Aerztin_1.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}

.vorstellung>.row>div:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 15rem 6rem;
    gap: 2rem;
}

.vorstellung h2,
.vorstellung p,
.vorstellung a {
    margin: 0;
}

.vorstellung .btn {
    width: fit-content;
}

.vorstellung h2 {
    margin-top: 0;
    margin-bottom: -2rem;
    text-align: left;
}

.vorstellung li {
    color: var(--text-color);
    line-height: 2;
}

@media (max-width:991px) {

    .vorstellung>.row>div:nth-of-type(2) {
        padding: 4rem 10rem;
    }

    .vorstellung>.row {
        flex-direction: column;
    }

    .vorstellung img {
        display: block;
        width: 100%;
    }

}

@media (max-width:767px) {

    .vorstellung>.row>div:nth-of-type(2) {
        padding: 4rem 3rem;
    }

}

/* Vorstellung Unterseiten ENDE
--------------------------------------------------------------------------------------------------*/

/* SLIDERBOXEN Anfang ---------------------------------------------------------------------------------------------- */

.slider-boxen {
    position: fixed;
    right: 0;
    z-index: 5000;
    display: flex;
    width: 50px;
    flex-flow: column wrap;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center;
}

.slider-boxen .box {
    background: var(--secondary-color);
    padding: 1rem 2rem 1rem 2rem;
    margin-bottom: 1rem;
    width: 350px;
    transform: translatex(-10px);
    transition: all .2s ease-in;
    border-radius: 40px 0px 0 40px;
    border: 1px solid var(--text-color);
}

.slider-boxen .box:hover {
    transform: translatex(-165px);
    transition: all .2s ease-in;
}

.slider-boxen .telefonlink:before {
    display: none;
}

.slider-boxen .box a {
    color: var(--text-color);
}

.slider-boxen .box a svg {
    width: 30px;
    height: 30px;
}

@media (min-width: 768px) {
    .slider-boxen .box a {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        column-gap: 1rem;
    }
}

@media (max-width: 991px) {
    .slider-boxen .box a svg {
        margin-right: 1rem;
    }
}

@media (max-width:767px) {
    .slider-boxen {
        bottom: 0;
        justify-content: center;
        display: block;
        left: 0;
        width: 100%;
        top: auto;
        transform: none;
    }

    .slider-boxen .box a svg {
        display: none;
    }

    .slider-boxen .box a svg.svgwhite {
        display: inline-block;
        width: 2rem;
    }

    .slider-boxen .box a span {
        display: none;
    }

    .slider-boxen .box a {
        font-size: 1.5rem;
        color: var(--secondary-color);
        display: block;
    }

    .slider-boxen>div {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-content: stretch;
        background: var(--primary-color);
		height: 45px;
    }

    .slider-boxen .box {
        transform: none !important;
        margin-bottom: 0;
        border-top-width: 2px;
        flex-basis: calc(100% / 2);
        border-radius: 0;
        display: block;
        text-align: center;
        overflow: hidden;
        background: transparent;
        border-color: var(--secondary-color);
        padding: 1rem;
    }

}

@media (min-width: 768px) {

    .slider-boxen .box a svg.svgwhite {
        display: none;
    }

}

/* SLIDERBOXEN ENDE
------------------------------------------------------------------------------------------------------ */

/* HOME-TEASER-BOXEN ANFANG
------------------------------------------------------------------------------------------------------ */

section>div.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.home-teaser-box {
    max-width: 750px;
    padding: 1.5rem;
    background: var(--background);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: ease-in .3s;
}

.home-teaser-box:hover {
    box-shadow: 12px 12px 8px 0px #44444470;
}

.home-teaser-box * {
    color: var(--text-color)
}

.home-teaser-box .btn {
    margin-top: 0;
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 300;
    color: var(--text-color)
}

.home-teaser-box img {
    width: 100%;
    max-width: 707px;
}

.home-teaser-box h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.home-teaser-box h3:after {
    content: "";
    position: relative;
    background: var(--text-color);
    height: 2px;
    width: 100px;
    display: block;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.home-teaser-box p {
    text-align: center;
    font-size: 1.6rem;
}

@media (min-width: 1200px) {

    .home-teaser-box {
        flex-basis: calc((100% / 3) - 3rem * 2 / 3);
    }

}

@media (min-width: 768px) and (max-width: 1199px) {

    .home-teaser-box {
        flex-basis: calc((100% / 2) - 3rem * 1 / 2);
    }

}

@media (max-width: 767px) {

    .home-teaser-box {
        flex-basis: 100%;
    }

}

/* HOME-TEASER-BOXEN ENDE
------------------------------------------------------------------------------------------------------ */

/* Team-Boxen Version 1 Anfang ------------------------------------------------------------------------------------- */

.team-container>.row {
    display: flex;
}

.team-container>.row>div:nth-of-type(3) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home .content .team-container h2,
.home .content .team-container p {
    text-align: left;
    width: 100%;
}

.team-container img {
    width: 100%;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-container ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.team-container h3 {
    color: var(--text-color);
    text-align: left;
    margin-top: 0;
}

.team-container>.row>div:nth-of-type(1)>div:hover .hover-box {
    opacity: 1;
}

.hover-box-kasten>div {
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-container>.row>div:nth-of-type(1)>div:hover img {
    transform: scale(1.2);
    opacity: 0.2;
}

.hover-box {
    position: absolute;
    display: flex;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .team-container>.row {
        display: block;
    }

    .team-container img {
        width: 100%;
    }
}

/* Team-Boxen Version 1 ENDE ------------------------------------------------------------------------------------- */

/* Team-Boxen Version 2 Anfang ------------------------------------------------------------------------------------- */

.team-container h2,
.home .team-container2 p {
    text-align: left;
}

.content .team-container2>div>div>p {
    width: 100%;
}

.team-container2>div>div:nth-of-type(2)>p,
.team-container2>div>div:nth-of-type(2)>ul {
    padding-bottom: 0rem;
    margin-bottom: 0rem;
}

.team-container2>div.row {
    margin-bottom: 5rem;
}

.hover-box-kasten>div {
    position: relative;
}

.team-container2 .arzte {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.team-container2>div:nth-of-type(odd) h3,
.team-container2>div:nth-of-type(odd) p {
    text-align: left;
}

.team-container2>div:nth-of-type(even) h3,
.team-container2>div:nth-of-type(even) p {
    text-align: right;
}

.team-container2 div.mitarbeiter h3 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

.team-container2 div.mitarbeiter p {
    text-align: center;
}

.team-container2 .arzte h3 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.team-container2 .arzte span {
    margin-bottom: 2rem;
    display: block;
}

.team-container2>div:nth-of-type(3) {
    margin-bottom: 11rem;
}

.team-container2 img {
    width: 100%;
    display: block;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-container2>div:nth-of-type(even)>div>img {
    float: right;
}

.team-container2.mobile-team>div>div>img {
    margin-bottom: 1.5rem;
}

section.color-background>.team-container2 ul,
section.container .team-container2 ul {
    margin-top: 3rem;
}

.team-container2 h3 {
    text-transform: none;
    line-height: 1;
}

.mitarbeiter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.mitarbeiter:before,
.mitarbeiter:after {
    display: none;
}

.mitarbeiter img {
    width: 100%;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.content .mitarbeiter p {
    font-size: 2rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.5;
}

.mitarbeiter p span {
    font-size: 1.6rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 300;
}

.mitarbeiter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.mitarbeiter:before,
.mitarbeiter:after {
    display: none;
}

.mitarbeiter img {
    width: 100%;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

section.color-background>.team-container2 h3 {
    text-transform: none;
    margin-top: 0;
    color: var(--primary-color);
}

section.color-background>.team-container2 ul+p,
section.container .team-container2 ul+p {
    margin-top: 2rem;
}

.team-container2.mobile-team.container>div>div>p span,
section.color-background>.team-container2.mobile-team.container>div>div>p span {
    color: var(--text-color);
    font-weight: 700;
}

.team-container2.mobile-team.container>div>div>p,
section.color-background>.team-container2.mobile-team.container>div>div>p {
    padding-bottom: 0rem;
    margin-bottom: 0rem;
}

.hover-box-kasten:hover .hover-box {
    opacity: 1;
}

.hover-box-kasten>div {
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.hover-box-kasten>div:hover img {
    transform: scale(1.2);
    opacity: 0.2;
}

@media (min-width: 992px) {

    .mitarbeiter>div {
        flex-basis: calc(100% / 3 - 2 * 3rem / 2);
    }

}

@media (max-width: 991px) {

    .team-container2 h3,
    section.color-background>.team-container2 h3 {
        margin-top: 4rem;
    }

    .team-container2>div:nth-of-type(even)>div>img {
        float: left;
    }

    .team-container2>div:nth-of-type(even) h3,
    .team-container2>div:nth-of-type(even) p {
        text-align: left;
    }

    .team-container2 .arzte {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .team-container2 .arzte:nth-of-type(2) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {

    .team-container2.mobile-team>div>div:not(:first-of-type)>img {
        margin-top: 6rem;
    }

    .mitarbeiter>div {
        flex-basis: 100%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .team-container2.mobile-team>div>div:not(:not-of-type(-n+2))>img {
        margin-top: 6rem;
    }

    .mitarbeiter>div {
        flex-basis: calc(100% / 2 - 3rem / 2);
    }

}

/* Team-Boxen Version 2 ENDE ------------------------------------------------------------------------------------- */

/* Praxisgalerie Anfang -----------------------------------------------------------------------------------------*/

.praxisgalerie img {
    width: 100%;
    transition: all .2s ease-in;
}

.praxisgalerie img:hover {
    transform: scale(1.05);
}

.praxisgalerie a {
    overflow: hidden;
    position: relative;
}

.praxisgalerie a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: inset 0 0 0 0 var(--primary-transparent);
    transition: box-shadow .2s ease;
    pointer-events: none;
}

.praxisgalerie a:hover:after {
    box-shadow: inset 0 0 0 10px var(--primary-color);
}

.doppelblock {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 0.5rem;
    grid-gap: 0.5rem;
}

.doppelblock a:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.doppelblock a:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.doppelblock a:nth-of-type(2) img,
.doppelblock a:nth-of-type(3) img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.doppelblock a:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.doppelblock a:nth-of-type(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.dreier {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 0.5rem;
    grid-gap: 0.5rem;
}

.dreier a:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.dreier a:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.dreier a:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Praxisgalerie Ende ------------------------------------------------------------------------------------------*/

/* Pop Up ANFANG
-----------------------------------------------------------------------------------------------------------*/

.modal.in .modal-dialog {
    overflow-y: auto;
}

#myModal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: -1;
}

#myModal.modal.fade.in {
    z-index: 6000;
}

.modal-body {
    padding: 15px 30px;
}

.content h2.modal-title {
    color: var(--primary-color);
}

.content h2.modal-title:after {
    margin: 2rem auto 0 auto;
}

.modal-content p:empty {
    display: none;
}

.modal-header {
    border: none;
}

@media (min-width: 992px) {

    .modal-dialog {
        width: 100%;
        max-width: 900px;
    }

}

@media (max-width: 767px) {

    #myModal {
        display: block;
    }

}


/* Pop Up ENDE
------------------------------------------------------------------------------------------------------------------------*/

/* NewDatePicker ANFANG*/
body .dtp > .dtp-content > .dtp-date-view > header.dtp-header {
	background-color: var(--primary-color);
}

body .dtp div.dtp-date, body .dtp div.dtp-time{
	background-color: var(--primary-transparent);
}

body .dtp .p10 > a {
	color: var(--primary-color);
}

body .dtp table.dtp-picker-days tr > td > a.selected {
	background-color: var(--primary-color)
}

/* NewDatePicker ENDE*/

@media (max-width: 767px) {
    div a.doctolib {
        display: none !important;
    }
}

@media (min-width: 768px) {
	.docto-box{
		display: none;
	}
}

.adress-layout {
    display: flex;
    height: 100%;
    align-items: center;
}