﻿/***********

    Estilos comunes a todos los backgrid.  -> Los colores propies de backgrid están en los estilos -> backGrid_Style.css

************/

.bootstrap-select button {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/* Chartjs */
#chartjs-tooltip {
    opacity: 1;
    position: absolute;
    background: rgba(33, 33, 33, 1);
    color: white;
    -webkit-transition: all .1s initial;
    transition: all .1s ease;
    pointer-events: none;
    z-index: 9999;
}

.chartjs-tooltip-key {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
}
/********/

.textoconpuntossuspensivos {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Para la altura de los textarea .-> Beto 15Agosto2018*/
.form-control.multi-line,
.form-control.TextAreaDinamico {
    min-height: 60px !important;
    /*height: 200px !important;*/
}


/***  quitamos elt ext transform de los placeholder  **************/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-transform: none !important;
}

::-moz-placeholder { /* Firefox 19+ */
    text-transform: none !important;
}

:-ms-input-placeholder { /* IE 10+ */
    text-transform: none !important;
}

:-moz-placeholder { /* Firefox 18- */
    text-transform: none !important;
}
/*********   fin del text-transform *****************/



/****  Fin CSS filiberto *****************/


/*********   BOOTSTRAP FILIBERTO ***************/

.fancy-button {
    margin-top: 0px !important;
}


/*.btn-danger {
    background-color: #fff766 !important;
    border: 1px solid #fff766 !important;
    color: #430064 !important;
}


    .btn-danger:hover {
        background-color: #430064 !important;
        border: 0px !important;
        color: white !important;
    }*/


.btn-primary {
    /*background-color: white !important;
    border: 1px solid #430064 !important;
    color: #430064 !important;*/
}


.btn-primary:hover {
    /*background-color: #430064 !important;
    border: 1px !important;
    color: white !important;*/
}

.btn-info {
    /*background-color: #430064 !important;
    color: white !important;*/
}


.btn-info:hover {
    /*background-color: rgba(220, 220, 220, 0.85) !important;
    color: #430064 !important;*/
}

 .btn.btn-square-xs {
    width: 26px !important;
    height: 26px !important;
    padding: 0;
}



/*********  FIN BOOTSTRAP FILIBERTO ***************/
.CssCasillaCeldaPArteTrabajo_Posicion {
    position: absolute;
    top: -4px;
    right: 10px;
}

.CssCasillaCeldaPArteTrabajo_Posicion2 {
    position: absolute;
    top: -4px;
    right: 40px;
    width: 28px;
    height: 28px;
}


.CssCasillaCeldaPArteTrabajo_Posicion3 {
    position: absolute;
    top: -4px;
    right: 70px;
    width: 28px;
    height: 28px;
}


.CssBotonSeleccion_Editar {
    background: url('../../images/Iconos/CintaEditar.png') 0 -28px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_Editar_ON {
    background: url('../../Images/Iconos/CintaEditar.png') 0 0px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_Borrar {
    background: url('../../images/Iconos/CintaBorrar.png') 0 -28px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_Borrar_ON {
    background: url('../../Images/Iconos/CintaBorrar.png') 0 0px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_Ver {
    background: url('../../images/Iconos/CintaVer.png') 0 -28px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_Ver_ON {
    background: url('../../Images/Iconos/CintaVer.png') 0 0px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_CruzRoja {
    background: url('../../images/Iconos/CintaCruz.png') 0 -28px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_CruzRoja_ON {
    background: url('../../Images/Iconos/CintaCruz.png') 0 0px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_VistoBueno {
    background: url('../../images/Iconos/CintaVistoBueno.png') 0 -28px no-repeat;
    z-index: 4;
}

.CssBotonSeleccion_VistoBueno_ON {
    background: url('../../Images/Iconos/CintaVistoBueno.png') 0 0px no-repeat;
    z-index: 4;
}



.CssBotonFavorito_UnFrame {
    position: absolute;
    width: 28px;
    height: 28px;
}


.chosen-container {
    width:100% !important;
    height:40px !important;
}


.CssDisplayNone {
    display: none;
}


.CssClearBoth {
    clear: both;
}


.CssFloatLeft {
    float: left;
}


.CssFloatRight {
    float: right;
}


.CssCursorHoverPointer:hover {
    cursor: pointer;
}



/*****  textos de los errores de vslidación   ***/
.field-validation-error{
    color: red !important;
}


/*****  el loader  *******/
/* Center the loader */
#loaderLlamadasAjax {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000 !important;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}





.CssAltura8 {
    height: 8px;
}



.CssAltura4 {
    height: 4px;
}




.CssBotonEstandar {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 92%;
    height: 84%;
    line-height: 30px;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    margin-left: 5px;
    margin-top: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .CssBotonEstandar:hover {
        cursor: pointer;
        margin-left: 2px;
        margin-top: 2px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }


.no-capitalize, .no-capitalize > .btn {
    text-transform: none !important;
}

.icono-info {
    color: gray;
}

.icono-info:hover {
    cursor: pointer;
    color: darkslategray;
}

/*  para el plugin de Jquery DataTables */

/* Con esto marcamos las líneas de la tabla para que sean seleccionables. #f9edf9    */
table.dataTable tbody tr:hover {
    background-color: #f9edf9 !important;
    cursor: pointer;
}


/*   fin de DataTables */


.CssDivConTablaLineas {
    margin: 0 auto !important;
    width: 95% !important;
}

.div-BSswitch {
    align-items: center;
    display: flex;
    height: 42px;
}

.input-group .btn-group.bootstrap-select {
    width: 100%;
}