﻿/*CONTENEDORES*/

body {
    background: #fff; /*Blanco*/
    line-height: 1;
    font-family: Calibri, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #393939; /*Gris oscuro*/
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

    html, body, body > form {
        height: 100%;
    }

input, textarea, select, button {
    font-family: Calibri, sans-serif;
    font-size: 15px;
}

input, textarea, select {
    outline-color: #393939; /*gris oscuro*/
}

input[type="text"], textarea, select {
    outline-color: #393939; /*gris oscuro*/
    padding-left:2px;
    padding-right:2px;
}


.contendorPrincipal {
    height: 100%;
}

.lineaCorporativa{
    margin:0;   
    border:0;   
    border-top: 1px solid #DB291D; /*corporativo*/
    position:relative;
    top: -10px;   
    width:150px;
    float:left;  
}

#wrapper {
    min-height: 100%;
    margin-bottom: -89px;
    height: auto !important;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 99px;
}

.main {
    min-height: 10px;
    display: block;
    min-width: 900px;
    width: 100%;
    margin: auto;
    position: relative;
}

#mainDiv {
    padding-top: 12px;
    padding-left: 45px;
    padding-right: 45px;
}

/*TEXTOS*/

h2 {
    font-size: 1.5em;
    line-height: 1.2em;
    font-weight: bold;
    color: #DB291D; /*corporativo*/
    margin-bottom: 10px;
}

h3 {
    color: #393939; /*Gris oscuro*/
    font-size: 13pt;
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.2em;
}

h4
{
    color: #393939; /*Gris oscuro*/
    font-size: 1.1em;
}


p {
    margin-bottom: 10px;
    line-height: 1.6em;
    text-align: justify;
}

/*ENLACES*/

a:link, a:visited {
    color: #4099c1; /*Azul*/
    text-decoration: none;
}

a:hover {
    color: #4099c1; /*Azul*/
    text-decoration: underline;
}



/*BOTONES*/

.button {
    background: #002e63; /*gris oscuro*/
    padding: 5px 14px;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 14px !important;
    text-decoration: none;
    vertical-align: middle;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    height: 34px !important;
    outline: none;
}

    .button:hover {
        border: 2px solid #393939; /*Gris oscuro*/
        background: #ffffff; /*blanco*/
        color: #393939; /*Gris oscuro*/
    }

    .dxbDisabled_GIDETheme  {
        background: #dfdfe2; /*Gris Medio*/
    }

        .dxbDisabled_GIDETheme:hover {
            background: #dfdfe2; /*Gris Medio*/
            border: 2px solid #dfdfe2; /*Gris Medio*/
            color: #b8b8b8;
        }

.buttonVolver {
    position: absolute;
    right: 35px;
    top: 20px;
    height: 32px;
    z-index: 2;
    text-align: center;
    width: 60px;
}

    .buttonVolver input {
        outline: none;
        border: 2px solid transparent;
    }

        .buttonVolver input:hover {
            border: 2px solid #393939; /*Gris oscuro*/
            border-radius: 20px;
        }


/*VALIDACION DE CONTROLES*/

/* span con textos de error */
.failureNotification {
    font-size: 13px;
    color: Red;
}
/* asterico junto al campo erroneo */
.AsteriscoError {
    color: #FF0000;
    line-height: 25px;
    font-size: 0px;
    width: 20px;
    background-image: url('/image/icons/validation.png');
    background-repeat: no-repeat;
    background-position-y: 10px;
    display: block;
    float: right;
}


.AsteriscoError-overlap{
    color: #FF0000;
    line-height: 25px;
    font-size: 0px;
    width: 20px;
    background-image: url('/image/icons/validation.png');
    background-repeat: no-repeat;
    background-position-y: 10px;
    display: block;
    float: right;
    position:relative;
    top:-30px;
}


/*MENSAJES DE AVISO - PARTE SUPERIOR DE LA PANTALLA*/
.bInfoUsuario {
    position: fixed;
    top: 0px;
    left: 0px;
    border-radius: 0px;
    background-color: #DB291D; /*corporativo*//*#474747;*/
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 1000001;
    height: 40px;
}

    .bInfoUsuario p {
        line-height: 35px;
        font-size: 13px;
    }

    .bInfoUsuario #lbInfo {
        margin: 5px 10px 5px 10px;
        font-size: 13px;
    }

.tablaFormulario > tbody > tr > td > select,
.tablaFormulario > tbody > tr > td > input,
.tablaFormulario > tbody > tr > td > textarea,
.inputFormulario {
    margin-bottom: 2px;
    margin-top: 2px;
    box-sizing: border-box;
    height: 25px;
    min-width: 90px;
    max-width: none !important;
    /*quitamos 25 px del ancho para el * validador */
    width: -moz-calc(100% - 25px);
    width: -webkit-calc(100% - 25px);
    width: calc(100% - 25px);
    border: 1px solid #CCCCCC;
    display: inline-block;
}
        .tablaFormulario > tbody > tr > td > input[type=checkbox] {
            height: initial !important;
            min-width: initial !important;
            width: initial !important;
            vertical-align: sub;
        }


.tablaFormulario .columnaEtiquetas {
    width: 170px !important;
}
.tablaFormulario .columnaEtiquetas2 {
    width: 60px !important;
}

.inputFormularioNoWidth {
    margin-bottom: 2px;
    margin-top: 2px;
    box-sizing: border-box;
    height: 25px;
    max-width: none !important;
    /*quitamos 25 px del ancho para el * validador */
    width: -moz-calc(100% - 25px);
    width: -webkit-calc(100% - 25px);
    width: calc(100% - 25px);
    border: 1px solid #CCCCCC;
    display: inline-block;
}


.tablaFormulario > tbody > tr > td {
    max-width: 195px;
    height: 35px;
}

.tablaFormulario {
    /*padding-left: 30px;*/
    width: 100%;
}

#divDir .tablaFormulario > tbody > tr > td:first-child {
    height: 50px;
}

/*
.tablaFormulario b
{
    margin-right: 5px;
    color: #00ADB6;
    margin-bottom: 13px;
    margin-left: 30px;
}

.tablaFormulario input
{
    margin-top: 7px;
    padding: 1px;
    height: 20px;
    margin-bottom: 7px;
}
*/
.destacar {
    font-weight: bold;
}


.BloqueAcciones {
    margin: 15px 0px 15px 0px;
    text-align: center;
}

#divPie {
    font-size: 11px;
    line-height: 13px;
    color: #888888;
}

.etiquetaNota {
    font-size: 11px;
    line-height: 10px;
    position: relative;
    float: left;
    margin-top: -20px;
    top: 10px;
}
/****CONTROL INFO****/
.imgCloseInfoPopup {
    position: absolute;
    top: 10px;
    right: 10px;
}

.bInfoAbierto {
    display:block !important;
}

.bInfo {
    position: relative;
}

.bInfoPopup {
    display: none;
    background-color: #083755;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 550px;
    color: #FFF;
    position: absolute;
    left: -500px;
    top: 32px;
    font-size: 12px !important;
    text-transform: none !important;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    z-index: 2222222222222;
    opacity: 0.9;
    text-align: center;
}

.bInfoAlerta {
    position: relative;
}

.bInfoPopupAlerta {
    display: none;
    background-color: #083755;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 550px;
    color: #FFF;
    position: relative;
    left: 0px;
    top: 0px;
    font-size: 12px !important;
    text-transform: none !important;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    z-index: 2222222222222;
    opacity: 0.9;
    text-align: left;
}

.detalleAlerta {
    max-height: 300px;
    min-height: 50px;
    overflow-x: auto;
    overflow-x: auto;
}
/* /////ELIMINAMOS COMPORTAMIENTO HOVER PARA QUE PERMANEZCA ABIERTO CUANDO SE PULSA EN EL
.bInfoAlerta img:hover + .bInfoPopupAlerta {
    display: block;
}

#Alerta .bInfo img:hover + .bInfoPopup {
    display: block;
}

.bInfo img:hover + .bInfoPopup {
    display: block;
}*/

span.flechaAbajo.info {
    position: absolute;
    top: -5px;
    left: 500px;
    width: 22px;
    height: 10px;
    background-image: url('../Image/flecha_arriba.png');
}

/* para que, cuando la info es más larga que la ficha en el tab, no se corte la info*/
.dxtcLite_GIDETheme > .dxtc-content
{
    overflow: visible;
}


.enlaceDetalleAlerta {
    font-size: 10px !important;
    color: #5b92b8;
    text-decoration: none;
}

    .enlaceDetalleAlerta:hover {
        color: #474747;
    }


.tbRepartosDesglose {
    text-align: right;
    background-color: #D8D8D8;
    border-style:hidden;
    width:90%;
    font-size:10pt;
}
.tbRepartosDesglosePorcentaje {
    text-align: right;
    background-color: #D8D8D8;
    border-style:hidden;
    width:100%;
    font-size:10pt;
}


.textboxNumero {
    text-align:right;
}

.RepartosIdentificadorGris {
    color: #b9b9b9; /*Gris Medio*/
    font-size: 30px;
    margin-right: 10px;
    display: inline-block;
    vertical-align:super;
    font-weight:bold;
}

.RepartosIdentificadorRojo {
    color: #DB291D; /*corporativo*/
    font-size: 30px;
    margin-right: 50px;
    display: inline-block;
    vertical-align:super;
    font-weight:bold;
}

.RepartosIdentificadorRojoSinMargen {
    color: #DB291D; /*corporativo*/
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align:super;
    font-weight:bold;
}


.card{width: 400px;height: 200px;}

.card .cardTitle{background-color:#ebebeb; padding:10px 6px 6px 6px; height:22px; border-bottom:1px solid #ccc;}
.card .cardContent{padding:6px; background-color:#fff;}


.titleConfRepartos {
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: bold;
    color: #DB291D; /*corporativo*/
    margin-bottom: 10px;
}

.inputColocar {
    float: left;
    margin-right: 5px;
}

.truncate {
  width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


