/*--------------------------------------------------------------
Youtube CSS
--------------------------------------------------------------*/
.youtube {
    background-color: #0b2d39;
    margin-bottom: 0;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0.8rem;
}

.youtube img {
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}
.youtube .play-button {
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.youtube .play-button:hover {
    transform: translate3d( -50%, -60%, 0 );
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color:transparent transparent transparent  var(--c1);
}
.youtube img,
.youtube .play-button {
    cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
