﻿/*General*/
button {
    border-radius: 5px;
    color: white;
    font-size:10pt;
    height: 30px;
    text-align: center;
    width: 120px;
}

.botonCancelar {
    background-color: #f9ad4f;
    border: solid 1px #f9ad4f;
    color: white;
    margin-left: 10px;
    text-align: center;
}

    .botonCancelar:hover {
        background-color: #fba420;
    }

.botonAceptar {
    background-color: #abc759;
    border: solid 1px #abc759;
    margin-left: 15px;
    width: 140px;
}

    .botonAceptar:hover {
        background-color: #9fa946;
    }


.listaErrores {    
    margin-top:20px!important;
}


.listaErrores li {
    color:red;
    font-weight:bold;
}

/*
    ========================SECCIÓN GASTOS ADICIONALES==============================
*/
        .seccionGastosAd {
            margin-top: 25px;
        }
/*
    ========================LISTADO CONCEPTOS==============================
*/
.filaConceptosSel {
    margin-top: 15px;
}

    .filaConceptosSel > div > textarea, input[type=text], select {
        border: solid 1px #456A8A;
    }

    .filaConceptosSel span {
        font-weight:bold;
    }

    .filaConceptosSel select {
        border-radius: 7px;
        outline: none;
        width: 15vw;
    }

    .filaConceptosSel input[type=text] {
        border-radius:7px;
        outline:none;
        text-align:center;
        width:10vw;
    }

    .filaConceptosSel textarea {
        border-radius:7px;
        margin-left:4px;
        width:60vw;
    }

    .filaConceptosSel input[type=text], textarea, select :focus{
        outline:none;
    }

.campoObservaciones {
    display:flex;
    align-items:center;
}


#btnGastosAdAgregar {
    width:100px;
}

#btnGatosAdCancelar {
    width:100px;
}


.DeshabilitarControles {
    background-color: #E7EBEE;
    cursor: no-drop !important;      
}

    .DeshabilitarControles button {          
        border: none!important;
    }

/*.DeshabilitarControles :hover {
    background-color:none!important;
    border:none!important;
}

        .DeshabilitarControles button:hover {
            background-color: none !important;
            border: none !important;
        }
    */
/*
    ========================TABLA CONCEPTOS==============================
*/

.tituloTablaConceptos {
    font-size:12pt;
    font-weight:bold;
}

.tablaConceptos {
}


    .tablaConceptos thead {
        background-color: #89C08F; /*#456A8A;*/
        color:white;
    }

        .tablaConceptos thead th:nth-child(1) {            
            width: 40px;
        }

        .tablaConceptos thead th:nth-child(2) {
            width: 210px;            
        }

        .tablaConceptos thead th:nth-child(3) {
            width: 90px;           
        }

        .tablaConceptos thead th:nth-child(4) {
            width: 320px;
        }

    .tablaConceptos tbody tr {
        border-bottom: solid 1px #9DC8EE;
        padding-bottom: 4px;
        padding-top: 4px;
    }

        .tablaConceptos tbody tr td img {
            cursor:pointer;
            height:20px;
            margin:2px 0px 2px 6px;
            width:20px;
        }


.filaGranTotal {    
    font-size:12pt;
    font-weight:bold;
    text-align:right;
}

    .filaGranTotal span {
        background-color: #EEF954;
    }

#btnGuardarConceptos {
    width:140px!important;
}

/*BAJAS RESOLUCIONES*/
@media screen and (max-width:500px) {
    .filaConceptosSel {
        margin-top: 0px;
    }

    .filaConceptosSel > * {        
        margin-bottom:10px;
    }

    .filaConceptosSel select {
        width: 30vw;
    }

    .filaConceptosSel input[type=text] {
        text-align: center;
        width: 33vw;
    }

    .filaConceptosSel textarea {
        max-width:60vw;
        width: 40vw;
    }
}

/*=========================CUADRO DE DIÁLOGO==============================*/
.modal {
    top: 40%;
}

.modal-backdrop.fade {
    opacity: 0.5;
}

.modal-open .modal {
    opacity: 1;
}


.dialogoPregunta {
    font-weight: bold;
}

.dialogoPregunta-seccionBotones {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
}

    .dialogoPregunta-seccionBotones button {
        margin-left: 10px;
    }