.visually-hidden:not(:focus) {
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    width: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    color: transparent;
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
    margin: auto;
}

.spinner:not(.active) {
    display: none;
}

@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}
.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: var(--bs-primary);
    }
    25% {
        stroke: var(--bs-link-hover-color);
    }
    50% {
        stroke: var(--bs-gray-600);
    }
    75% {
        stroke: var(--bs-gray-200);
    }
    100% {
        stroke: var(--bs-primary);
    }
}

@keyframes colors {
    0% {
        stroke: var(--bs-primary);
    }
    25% {
        stroke: var(--bs-link-hover-color);
    }
    50% {
        stroke: var(--bs-gray-600);
    }
    75% {
        stroke: var(--bs-gray-200);
    }
    100% {
        stroke: var(--bs-primary);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

body .inner {
    background: var(--bs-white);
}

body .inner .full-width {
    margin: 24px 24px 0 24px;
}

.close {
    position: relative;
    display: block;
    height: 62px;
}

.close:after {
    position: relative;
    display: block;
    content: '';
    right: 24px;
    top: 12px;
    width: 42px;
    height: 42px;
    -webkit-mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/window-close-line.svg);
    mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/window-close-line.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right;
    background-repeat: no-repeat;
    background: var(--bs-white);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    margin: 0 0 0 auto;
    cursor: pointer;
}

#videoLightBox {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, .9);
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    color: #fff;
}

#videoLightBox.active {
    display: block;
}

#videoLightBox > .content {
    height: 100%;
    padding: 20px 20px 100px 20px;
    opacity: 0;
}

#videoLightBox > .content.active {
    opacity: 1;
}

.header.video {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem .5rem 1rem .5rem !important;
    margin: 0;
}

.header.video > .info:after {
    position: relative;
    display: inline-block;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 .25em .75rem;
    -webkit-mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/info.svg);
    mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/info.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right;
    background-repeat: no-repeat;
    background: var(--bs-gray);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
}

.header.video #infoVideo:checked ~ .info:after {
    background: var(--bs-primary);
}

.closeInfo {
    position: fixed;
    opacity: .5;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

.closeInfo.active {
    display: block;
    z-index: 1;
}

.closeInfo.active ~ * a {
    z-index: 2;
}

.header.video #infoVideo {
    display: none;
}

.header.video #infoVideo ~ .infoText {
    display: none;
    padding: 1rem;
    background: var(--bs-white);
    border: 1px solid var(--bs-gray);
    position: absolute;
    margin: 3rem auto 0;
    width: 100%;
    text-align: center;
    top: 50px;
    z-index: 999;
    max-width: fit-content;
    height: fit-content;
}

.header.video #infoVideo ~ .infoText p {
    margin: 0;
}

.header.video #infoVideo:checked ~ .infoText {
    display: block;
}

body {
    background: var(--bs-white)
}

body .teaser {
    gap: 0;
}

body article > div {
    flex: 2;
}

body .image figure {
    overflow: hidden;
    height: calc(100% - 24px);
}

body .image figure > a {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 42px;
    padding: 0;
    background: transparent;
    border: none;
    transition: background-color .35s ease-in-out;
}

body .image figure > a:hover {
    background-color: var(--bs-primary);
}

body .image figure > a img {
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

body .image figure > a:hover img {
    transition: opacity .35s ease-in-out;
}

body .image figure > a:hover img {
    opacity: 0.7;
}

body .image figure > a .placeholder {
    position: relative;
    display: block;
    height: 100%;
    cursor: pointer;
    background: rgba(var(--bs-black-rgb), .5);
    transition: background-color .35s ease-in-out;
}

body .image figure > a:hover .placeholder {
    background: rgba(var(--bs-black-rgb), .25);
}

body .image figure > a:before {
    position: absolute;
    display: block;
    content: '';
    width: 52px;
    height: 52px;
    -webkit-mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/mdi--play-circle.svg);
    mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/mdi--play-circle.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right;
    background-repeat: no-repeat;
    background: var(--bs-primary);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    margin: auto;
    z-index: 9;
    left: calc(50% - 26px);
    top: calc(50% - 26px);
    transition: all .15s ease-in-out;
}

body .image figure > a:after {
    position: absolute;
    display: block;
    content: '';
    width: 42px;
    height: 42px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right;
    background-repeat: no-repeat;
    background: var(--bs-white);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    margin: auto;
    z-index: 8;
    left: calc(50% - 21px);
    top: calc(50% - 21px);
    border-radius: 50%;
}

body .image figure > a:hover:before {
    width: 60px;
    height: 60px;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
}

.video-container .slot {
    position: relative;
    display: inline-block;
    border-left: 1px solid var(--bs-gray);
    margin: 0 1rem 0 1.5rem;
    padding: 0 0 0 1.5rem;
}

.video-container .slot span.date {
    position: absolute;
    left: -1.25rem;
    background: var(--bs-white)
}

.video-container .slot .teaser-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: none;
    overflow: hidden;
    height: 0;
}

body.video .text .btn:hover {
    color: var(--bs-white);
}

body.video .content {
    height: 100%;
}

body.video .content > iframe {
    border: 0;
    margin: auto;
    position: relative;
    display: block;
    top: calc(50% - 231px);
}

.video-container .slot .accordion {
    cursor: pointer;
    border: none;
    text-align: left;
    outline: none;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 1rem 0;
}

.video-container .slot .accordion:after {
    position: relative;
    display: inline-block;
    content: '';
    min-width: 1rem;
    height: 1rem;
    margin: 0 0 0 .25em;
    -webkit-mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/angle-down-solid.svg);
    mask-image: url(https://mediagroup-central.s3.eu-central-1.amazonaws.com/images/icons/angle-down-solid.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right;
    background-repeat: no-repeat;
    background: var(--bs-gray);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    top: 4px;
    transition: 0.4s;
    margin: auto 0;
}

.active:after {
    transform: rotate(180deg);
}

.video-container .slot .panel {
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.video-container .slot .accordion.active ~ .panel {
    -webkit-line-clamp: none;
}

.video-container .slot .accordion .item.button {
    visibility: hidden;
    margin: 0 auto 0 0;
}

.video-container .slot .accordion.active .item.button {
    visibility: visible;
}

.video-container .slot .text > div {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--bs-body-color);
}

.video-container .slot .author {
    color: var(--bs-body-color);
    font-weight: 700;
}

.video-container .slot .author span {
    font-weight: 400;
}

.grid-container > .body .slot .headline,
.grid-container > .body .slot h4 {
    color: var(--bs-body-color);
}

.video-container .slot .text > div p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

video {
    width: 100vw;
    max-width: 100%;
    max-height: calc(100vh - 62px);
}

@media (min-width:576px) {

    .video-container .slot .panel  {
        -webkit-line-clamp: 3;
        max-height: max-content;
    }
    .header.video #infoVideo ~ .infoText {
        min-width: 500px;
    }

    .header.video {
        padding: 2rem 0 1rem 0 !important;
    }
}

@media (min-width: 768px) {
    .video-container .teaser {
        gap: 1.5rem
    }
    .grid-container > .body .slot:hover .headline {
        color: var(--bs-primary);
    }
}