@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
    /* Primary Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-lightgrey: #f7f7f7;

    /* theme */
    --color-brand: #2bb8bc;
    --color-footerBg: #2f3030;
    --color-footerText: hsl(0deg 0% 100% / 60%);
    --color-globalText: #434343;

    /* typography */
    --fontFamily-global: "Open Sans", sans-serif;
    --logo-text-size: 18px;
    --font-size-h1: 17px;
    --font-size-h2: 18px;
    --font-size-h3: 18px;
    --fa-style-family: "Font Awesome 6";
}

* {
    box-sizing: border-box;
}

html {
    font-family: var(--fontFamily-global)
}

body {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    font-family: var(--fontFamily-global);
    overflow-x: hidden;
    overflow-y: auto;
    /* overflow: auto; */
}

a,
a:active,
a:focus,
a:hover {
    -webkit-appearance: none;
    outline: none;
    text-decoration: none;
    font-weight: 400;
    color: var(--color-brand);
}

a:hover {
    transition: all .2s ease-in-out;
}

svg:not(:root) {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

ul,
ol {
    list-style: none;
}

#page {
    min-height: calc(100vh - 32px);
    overflow-x: hidden;
    /* overflow-y: auto; */
    position: relative;
}

/* Typography */
.logo-text,
.logo-text a {
    font-size: var(--logo-text-size);
    color: var(--color-brand);
    font-weight: 700;
    line-height: 1;
    margin-block: 10px;
}

h1 {
    font-size: var(--font-size-h1);
    color: var(--color-globalText);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-family: var(--fontFamily-global);
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-globalText);
}

h3 {
    color: var(--color-brand);
    font-size: var(--font-size-h3);
    margin: 0 0 10px;
    font-family: var(--fontFamily-global);
    font-weight: 700 !important;

}

em {
    font-style: italic;
}

h4 {
    font-size: 1rem;
    line-height: 24px;
    color: var(--color-globalText);
    font-weight: 400;
    margin-bottom: 10px;
}

/* Layouts */
.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Helpers */
.pull-right {
    float: right !important;
}

.px-15 {
    padding-inline: 15px;
}

.px-0 {
    padding-inline: 0;
}

.mx-auto {
    margin-inline: auto;
}

.bg-lightGrey {
    background-color: var(--color-lightgrey);
}

/*  */
.container {
    max-width: 100%;
    width: 100%;
}

.row {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    /* padding-inline: 15px; */
}

.col-12 {
    width: 100%;
    position: relative;
}

.col-sm-9 {
    width: 75%;
}

.col-sm-3 {
    width: 25%
}

.col-xs-6 {
    width: 100%;
}

/* Header */
header {
    min-height: 80px;
}

.lesson-menu-button {
    height: 35px;
    width: 35px;
    background-color: var(--color-brand);
    cursor: pointer;
    position: relative;
}

.lesson-menu-button .lines {
    height: 2px;
    left: 8px;
    top: 17px;
    width: 20px;
}

.lesson-menu-button .lines,
.lesson-menu-button .lines:after,
.lesson-menu-button .lines:before {
    background: #fff;
    display: inline-block;
    position: absolute;
    transition: all .3s ease 0s;
}

.lesson-menu-button .lines:after,
.lesson-menu-button .lines:before {
    content: "";
    height: 2px;
    left: 0;
    width: 100%;
}

.lesson-menu-button .lines:before {
    top: -6px;
}

.lesson-menu-button .lines:after {
    top: 6px;
}

/* header component */

.site .selpers-lesson-menu-background {
    background: rgba(0, 0, 0, .8);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 150
}

.site .lesson-menu-button {
    cursor: pointer;
    position: relative
}

.site .lesson-menu-button .lines,
.site .lesson-menu-button .lines:after,
.site .lesson-menu-button .lines:before {
    background: #fff;
    display: inline-block;
    position: absolute;
    transition: all .3s ease 0s
}

.site .lesson-menu-button .lines:after,
.site .lesson-menu-button .lines:before {
    content: "";
    height: 3px;
    left: 0;
    width: 100%
}

.site .lesson-menu-button .lines:before {
    top: -10px
}

.site .lesson-menu-button .lines:after {
    top: 10px
}

@media (min-width:0) and (max-width:767px) {
    .site .lesson-menu-button {
        height: 35px;
        width: 35px
    }

    .site .lesson-menu-button .lines {
        height: 2px;
        left: 8px;
        top: 17px;
        width: 20px
    }

    .site .lesson-menu-button .lines:after,
    .site .lesson-menu-button .lines:before {
        height: 2px;
        left: 0;
        width: 100%
    }

    .site .lesson-menu-button .lines:before {
        top: -6px
    }

    .site .lesson-menu-button .lines:after {
        top: 6px
    }
}

@media (min-width:768px) and (max-width:899px) {
    .site .lesson-menu-button {
        height: 42px;
        width: 42px
    }

    .site .lesson-menu-button .lines {
        height: 2px;
        left: 10px;
        top: 20px;
        width: 23px
    }

    .site .lesson-menu-button .lines:after,
    .site .lesson-menu-button .lines:before {
        height: 2px;
        left: 0;
        width: 100%
    }

    .site .lesson-menu-button .lines:before {
        top: -10px
    }

    .site .lesson-menu-button .lines:after {
        top: 10px
    }
}

@media (min-width:900px) {
    .site .lesson-menu-button {
        height: 42px;
        width: 42px
    }

    .site .lesson-menu-button .lines {
        height: 3px;
        left: 10px;
        top: 20px;
        width: 23px
    }

    .site .lesson-menu-button .lines:after,
    .site .lesson-menu-button .lines:before {
        height: 3px;
        left: 0;
        width: 100%
    }

    .site .lesson-menu-button .lines:before {
        top: -10px
    }

    .site .lesson-menu-button .lines:after {
        top: 10px
    }

    .visible-desktop {
        display: block;
    }
}

.site .lesson-menu-button-close {
    display: none;
    height: 40px;
    padding: 7px;
    width: 40px
}

.site .lesson-menu-button-close .lines {
    display: block;
    height: 100%;
    position: relative;
    width: 100%
}

.site .lesson-menu-button-close .lines:after,
.site .lesson-menu-button-close .lines:before {
    background: #434343;
    content: "";
    display: inline-block;
    height: 3px;
    left: 0;
    position: absolute;
    top: 10px;
    transform-origin: 50%;
    width: 30px
}

.site .lesson-menu-button-close .lines:before {
    transform: rotate(45deg)
}

.site .lesson-menu-button-close .lines:after {
    transform: rotate(-45deg)
}

.site .selpers-lesson-menu {
    background: #f7f7f7;
    border: 2px solid #e0e0e0;
    border-top: none;
    padding: 20px;
    position: absolute;
    top: 0;
    transition: right .5s;
    z-index: 150
}

.site .selpers-lesson-menu.open {
    right: 0
}

.site .selpers-lesson-menu .selpers-lesson-menu-headline {
    color: #434343;
    font-weight: 700;
    margin: 0 0 30px
}

.site .selpers-lesson-menu .selpers-lesson-menu-list {
    counter-reset: li;
    margin-bottom: 50px
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item {
    border-left: 2px solid #d6d6d6;
    counter-increment: li;
    position: relative
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item a {
    color: #434343;
    text-decoration: none
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item a:hover {
    text-decoration: underline
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item:before {
    background-color: #b7b7b7;
    border-radius: 50%;
    color: #fff;
    content: counter(li);
    display: block;
    font-weight: 700;
    height: 35px;
    left: -18px;
    line-height: 35px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 35px
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item.active a {
    font-weight: 700
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item:last-child {
    border-left: 2px solid transparent
}

.site .selpers-lesson-menu .selpers-overview-menu-list {
    border-top: 2px solid #d6d6d6;
    padding-top: 30px;
    margin: 0;
}

.site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item {
    padding: 0 0 10px 30px;
    position: relative
}

.site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item a {
    color: #434343;
    text-decoration: none;
    text-transform: uppercase
}

.site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item a:hover {
    text-decoration: underline
}

.site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item:before {
    background-color: #b7b7b7;
    border-radius: 50%;
    color: #fff;
    content: "";
    display: block;
    font-weight: 700;
    position: absolute;
    text-align: center
}

@media (min-width:0) and (max-width:767px) {
    .site .selpers-lesson-menu {
        padding: 15px;
        right: -75%;
        width: 75%
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-headline {
        font-size: 22px;
        line-height: 30px;
        margin-top: 30px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list {
        padding-left: 11px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item {
        padding: 0 0 20px 20px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item a {
        font-size: 14px;
        line-height: 1em
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list {
        padding-left: 11px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item {
        padding: 0 0 10px 20px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item a {
        font-size: 14px;
        line-height: 1em
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }
}

@media (min-width:768px) and (max-width:899px) {
    .site .selpers-lesson-menu {
        padding: 15px;
        right: -75%;
        width: 75%
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-headline {
        font-size: 24px;
        line-height: 27px;
        margin-top: 30px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list {
        padding-left: 11px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item {
        padding: 0 0 20px 20px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item a {
        font-size: 18px;
        line-height: 18px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list {
        padding-left: 11px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item {
        padding: 0 0 20px 20px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item a {
        font-size: 18px;
        line-height: 18px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }
}

@media (min-width:900px) {
    .site .selpers-lesson-menu {
        padding: 20px 15px;
        right: -300px;
        width: 300px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-headline {
        font-size: 22px;
        line-height: 30px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list {
        padding-left: 10px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item {
        padding: 0 0 20px 18px
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item a {
        font-size: 14px;
        line-height: 1em
    }

    .site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list {
        padding-left: 10px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item {
        padding: 0 0 10px 18px
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item a {
        font-size: 14px;
        line-height: 1em
    }

    .site .selpers-lesson-menu .selpers-overview-menu-list .selpers-lesson-menu-item:before {
        font-size: 14px;
        height: 20px;
        left: -11px;
        line-height: 20px;
        top: 0;
        width: 20px
    }
}

.site.selpers-lesson-menu-open .selpers-lesson-menu {
    right: 0
}

.site.selpers-lesson-menu-open .lesson-menu-button .lines {
    background: transparent
}

.site.selpers-lesson-menu-open .lesson-menu-button .lines:before {
    top: 0;
    transform: rotate(-45deg)
}

.site.selpers-lesson-menu-open .lesson-menu-button .lines:after {
    top: 0;
    transform: rotate(45deg)
}

.site .selpers-lesson-menu .selpers-lesson-menu-list .selpers-lesson-menu-item.active:before {
    background: #2bb8bc !important;
}

@media (max-width:767px) {

    .site.selpers-lesson-menu-open .lesson-menu-button-close,
    .site.selpers-lesson-menu-open .selpers-lesson-menu-background {
        display: block
    }

    .selpers-lesson-title {
        padding: 0 25px;
        line-height: 17px !important;
    }

    .selpers-lessons-pagination .selpers-lesson-prevnext-button.next,
    .selpers-lessons-pagination .selpers-lesson-prevnext-button.prev {
        top: 0 !important;
    }

    .selpers-lessons-pagination .selpers-lessons-bullets {
        margin-top: -8px !important;
    }

    .selpers-lessons-pagination .selpers-lessons-bullets li {
        width: 8px !important;
        font-size: 14px !important;
        height: 8px !important;
        margin-left: 4.5px !important;
    }

    .selpers-lessons-pagination .selpers-lessons-bullets li:before {
        height: 1px !important;
        margin-left: -9px !important;
        margin-top: 3.5px !important;
        width: 10px !important;

    }

    .selpers-lesson-main-tabs .tab-button {
        border-right: 1px solid hsla(0, 1%, 65%, .5) !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 16px !important;
        padding: 10px !important;
    }

    .selpers-lessons-pagination>.row {
        padding-bottom: 5.5px !important;

    }

    .px-15 .video-section {
        margin-inline: -15px !important;
    }

    .selpers-lessons-container .tab-panel h2 {
        margin-top: 0 !important;
    }

    .selpers-lessons-container p {
        margin-trim: 10px !important;
    }

    .pb-sm-20 {
        padding-bottom: 20px !important;
    }

    .video-section .mlr-number {
        right: 15px !important;
    }
}

/* Video */

iframe {
    display: block;
    max-width: 100%;
}

.mlr-number {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    color: var(--color-globalText);
}

.mlr-number p {
    margin: 0;
    line-height: 24px;
}

/* Tabs home */
/* Basic styling */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .09);
    justify-content: center;
    position: relative;
    z-index: 10;
}

.tab-button {
    background: #fff;
    color: #434343;
    display: table;
    font-size: 13px;
    height: 60px;
    line-height: 16px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: none;
    width: 100%;
    border: 0;
    border-bottom: 5px solid transparent;
    border-right: 1px solid hsla(0, 1%, 65%, .5);
    margin: 1px 0 0 1px;
    outline: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: "Open Sans", sans-serif;
}

.tab-button:last-child {
    border-right: 0;
}

.tab-button:focus {
    outline: 0px solid transparent;
    outline-offset: 0px;
}

.tab-button:hover,
.tab-button[aria-selected="true"] {
    border-bottom-color: #2bb8bc !important;
    font-weight: 700;
    outline: 0;
}

/* Panel styles */

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding-block: 14px;
}

.tab-panel h2 {
    margin-block: 10px 5px;
    line-height: 25px;
    /* font-size: 20px; */
}

.tab-panel p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-globalText);
}

.tab-panel p+p {
    margin-top: 10px;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

.tab-panel a .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    display: block;
    padding: 20px 0;
    margin-bottom: 0;
    text-align: left;
    color: var(--color-brand);
}

#tab-panel-2 .kursreihe-management-row p {
    margin-bottom: 0;
}

.kursreihe-theme-row {
    gap: 30px;
    flex-wrap: wrap;
}

.kursreihe-theme-row .item a p {
    margin-bottom: 0;
}

.kursreihe-theme-row .item {
    flex: 0 0 100%;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-white);
    /* padding-inline:15px; */
}

.kursreihe-theme-row .item a {
    gap: 10px;
    align-items: center;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 0;
}

.kursreihe-theme-row .item a p {
    padding: 10px 0;
    font-size: 14px;
}

.medizinische-heading h2 {
    line-height: 24px;
    margin-block: 30px 10px;
}

.medizinische-heading p {
    font-size: 14px;
    line-height: 19px;
    color: #434343;
    margin-block: 0 30px;
}

.kursreihe-management-row .column {
    display: flex;
    flex-flow: row wrap;
    line-height: 19px;
    flex: 0 0 100%;
    padding-inline: 15px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.kursreihe-management-row .column>.card {
    align-items: center;
    background: #f7f7f7;
    display: flex;
    flex-flow: row wrap;
    line-height: 19px;
    flex: 0 0 100%;
    padding-inline: 15px;
    /* margin-bottom: 10px; */
    align-items: center;
    padding: 0 40px 0 25px;
}

.kursreihe-management-row .column .image {
    height: 105px;
    margin: 0;
    overflow: hidden;
    width: 105px;
}

.kursreihe-management-row .column .title {
    flex: 1;
    font-size: 14px;
    line-height: 19px;
    margin: 0;
    padding-left: 10px;
    padding-right: 15px;
    position: relative;
}

.kursreihe-management-row .column .title p {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.kursreihe-management-row .column .title i.icon {
    vertical-align: middle;
    margin: -3px 0 0 -3px;

}

.kursreihe-management-row .column .description {
    display: none;
    line-height: 21px;
    margin: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    opacity: 0;
    max-height: 0;
    font-size: 14px;
    font-weight: 400;
}

.kursreihe-management-row .column .description.open {
    padding: 10px 0 20px;
    opacity: 1;
    display: block;
    transition: max-height 0.5s ease, padding 0.3s ease;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

.kursreihe-management-row .column .description.open p {
    line-height: 22px;
}

.kursreihe-management-row .column .medical-services-button {
    background: var(--color-brand);
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    transition: all .3s ease 0s;
    width: 100%;
    max-width: 36px;
    position: absolute;
    right: -25px;
}

.medical-services-button.reverse {
    transform: rotate(180deg);
}

.info-entry {
    align-items: center;
    /* border-bottom: 1px solid hsla(0, 1%, 65%, .5); */
    display: flex;
    flex-flow: row nowrap;
    /* margin-bottom: 16px;
    padding-bottom: 6px; */
}


.link-download,
.link-download:hover {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.link-download,
.link-download:hover {
    border-bottom: 1px solid hsla(0, 1%, 65%, .5);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

a.link-download span {
    text-decoration: underline;
    font-weight: 700;
}

a.link-download i {
    align-self: flex-end;
    text-decoration: none;
    font-size: 30px;
}

.info-entry:last-child .link-download {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* bottom logo */
.bottomLogo {
    margin-block-end: 35px;
}

.bottomLogo h4 {
    font-style: italic;
    font-weight: 400;
    margin-block: 31px 10px;
}

/* scroll to top */
#scrolltop {
    cursor: pointer;
    display: none;
    background: #232b2d;
    border-radius: 2px;
    bottom: 22px;
    color: var(--color-white);
    font-size: 20px;
    opacity: .6;
    padding: 6px 12px;
    position: absolute;
    right: 20px;
    text-align: center;
    z-index: 99;
}

#scrolltop:hover {
    opacity: 1;
}

#scrolltop a {
    color: var(--color-white);
    display: block;
    line-height: 22px;
}

#scrolltop.fix {
    position: fixed;
}

#scrolltop span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* footer */

footer {
    background: var(--color-footerBg);
    border-top: 1px solid #424141;
    padding-block: 30px;
    font-size: 11px;
    font-weight: 400;

}

footer,
footer p,
footer a {
    color: hsla(0, 0%, 100%, .6);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 22px;
}

footer li a {
    font-weight: 600;
}

.footermenu {
    margin-top: 3px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
}

.footermenu li {
    display: block;
    margin-right: 18px;
    cursor: pointer;
}

@media (max-width: 899px) {
    .px-sm-0 {
        padding-inline: 0 !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .kursreihe-theme-row {
        gap: 10px;
    }

    .kursreihe-theme-row .item a img {
        width: auto;
        height: 105px;
    }

    main .row {
        max-width: 100%;
        width: 100%;
    }

    .medical-services-button {
        display: block;
        position: absolute;
        right: 0;
        top: 17px;
    }

    .tab-panel {
        padding-block: 0;
    }

    .tab-panel.bg-lightGrey {
        background-color: #fff;
    }

    .kursreihe-infos-entry-row .info-entry {
        background-color: var(--color-lightgrey);
        padding-block: 15px;
        margin-bottom: 10px;
    }

    .link-download,
    .link-download:hover {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    a.link-download i {
        align-self: center;
    }

    .selpers-lesson-main-tabs .tab-button {
        max-width: 30%;
    }

    .kursreihe-theme-row .item {
        background-color: #f7f7f7;
        padding-inline: 15px;
    }

    .medizinische-heading p {
        margin-block: 0 16px;
    }

    .bottomLogo {
        padding: 0 15px 20px;
    }

    .medizinische-heading h2 {
        margin-block: 10px;
    }

    .kursreihe-management-row .column>.card {
        padding-left: 15px;
    }

    .medizinische-heading>.row {
        padding: 0 15px;
    }
}

@media(max-width:600px) {
    #footerbottom .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #footerbottom .col-xs-6 {
        width: 100%;
        justify-content: center;
        display: flex;
        text-align: center;
    }

    #footerbottom .col-xs-6 p {
        text-align: center;
        margin-bottom: 0
    }

    #footerbottom {
        display: flex;
        justify-content: center;
    }
    .visible-mobile{
        display: block;
    }
}

@media (min-width: 600px) {
    :root {
        --logo-text-size: 25px;
    }

    .col-xs-6 {
        width: 50%;
    }

    .text-sm-left {
        text-align: left;
    }

    .flex-sm-row {
        flex-direction: row;
    }

    .justify-sm-start {
        justify-content: flex-start;
    }

    .justify-sm-end {
        justify-content: flex-end;
    }

    .footermenu {
        margin-top: 0px;
        /* margin-left: 15px; */


    }

    .footermenu li {
        /* margin-right: 0px;
        margin-left: 15px; */
        margin-right: 15px;
    }

    /* .footermenu li:first-child,
    .footermenu li:last-child {
        margin-left: 0;
    } */

    #footerbottom .row {
        gap: 30px;
    }

    #footerbottom .col-xs-6 p {
        margin: 0;
    }
    .visible-mobile{
        display: none;
    }
}

@media (min-width: 768px) {
    :root {
        --logo-text-size: 28px;
    }

    .row,
    .selpers-lessons-container .row {
        width: 750px;
        margin-inline: auto;
    }

    /* header */
    .lesson-menu-button {
        height: 42px;
        width: 42px;
    }

    .lesson-menu-button .lines {
        height: 3px;
        left: 10px;
        top: 20px;
        width: 23px;
    }

    .lesson-menu-button .lines:before {
        top: -10px;
    }

    .lesson-menu-button .lines:after {
        top: 10px;
    }

    .lesson-menu-button .lines:after,
    .lesson-menu-button .lines:before {
        height: 3px;
    }
}

/* media queries for desktop*/
@media (min-width: 900px) {
    :root {
        --font-size-h1: 22px;
        --font-size-h2: 24px;
    }

    .row,
    .selpers-lessons-container .row {
        width: 930px !important;
    }

    .col-md-10 {
        width: 83.3333333333%;
    }

    .col-md-2 {
        width: 16.6666666667%;
    }

    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }

    .flex-md-row {
        flex-direction: row;
    }

    .flex-md-column {
        flex-direction: column;
    }

    .kursreihe-theme-row {
        padding-bottom: 40px;
        position: relative;
    }

    .kursreihe-theme-row::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        border-bottom: 1px solid rgba(0, 0, 0, .15);
        margin-inline: 15px;
        width: 900px;
    }

    .kursreihe-theme-row .item {
        flex: 0 0 31.1%;
        width: 31.1%;
        margin-bottom: 3px;
        padding: 0;
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 3px;
    }

    .kursreihe-theme-row .item a p {
        font-size: 16px;
    }

    .tab-panel a .title {
        font-size: 14px;
    }

    .tab-panel h2 {
        margin-block: 0 10px;
        line-height: 38px
    }

    .tab-panel p {
        /* margin-bottom: 25px; */
        margin-block: 0 25px;
    }

    .tab-panel p:last-child {
        margin-bottom: 50px;
    }

    #tab-panel-3 p {
        margin-bottom: 25px;
    }

    .tabs-container .tab-panel {
        display: block;
        padding-block: 30px;
        opacity: 1;
    }

    .tabs-container .tab-panel:first-child {
        padding-bottom: 0;
        /* padding-top: 15px; */
        padding-top: 5px;
    }

    .kursreihe-management-row {
        gap: 30px;
    }

    .kursreihe-management-row .column {
        padding: 0;
        flex: 0 0 48.4%;
    }

    .kursreihe-management-row .column .title {
        padding-right: 0px;
    }

    .kursreihe-management-row .column .description {
        padding: 10px 0 20px;
    }

    .kursreihe-management-row .column .image {
        max-width: 120px;
        width: 100%;
        height: auto;
    }

    a.link-download i {
        font-size: 35px;
    }

    .mlr-number {
        /* display: flex; */
        /* justify-content: flex-end; */
        width: fit-content;
        padding-inline: 0;
        position: relative;
        /* right: 15%; */
        float: right;
    }

    #footerbottom .row {
        gap: 45px;
    }
}

/* Selperz pagination */
.selpers-lessons-pagination {
    background: #f7f7f7;
    padding: 10px 0 0;
    /* position: sticky; */
    /* top: 0; */
    /* z-index: 11; */
    transition: all .5s ease-out;
}

.selpers-lessons-pagination.with-boxshadow {
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .09);
}

.selpers-lesson-title {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 17px !important;
    line-height: 23px;
    margin: 0 0 3px !important;
}

.selpers-lessons-pagination .selpers-lessons-bullets {
    text-align: center;
    /* margin: 0; */
    margin: -1.5px 0 0 0;
}

.selpers-lessons-pagination .selpers-lessons-bullets li {
    background: #a7a5a5;
    border-radius: 50%;
    display: inline-block;
    /* height: 9px; */
    height: 8.5px;
    margin-left: 3.5px;
    width: 9px;
}

.selpers-lessons-pagination .selpers-lessons-bullets li:before {
    background: #a7a5a5;
    content: "";
    display: block;
    height: 2px;
    margin-left: -9px;
    margin-top: 4px;
    width: 9px;
}

.selpers-lessons-pagination .selpers-lessons-bullets li:first-child::before {
    display: none;
}

.selpers-lessons-pagination .selpers-lessons-bullets li:first-child {
    margin-left: 0;
}

.selpers-lessons-pagination .selpers-lessons-bullets li.active {
    background: #2bb8bc !important;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button.next,
.selpers-lessons-pagination .selpers-lesson-prevnext-button.prev {
    position: absolute;
    /* top: 0; */
    top: 3.5px;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button {
    color: #ff6100 !important;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button {
    color: #434343;
    display: table;
    height: 100%;
    text-decoration: none;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button .icon {
    display: table-cell;
    padding-top: 2px;
    vertical-align: middle;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button {
    color: #434343;
    display: table;
    height: 100%;
    text-decoration: none;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button.next {
    right: 10px;
}

.selpers-lessons-pagination .selpers-lesson-prevnext-button.prev {
    left: 10px;
}


@media (min-width: 900px) {
    .selpers-lessons-pagination .selpers-lesson-title {
        font-size: 22px !important;
        line-height: 30px;
        margin: 0 !important;
    }

    .selpers-lessons-pagination .selpers-lesson-prevnext-button {
        font-size: 26px;
    }
}

/* selpers-lesson-main-tabs */
.selpers-lessons-pagination .selpers-lesson-prevnext-button:hover {
    color: #244d49 !important;
    transition: all .2s ease-in-out;
}

.selpers-lessons-pagination>.row {
    padding-bottom: 11.5px;
}

.selpers-lessons-container p {
    color: #545454 !important;
}

.selpers-lessons-container iframe {
    margin-bottom: 20px;
}

.selpers-lessons-container .tab-panel h2 {
    font-size: 20px;
    line-height: 25px;
}

.selpers-lessons-container .tab-panel h4 {
    font-style: italic;
}

.selpers-lessons-container .tab-panel ol {
    margin: 10px 0 !important;
    padding: 0;
}

.selpers-lessons-container .tab-panel ol>li {
    counter-increment: step-counter;
    margin-bottom: 10px;
    padding-left: 35px !important;
}

.selpers-lessons-container .tab-panel ol>li::before {
    color: #2bb8bc !important;
    content: counter(step-counter);
    font: 700 25px / 1 sans-serif;
    left: 5px;
    position: absolute;
    top: 1px;
}

.selpers-lessons-container .tab-panels a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
}

.selpers-lessons-container .tab-panels ul {
    margin: 20px 0;
    padding-left: 0;
}

.selpers-lessons-container .tab-panels ul li,
.selpers-lessons-container .tab-panel ol>li {
    background: none;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 17px;
    position: relative;
    font-family: var(--fontFamily-global);
    font-size: 14px;
    color: #545454;
    line-height: 22px;
}

.selpers-lessons-container .tab-panels ul li {
    margin-bottom: 12px;
}

.selpers-lessons-container .tab-panels ul>li:before {
    background: #2bb8bc !important;
    border-radius: 50%;
    content: "";
    display: block;
    height: 5px;
    left: 0;
    position: absolute;
    top: .5rem;
    width: 5px;
}

.selpers-lessons-container .tab-panels ul>li>ul {
    margin-block: 0;
}

.selpers-lessons-container .tab-panels ul>li>ul>li {
    background: none;
    list-style: none;
    padding: 0 0 0 25px;
    position: relative;
}

.selpers-lessons-container .tab-panels ul>li>ul>li:before {
    background: transparent !important;
    color: var(--color-brand);
    content: "->";
    display: block;
    font-family: kalam;
    font-size: 16px;
    font-weight: 800;
    left: 0;
    margin-top: 1px;
    position: absolute;
    top: 0;
    width: auto;
}

.selpers-lessons-container .tab-panel {
    padding-top: 0;
}

.selpers-lesson-main-tabs .tabs {
    width: 100%;
    background: #fff;
    min-height: 60px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .09);
    position: relative;
    transition: all .5s ease-out;
    z-index: 10;
    margin-bottom: 0;
}

.selpers-lesson-main-tabs .tab-button {
    border-right: 0;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    height: 60px;
    line-height: 16px;
    padding: 10px 10px 4px;
    font-family: var(--fontFamily-global);

}

.selpers-lesson-main-tabs .tab-button:hover {
    font-weight: normal;
    border-bottom-color: #2bb8bc80 !important;
}

.selpers-lesson-main-tabs .tab-button.active {
    border-bottom-color: #2bb8bc !important;
}

.selpers-lesson-main-tabs .tab-button.active:hover {
    font-weight: 700;
}

.selpers-lesson-main-tabs .tab-list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.selpers-lessons-container .wusstensie-container {
    background: #2bb8bc1a !important;
    border-radius: 13px;
    color: #434343;
    padding: 13px 23px 23px 25px;
    margin-bottom: 35px;
    margin-top: 35px;
}

.wusstensie-container:before {
    background-image: url(../images/WusstenSieSchon.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    float: right;
    height: 50px;
    margin-bottom: 5px;
    width: 50px;
}

.selpers-lessons-container .wusstensie-container h4 {
    font-size: 16px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    margin: 10px 0 12px;
    line-height: 30px;
    color: #2bb8bc !important;
}

.checked-and-released {
    border-top: 1px solid #ebebeb;
    color: #434343 !important;
    font-size: 14px;
    line-height: 21px;
    margin-block: 40px 25px;
    padding-top: 10px;
    width: 100%;
}

.footer-kurs {
    background: #f7f7f7;
    color: #c8c8c8;
    margin: 0;
    padding: 20px 0;
    border-top: 0px;
}

.footer-kurs em {
    color: #a6a6a6;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    text-transform: initial;
}

.sticky {
    position: sticky;
}

footer li a:hover,
footer a:hover,
footer a:focus {
    text-decoration: underline;
    color: hsla(0, 0%, 100%, .6);
    transition: none;
    font-weight: 600;
}

footer a:hover {
    font-weight: 400;
}

.mb-m-35 {
    margin-bottom: 35px !important;
}

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

.pb-0 {
    padding-bottom: 0;
}

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

.mb-25 {
    margin-bottom: 25px !important;
}

.lh-24 {
    line-height: 24px !important;
}

.footer-pages-header .logo-text {
    margin-top: -10px;
}

.footer-page {
    margin-top: 35px;
}

.footer-page .tab-panel p,
.impressum-page .tab-panel p {
    line-height: 22px;
}

.footer-page .tab-panel p a:hover,
.impressum-page .tab-panel p a:hover {
    text-decoration: underline;
}

.footer-page .tab-panel h2,
.impressum-page h2 {
    font-size: 20px;
    line-height: 25px;
    margin: 0 0 10px;
}

.mb-35 {
    margin-bottom: 35px !important;
}

@media (min-width: 900px) {
    .selpers-lesson-main-tabs .tab-button {
        width: 25%;
    }

    /* .mb-35 {
        margin-bottom: 35px !important;
    } */

    .wusstensie-container p:last-child {
        margin-bottom: 0;
        line-height: 22px;
        color: #434343 !important;
    }

    .wusstensie-container.break p {
        white-space: nowrap;
    }

    .white-space {
        white-space: nowrap;
    }

}

.video-wrapper .vp-center {
    align-items: flex-start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    /* padding-inline: 15px; */
}

.video-section {
    padding-bottom: 20px;
}

.video-section .mlr-number.bg-lightGrey {
    background-color: transparent;
}

.video-section .mlr-number {
    right: 0;
    float: right;
    position: relative;
    padding: 0;

}

.video-section .mlr-number p {
    margin-bottom: 0;
    line-height: 22px;
    font-family: Open Sans, Helvetica Neue, sans-serif;
}

/* 404 page styles */
.error-404 {
    padding-inline: 15px;
}

.error-404 header {
    min-height: auto;
}

.error-404 h1 {
    font-size: 28px;
    line-height: 1.35;
    margin: 0;
}

.error-404 p {
    margin-block: 0 25px;
    font-size: 14px;
    line-height: 22px;
    color: #545454;
    font-weight: 400;
}

.search-form input {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    font-family: Open Sans, Helvetica Neue, sans-serif;
}

input.search-field.form-control {
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 5px;
    color: #545454;
    line-height: normal;
}

input.search-submit {
    padding: 7px 24px;
    background-color: #78c8ce;
    border: none;
    border-radius: 2px;
    color: #fff;
    outline: none;
}

@media(max-width:400px) {
    .error-404 h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .error-404 p {
        margin-bottom: 20px;
    }
}

/* /*  */
/* .selpers-lesson-navigation {
    position:relative;
    z-index: 10;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.09);
    transition: all 0.5s ease-out;
}
.selpers-lesson-navigation.fixed {
     position: fixed;
      z-index: 100;
      left: 0;
      top: 0;
      width: 100%;
} */

/* Smooth fade out for header and bullets */
header,
.selpers-lessons-bullets {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* display: none; */
}

/* Pagination default transition setup */
.selpers-lessons-pagination {
    /* transition: top 0.3s ease; */
    transition: all .5s ease-out;
    /* box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .09); */
}

/* Fixed (off screen) */
.selpers-lessons-pagination.fixed {
    position: fixed;
    width: 100%;
    top: -100px;
    /* hide initially */
    /* top: 0; */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .09);
    /* transform: translateY(-100%); */
    /* transition: transform 0.3s ease; */
}

/* Slide into view */
.selpers-lessons-pagination.fixed.visible {
    top: 0;
    /* transform: translateY(0); */
}