.drmFailure .badge {
    float: left;
    margin-right: 10px;
}

i#iOSPlay.fa.fa-play-circle-o.fa-5x, i#iOSPlay.fa.fa-play-circle.fa-5x {
    color: rgba(255, 255, 255, 1);
}

.outer-container {
    border: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.inner-container {
    border: 0;
    display: inline-block;
    position: relative;
    width: 100%;
}

#controlsContainer {
    direction: ltr;
}

#videoContainer, #video-container {
    position: relative;
    width: 100%;
}

#videoContainer .dropdown-menu {
    text-transform: uppercase;
}

video {
    z-index: 9998;
    width: 100% !important;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.8);
    background-size: cover;
}

video::-internal-media-controls-cast-button, video::-internal-media-controls-download-button {
    display: none !important;
}

video::-webkit-media-controls-toggle-closed-captions-button {
    display: none !important;
}

video::-internal-media-controls-text-track-list {
    display: none !important;
}

#video-controls {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    background-color: rgba(50, 50, 50, 0.3);
    height: 99%;
    width: 100%;
    z-index: 10;
    background-size: cover;
}

.video-overlay-floater {
    height: 50%;
    width: 100%;
    margin-bottom: -50px;
}

video::-internal-media-controls-cast-button, video::-internal-media-controls-download-button {
    display: none !important;
}

#bufferingSpinner {
    background: rgba(100, 100, 100, 0.4);
    display: none;
    margin: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

.bufferingSpinnerInner {
    color: #ffffff;
    font-size: 1.4em;
    display: inline;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    position: absolute;
    text-align: center;
}

.spinnerSvg {
    animation: rotate 2s linear infinite;
    height: 50%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.spinnerPath {
    /* Fall back for IE 11, where the stroke properties are not animated,
     but the spinner still rotates. */
    stroke: #d62d20;
    stroke-dasharray: 20, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%, 90% {
        stroke: #ffa700;
    }
}

#playpauseContainer {
    display: none;
    width: 100%;
    height: 95.5%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

#playPauseIcnBtn {
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    top: 50%;
    left: 50%;
    margin: -.75em 0 0 -.5em;
    text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.3);
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 5em;
    color: #fff;
    z-index: 9998;
}

#playPauseIcnBtn:before {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10% 20%;
    border-radius: 20px;
}

#sources {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

#sources .url {
    font-size: 11px;
}