<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* reel */

:root{
    --mvp-reel-icon-shadow: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
    --mvp-reel-text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}   

button.mvp-reel-btn-reset{
    color: inherit;
    background-color: transparent;
    padding: 0;
    margin: 0;
    float: none;
    line-height: 1em;
    list-style: none;
    text-transform: none;
    vertical-align: baseline;
    border: 0;
    font-variant: inherit;
    font-stretch: inherit;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    font-weight: normal;
    letter-spacing: normal;
    text-decoration: none;
    text-indent: 0;
    text-shadow: none;
}
.mvp-reel-btn-reset:hover{
    text-decoration: none;
}

.mvp-elem-hidden{
    display: none;
    pointer-events: none;
}

#mvp-playlist-list{
    display: none;
}
.mvp-html-section,
.mvp-html-section-inner{
    display: none;
}
  
.mvp-reel{
    position: relative;
}
.mvp-reel-wrap{
    position: relative;
    height: 100%;
}
@supports (container-type: inline-size) {
    .mvp-reel-wrap{
        container: mvp_reel_player_query / inline-size;
    }
}

.mvp-reel-playlist-content{
    position: relative;
}

.mvp-reel-inner-media-wrap{
    display: none!important;
}

/* we need this to trigger html type load, otherwise it has not height for observer! */
.mvp-reel-content-item-main,
.mvp-reel-content-item-sub{
    min-height: 100px;
}

.mvp-ad-section{
    display: none!important;
}
.mvp-global-playlist-data{
    display: none;
}


.mvp-reel-item{
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #aaa;
}
.mvp-reel-inner{
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
}
.mvp-reel-content-wrap{
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.mvp-reel-content-wrap-inner{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.2s ease-out;
}
.mvp-reel-content-item{
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}
.mvp-reel-content-wrap-main{    
    
}
.mvp-reel-content-wrap-sub{    
    
}

/* advance buttons */
button.mvp-reel-advance-btn{
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #eee;
    transition: background-color 0.5s;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    z-index: 9999999;
}
button.mvp-reel-advance-btn-previous{
    top:20px;
}
button.mvp-reel-advance-btn-next{
    bottom:20px;
}
@media (hover: hover) {
    button.mvp-reel-advance-btn:hover{        
        background-color: #ddd;
    }
}
button.mvp-reel-advance-btn svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill:currentColor;
    transition: all .1s ease-out;
    height: 25px;
    max-width: none;
}

.mvp-reel-poster-img{
    display: block;
    width: 100%;
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    user-select: none;
}
.mvp-reel-poster-visible{
    opacity: 1;
}
.mvp-reel-media{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.mvp-reel-info{
    margin: 0 0 10px 10px;
}
.mvp-reel-title{
    font-size: 1.3em;
}
.mvp-reel-author{

}
.mvp-reel-date{

}
.mvp-reel-play-count{

}
.mvp-reel-play-count-val{
    display: inline-block;
    margin-right: 5px;
}
.mvp-reel-description{
    margin-top: 10px;
    color: #888;
}


/* sub media caption */

.mvp-reel-media-caption{
    position: absolute;
    bottom: 175px;
    color: #eee;
    text-align: center;
    left: 10px;
    right: 10px;
    pointer-events: none;
    text-shadow: var(--mvp-reel-text-shadow);
}





button.mvp-reel-btn,
a.mvp-reel-btn{
    position: relative;
    height: 40px;
    width: 40px;
    overflow: hidden;
    color: #eee;
    cursor: pointer;
}
button.mvp-reel-btn svg{
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill:currentColor;
    transition: all .1s ease-out;
    height: 20px;
    max-width: none;
}



/* skin */

.mvp-reel-skin-sky .mvp-reel-controls-main-top .mvp-reel-btn{
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.3);
    color: #eee;
    margin-left: 15px;
}







.mvp-reel-controls{
    position: absolute;
    bottom: 0;
    transition: opacity 0.35s;
    width: 100%;
}
.mvp-reel-controls-hidden{
    opacity: 0!important;
}
.mvp-reel-controls-force-hidden{
    opacity: 0!important;
    pointer-events: none!important;
}
.mvp-reel-controls-visibility-hidden{
    visibility: hidden!important;
    pointer-events: none!important;
}
.mvp-reel-controls-main{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column; 
}
.mvp-reel-skin-basic .mvp-reel-controls-main{
    left: 20px;
    right: 20px;
    bottom: 10px;
}
.mvp-reel-skin-basic .mvp-reel-controls-main-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mvp-reel-skin-sky .mvp-reel-controls-main-top{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.mvp-reel-controls-main-top-left{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.mvp-reel-controls-main-top-right{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.mvp-reel-controls-main-bottom{
    display: flex;
    flex-direction: column;
}
.mvp-reel-skin-sky .mvp-reel-controls-main-bottom{
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
}
.mvp-reel-skin-sky .mvp-reel-progress{
   background-color: #f44336; 
}


.mvp-reel-controls-main-top button.mvp-reel-btn svg{
    filter: var(--mvp-reel-icon-shadow);
}


/* seekbar */
.mvp-reel-seekbar{
    width: 100%;
    position: relative;
    height: 15px;
    background: rgba(255,255,255,0);
    touch-action: none;
}
.mvp-reel-seekbar-seekable .mvp-reel-seekbar{
    cursor: pointer;
}
.mvp-reel-progress-bg{
    position: absolute;
    left: 0;
    top:8px;
    width: 100%;
    height: 3px;
}
.mvp-reel-progress{
    position: absolute;
    height: 100%;
    left: 0;
    top:0;
}
.mvp-reel-skin-basic .mvp-reel-progress-bg{
   background: rgba(255,255,255,0.4);
}
.mvp-reel-skin-basic .mvp-reel-progress{
   background-color: #eee; 
}

/* time */
.mvp-reel-time{
    display: flex;
    flex-direction: row;
    margin-left: auto;
    pointer-events: none;
    color: #eee;
}
.mvp-reel-time-current,
.mvp-reel-time-sepearator,
.mvp-reel-time-total{
    position:relative;
    top: 50%;
    left:0px;
    text-align: center;
    float:left;
    margin:0;
    padding: 0;
    font-size:11px;
    line-height: normal;
}
.mvp-reel-skin-sky .mvp-reel-time{    
    position: absolute;
    left: 10px;
    bottom: 10px;
}




/* full desc */

.mvp-reel-description-wrap{
    position: absolute;
    left: 0;
    z-index: 15;
    width: 100%;
    background-color: #fff;
    padding: 20px 40px 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 100%;
    transition: all 0.3s ease-out;
    bottom:100%;
    border-top:1px solid transparent;
}
.mvp-reel-description-wrap-visible{
    transform: translateY(100%);
}
.mvp-reel-description-inner{
    position: relative;
}
.mvp-reel-title-content{
    font-size: 1.3em;
    padding: 0;
    margin: 0;
}
.mvp-reel-description-content{
    margin-top: 10px;
    color: #888;
    white-space: pre-line;
}

/*
.mvp-reel-scrollbar::-webkit-scrollbar {
    width: 14px; 
    height: 14px; 
}
.mvp-reel-scrollbar::-webkit-scrollbar-thumb {
    background: #999; 
}
.mvp-reel-scrollbar::-webkit-scrollbar-track {
    background: #eee; 
}*/



/* icons */

.mvp-reel-icon-holder{
    display: flex;
    flex-direction: column;
    transition: opacity 0.35s;
}
.mvp-reel-icon-holder-inner{
    position: relative;
    padding: 10px;
}
.mvp-reel-icon-wrap{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}
.mvp-reel-icon-wrap:last-child{
    margin-bottom: 0;
}
a.mvp-reel-icon,
button.mvp-reel-icon{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #e9e9e9;
    color: #444;
    position: relative;
    cursor: pointer;
    transition: background-color 0.5s;
}
a.mvp-reel-icon svg,
button.mvp-reel-icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill:currentColor;
    transition: all .1s ease-out;
    height: 20px;
    display: block;
    max-width: none;
}
@media (hover: hover) {
    a.mvp-reel-icon:hover,
    button.mvp-reel-icon:hover{
        background-color: #d5d5d5;
    }
}
.mvp-reel-icon-title{
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
    display: inline-block;
    color: #111;
    white-space: nowrap;
}
button.mvp-reel-btn-like-full,
button.mvp-reel-btn-favorite-full{
    background: #656565!important;
    color: #e7e7e7!important;
}



.mvp-reel-item .mvp-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    /* cover ios bug https://stackoverflow.com/questions/73428075/object-fit-cover-causes-video-to-jump-in-safari */
    transition: opacity .5s;
    visibility: visible!important;
}
.mvp-reel-item .mvp-audio{
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    transition: opacity 0.5s;
}
.mvp-reel-iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    transition: opacity .5s;
    opacity: 0;
    max-width: none!important;
}
.mvp-blocker{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
}
.mvp-partial-blocker{/* help yt, vim default controls swipe horizontally */
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -70px;
    width: 100%;
    height: 140px;
    background: rgba(0,0,0,0);
}
iframe.mvp-reel-yt-clean {
    height: 200%!important;
    top: -50%!important;
}

.mvp-reel-hidden {
    opacity: 0; 
}




/* horizontal numbering */
.mvp-reel-horiz-control-number{
    position: absolute;
    bottom: 120px;
    width: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.mvp-reel-horiz-control-number-text{
    background-color: rgba(0,0,0,0.4);
    padding: 5px 10px;
    border-radius: 8px;
    color: #eee;
    font-size: 12px;
}





/* horizontal dots progress */

button.mvp-reel-horiz-control{
    position: absolute;
    top: 50%;
    margin-top: -25px;
    height: 50px;
    width: 50px;
    color: #eee;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.4s;
}
@media (hover: hover) {
    button.mvp-reel-horiz-control:hover{
        opacity: 1;
    }
}
button.mvp-reel-horiz-control-prev{
    left:5px;
}
button.mvp-reel-horiz-control-next{
    right:5px;
}
.mvp-reel-horiz-control-hidden{
    display: none;
}
button.mvp-reel-horiz-control svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill:currentColor;
    height: 23px;
    filter: var(--mvp-reel-icon-shadow);
    display: block;
    max-width: none;
}
.mvp-reel-horiz-control-progress{
    position: absolute;
    bottom: 80px;
    width: 100%;
    pointer-events: none;
    height: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.mvp-reel-horiz-control-indicator{
    border-radius: 100%;
    height: 6px;
    width: 6px;
    background-color: #eee;
    transition: opacity 0.2s;
    opacity: 0.3;
    margin-right: 4px;
}
.mvp-reel-horiz-control-indicator:last-child{
    margin-right: 0;
}
.mvp-reel-horiz-control-indicator-active{
    opacity: 0.9;
}










/* more menu popup */

.mvp-reel-menu-popup{
    position: absolute;
    z-index: 11;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 300px;
    overflow-y: auto;
    bottom: 100%;
    left: 0;
    display: none;
}
.mvp-reel-menu-popup-max-height{
    max-height: 300px;
}
.mvp-reel-menu-popup-inner{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 5px;
}
.mvp-reel-menu-popup-item{
    display: flex;
    flex-direction: row;
    padding: 10px 40px 10px 20px;
    color: #666;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
}
.mvp-reel-menu-popup-item-text{
    white-space: nowrap;
}
@media (hover: hover) {
    .mvp-reel-menu-popup-item:hover{
        background: #eee;
    }
}
.mvp-reel-menu-popup-item-icon{
    text-align: center;
    min-width: 20px;
    min-height: 20px;
    margin-right: 10px;
    border: 0!important;
    box-shadow: none!important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    text-decoration: none;
}
.mvp-reel-menu-popup-item-icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill:currentColor;
    height: 20px;
    display: block;
    max-width: none;
}









/* share */
.mvp-reel-share-holder{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 9999999;
}
.mvp-reel-holder-animate {
    opacity: 1 !important;
    margin-top: 0;
}
.mvp-reel-holder-shown {
    display: block !important;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mvp-reel-share-holder-inner{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mvp-reel-share-data{
    position: relative;
    max-width: 700px;
    max-height: 70%;
    overflow: auto;
    scrollbar-width: thin;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.mvp-reel-share-inner{
    position: relative;
    padding: 30px 40px 30px 30px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.2;
    direction: ltr;
}
.mvp-reel-share-container{
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 10px;
}
button.mvp-reel-share-btn{
    position:relative;
    width:40px;
    height:40px;
    text-align: center;
    float: left;
    margin-right: 5px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}
button.mvp-reel-share-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    fill: currentColor;
    transition: all .1s ease-out;
}
@media (hover: hover) {
    button.mvp-reel-share-btn:hover svg {
        transform: translate(-50%, -50%) scale(1.3);
    }
}
.mvp-reel-share-item[data-type="facebook"] svg{
    color: #3b5998;
}
.mvp-reel-share-item[data-type="twitter"] svg{
    color: #00aced;
}
.mvp-reel-share-item[data-type="tumblr"] svg{
    color: #34526f;
}
.mvp-reel-share-item[data-type="whatsapp"] svg{
    color: #25D366;
}
.mvp-reel-share-item[data-type="linkedin"] svg{
    color: #007bb6;
}
.mvp-reel-share-item[data-type="reddit"] svg{
    color: #FF4301;
}
.mvp-reel-share-item[data-type="digg"] svg{
    color: #005be2;
}
.mvp-reel-share-item[data-type="pinterest"] svg{
    color: #cb2027;
}
.mvp-reel-share-item[data-type="email"] svg{
    color: #dfdfdf;
}
.mvp-reel-share-item[data-type="sms"] svg{
    color: #f8ea73;
}


.mvp-reel-share-box{
    display: flex;
}
.mvp-reel-share-field-wrap {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    margin-right: 10px;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    font-size: 12px;
    padding: 5px;
    color: #999;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
}
.mvp-reel-share-field-wrap-selected{
    background: #6989a2;
    color: #fff;
}
.mvp-reel-share-copy {
    display: inline-block;
    padding: 8px 12px !important;
    font-size: 13px;
    cursor: pointer;
    float: right;
    align-self: flex-start;
    margin-left: 5px;
    margin-right: 5px;
    white-space: nowrap;
    border-radius: 3px;
    transition: opacity 0.3s ease-out;
    background: #f3f3f3;
    color: #656565;
}
@media (hover: hover) {
    .mvp-reel-share-copy:hover{
        background: #ddd;
    }
}


/* preview seek */

.mvp-reel-preview-seek-wrap{
    position: absolute;
    pointer-events: none;
    display: none;
    z-index: 22;
}
.mvp-reel-preview-seek-inner{
    position: relative;
    top: 0;
    border: 2px solid #ddd;
    margin: 0 auto;
    left: 0;
    width: 150px;
    height: 266px;
    box-sizing: content-box;
    background-repeat: no-repeat;
    background: #ddd;
    box-shadow: 0 0 5px rgba(120,120,120,0.7);
    overflow: hidden;
}
.mvp-reel-preview-seek-canvas{
    position: absolute!important;
    width: 100%!important;
    height: 100%!important;
    left: 0;
    top: 0;
}
.mvp-reel-preview-seek-info{
    position: absolute;
    text-align: center;
    font-size: 13px;
    line-height: normal;
    bottom: 5px;
    left:5px;
    background: rgba(15, 15, 15, 0.3);
    padding: 1px 3px;
    color: #fff;
}
@container mvp_reel_player_query (min-width: 900px){ 
    .mvp-reel-preview-seek-inner.mvp-reel-preview-seek-auto{
        /*width: 200px;
        height: 355px;*/
    }
}






button.mvp-reel-close-btn{
    cursor: pointer;
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    right: 0;
}
button.mvp-reel-close-btn svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    fill: currentColor;
    transition: all .1s ease-out;
    max-width: none;
}



.mvp-reel-btn-volume-no-sound{
    opacity: 0.7;
    cursor: default;
}





/* load more button */

.mvp-reel-load-more-btn{
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    position: relative;
    text-align: center;
    margin: 10px 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease-out;
    text-transform: uppercase;
    background: #565e72;
    color: #eee;
}
@media (hover: hover) {
    .mvp-reel-load-more-btn:hover{
        background-color: #6d727e;
    }
}



.mvp-reel-load-more-helper{
    height: 1px;
    position: relative;
    width: 1px;
}

.mvp-reel-media-force-hide{
    visibility: hidden!important;
    pointer-events: none!important;
    left: -10000px!important;
    position: absolute!important;
}

.mvp-reel-media-disabled{
    /* we cant allow focus toogle playback on video while ad is playing! */
    pointer-events: none!important;
}


/* snap layout vertical */

.mvp-reel-snap-layout{
    min-height: 765px;
    height: 100%;
}
.mvp-reel-snap-layout .mvp-reel-playlist-content{
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    overflow-x: hidden;
}
.mvp-reel-snap-layout .mvp-reel-item {
    margin: 0;
    padding: 0;
    border-bottom: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    height: 100%;
}
.mvp-reel-snap-layout .mvp-reel-content-wrap {
    border-radius: 0;
}
.mvp-reel-snap-layout .mvp-reel-poster-img{
    height: 100%;
    object-fit: cover;
}




/* snap layout horizontal */

.mvp-reel-h-snap-layout .mvp-reel-content-h-scrollable{
    touch-action:pan-y pan-x;/* must have vertical scrolling with horizontal swipe! */
}
.mvp-reel-h-swipe-layout .mvp-reel-content-h-scrollable{
    touch-action:pan-y;
}

.mvp-reel-h-snap-layout .mvp-reel-content-h-scrollable{
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
}
/* prevent snap on horizontal (if exist) while we scroll vertical and wheelScrollSnap and useHorizontalSnapLayout is active! */
.mvp-reel-is-vertical-scroll .mvp-reel-content-h-scrollable{
    scroll-snap-type: none!important;
}
.mvp-reel-h-snap-layout .mvp-reel-content-h-scrollable .mvp-reel-content-item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}



/* hide advance buttons on narrow screen */
@container mvp_reel_player_query (max-width: 499px){
    .mvp-reel-horiz-control{  
        display: none!important;
    }
}
@media screen and (max-width:499px){
    .mvp-reel-horiz-control{  
        display: none!important;
    }
}




.mvp-reel-measure-size{
    opacity: 0!important;
    position: absolute!important;
    left:-10000px!important;
    display: block!important;
}


.mvp-reel-overflow-hidden{
    overflow: hidden!important;
}











/* main loader */
.mvp-reel-loader-wrap{
    position:relative;
    top:0;
    left:0;
    z-index: 99999999;
    width: 50px;
    height: 50px;
    margin: 30px auto;
    display: none;
    pointer-events: none;
}
.mvp-reel-loader{
    position:relative;
    display: block;
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-left: -76px;
    color: #fff;
}
.mvp-reel-loader:before,
.mvp-reel-loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s mvp_reel_spin linear infinite;
}
.mvp-reel-loader:after {
  color: #FF3D00;
  transform: rotateY(70deg);
  animation-delay: .4s;
}
.mvp-reel-loader:before {
    color: #03a9f4;
}


@keyframes mvp_reel_spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
}


/* video loader */
.mvp-reel-video-loader-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
    pointer-events: none;
}
.mvp-reel-video-loader {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: mvp_iframe_loader_rotate 1s linear infinite;
}
.mvp-reel-video-loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: mvp_iframe_loader_prixClipFix 2s linear infinite;
}
@keyframes mvp_iframe_loader_rotate {
  100%   {transform: rotate(360deg)}
}
@keyframes mvp_iframe_loader_prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}





/* fullscreen */

.mvp-reel-fs{
    position:fixed!important;
    top:0!important;
    left:0!important;
    width:100%!important;
    height:100%!important;
    max-width:none!important;
    max-height:none!important;
    margin:0!important;
    padding:0!important;
    z-index:2147483647!important;
    overflow:hidden!important;
    transform: none!important;
} 
.mvp-reel-fs .mvp-video{
    object-fit: contain;
    background-color: #111;
}
.mvp-reel-fs[data-type="image"] .mvp-reel-poster-visible{
    object-fit: contain;
    height: 100%;
}
.mvp-reel-fs-overflow{
    overflow:hidden!important;
}
.mvp-reel-force-hide{
    display: none!important;
}
/* we cant have horizontal controls in fs! */
.mvp-reel-fs .mvp-reel-horiz-control-progress{
    display: none!important;
}
.mvp-reel-fs .mvp-reel-horiz-control-number{
    display: none!important;
}
.mvp-reel-fs .mvp-reel-horiz-control{
    display: none!important;
}


/* apply the same in fullscreen as in narrow layout! */

.mvp-reel-is-fullscreen .mvp-reel-playlist-content{
    scroll-snap-type: none;/* prevent scroll losing position on exit fulscreen! */
}

.mvp-reel-is-fullscreen .mvp-reel-info{
    left: 20px;
    margin: 0 80px 0 0;
    position: absolute;
    top: 20px;
    z-index: 4;
    color: #eee;
}
.mvp-reel-is-fullscreen .mvp-reel-title{
    text-shadow: var(--mvp-reel-text-shadow);
}
.mvp-reel-is-fullscreen .mvp-reel-icon-holder{
    position: absolute;
    right: 0;
}
.mvp-reel-is-fullscreen a.mvp-reel-icon,
.mvp-reel-is-fullscreen button.mvp-reel-icon{
    background-color: transparent;
    color: #eee;
}
.mvp-reel-is-fullscreen .mvp-reel-icon-title{
    color: #eee;
    margin: 0;
    text-shadow: var(--mvp-reel-text-shadow);
}
.mvp-reel-is-fullscreen .mvp-reel-icon-wrap {
    margin-bottom: 5px;
}
.mvp-reel-is-fullscreen .mvp-reel-icon-wrap .mvp-reel-icon{
    filter: var(--mvp-reel-icon-shadow);
}
.mvp-reel-is-fullscreen .mvp-reel-menu-popup{
    left: auto;
    right:0;
}










/* narrow mobile layout */

@media (max-width:800px){
    .mvp-reel-advance-btn{
        display: none;
    }
}

@container mvp_reel_player_query (max-width: 499px){ 

    .mvp-reel-info{
        left: 20px;
        margin: 0 80px 0 0;
        position: absolute;
        top: 20px;
        z-index: 4;
        color: #eee;
    }
    .mvp-reel-title{
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-icon-holder{
        position: absolute;
        right: 0;
    }
    a.mvp-reel-icon,
    button.mvp-reel-icon{
        background-color: transparent;
        color: #eee;
    }
    .mvp-reel-icon-title{
        color: #eee;
        margin: 0;
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-icon-wrap {
        margin-bottom: 5px;
    }
    .mvp-reel-icon-wrap .mvp-reel-icon{
        filter: var(--mvp-reel-icon-shadow);
    }
    .mvp-reel-menu-popup{
        left: auto;
        right:0;
    }
}

@media screen and (max-width:499px){

    .mvp-reel-info{
        left: 20px;
        margin: 0 80px 0 0;
        position: absolute;
        top: 20px;
        z-index: 4;
        color: #eee;
    }
    .mvp-reel-title{
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-icon-holder{
        position: absolute;
        right: 0;
    }
    a.mvp-reel-icon,
    button.mvp-reel-icon{
        background-color: transparent;
        color: #eee;
    }
    .mvp-reel-icon-title{
        color: #eee;
        margin: 0;
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-icon-wrap {
        margin-bottom: 5px;
    }
    .mvp-reel-icon-wrap .mvp-reel-icon{
        filter: var(--mvp-reel-icon-shadow);
    }
    .mvp-reel-menu-popup{
        left: auto;
        right:0;
    }

}


/* narrow mobile layout snap */

@container mvp_reel_player_query (max-width: 1600px){ 

    .mvp-reel-snap-layout .mvp-reel-info{
        left: 20px;
        margin: 0 80px 0 0;
        position: absolute;
        top: 20px;
        z-index: 4;
        color: #eee;
    }
    .mvp-reel-snap-layout .mvp-reel-title{
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-icon-holder{
        position: absolute;
        right: 0;
    }
    .mvp-reel-snap-layout a.mvp-reel-icon,
    .mvp-reel-snap-layout button.mvp-reel-icon{
        background-color: transparent;
        color: #eee;
    }
    .mvp-reel-snap-layout .mvp-reel-icon-title{
        color: #eee;
        margin: 0;
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-icon-wrap {
        margin-bottom: 5px;
    }
    .mvp-reel-snap-layout .mvp-reel-icon-wrap .mvp-reel-icon{
        filter: var(--mvp-reel-icon-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-menu-popup{
        left: auto;
        right:0;
    }
}

@media screen and (max-width:1600px){

    .mvp-reel-snap-layout .mvp-reel-info{
        left: 20px;
        margin: 0 80px 0 0;
        position: absolute;
        top: 20px;
        z-index: 4;
        color: #eee;
    }
    .mvp-reel-snap-layout .mvp-reel-title{
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-icon-holder{
        position: absolute;
        right: 0;
    }
    .mvp-reel-snap-layout a.mvp-reel-icon,
    .mvp-reel-snap-layout button.mvp-reel-icon{
        background-color: transparent;
        color: #eee;
    }
    .mvp-reel-snap-layout .mvp-reel-icon-title{
        color: #eee;
        margin: 0;
        text-shadow: var(--mvp-reel-text-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-icon-wrap {
        margin-bottom: 5px;
    }
    .mvp-reel-snap-layout .mvp-reel-icon-wrap .mvp-reel-icon{
        filter: var(--mvp-reel-icon-shadow);
    }
    .mvp-reel-snap-layout .mvp-reel-menu-popup{
        left: auto;
        right:0;
    }

}


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