.mk-video-banner-block {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0px;
    margin: 0 0 1.5rem;
    box-sizing: border-box;
}
.mk-video-banner-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: var(--bottom);
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
}
.mk-video-banner-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.mk-video-banner-embed {
    position: relative;
    padding-bottom:  var(--bottom);
    height: 0;
    overflow: hidden;
    border-radius: 0px;
}
.mk-video-banner-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
} 