/* Comming Next */

html {
  font-size: 16px;
}

body {
    font-family: Roboto, helvetica, arial, tahoma, sans-serif;
    font-size: 62.5%;
    color: #000000;
    font-weight: 300;
    -webkit-font-smoothing: subpixel-antialiased;
}
.player-block {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.player-block .up-next-overlay {
    position: absolute;
    top: 62%;
    right: 0;
    width: 32em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 1em 1.75em 1em 1em;
    display: none;
    -webkit-transform: translateX(40em);
            transform: translateX(40em);
    transition: -webkit-transform .75s ease;
    transition: transform .75s ease;
    transition: transform .75s ease, -webkit-transform .75s ease;
}

.player-block .up-next-overlay:hover {
    background-color: #000000;
}

    @media (min-width: 540px) {
        .player-block .up-next-overlay {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }
    }

.player-block .up-next-overlay.is-slided {
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.player-block .wrapper {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 1em;
}

.player-block .up-next-overlay-title {
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Roboto Condensed',helvetica,arial,tahoma,sans-serif;
}

.player-block .time-remaining {
    padding-left: .25em;
}

.player-block .up-next-video-title {
    font-size: 1.4em;
    font-family: 'Roboto Condensed',helvetica,arial,tahoma,sans-serif;
    font-weight: 100;
    color: #fff;
    line-height: 1.2em;
    text-transform: none;
}

.player-block .close-btn {
    color: #ffffff;
    position: absolute;
    top: -1.25em;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    width: 1.25em;
    height: 1.25em;
    padding: 0;
    font-size: 1.5em;
    border: 0;
    cursor: pointer;
    outline: 0;
}

.player-block .close-btn:hover {
    background-color: #c32026;
}

.player-block .close-btn::after {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    margin-top: -.25em;
    content: '\00d7'; // here is your X(cross) sign.
}

.main .up-next-overlay,
.related-article .up-next-overlay,
.related-player .up-next-overlay {
    display: none !important;
}

/* Rotating */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.img-wrapper {
    width: 140px;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    position: absolute;
    right: 10px;
    opacity: .75;
    filter: alpha(opacity=75);
}


.loading:before {
    content: ' ';
    position: absolute;
    z-index: -1;
    left: -26px;
    top: -13px;
    display: inline-block;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    border: 5px solid rgba(255, 255, 255, .5);
    background-color: rgba(0, 0, 0, .3);
    border-right-color: #FFF;
    -webkit-animation: spin 1s infinite linear;
            animation: spin 1s infinite linear;
}

.loading {
    position: absolute;
    left: 250px;
    top: 25px;
    font-size: 4em;
    z-index: 10;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-family: Roboto,helvetica,arial,tahoma,sans-serif;
    display: block;
}
