.videoembed-button {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0079bc;
    color: #fff;
    -webkit-transition: background 500ms ease-in-out;
    -moz-transition: background 500ms ease-in-out;
    -ms-transition: background 500ms ease-in-out;
    -o-transition: background 500ms ease-in-out;
    transition: background 500ms ease-in-out;
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;

}
.videoembed-button:hover {
    background-color: #052264;
}
.videoembed-thumb {
    cursor: pointer;
}

.video-container {
    /* width is set as 100% here. any width can be specified as per requirement */
    width: 100%;
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}

    .video-container .videoembed-thumb {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .video-container .videoembed-thumb::after {
            content: url('/desktopmodules/videoembed/images/iconmonstr-video-15-24.png');
            position: relative;
            z-index: 2;
        }

.lity {
    z-index: 99999 !important;
}