/* ------------------------ navbar style--------------------- */
.header-container {
    background: #fff;
    box-shadow: -1px 4px 20px 1px #f1f1f185;
    opacity: 0.90;
}

.left-menu.hide {
    width: 0;
}

header.header {
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.header-left {
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 240px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 0;
    /*background:var(--second-color);*/    /* var(--main-gradient);*/
    color: var(--white-color);
}

.titulo {
    color: #000; /* var(--second-color);*/
    margin-left: 30px;
    font-size: 14px;
    font-weight: 600;
}

a.sidebarCollapse {
    padding-left: 15px;
    color: #999;
    font-size: 20px;
}

.header-right {
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    max-width: 650px;
    max-height: 48px;
}

a.logout-icon {
    color: #999;
    font-size: 20px;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    padding-right: 20px;
}

@media screen and (max-width: 700px) {
    .user-name {
        display: none;
    }
}

/* ------------------------- sidevar start style----------------- */

.left-menu {
    height: calc(100% - 50px);
    width: 240px;
    position: fixed;
    box-shadow: 3px -1px 19px 1px #efeeee;
    overflow-y: scroll;
    transition: .3s;
    margin-top: 0px;
    background: var(--white-color);
    opacity: 0.90;
    white-space: nowrap;
}

nav.animated {
    position: relative;
}

.left-menu::-webkit-scrollbar {
    width: 6px;
    height: 2rem;
    display: none;
}

.left-menu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    /*background:var(--second-color);*/   /* var(--vertical-gradient); */
    /* background: rgba(180, 8, 112, 1) 0%; */
}

.left-menu::-webkit-scrollbar-track {
    padding-bottom: 50px;
}

ul#sidebar {
    margin: 0;
    padding: 0;
}

ul#sidebar li {
    transition: .2s;
    border-left: 5px solid #fff;
}

ul#sidebar li a {
    display: block;
    padding: 7px 15px;
    transition: .1s;
    font-size: 12px;
    font-weight: 500;
    color: #636262;
}

ul#sidebar li a:hover {
    color: var(--main-color);
    background: #f7f7f7;
}

ul#sidebar li:hover {
    border-left: 5px solid var(--main-color) !important;
}

ul#sidebar li a i {
    padding-right: 7px;
    font-size: 14px;
}

li.active {
    border-left: 5px solid var(--main-color) !important;
}

/* li.active a{
    color: var(--main-color) !important;
    background: #f9f9f9;
} */

/*----------------------- content -------------------- */

/* ----- input ---------- */
.form__group {
    position: relative;
    padding: 10px 0 20px 0;
    width: 100%;
}

.select_group {
    position: relative;
    padding: 30px 0 20px 0;
    width: 100%;
    height: 76.10px;
}

.form__field {
    font-family: var(--body-font);
    width: 100%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 15px;
    color: black;
    padding-top: 17px;
    background: transparent;
    transition: border-color 0.2s;
    resize: none;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 15px;
    cursor: text;
    top: 20px;
    color: var(--second-color);
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 15px;
    pointer-events: none;
}

.label_select {
    position: absolute;
    top: 0px;
    display: block;
    transition: 0.2s;
    font-size: 15px;
    /* color: transparent; */
    pointer-events: none;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 500;
    border-width: 3px;
    border-image: var(--main-gradient);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: grey;
    font-weight: 500;
}

/* reset input */
.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

/* ----- end input --------- */


/* --------- button -------- */
button {
    padding: 5px 20px;
    border: unset;
    border-radius: 15px;
    color: var(--white-color);
    z-index: 1;
    background: var(--second-color);
    position: relative;
    font-weight: 500;
    font-size: 15px;
    transition: all 250ms;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: var(--main-color);
    z-index: -1;
    transition: all 250ms;
}

/*button:hover {
    color: #e8e8e8;
}*/

button:hover::before {
    width: 100%;
}

/* ------- end button -------- */

.content-container {
    margin-left: 240px;
    margin-top: 51px;
    transition: .3s;
    padding: 50px 100px 0 100px;
    display: grid;
    align-content: space-between;
    height: 100%;
}


.content-container.hide {
    margin-left: 20px;
}



div#calendar.hide {
    margin-left: 20px;
}

.footer-container {
    margin-left: 240px;
    transition: margin-left .3s;
    padding: 50px 100px 0px 100px;
    z-index: 0;
    /*color: var(--main-color);*/
}

.footer-container.hide {
    margin-left: 20px;
}

.footer-container,
.footer-container.hide {
    transition: margin-left .3s;
}

h1 {
    font: var(--body-font);
    font-size: var(--h1-font-size) !important;
    font-weight: 700 !important;
    padding-bottom: 20px;
    color: var(--white-color);
}


div.card-form {
    margin: auto;
    max-width: 600px !important;
}

div.card {
    padding: 15px;
}

p {
    font-size: 14px;
}

h2.resaltado {
    font-size: var(--h2-font-size);
    color: var(--main-color);
    padding: 1rem 0;
}

div.datos-container span {
    font-size: 13px;
}

p.mensaje {
    color: var(--main-color);
    font-weight: 500;
    font-size: 14px;
}

p#textoNom {
    padding-top: 4px;
}

select {
    padding-top: 0px !important;
}

img.img-ari {
    max-width: 95%;
    margin: auto;
}

/*--------------------- tabs ------------------------*/

.nav-tabs {
    border-bottom: 0 !important;
}

.card-tabs {
    border-radius: 20px !important;
    border-top-left-radius: 0 !important;
    padding: 30px !important;
}

.nav-link-tabs {
    color: white !important;
    font-weight: bold;
    background: var(--main-gradient) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.nav-link-tabs:hover {
    font-size: 15px !important;
}


.nav-link-tabs.active {
    background: white !important;
    color: var(--second-color) !important;
}

.nav-link-tabs.active:hover {
    font-size: var(--bs-nav-link-font-size) !important;
}

.tab-pane {
    min-height: 250px;
}

/*--------------------- table ------------------------*/

.tabla th {
    background-color: var(--main-color);
    color: white;
    /* border: 1px solid white; */

}

.tabla tbody {
    border: 1px solid rgba(218, 174, 70, 0.1) !important;
}

.tabla tr {
    border: 1px solid white;
    text-align: center;
}

.tabla>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: rgba(218, 174, 70, 0.1) !important;
}

..page-item.active .page-link {
        color: #fff !important;
        background-color: #000 !important;
        border-color: #000 !important; 
    }

    .page-link {
        color: #000 !important;
        background-color: #fff !important;
        border: 1px solid #dee2e6 !important; 
    }

    .page-link:hover {
        color: #fff !important;
        background-color: #000 !important;
        border-color: #000 !important; 
    }

table {     font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;    margin: 45px;     width: 480px; text-align: left;    border-collapse: collapse; }

th {     font-size: 10px;     font-weight: normal;     padding: 4px;     background: #b9c9fe;
    border-top: 4px solid #aabcfe;    border-bottom: 1px solid #fff; color: #039; }

td {    padding: 4px;     background: #e8edff;     border-bottom: 1px solid #fff;
    color: #669;    border-top: 1px solid transparent; }

tr:hover td { background: #d0dafd; color: #339; height:25px;}

}
#tabla tr { height:19px;} 
table.dataTable tbody td {
    height: 35px;
}

table.dataTable tbody td {
    padding: 4px 10px;
}

