/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
Reference: //blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */

#container{
    overflow:hidden;
}

.mejs__offscreen {
    clip: rect(1px, 1px, 1px, 1px); /* IE8-IE11 - no support for clip-path */
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.mejs__container {
    position: relative;
    background: #000;
    font-family: "Helvetica", Arial, serif;
    text-align: left;
    vertical-align: top;
    text-indent: 0;
    box-sizing: border-box;
    min-width: 250px;
}

.mejs__container .mejs__video {
    min-height: 140px;
}

.mejs__container * {
    box-sizing: border-box;
}

/* Hide native play button from iOS to favor plugin button */
.mejs__container video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.mejs__fill-container,
.mejs__fill-container .mejs__container {
    width: 100%;
    height: 100%;
}

.mejs__fill-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    background: transparent;
}

.mejs__container:focus {
    outline: none;
}

.mejs__iframe-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mejs__embed,
.mejs__embed body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.mejs__fullscreen {
    overflow: hidden !important;
}

.mejs__container-fullscreen {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1000;
}

.mejs__container-fullscreen .mejs__mediaelement,
.mejs__container-fullscreen video {
    width: 100% !important;
    height: 100% !important;
}

.mejs__clear {
    clear: both;
}

/* Start: LAYERS */
.mejs__background {
    position: absolute;
    top: 0;
    left: 0;
}

.mejs__mediaelement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mejs__poster {
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

:root .mejs__poster-img {
    display: none;
}

.mejs__poster-img {
    border: 0;
    padding: 0;
}

.mejs__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.mejs__layer {
    z-index: 1;
}

.mejs__overlay-play {
    cursor: pointer;
}

.mejs__overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background: url("mejs-controls.svg") no-repeat;
    background-position: 0 -39px;
    overflow: hidden;
    z-index: 1;
}

.mejs__overlay:hover > .mejs__overlay-button {
    background-position: -80px -39px;
}

.mejs__overlay-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
}

/* .mejs__overlay-loading-bg-img {
    display: block;
    width: 80px;
    height: 80px;
    background: transparent url("mejs-controls.svg") -160px -40px no-repeat;
    -webkit-animation: mejs-loading-spinner 1s linear infinite;
    -moz-animation: mejs-loading-spinner 1s linear infinite;
    animation: mejs-loading-spinner 1s linear infinite;
    z-index: 1;
} */

@-moz-keyframes mejs-loading-spinner {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes mejs-loading-spinner {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes mejs-loading-spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* End: LAYERS */

/* Start: CONTROL BAR */
.mejs__controls {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0 10px;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    z-index: 1;
}

.mejs__controls:not([style*="display: none"]) {
    background: rgba(255, 0, 0, 0.7);
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.35));
}

.mejs__button,
.mejs__time,
.mejs__time-rail {
    float: left;
    margin: 0;
    width: 32px;
    height: 40px;
    font-size: 10px;
    line-height: 10px;
}

.mejs__button > button {
    cursor: pointer;
    display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    margin: 10px 6px;
    padding: 0;
    position: absolute;
    height: 20px;
    width: 20px;
    border: 0;
    background: transparent url("mejs-controls.svg");
    overflow: hidden;
}

/* :focus for accessibility */
.mejs__button > button:focus {
    outline: dotted 1px #999;
}

.mejs__container-keyboard-inactive a,
.mejs__container-keyboard-inactive a:focus,
.mejs__container-keyboard-inactive button,
.mejs__container-keyboard-inactive button:focus,
.mejs__container-keyboard-inactive [role=slider],
.mejs__container-keyboard-inactive [role=slider]:focus {
    outline: 0;
}

/* End: CONTROL BAR */

/* Start: Time (Current / Duration) */
.mejs__time {
    color: #fff;
    display: block;
    height: 24px;
    width: auto;
    font-weight: bold;
    font-size: 11px;
    padding: 16px 6px 0 6px;
    overflow: hidden;
    text-align: center;
    box-sizing: content-box;
}

/* End: Time (Current / Duration) */

/* Start: Play/Pause/Stop */
.mejs__play > button {
    background-position: 0 0;
}

.mejs__pause > button {
    background-position: -20px 0;
}

.mejs__replay > button {
    background-position: -160px 0;
}

/* End: Play/Pause/Stop */

/* Start: Progress Bar */
.mejs__time-rail {
    direction: ltr;
    width: 200px;
    padding-top: 10px;
    height: 40px;
    position: relative;
    margin: 0 10px;
}

.mejs__time-total,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-current,
.mejs__time-float,
.mejs__time-hovered,
.mejs__time-float-current,
.mejs__time-float-corner,
.mejs__time-marker {
    cursor: pointer;
    display: block;
    position: absolute;
    height: 10px;
    border-radius: 2px;
}

.mejs__time-total {
    margin: 5px 0 0 0;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
}

.mejs__time-buffering {
    width: 100%;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 15px 15px;
    animation: buffering-stripes 2s linear infinite;
}

@keyframes buffering-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 30px 0;
    }
}

.mejs__time-loaded {
    background: rgba(255, 255, 255, .3);
}

.mejs__time-current, .mejs__time-handle-content {
    background: rgba(255, 255, 255, 0.9);
}

.mejs__time-hovered {
    background: rgba(255, 255, 255, .5);
    z-index: 10;
}

.mejs__time-hovered.negative {
    background: rgba(0, 0, 0, 0.2);
}

.mejs__time-current, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-hovered {
    width: 100%;
    left: 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: .15s ease-in all;
}

.mejs__time-hovered {
    transition: height .1s cubic-bezier(0.44, 0.0, 1, 1);
}

.mejs__time-hovered.no-hover {
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}

.mejs__time-handle, .mejs__time-handle-baby {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 4px solid transparent;
    z-index: 11;
    left: 0;
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.mejs__time-handle-baby {
    left: -4px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    -ms-transform: scale(0);
    transform: scale(0);
    top: -8px;
    border-radius: 50%;
}

.mejs__time-rail:hover .mejs__time-handle-baby, .mejs__time-rail .mejs__time-handle-baby:focus, .mejs__time-rail .mejs__time-handle-baby:active {
    -ms-transform: scale(1);
    transform: scale(1);
}

.mejs__time-float {
    position: absolute;
    display: none;
    background: #eee;
    width: 36px;
    height: 17px;
    border: solid 1px #333;
    top: -26px;
    margin-left: -18px;
    text-align: center;
    color: #111;
}

.mejs__time-float-current {
    margin: 2px;
    width: 30px;
    display: block;
    text-align: center;
    left: 0;
}

.mejs__time-float-corner {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    line-height: 0;
    border: solid 5px #eee;
    border-color: #eee transparent transparent transparent;
    border-radius: 0;
    top: 15px;
    left: 13px;
}

.mejs__long-video .mejs__time-float {
    width: 64px;
    margin-left: -23px;
}

.mejs__long-video .mejs__time-float-current {
    width: 60px;
}

.mejs__long-video .mejs__time-float-corner {
    left: 18px;
}

.mejs__broadcast {
    color: #fff;
    position: absolute;
    width: 100%;
    height: 10px;
    top: 15px;
}

/* End: Progress Bar */

/* Start: Fullscreen */
.mejs__fullscreen-button > button {
    background-position: -80px 0;
}

.mejs__unfullscreen > button {
    background-position: -100px 0;
}

/* End: Fullscreen */

/* Start: Mute/Volume */
.mejs__mute > button {
    background-position: -60px 0;
}

.mejs__unmute > button {
    background-position: -40px 0;
}

.mejs__volume-button {
    position: relative;
}

.mejs__volume-button > .mejs__volume-slider {
    display: none;
    height: 115px;
    width: 25px;
    background: rgba(50, 50, 50, 0.7);
    border-radius: 0;
    top: -115px;
    left: 5px;
    z-index: 1;
    position: absolute;
    margin: 0;
}

.mejs__volume-button:hover {
    border-radius: 0 0 4px 4px;
}

.mejs__volume-total {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.mejs__volume-current {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mejs__volume-handle {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 16px;
    height: 6px;
    margin: 0 0 -3px -7px;
    background: rgba(255, 255, 255, 0.9);
    cursor: ns-resize;
    border-radius: 1px;
}

.mejs__horizontal-volume-slider {
    height: 36px;
    width: 56px;
    position: relative;
    display: block;
    float: left;
    vertical-align: middle;
}

.mejs__horizontal-volume-total {
    position: absolute;
    left: 0;
    top: 16px;
    width: 50px;
    height: 8px;
    margin: 0;
    padding: 0;
    font-size: 1px;
    border-radius: 2px;
    background: rgba(50, 50, 50, 0.8);
}

.mejs__horizontal-volume-current {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 1px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.mejs__horizontal-volume-handle {
    display: none;
}

/* End: Mute/Volume */

/* Start: Track (Captions and Chapters) */
.mejs__captions-button, .mejs__chapters-button {
    position: relative;
}

.mejs__captions-button > button {
    background-position: -140px 0;
}

.mejs__chapters-button > button {
    background-position: -180px 0;
}

.mejs__captions-button > .mejs__captions-selector, .mejs__chapters-button > .mejs__chapters-selector {
    visibility: hidden;
    position: absolute;
    bottom: 40px;
    right: -51px;
    width: 85px;
    background: rgba(50, 50, 50, 0.7);
    border: solid 1px transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.mejs__chapters-button > .mejs__chapters-selector {
    width: 110px;
}

.mejs__captions-button > .mejs__captions-selector, .mejs__chapters-button > .mejs__chapters-selector {
    visibility: visible;
}

.mejs__captions-selector-list, .mejs__chapters-selector-list {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none !important;
    overflow: hidden;
}

.mejs__captions-selector-list-item, .mejs__chapters-selector-list-item {
    margin: 0 0 6px 0;
    padding: 0 10px;
    list-style-type: none !important;
    display: block;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.mejs__captions-selector-list-item:hover, .mejs__chapters-selector-list-item:hover {
    background-color: rgb(200, 200, 200) !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.mejs__captions-selector-input, .mejs__chapters-selector-input {
    clear: both;
    float: left;
    margin: 3px 3px 0 5px;
    position: absolute;
    left: -1000px;
}

.mejs__captions-selector-label, .mejs__chapters-selector-label {
    width: 55px;
    float: left;
    padding: 4px 0 0 0;
    line-height: 15px;
    font-size: 10px;
    cursor: pointer;
}

.mejs__captions-selected, .mejs__chapters-selected {
    color: rgba(33, 248, 248, 1);
}

.mejs__captions-translations {
    font-size: 10px;
    margin: 0 0 5px 0;
}

.mejs__captions-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    color: #fff;
}

.mejs__captions-layer a {
    color: #fff;
    text-decoration: underline;
}

.mejs__captions-layer[lang=ar] {
    font-size: 20px;
    font-weight: normal;
}

.mejs__captions-position {
    position: absolute;
    width: 100%;
    bottom: 15px;
    left: 0;
}

.mejs__captions-position-hover {
    bottom: 35px;
}

.mejs__captions-text, .mejs__captions-text * {
    padding: 0;
    background: rgba(20, 20, 20, 0.5);
    white-space: pre-wrap;
    box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
}

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
    display: none;
}

/* End: Track (Captions and Chapters) */

/* Start: Error */
.me_cannotplay a {
    font-weight: bold;
}

.mejs__container .me_cannotplay a {
    color: #fff;
}

.me_cannotplay span {
    padding: 15px;
    display: block;
}

/* End: Error */


/*start:reset */
.mejs__controls{
    height: 50px;
    padding-top: 8px;
}

/* 进度条 */
.mejs__time-rail{
    position: absolute;
    top: -15px;
    left: 0;
    margin:0;
    width: 100% !important;
}


.mejs__time-current,  .mejs__time-hovered, .mejs__time-loaded, .mejs__time-marker, .mejs__time-total{
    height: 5px;
}


.mejs__time-total{
    background-color: #505050;
    width: 98%;
    left: 1%;
}

.mejs__time-current, .mejs__time-handle-content{
    background-color: #c47513;
}

/* 大播放暂停按钮 */

/* .mejs__overlay-button{
    top: auto;
    bottom: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;

} */

/* 音量、清晰度、全屏按钮放右侧 */
.mejs__volume-button,
.mejs__sourcechooser-button,
.mejs__fullscreen-button{
    float: right;
}




/* loading */
.mejs__pcauto .mejs__overlay-loading,
.mejs__pconline .mejs__overlay-loading,
.mejs__pclady .mejs__overlay-loading,
.mejs__pcbaby .mejs__overlay-loading,
.mejs__pchouse .mejs__overlay-loading,
.mejs__pcgroup .mejs__overlay-loading{
    width: 100%;
    height: 100%;
    margin:0;
    left: 0;
    top: 0;
   background: #000 ;
}

.mejs__pcauto .mejs__overlay-loading-bg-img,
.mejs__pconline .mejs__overlay-loading-bg-img,
.mejs__pclady .mejs__overlay-loading-bg-img,
.mejs__pcbaby .mejs__overlay-loading-bg-img,
.mejs__pchouse .mejs__overlay-loading-bg-img,
.mejs__pcgroup .mejs__overlay-loading-bg-img{
  
   position: absolute;
   top:50%;
   left: 50%;
    width: 33%;
    padding-bottom: 33%;
    height: auto;
    transform:translate(-50%,-50%);
    -webkit-animation:none;
    -moz-animation:none;
    animation:none;
    overflow: hidden;

}
.mejs__pcauto .mejs__overlay-loading-bg-img:before,
.mejs__pconline .mejs__overlay-loading-bg-img:before,
.mejs__pclady .mejs__overlay-loading-bg-img:before,
.mejs__pcbaby .mejs__overlay-loading-bg-img:before,
.mejs__pchouse .mejs__overlay-loading-bg-img:before,
.mejs__pcgroup .mejs__overlay-loading-bg-img:before{
    content: "\20";
    display: block;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 0;
    background-size: contain;
}

.mejs__pcauto .mejs__overlay-loading-bg-img:before{
    background: url(//www1.pcauto.com.cn/h5video/loading/logo_auto.png) center top no-repeat;
     background-size: contain;
}
.mejs__pconline .mejs__overlay-loading-bg-img:before{
   
    background: url(//www1.pconline.com.cn/h5video/loading/logo_online.png) center top  no-repeat;
    background-size: contain;

}

.mejs__pclady .mejs__overlay-loading-bg-img:before{
    
    background: url(//www1.pclady.com.cn/h5video/loading/logo_lady.png) center top  no-repeat;
     background-size: contain;
}

.mejs__pcbaby .mejs__overlay-loading-bg-img:before{
   
    background: url(//www1.pcbaby.com.cn/h5video/loading/logo_baby.png) center top  no-repeat;
     background-size: contain;
}

.mejs__pchouse .mejs__overlay-loading-bg-img:before{
   
    background: url(//www1.pchouse.com.cn/h5video/loading/logo_house.png) center top  no-repeat;
     background-size: contain;
}

.mejs__pcgroup .mejs__overlay-loading-bg-img:before{
   
    background: url(//www1.pconline.com.cn/h5video/loading/logo_PCgroup.png) center top  no-repeat;
     background-size: contain;
}


.mejs__pcauto .mejs__overlay-loading-bg-img:after,
.mejs__pconline .mejs__overlay-loading-bg-img:after,
.mejs__pclady .mejs__overlay-loading-bg-img:after,
.mejs__pcbaby .mejs__overlay-loading-bg-img:after,
.mejs__pchouse .mejs__overlay-loading-bg-img:after,
.mejs__pcgroup .mejs__overlay-loading-bg-img:after{
    content: "\20";
    display: block;
    width: 35%;
    height: 35%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left:-17.5%;
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE4AAABOCAYAAACOqiAdAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzFDMTlERTI5OTI5MTFFN0I3NTM4M0QzRTkwMzZGMkYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzFDMTlERTM5OTI5MTFFN0I3NTM4M0QzRTkwMzZGMkYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3MUMxOURFMDk5MjkxMUU3Qjc1MzgzRDNFOTAzNkYyRiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3MUMxOURFMTk5MjkxMUU3Qjc1MzgzRDNFOTAzNkYyRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuFxO3kAAAUFSURBVHja7JxNSFRRFMffDJNI0RQMlIaB08ICE4oIrJXVpkW1CsGdgrjNdFlQLmpX0iqIIFsFEgTlIgRrVimEaFgbNwr2YdHQVFRii+l/7GS3aT7Ove/Ju/PmHji+mfG8++77zTn3njPv3efl83nPJkF/+qEz+f/lAbTbkj7yHzs6cwC6kK8sT6HbHbi/0D7l5bIQJjwrwBEATWjrnhcmuLgFUdoPNfGejlDHPAs8zsTb1ieMsJjF1v7EYqGNbdjM+GkjFkLnbQjV7V6VStxzYiQJH+7aik1SCZnJmiKnOznAvhM6BX1TRIehuzXb8yMzYTGLaxgnoffxchhaCk4ndBx2RzT6MeLjHO6G5XDiWRV249i0Ctv9Aj2Ldl8J2m3mmVV3olhE+2kfXkPDTCO//Q5dRns/A01HYDOIzYBm35bQbruwI5TI3tFoOwc9hvZnfaRBhVFD0GbR5nKQodpr0L/dNB4KczEK1x4GstHQWksMNZugh9kT/acjPF4lDSNCPNYxvINlxjwCNgRN+4BGcPZUMNsbVDrS6pmL1gwLIIvseT04yQ4VmimsApE4QCoocNtCmbVisUxIE+amoCqHV1505IfAZtkGcFZBhxdT2pGtlA0EAg4Ho4ZMy6nbFnrdc84zi37RknREnADzzHpfFxravWRxqUkTVwOPaZ85Ac4K99WqHDq53JKGKFUOX6Ja38c1xodRbM6XcfM/8jjK0LRr1YIaj7zvJOd4SfYw0tFa+HnJquuqkQ1VJ/p5nBMHzoFz4Bw4B86JRBJFcpRD2HRBOwr+lYGOhfg7mb2VA173YdNXYZ8x6DXs87WWE+CE8kYCjeQUby9HFEodNhR1dO2hjj8mJ5mHs0z/43GQXdCHmscYQkOPIgjttFf6ugPBy6glV5/Bcboi6HBHvfIXa1oArUWdVQ8ZHIQa2RoxcC0CmzYVXOMGHqhawnSX0DTl8rgAEuB3hvvPR4jFR6FdVgU3bQItSrkczmVV6AhzKrhbBse6F8EIfOaVv+5KzjK/Dg5v3mrCG4taDqd43SP2qlXlXxRZ02q5aVRywT6SVYNOyfXfVS5X5MvAuatchuBcHuczj3PiwDlwDpwD58SBc+AcuOoSo/WqyJzp5+Pj0J3Kx1PQCZRk32oBnNYdmbDdgs0F6P4SJgTtBtqbsrxkokVw+6D1/BEtd8qg3znh/lo3TxO0q1DJUserNsLDORCobu/33ebFJCP5EUO3Vu0SQiM5x6Btk3LQSOhZJqKlonGNED2j0UGyP2FheDYITDuCnFXbDPrabpm37RPa1fOq7UDApb3ql3oN28DA1USKochKUHncgsHB3/sckzZj07SWM/GVJZ+S07BdDAQcOj6HE/mAlzs0Dv7EEBjdVkF3DLWo0z+EVkiPSheqFUs1oAck0CQrCHXSEZ0llC8JtgE0WqU46BW/J4VO+qLuA2GULz/H8CqF6ONAa1VOaCeEYX3F0NO6K5hR+A7ANmUIL8NgVkqE50ig61ULTpDSjN4SYUs3J94zqVf52SbSu58m+akRfsbQZp49V6ThqQ4dCYNvjTxvigv9NCe75GVzpgU+TwQ6t4z5vr2MnzixaLp/wseBaQyb84KRJk37lBeyuN/jqhzca037JQfOW3+shc6TbF44cH+F1vx/F9hlhWlRbYDjiuB6BXhkc5M9NNz+hvk42xKpSUopuVLKmEbhOWEDNGL2S4ABANSbSTUSwvZtAAAAAElFTkSuQmCC) 0 0 no-repeat;
    background-size: contain;
    -webkit-animation: mejs-loading-spinner 1s linear infinite;
    -moz-animation: mejs-loading-spinner 1s linear infinite;
    animation: mejs-loading-spinner 1s linear infinite;
    z-index: 1;
}

.mejs__programNumber{
    position: absolute;
    bottom: 80px;
    right: 10px;
    color: #fff;
}



/*end:reset