<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gpea-video-row-wrapper-full {
    position: relative;
    width: 100%;
    padding-bottom: calc(100% * 0.5625);
    /* 16:9 */
    height: 0;
}
.gpea-video-row-wrapper-full .video-row-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.gpea-video-row-footer {
    z-index: 99;
   position: absolute;
    padding: 2rem;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
}
.video-row-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
    width: calc(100% - 70px);
}
.video-row-title{
    font-size: xx-large;
    color: #6c0;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.9);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.video-row-sub-title{
    color: white;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.9);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.video-row-btn {
    color: #6c0;
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0,0,0,0.1);
    background-color: white;
}
.pause {
    width: 1.5rem;
    height: 1.5rem;
    border-right: 0.5rem solid #6c0;
    border-left: 0.5rem solid #6c0;
}

.gpea-video-row-wrapper-full.is-playing .video-row-play,
.gpea-video-row-wrapper-full.is-playing .video-row-info,
.gpea-video-row-wrapper-full.is-playing .video-row-stop,
.gpea-video-row-wrapper-full.is-auto-play .video-row-stop,
.gpea-video-row-wrapper-full.is-stopped .video-row-stop
{
    display: none;
}

.gpea-video-row-wrapper-full:hover.is-playing .video-row-stop
{
    display: flex;
    opacity: 0.5;
}

@media (max-width: 576px) { 
    .video-row-title{
        font-size: 1rem;
    }
    .video-row-sub-title{
        font-size: 0.8rem;
    }
    .video-row-btn{
        width: 45px;
        height: 45px;
        font-size: 1.2rem;;
    }
    .gpea-video-row-footer{
        padding: 1rem;
    }
    .pause {
        height: 15px;
        border-right: 4px solid #6c0;
        border-left: 4px solid #6c0;
    }
}

.video-row-youtube { pointer-events: none; }

section.section-video-row-container{
    min-height: 0px;
    background: none;
}</pre></body></html>