.sd-block-video {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    height: 300px;
    justify-content: center;
    align-items: center;
}

.sd-block-video.overlay-enabled:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,#263692 0,#3fd3c3 100%);
    opacity: 0.6;
}

.sd-block-video .sd-block-video-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sd-block-video .sd-block-video-title h3 {
    color: #fff;
    text-shadow: 0 5px 9px black;
    padding: 0;
    margin: 0 0 20px 0;
}

.sd-block-video .sd-block-video-play svg {
    width: 45px;
    color: white;
    cursor: pointer;
}

.sd-block-video iframe {
    margin: 0;
    height: 100%;
    width: 100%;
}

.sd-block-video .sd-block-video-cookie-text {
    color: #000;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 25%);
}

.sd-block-video .sd-block-video-cookie-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
    font-weight: bold;
}

.sd-block-video .sd-block-video-cookie-text p {
    font-size: 16px;
}

.sd-block-video .sd-block-video-cookie-text a {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}