
.video-form-title {
    margin-bottom: 32px;
}

.anmelden {
    width: 162px;
    height: 48px;
    cursor: pointer;
}

.video-list {
    margin: 20px 0 20px -10px;
    display: flex;
    flex-wrap: wrap;
}

.video-item {
    width: 49%;
    padding: 0 10px;
    position: relative;
    margin-bottom: 18px;
    min-height: 412px;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-item::after {
    content: "";
    display: block;
    left: 50%;
    top: 50%;
    background-image: url("/media/video-btn-small.svg");
    background-repeat: no-repeat;
    background-position: 63% 52%;
    transition: all .2s;
    margin-left: -57px;
    margin-top: -57px;
    width: 114px;
    z-index: 2;
    height: 114px;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #F4A095;
    cursor: pointer;

}

.video-item:hover::after {
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: .6s;
}

.after-none::after {
    content: none;
}

.video-item a:hover {
    opacity: 1;
}

.video-item iframe {
    outline: none;
}

@media (max-width: 1200px) {
    .video-item {
        min-height: 320px;
    }

    .video-item img {
        object-fit: cover;
    }
}

@media (max-width: 620px) {
    .video-item {
        width: 100%;
    }

}

/* PAGINATION */

.pagination .step-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-links a,
.step-links span {
    margin: 0 10px;
}

.pagination-btn {
    width: 40px;
    height: 35px;
}

.pagination-btn.prev-btn svg {
    transform: rotate(180deg);
    margin-left: 5px;
}

.pagination-btn.next-btn svg {
    margin-left: 0;
}

/* ENTERING FORM */

.tip_access,
.ef-input-block label {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.tip_access {
    margin: 32px 0 26px 0;
}

.ef-input-block label {
    margin-right: 16px;
}

.ef-input-block input[type=password] {
    border-radius: 10px;
    border: 2px solid #F4A095;
    background: rgba(244, 160, 149, 0.09);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 42px;
    min-width: 542px;
    text-indent: 20px;
}

.ef-input-block input[type=password]:focus,
.ef-input-block input[type=password]:focus-visible,
.ef-input-block input[type=password]:active
{
        border: 2px solid #F4A095;
    outline: none;

}

form .errorlist > li {
    font-weight: bold;
    font-style: italic;
    color: #f4a095;
}

form .errorlist > li .errorlist li {
    font-weight: normal;
    font-style: normal;
    color: #000;
}

form > .errorlist {
    margin-bottom: 16px;
}



@media (max-width: 640px) {
    .ef-input-block input[type=password] {
        max-width: 320px;
    }

    .ef-input-block {
        display: flex;
        flex-flow: column-reverse;
    }
}