<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.media-embed  .video-container {
    position: relative;
    border-radius: 10px; 
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);

}


.media-embed .videoWrapper  {
    position: relative;
    padding-bottom: calc(var(--aspect-ratio, .5625) * 100%);
    height: 0;
    width: 100%;
    transition: all 0.3s linear;
}

.media-embed .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    border-radius: 10px; 
}

.media-embed  .play-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.media-embed  .play-btn button {
    background: #fff;
    color: var(--e-global-color-primary);
    border-radius: 50%;
    height: 88px;
    width: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    font-size: 40px;
    padding: 0 0 0 5px;
}

</pre></body></html>