﻿/* VIDEO PLAYER CONTROL */

.videoPlayerControl {
    position: fixed;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.90);
    display: none;
    z-index: 9999999999;
}

.rodapeVideoPlayerControl {
    width: 100%;
    height: 60px;
    background-color: #333333;
    display: none;
    margin-bottom: 30px;
}

/* END VIDEO PLAYER CONTROL */

.dtplayer {
    width: 640px;
    height: 360px;
}

.flowplayer {
    background-image: url(../images/bgplayersala.png);
}

    .flowplayer .endscreen {
        top: 10%;
        left: 5%;
        position: absolute;
        width: 90%;
        height: 80%;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        font-size: 14px;
        background-color: rgba(51, 51, 51, 0.90);
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        /* do not show endscreen by default - a simpler, non-animated alternative would be:
   * display: none; */
        opacity: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        -webkit-transition: opacity .5s;
        -moz-transition: opacity .5s;
        transition: opacity .5s;
    }

        .flowplayer .endscreen h3 {
            font-size: 160%;
            font-weight: bold;
            color: #ccc;
            margin-top: 10%;
        }

        .flowplayer .endscreen h4 {
            font-size: 120%;
            color: #eee;
        }

        .flowplayer .endscreen .button {
            position: relative;
            background-color: #CD141A;
            padding: 20px 30px;
            margin: 15px 0;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            font-size: 110%;
            color: #FFFFFF;
            cursor: pointer;
            display: inline-block;
            -webkit-transition: background-color .1s;
            -moz-transition: background-color .1s;
            transition: background-color .1s;
            text-align: center;
            width: 400px;
            left: 50%;
            margin-left: -200px;
        }

            .flowplayer .endscreen .button:hover {
                background-color: #333333;
                color: #FFFFFF;
            }

            .flowplayer .endscreen .button:active {
                background-color: #009db2;
            }

        .flowplayer .endscreen .fp-toggle {
            display: block;
            color: #FFFFFF;
            cursor: pointer;
        }

            .flowplayer .endscreen .fp-toggle:hover {
                color: #FFFFFF;
            }

    /* overlay player screen when video is finished */
    .flowplayer.is-finished .endscreen {
        /* the player UI has z-index: 11, overlay it */
        z-index: 12;
        /* show endscreen - a simpler alternative would be:
   * display: block; */
        opacity: 1;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    }




/**
Botões de Controles de Velocidade
***/

/* initially hide speed buttons while they cannot be used */
.is-splash.flowplayer .buttons, .is-loading.flowplayer .buttons {
    display: none;
}

.flowplayer .buttons {
    position: absolute;
    left: 10px;
    width: 50px;
    top: 30px;
    z-index: 12; /* make clickable */
    display: block;
    opacity: 1;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.is-mouseout.flowplayer .buttons {
    opacity: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    /* same transition as other ui elements like fullscreen */
    -webkit-transition: opacity .15s .3s;
    -moz-transition: opacity .15s .3s;
    transition: opacity .15s .3s;
}

.flowplayer .buttons span {
    padding: 1ex;
    margin: 0.5ex;
    width: 4em;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    color: #fff;
    background-color: rgba(238, 238, 238, 0.57);
    cursor: pointer;
    -webkit-border-radius: 1ex;
    -moz-border-radius: 1ex;
    border-radius: 1ex;
}

    .flowplayer .buttons span.active {
        color: #00a7c8;
        background-color: rgba(102, 102, 102, 0.69);
        cursor: default;
    }

.dtplayerhls {
    position: fixed;
    top: 20%;
    left: 50%;
    width: 580px;
    max-width: 580px;
    margin-left: -290px;
    height: 334px;
    background-color: black;
}

    .dtplayerhls .info {
        background-color: transparent;
        position: absolute;
        top: 50px;
        opacity: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        transition: all 0.1s;
        z-index: 11;
        padding: 15px;
        color: #333333;
        font-weight: bold;
        font-size: 12px;
    }

.panelProgressoVisualizacao {
    height: 20px;
    text-align: center;
    font-family: Tahoma;
    font-size: 0.8em;
    font-style: normal;
    line-height: normal;
    color: #FFFFFF;
}

.divProgressoVideo {
    width: 100%;
}

.txtPanelProgressoVisualizacao {
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    font-family: Tahoma;
    font-size: 0.8em;
    text-transform: uppercase;
    font-style: normal;
    line-height: normal;
    background: #333333;
    color: #FFFFFF;
    border: none;
}

.styleResultVisualizacao {
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    color: rgba(204, 204, 204, 0.50);
}

.btcloseplayer {
    position: fixed;
    top: 20%;
    margin-top: -35px;
    margin-left: -290px;
    left: 50%;
    height: 35px;
    width: 600px;
    text-align: right;
}

    .btcloseplayer i {
        color: #ffffff;
        cursor: pointer;
    }

.flowplayer .fp-share {
    display: none !important;
}

.flowplayer .fp-playlist {
    display: none !important;
}
