/* Google Font Import - Roboto Condensed */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}

:root {
    /* ===== Colors ===== */
    --body-color: #f5f7f9;
    --sidebar-color: #FFF;
    --primary-color: #a6a6a6;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #000000;
    --black-grey: #5D5D5D;
    --negro: #52616B;
    --azul: #009FE3;
    --naranja: #F39200;
    --verde: #009640;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

body {
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

/* ===== lock ===== */

a.inicio-lock {
    background-color: var(--azul);
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 17px;
    width: 25%;
}

.lock {
    font-family: 'Open Sans', sans-serif;
}

.lock {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: -webkit-fill-available;
    justify-content: center;
}

p.error_code {
    font-size: 14px !important;
}

.error_code strong {
    color: var(--black-grey);
}

.lock p {
    font-size: 18px;
    margin: 20px 0;
    text-align: center;
    width: -webkit-fill-available;
    display: flex;
    justify-content: center;
}

.lock h2 {
    font-size: 44px;
    color: var(--black-grey);
    margin: 50px 0;
    text-align: center;
}

/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding: 10px 14px;
    border-radius: 0 15px 15px 0;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    z-index: 1;
}

.sidebar.close {
    width: 88px;
}

img.bx.icon {
    object-fit: contain;
    padding: 13px 0;
}

/* ===== Reusable code - Here ===== */
.sidebar li {
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.sidebar header .image,
.sidebar .icon {
    min-width: 60px;
    border-radius: 6px;
}

.sidebar .icon {
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
    color: var(--text-color);
    transition: var(--tran-03);
}

.sidebar .text {
    font-size: 17px;
    font-weight: 500;
    opacity: 1;
}

.sidebar.close .text {
    opacity: 0;
}

/* =========================== */

.sidebar header {
    position: relative;
}

.sidebar header .image-text {
    display: flex;
    padding-top: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.sidebar header .logo-text {
    display: flex;
    flex-direction: column;
}

header .image-text .name {
    color: var(--azul);
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

header .image-text .profession {
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

.sidebar header .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar header .image img {
    width: 40px;
    border-radius: 6px;
}

.sidebar header .toggle {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar.close .toggle {
    transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu {
    margin-top: 0px;
}

.sidebar li.search-box {
    border-radius: 6px;
    background-color: var(--primary-color-light);
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar li.search-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--primary-color-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--tran-05);
}

.sidebar li a {
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
}

.sidebar li a:hover {
    background-color: var(--primary-color);
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
    color: var(--sidebar-color);
}

.sidebar .menu-bar {
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
    display: none;
}

.home {
    position: absolute;
    top: 0;
    top: 0;
    left: 250px;
    height: 100vh;
    width: calc(100% - 250px);
    background-color: var(--body-color);
    transition: var(--tran-05);
}

.home .text {
    font-weight: 500;
    color: var(--negro);
    padding: 90px 75px;
}

.sidebar.close~.home {
    left: 78px;
    height: 100vh;
    width: calc(100% - 78px);
}

@media only screen and (max-width: 1024px) {
    .home {
        position: initial !important;
        width: 100% !important;
    }

    .home .text {
        padding: 90px 0px;
    }

    #id-footer-img {
        height: 40px !important;
    }

    .sidebar.close {
        width: 0 !important;
        left: -10px !important;
        top: -15px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .tab-content-panel {
        display: flex;
        flex-direction: column;
        margin: 10px;
    }

    #Form-search {
        display: flex;
        flex-direction: column;
        width: 100% !important;
    }

    .button-gestion,
    .input-buscador {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .all_user:last-child {
        margin-right: 0px !important;
    }

    .all_user {
        width: 100% !important;
        margin: 10px 10px 25px 0px !important;
    }

    .lock-responsive img {
        height: 135px;
    }

    .lock h2 {
        margin: 20px 0 !important;
        font-size: 39px !important;
    }
}


/***************************/
/*     TABLE DOWNLOAD      */
/***************************/

.button_select {
    background-color: var(--azul);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px !important;
}

.button_select_verde {
    background-color: var(--verde);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px !important;
}


.limiter {
    width: 1366px;
    margin: 0 auto
}

.container-table100 {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px
}

.wrap-table100 {
    width: 1170px
}

.table100 {
    background-color: #fff
}

table {
    width: 100%
}

th,
td {
    font-weight: unset;
    padding-right: 10px;
}

.column1 {
    padding-left: 40px;
    width: 33%;
}

.column2 {
    width: 33%;
}

.column3 {
    width: 33%;
}

.column3 a {
    color: var(--azul) !important;
}

.table100-head th {
    padding-top: 18px;

    padding-bottom: 18px
}

.table100-body td {
    padding-top: 16px;
    padding-bottom: 16px
}

.table100 {
    position: relative;
    padding-top: 60px
}

.table100-head {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.table100-body {
    max-height: 585px;
    overflow: auto
}

.table100.ver1 th {
    font-family: Lato-Bold;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    background-color: var(--azul);
}

.table100.ver1 td {
    font-family: Lato-Regular;
    font-size: 15px;
    color: gray;
    line-height: 1.4
}

.table100.ver1 .table100-body tr:nth-child(even) {
    background-color: #f6f6f6;
}

.table100.ver1 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -o-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15)
}

.table100 tbody tr td {
    background: none !important;
}

/*  SELECT ROLE   */

.content-button {
    display: flex;
    gap: 8px;
    -webkit-box-pack: justify;
    margin-top: 8px;
    margin-bottom: 4px;
    justify-content: center;
    align-items: center;
}

button[data-size="small"] {
    padding: 0px 8px;
    height: 28px;
    font-size: 12px;
}

.Button-rol {
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    user-select: none;
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    height: 32px;
    min-width: max-content;
    color: rgb(36, 41, 47);
    background-color: rgb(246, 248, 250);
    box-shadow: rgba(31, 35, 40, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-color: rgba(31, 35, 40, 0.15);
    text-decoration: none;
    padding: 0px 12px;
    gap: 8px;
    justify-content: space-around;
}

.select-rol {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(31, 35, 40, 0.12) 0px 1px 3px, rgba(66, 74, 83, 0.12) 0px 8px 24px;
    position: absolute;
    min-width: 192px;
    height: auto;
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running overlay-appear;
    z-index: 1;
    visibility: hidden;
}

.select-rol.open {
    visibility: visible !important;
}

.List_ListBox {
    margin: 0px;
    padding-inline-start: 0px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.Item_LiBox:hover:not([aria-disabled]) {
    background-color: rgba(208, 215, 222, 0.32);
    color: rgb(31, 35, 40);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px max(1px, 0.0625rem) inset;
}

.Item_LiBox {
    position: relative;
    display: flex;
    padding: 6px 8px;
    font-size: 14px;
    line-height: 20px;
    min-height: 5px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 6px;
    transition: background 33.333ms linear 0s;
    color: rgb(31, 35, 40);
    cursor: pointer;
    appearance: none;
    background: unset;
    border: unset;
    width: calc(100% - 16px);
    font-family: unset;
    text-align: unset;
    margin-top: unset;
    margin-bottom: unset;
}


.Box-icon {
    height: 20px;
    min-width: 16px;
    max-width: 20px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 8px;
}


@keyframes overlay-appear {

    0% {
        opacity: hidden;
    }

    100% {
        visibility: collapse;
    }

}