.mediathek {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    padding-bottom: 25rem;
    padding-top: 8rem;
    border-bottom: 2px solid #f1f1f1;
    box-shadow: inset 13px -113px 60px -86px rgba(187, 187, 187, 0.2);
}

.mediathek h2 {
    color: #f1f1f1;
    font-weight: 900;
    font-size: 5rem;
    text-align: center;
}

.videoList {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 20%;
    gap: 1rem;
    min-height: 72vh;
}

.videoList iframe {
    border-radius: 20px;
    box-shadow: 1px 1px 30px 1px rgba(255, 255, 255, 0.212);
    width: 60vw;
    height: 33.9vw;
}

.videoList .dropdown-label {
    font-size: 3rem;
    padding-top: 2rem;
    padding-left: 3rem;
    position: relative;
}

.videoList .dropdown-label.with-arrow::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    transition: transform 0.5s;
}

.videoList .dropdown-checkbox:checked + .dropdown-label.with-arrow::before {
    transform: rotate(90deg);
}

.videoList .dropdown-label.with-arrow::after {
    content: none;
}

.videoList .dropdown-checkbox:checked + .dropdown-label.with-arrow::after {
    transform: none;
}