/* Accordion START */
.pyd_accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    margin-top:20px
}
.pyd_active, .pyd_accordion:hover {
    background-color: #ccc;
}
.pyd_accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.pyd_active:after {
    content: "\2212";
    font-size: 18px;
}
.pyd_panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.pyd_panel_inner{
    padding:18px;
}
.pyd_panel_inner a:before {
    font-family: "Dashicons";
    content: "\f103";
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    font-size: 16px;
}
/* Accordion END */

/* Übersicht Start */
.kurse-list .wdt-event-item{margin-bottom:50px;}
/* Übersicht Ende */

/* Video Start */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Video Ende */