.cover_overlay_container{
    position: relative;
    width: fit-content;
    transition: all 300ms ease-in-out;
}
    .cover_overlay_container .cover_overlay{
        position: absolute;
        top:0;
        bottom:0;
        left:0;
        right: 0;
        display: flex;
        justify-content: center;
    }
    .course_cover:hover:not(.betriebshandbuch_course) .cover_overlay_container {
        transform: scale(1.06);
    }
    .course_cover.betriebshandbuch_course:hover > a{
        transform: scale(1.06);
    }
    .dashboard_product .course_cover.add_course:hover>a{
        transform: scale(1.06);
    }

    .chapter_image .back_dark_transparent img,
    .course_cover .cover_overlay_container .back_dark_transparent img {
        max-width: 25px;
    }
    .cover_overlay_container .cover_overlay .information_icon{
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
    }
    
    .cover_overlay_container .cover_overlay .information_icon i{
        position: absolute;
        left: 10px;
        bottom: 10px;
        cursor: pointer;
        z-index: 9;
        color:#fff;
    }

    .cover_overlay_container .cover_overlay .information_icon i + span{
        opacity: 0;
        transition: opacity 300ms linear;
        cursor: default;
        position: absolute;
        width: 100%;
        color: #9C9C9C;
        background: #fff;
        border: 2px solid #9C9C9C;
        border-radius: 5px;
        padding: 15px;
        word-break: break-word;
        display: flex;
        justify-content: center;
        flex-direction: column;
        top: -13px;
        left:-50%;
        transform: translate(22px, -100%);
    }

    .cover_overlay_container .cover_overlay .information_icon i + span::after{
        content: "";
        background-color: #fff;
        border-left: 2px solid #9C9C9C;
        border-top: 2px solid #9C9C9C;
        width: 10px;
        height: 10px;
        position: absolute;
        bottom:-7px;
        transform: rotate(-135deg);
    }
    .cover_overlay_container .cover_overlay .information_icon i:hover + span{
        opacity: 1;
        transition: opacity 300ms linear;
    }

    .owl-carousel .owl-item .cover_overlay  img {
        width: auto;
    }