.cover_overlay_container{
    position: relative;
}
    .cover_overlay_container .cover_overlay{
        position: absolute;
        top:0;
        bottom:0;
        left:0;
        right: 0;
        display: flex;
        justify-content: center;
    }
    /*seperate css for the list items on learningpath overview page 2024-12-23 PMAJ*/
    div#itemList .cover_overlay_container .cover_overlay {
        background-image: none;
    }
    /*different overlay for locked items on dashboard 2021-04-20 PMMD PMLW*/
    .dashboard_product .cover_overlay_container .cover_overlay{
        bottom:auto;
        left:auto;
        width: 50px;
        height: 50px;
        background: none;
        background-image: url(../../images/lock.svg);
        background-repeat: no-repeat;
        background-position: center;
    }
    .course_cover {
        margin-bottom: 25px;
    }
    .course_cover .cover_content {
        min-height: 50px;
    }
   
    .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: 1px 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: 1px solid #9C9C9C;
        border-top: 1px solid #9C9C9C;
        width: 10px;
        height: 10px;
        position: absolute;
        bottom:-6px;
        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;
    }


/*overlay in Course Cover*/
.course_cover .cover_overlay_container{
    margin-bottom: 10px;
    width: fit-content;
}

/*overlay Chapter Items*/
.chapter_item .cover_overlay_container{
    width: 100%;
}