/*!
* OneUI - CSS Complementar - Netpoint - Copyright 2017
* @author Felipe Marciano
*/

/* Regras adicionais */
/* -------------------------------- */

    @media (max-width: 767px) {
        .push-15-b-xs { margin-bottom: 15px; }
        .push-15-t-xs { margin-top: 15px; }
    }

    @media (min-width: 768px) {
        .push-15-b-sm { margin-bottom: 15px; }
        .push-15-t-sm { margin-top: 15px; }
    }

    @media (min-width: 992px) {
        .push-15-b-md { margin-bottom: 15px; }
        .push-15-t-md { margin-top: 15px; }
        .padding-50-t-md { padding-top: 50px !important; }
    }

    @media (min-width: 1200px) {
        .push-15-b-lg { margin-bottom: 15px; }
        .push-15-t-lg { margin-top: 15px; }
    }

    .push-40 { margin-bottom: 40px !important; }
    .push-40-t { margin-top: 40px !important; }
    .push-40-l { margin-left: 40px !important; }
    .push-40-r { margin-right: 40px !important; }


/* Fix Sidebar Header */
/* -------------------------------- */

    .side-header {
        height: 65px;
    }

    .side-header img {
        margin-top: 2px;
    }

    .nav-header{
        padding: 2px 0px 0px 0px;
    }

/* Fix Header */
/* -------------------------------- */

    #header-navbar {
        height: 65px;
    }

/* Pequenos acertos */
/* -------------------------------- */

    table.table th i.fa { font-size:0.9em; }

    #lblEsqueceuRetorno {
    	display:block;
    }


    #alert-senha {
    background: rgba(0,0,0,0.5);
    }

    #vsEsqueceu {
    color: #f00;	
    }


/* Upload */
/* -------------------------------- */

    #divUploadContainer {
        cursor: pointer;
    }
    #divUploader {
        background-color: #f9f9f9;
        border: dashed #999999 1px;
        border-radius: 4px;
        height: 100%; 
        margin-bottom: 20px; 
        width: 100%;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    #divUploader:hover {
        background-color:rgba(70,195,123,0.8); /* #46c37b */
        border-color: #fff;
        color:#fff;
    }

    #divUploader > div { 
        margin-bottom: 20px;
        padding: 6em; 
        text-align: center; 
    }


/* PosterFrame */
/* -------------------------------- */

    .content-imgPosterframe {

    }

    .imgPosterframe {
        max-width: 50%;
    }

    input[type="file"] { 
        display: inline-block;
    }




/* Paginacao */
/* -------------------------------- */

    .custom-pagination a, .custom-pagination span {
    	position: relative;
        float: left;
        padding: 5px 10px;
        margin-left: 4px;
        color: #000;
        text-decoration: none;
        background-color: #fff;
        font-size: 12px;
        font-style: italic;
        line-height: 1.5;

    }

    .custom-pagination span:first-child { background: none; }

    .custom-pagination a:hover {
    	color: #5c90d2;
        -webkit-box-shadow: 0 2px #5c90d2;
        box-shadow: 0 2px #5c90d2;
      }
  
/* Esqueceu sua senha */
/* -------------------------------- */

    #lblRedefineRetorno{
        color:#ff0000;
    }

/* Edicao do video - Fundo */
/* -------------------------------- */

    .bg-degrade {
        background: rgba(122,114,112,1);
        background: -moz-linear-gradient(top, rgba(122,114,112,1) 0%, rgba(0,0,0,1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(122,114,112,1)), color-stop(100%, rgba(0,0,0,1)));
        background: -webkit-linear-gradient(top, rgba(122,114,112,1) 0%, rgba(0,0,0,1) 100%);
        background: -o-linear-gradient(top, rgba(122,114,112,1) 0%, rgba(0,0,0,1) 100%);
        background: -ms-linear-gradient(top, rgba(122,114,112,1) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(to bottom, rgba(122,114,112,1) 0%, rgba(0,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7a7270', endColorstr='#000000', GradientType=0 );
    }

/* Button dentro de span, dentro de input-group, dentro de formulario */
/* -------------------------------- */

    .input-group .input-group-addon button {
        -appearance: none !important; -webkit-appearance: none !important;
        background: none; border: none;
    }

/* Remocao de cabecalhos */
/* -------------------------------- */

    .content-pagetitle { display: none; }

/* Fix container degrade c/ altura maior do que o video
   Efeito realizado via JS */
/* -------------------------------- */

    .content-phPlayer { }

/* Upload Progressbar
   Adicionando padding na progressbar de upload para texto nao ficar 'grudado' na lateral esquerda */
/* -------------------------------- */

    #divArquivo .progress.active > div { 
        overflow: hidden;
        padding-left:10px; 
    }

/* Fix adicionando margem superior nas tabelas responsivas quando window < 767px */
/* -------------------------------- */

@media screen and (max-width: 767px) {
    .table-responsive { margin-top: 15px; }
}

/* Fix input type file saindo do container */
/* -------------------------------- */

@media screen and (max-width: 767px) {
    input[type="file"] { width: 100%; }
}

/* Fix background de wrapper de alerts e btns
   quando nao podem estar fora de content-block */
/* -------------------------------- */

    .alert-wrapper,
    .btn-wrapper { background-color: #f5f5f5; }

/* Fix criacao de 'pull-' (inverso de 'push-' presente no OneUI Bootstrap) */
/* -------------------------------- */

    .pull-10   { margin-bottom:-10px; }
    .pull-10-t { margin-top:-10px; }
    .pull-10-r { margin-right:-10px; }
    .pull-10-l { margin-left:-10px; }
    .pull-15   { margin-bottom:-15px; }
    .pull-15-t { margin-top:-15px; }
    .pull-15-r { margin-right:-15px; }
    .pull-15-l { margin-left:-15px; }
    .pull-20   { margin-bottom:-20px; }
    .pull-20-t { margin-top:-20px; }
    .pull-20-r { margin-right:-20px; }
    .pull-20-l { margin-left:-20px; }


/* Barra abaixo do header do playnow */
/* -------------------------------- */
.grad1 {
    height: 1px;
    width: 100%;
    position: fixed;
    z-index: 1032;
    background: blue; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, orange, yellow, green, cyan, blue, violet); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, orange, yellow, green, cyan, blue, violet); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, orange, yellow, green, cyan, blue, violet); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, orange, yellow, green, cyan, blue, violet); /* Standard syntax (must be last) */
}

/* Lista de imagens  */
/* ----------------- */
.file-card {
    background-color: #f9f9f9;
    border-radius: 4px;
}

.file-card .col-l,
.file-card .col-r {
    display: inline-block;
    padding: 10px;
    vertical-align: top;
}

.file-card .col-r {
    padding-left: 0;
    width: calc( 100% - 145px );
}

.file-card .imgThumbRound {
    background-color: rgba(0,0,0,0.05);
    background-repeat: round;
    border-radius: 4px;
    cursor: pointer;
    height: 120px;
    max-width: 100%;
    width: 120px;
}

.file-card .imgThumb {
    background-color: rgba(0,0,0,0.05);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 4px;
    cursor: pointer;
    height: 120px;
    max-width: 100%;
    width: 120px;
}

.imgThumbPhoto {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 4px;
    cursor: pointer;
    height: 120px;
    max-width: 100%;
    width: 180px;
}

.file-card .input-group-addon {
    cursor: pointer;
}

    .file-card .input-group-addon:focus,
    .file-card .input-group-addon:hover {
        background-color: #337ab7;
        border-color: #337ab7;
        color: #fff;
    }

.file-card .form-control[disabled] {
    cursor: auto;
}

    .howuploadedimage-image {
    width: 100%;
}

.switch.switch-disabled input + span {
    background-color: pink !important;
}