.youtube_block {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.split-container .sectionimage .youtube_block {
    margin-bottom: 0;
}

.youtube_block.youtube_is_loading {
    padding-bottom: 56.25%
}

.youtube_block--overlay:before {
    content: "";
    position: absolute;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.youtube_block--overlay.disabled:before {
    background: transparent;
    position: static;
    width: 0;
    height: 0;
}

.youtube_block iframe {
    max-width: 100%;
}

.youtube_block--playButton {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background-color: rgb(80, 80, 80);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    z-index: 11;
    cursor: pointer;
}

.youtube_block:hover .youtube_block--playButton {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube_block .youtube_block--playButton svg path {
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.youtube_block--thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    background-size: cover;
    padding-bottom: 56.25%;
}
.youtube_block--thumbnail.disabled {
    display: none;
}

.youtube_block--playButton.disabled {
    display: none;
}

.youtube_block--edit + .youtube_block .youtube_block--playButton {
    display: none;
}