﻿.titulo-color {
    color: #db4532;
    /*width: 50px;*/
}

.parrafo-color {
    color: #757474;
}

.boton-atras {
    color: #000000;
    background-color: #EEEAE9;
    border-color: #EEEAE9;
    padding: 8px 12px;
    border-radius: 5px;
}

    .boton-atras:hover {
        color: #000000;
        background-color: #D0D0D0;
        border-color: #D0D0D0;
        text-decoration: none;
    }

.boton {
    color: #fff;
    background-color: #db4532;
    border-color: #db4532;
    padding: 8px 12px;
    border-radius: 5px;
}

    .boton:hover {
        color: #fff;
        background-color: #EA3A23;
        border-color: #EA3A23;
        text-decoration: none;
    }

    .boton:focus, .boton.focus {
        box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    }

.boton-agregar {
    color: #fff;
    background-color: #1AA125;
    border-color: #1AA125;
    padding: 8px 10px;
    border-radius: 3px;
}

    .boton-agregar:hover {
        color: #fff;
        background-color: #1C8525;
        border-color: #1C8525;
        text-decoration: none;
    }

    .boton-agregar:focus, .boton-agregar.focus {
        box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    }

.boton-quitar {
    color: #fff;
    background-color: #D81212;
    border-color: #D81212;
    padding: 1px 7px;
    border-radius: 3px;
}

    .boton-quitar:hover {
        color: #fff;
        background-color: #BF2020;
        border-color: #BF2020;
        text-decoration: none;
    }

    .boton-quitar:focus, .boton-quitar.focus {
        box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    }

.titulo-color:hover {
    color: #db4532;
}

.cuadro {
    border: 1px solid #D3D0D0;
    border-radius: 5px;
}

.prueba {
    width: 50%;
}

.overlay {
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*94171 - JJS*/
    display: flex;
    justify-content:center;
    align-items: center;
}

.message {
    background-color: white;
    /*position: fixed;
    top: 20%;
    left: 40%;
    margin-top: -50px;
    margin-left: -50px;*/
    width: 350px;
    /*height: 230px;*/
    min-height: 230px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    padding: 25px 0px;
    border-radius: 5px;
    box-shadow: 0 0 20px 13px;
}

.imgIncorrecto {
    background: url(../App_Themes/img/img_error-02.png) center no-repeat #fff;
    padding-top: 10px;
    background-size: contain;
    height: 50px;
}

.imgCorrecto {
    background: url(../App_Themes/img/img_Ok_01.png) center no-repeat #fff;
    padding-top: 10px;
    background-size: contain;
    height: 50px;
}

#mensajeIncorrecto {
    padding: 10px 5px;
    margin: 8px;
}

#mensajeInactivo {
    padding: 10px 5px;
    margin: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}

.mensajeError {
    background-color: #C8434C;
    color: #fff;
    padding: 5px;
    position: absolute;
    border-radius: 5px;
    top: -1px;
    border: 1px solid #C10713;
    transition: opacity 1s;
    opacity: 1;
    font-size: 13px;
}

    .mensajeError::after {
        content: " ";
        position: absolute;
        top: 40%;
        right: 100%;
        border-style: solid;
        border-width: 5px;
        border-color: transparent #C8434C transparent transparent;
    }

.navegacion {
    width: 100%;
    background-color: #FCFCFC;
    /*border-radius: 3px;*/
    border-bottom: 3px solid #EA3A23;
}

    .navegacion ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

.menu > li {
    position: relative;
    display: inline-block;
}

    .menu > li > a {
        display: block;
        padding: 10px 8px;
        text-decoration: none;
        color: #000000;
    }

.menu li a:hover {
    background-color: #EA3A23;
    color: #fff;
    transition: all .2s;
}

.menu-list {
    position: absolute;
    display: block;
}

    .menu-list li a {
        display: block;
        padding: 10px 8px;
        text-decoration: none;
        color: #000000;
        background-color: #FCFCFC;
    }

/*#submenu {
    position: relative;
    width: 180px;
    padding: 0px;
    margin: 0px;
}*/

#submenu {
    background: #FCFCFC;
    color: #fff;
    padding: 0px;
    position: absolute;
    border-radius: 5px;
    top: 50px;
    right: 5px;
    width: 190px;
    height: 90px;
    border: 1px solid #d8d4d4;
    transition: opacity 1s;
    opacity: 1;
    font-size: 15px;
    /*JJS*/
    z-index: 999;
}

    #submenu::after {
        content: " ";
        position: absolute;
        bottom: 100%;
        right: 15%;
        border-style: solid;
        border-width: 5px;
        border-color: transparent transparent #d8d4d4 transparent;
    }

.gifCargando {
    background: url(../App_Themes/img/Preloader_2.gif) center no-repeat #fff;
    height: 110px;
}

#mensajeCargando {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}

.imgOK {
    background: url(../App_Themes/img/img_Ok_01.png) center no-repeat #fff;
    background-size: contain;
    padding-top: 2px;
    margin-top: 2px;
    height: 75px;
}

#mensajeEnviado {
    padding: 3px 10px;
    margin: 3px;
}

.mensajeCaso_Error {
    padding: 10px 5px;
    margin: 8px;
}

#imgIncorrecto_Caso {
    background: url(../App_Themes/img/img_error-02.png) center no-repeat #fff;
    background-size: contain;
    padding-top: 10px;
    height: 55px;
}

.message2 {
    background-color: white;
    /*position: fixed;
    top: 35%;
    left: 40%;
    margin-top: -50px;
    margin-left: -50px;*/
    width: 420px;
    /*height: 280px;*/
    min-height: 280px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    padding: 25px 0px;
    border-radius: 5px;
    box-shadow: 0 0 20px 20px;
}

#divTablaCasos {
    height: 160px;
    width: 1078px;
    cursor: pointer;
    padding: 0px;
    background: #f5f1f1;
    overflow: auto;
}

.divStyle{
    width: 1078px;
    border: 1px solid #000000;
    cursor: pointer;
    padding: 0px;
    /*background: #f5f1f1;*/
    overflow-x: auto;
}

.headerFixed {
    position: absolute;
    font-weight: bold;
}

.tamañoFilas {
    padding: 3px 0px 3px 6px;
}

#headerDiv {
    border: 1px solid #000000;
    width: 1078px;
    height: 36px;
    color: #DB4532;
    background: #F9DED6;
    /*border-left: 1px solid #000000;
    border-right: 1px solid #000000;*/
    cursor: pointer;
    background: #f5f1f1;
    overflow-y: hidden;
    overflow-x: auto;
}

.FixedHeader {
    position: absolute;
    font-weight: bold;
}

.cargando {
    position: absolute;
    top: 70%;
    left: 40%;
    margin-top: -50px;
    margin-left: -50px;
    text-align: center;
    font-size: 15px;
    padding: 25px 0px;
}

#gifCargandoTabla {
    background: url(../App_Themes/img/loader.gif) center no-repeat;
    background-size: contain;
    padding-top: 10px;
    height: 55px;
}

.imgValidacion {
    background: url(../App_Themes/img/img_error-02.png) center no-repeat #fff;
    padding-top: 10px;
    background-size: contain;
    height: 50px;
}

.errorValidacion {
    border: 1px solid #f44336;
    background: url('../App_Themes/img/ic_error.png') 100% 50% no-repeat;
    padding-right: 20px;
}

.inputConsultar {
    background: url('../App_Themes/img/buscar_icon.png') 95% no-repeat;
    background-size: 22px;
    padding-right: 40px;
}

.icon-arrow{
    display:none;
	padding:20px;
    background:rgba(255, 255, 255, 0.2);
	cursor:pointer;
	position: fixed;
	bottom:10px;
	right:10px;
}

#tblEstadoCasos > thead > tr > th {
    text-align: center;
}
