﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200&display=swap');



:root {
    --crown: #F36E26;
    --azul-chrome: #0075ff;
}



.header {
    background: rgb(255, 255, 255);
    width: 100%;
    position: fixed;
    z-index: 1;
}
.login {
    height: 250px;
    background-color: white;
    border-radius: 5px;
    width: 400px;
    margin-left: 25%;
    /*padding-left: 10px;*/
    top: 100px;
}

body > div.ui-widget-overlay.ui-front {
    background: #e6e6e6;
    opacity: .3;
}
/* Botones azules que hay encima de los datatable */
.btn-datatable {
    color: #007cbf;
    background-color: white;
    border-color: #007cbf;
}

.btn-subpantalla {
    margin-bottom: 10px;
    margin-right: 8px;
    background: #2A2828;
    text-decoration: none;
    color: #ffffff !important;
}

/* Botones azules que hay encima de los datatable a la derecha */
.btn-procesar {
    color: #007cbf !important; /* Tiene important porque jquery-ui.min.css:7 anula esta propiedad si está dentro de un Popup */
    background-color: white;
    border-color: #007cbf;
    float: right;
}

.invalid {
    background-color: #fcc;
}

.naranja {
    color: var(--crown);
}


/* En firefox los inputs de fecha se ven mal con el CSS por defecto. Con esto se sobreescriben las reglas CSS conflictivas solo si el navegador es firefox. */
@supports (-moz-appearance:none) {
    input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
        line-height: 20px;
        width: auto;
    }
}


/* Hacer que solo se vea el texto de los inputs (excepto botones) de una tabla con clase table-invisible-input */
table.table-invisible-input input:not([type='button']):not([type='reset']) {
    background-color: transparent;
    border: none;
}


table.dataTable thead {
    background-color: dimgray;
    color: white;
}

table.dataTable tbody {
    background-color: darkgray;
    margin: 0;
    padding: 0;
}

table-bordered tr {
    height: 30px;
}

.My-ColorLink {
    color: dimgray;
}

#barraLogos {
    padding-top: 0;
    padding-bottom: 5px;
    width: 100%;
    background-color: white;
}

#menu {
    border: none;
    border: 0px;
    margin: 0px;
    padding: 0px;
}
.header__container {
    width: 100%;
    padding: 0.5rem 2rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.3);
    z-index: 10000000;

    background-color: white;

    position:fixed;
    top:0;
    left:0;
    right:0;
}

#nav {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.menu__logoscontainer {
    width:fit-content;
   
    display:flex;
    flex-flow: row nowrap;
    justify-content:flex-start;
    align-items:center;
    gap:3rem;   
}
.menu__div {
    width: min-content;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

#logocrownet {
  /*  object-fit: contain;*/
    width: auto;
    height: 52px;

}

#imagenempresa {
   /* object-fit: contain;*/
    width: auto;
    height: 52px;
}
/*#logocrownet {
    object-fit:contain ;
        width:120px; 
        height:50px;
}*/

/*#imagenempresa {
    object-fit: contain;
    width: 120px;
    height: 50px;
}*/
.menu__div2{
    display:flex;
    flex-flow: row nowrap;
    justify-content:flex-end;
    align-items: center;
        
    width:min-content;
}

#nav li {
    list-style: none;
    width: fit-content;
    position: relative;
    /*background: linear-gradient(0deg, #2374ab 0%, #68afe0 100%);*/
    background-color: #000B81;
    border-radius: 20px;
}

    #nav li a {
        display: inline-block;
      
        padding: 1.5rem;
        text-decoration: none;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        font-family: "all-round-gothic", sans-serif;
    }

    #nav li li {
        width: 100%;
        background: #2d3142;
    }

        #nav li li a {
            width: 100%;
            display: block;
            font-size: 14px;
            border-radius: 8px;
            white-space: nowrap;
            padding: 1rem;
            font-weight: 400;
            text-align:start;
        }

    #nav li:hover {
        /*background: linear-gradient(0deg, #2374ab 0%, #cde4f5 100%);*/
        background-color: #3041ff;
    }
    #nav li li:hover {
        /*background: linear-gradient(0deg, #2374ab 0%, #68afe0 100%);*/
        background-color: #3041ff;
    }
    #nav > div:nth-child(1) > a > img {
       /* position: relative;
        left: -19%;
        height: 60px;
        top: -32%;*/
    }
    
/*--- Sublist Styles ---*/
#nav ul {
    position: absolute;
    padding: 0;
    top: 100%;
    left: 50%;
    display: none;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
   
    transform: translateX(-50%);
}

    /*--- Hide Sub Sublists ---*/
#nav li:hover ul ul {
    display: none;
}

    /*--- Sublevel UL's display and position on hover ---*/
#nav li:hover ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 1rem;
    background-color: #2d3142;
    border-radius: 8px;
}

    #nav li li:hover ul {
        /*margin-left: 150px;
        margin-top: -35px;*/
        /*display:block;*/
        
    }


/*Media Laptop, (1475px)*/
@media screen and (max-width: 1475px) {


    #nav li a {
        padding: 1rem;
        font-size: 12px;
    }

    #logocrownet {
        width: auto;
        height: 40px;
    }

    #imagenempresa {
        width: auto;
        height: 40px;
    }

    #nav li li a {
        font-size: 12px;
        padding: 0.75rem;
    }
}
    /*Media Laptop, (1130px)*/
@media screen and (max-width: 1130px) {
   

    #nav li a {
        padding: 0.75rem;
        font-size: 10px;
    }

    #logocrownet {
        width: auto;
        height: 30px;
    }

    #imagenempresa {
        width: auto;
        height: 30px;
    }
        
        #nav li li a {
          font-size: 10px;
          padding: 0.5rem;
           
        }

    
}

/*Media Laptop, (930px)*/
@media screen and (max-width: 930px) {
    .header__container {
        align-items: flex-start;
    }

    #nav li a {
        padding: 0.5rem;
        font-size: 10px;
    }

    #logocrownet {
        width: auto;
        height: 25px;
    }

    #imagenempresa {
        width: auto;
        height: 25px;
    }

    #nav li li a {
        font-size: 10px;
        padding: 0.5rem;
    }

    .bi bi-calendar3 {
        width: 13px;
        height: 13px;
    }
}




 
    
    
   

   

    