/*
###############################################
####### ESTILO MODAL MANTENEDOR AGREGAR #######
###############################################
*/

.modalAgregar {
    background-color: rgba(0,0,0,.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    display: none;
    z-index: 40;
}

#modal_contenido_agregar {

}

.conten_modal_crud {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 144rem;
    width: 95%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#conten_modal_agregar {
    transition: all 1s;
    position: absolute;
    border-radius: .5rem;
    min-height: 20rem;
    z-index: 50;
    display: none;
    width: 100%;
}

#conten_modal_agregar h1 {
    font-size: 2rem;
    color: var(--claro);
    font-weight: 400;
}

#conten_modal_agregar h2 {
    font-size: 1.8rem;
    color: var(--claro);
    font-weight: 400;
}

.modal_contenido_agregar {
    padding: 5px;
}

#conten_modal_mensaje_superior_agregar {
    margin: 0 auto;
    text-align: right;
    display: flex;
    border-bottom: 2px solid  #017A9F;
    justify-content: space-between;
    background-color:  #EE5601;
    border-radius: .5rem .5rem 0 0;
    text-transform: uppercase;
}

#conten_titulo_modal_agregar {
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

#lbl_titulo_modal_agregar {
    color: #fff;
    padding: 7px 15px 7px 15px;
    font-size: 1.4rem;
}

#btn_cerrar_modal_agregar {
    padding: 7px 15px 7px 15px;
    text-decoration: none;   
    font-size: 1.8rem;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

#coten_modal_agregar_central {
    display: flex;
    justify-content: space-around;
    padding: .5rem;
    height: 90%;
}

#conten_modal_agregar_izq {
    border: 1px solid #d9d9d9;
    padding: .5rem .5rem 1rem .5rem;
    width: 79%;
    border-radius: .5rem;
}

#modal_contenido_agregar {
    display: flex;
}

#conten_modal_agregar_der {
    border: 1px solid #d9d9d9;
    width: 20%;
    padding: .5rem .5rem 1rem .5rem;
    border-radius: .5rem;
}

#conten_form_info_lateral_agregar {
    width: 100%;
    border-radius: .5rem;
    padding: .3rem;
}

#conten_info_form_agregar {
    border: 1px solid #d9d9d9;
    height: 90%;
    border-radius: .5rem;
    max-height: 30rem;
    overflow: hidden;
}

#conten_acciones_form_agregar {
    display: flex;
    justify-content: space-around;
    padding: .5rem;
    flex-wrap: wrap;
    height: auto;
}

.btn_cotizacion{
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.btn_nota_pedido{
    width: 100%;
}

.btn_nota_pedido input{
    width: 100%;
}

.btn-deshabilitado{
    pointer-events: none;
    cursor: default;
    filter: brightness(0.7);
}

.modalAgregar .pestana_panel label.seleccionada{
    background-color: #EE5601;
    color: white;
}

#frm_crear_cuenta_test {
    margin: 0 auto;
    margin-top: 5rem;
/*    border: 5px solid white;*/
    display: flex;
    flex-wrap: wrap;
    max-width: 40rem;
    height: 30rem;
}

#frm_crear_cuenta_test input {
    height: 4rem;
    width: 100%;
    outline: none;
    padding: .5rem;
    font-size: 1.8rem;
    color: var(--gris);
    font-weight: 300;
    border-radius: .4rem;
}


#frm_crear_cuenta_test label {
    height: 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--claro);
    background-color: var(--primario);
    border-radius: .4rem;
    font-size: 1.8rem;
}

#frm_crear_cuenta_test label:hover {
    cursor: pointer;
    background-color: var(--primario_hover);
    color: var(--oscuro);
    transition: all .4s;
}

#cerrar_modal_agregar_cuenta_test {
    display: flex;
    justify-content: flex-end;
    margin-top: -10rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--claro);
}

@media (min-width:480px) {
    #cerrar_modal_agregar_cuenta_test {
        width: 40rem;
        margin-left: 50rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--claro);
    }
}

@media (min-width:1768px) {
    #cerrar_modal_agregar_cuenta_test {
        width: 45rem;
        margin-left: 50rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--claro);
    }
}