* {
    transition: all 0.3s;
}


.container_item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.item {
    padding: 20px 2rem;
    border-radius: 10px;
    background-color: white;
    border: var(--border-1);
    box-shadow: var(--box-shadow-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: max-content;
}

.item:hover {
    scale: 1.05;
    transform: translateY(5px);
    box-shadow: var(--box-shadow-2);
}

.item_2 {
    padding: 1rem;
    border-radius: 10px;
    background-color: white;
    border: var(--border-1);
    box-shadow: var(--box-shadow-1);
    height: max-content;
}

.jcC {
    justify-content: center;
}

.item .bi {
    scale: 2.5;
}


.main {
    width: 100vw;
    height: 100vh;
    padding-left: 16rem;
    display: flex;
}

.container {
    height: 100%;
    width: 100%;
    padding: 10px;
    overflow-y: auto;
    max-width: 100% !important;
}




.container-options {
    border-radius: var(--border-radius-2);
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-top: 20px;
    transition: all 0.1s;
    height: max-content;
}

.container-options:hover {
    box-shadow: none;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-container {
    padding: 20px;
}


.elegant-table {
    font-size: 13px;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.elegant-table th,
.elegant-table td {
    padding: 5px;
    border-bottom: 1px solid #7d8da13d;
    text-align: left;
}

.elegant-table th {
    padding: 10px 10px !important;
}

tbody td {
    padding: 1px;
}

.elegant-table th {
    background-color: #8e9eb324;
    font-weight: bold;
}

.elegant-table tr:nth-child(even) {
    background-color: var(--color-white);
}

.elegant-table tr:hover {
    background-color: var(--color-info-dark2);
}

.elegant-table td {
    color: var(--color-dark);
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination button {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination button.active {
    background-color: var(--color-primary);
}

.pagination button:hover:not(.active) {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.dropdown {
    padding: 3px 10px;
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    border-radius: var(--border-radius-1);
    color: var(--color-info-dark);
    cursor: pointer;
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateX(-20px);
    border-radius: var(--border-radius-1);
    padding: 10px 0;
    background-color: var(--color-white);
    box-shadow: 0 5px 16px 1px rgba(0, 0, 0, 0.2);
    display: none;
    position: fixed !important;
    z-index: 1;
    min-width: max-content;
    transition: none !important;
}

.dropdown-list {
    display: block;
}

.redondo-30 {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divnivel-2 {
    border-radius: 10px;
    padding: 3px;
    background-color: #007bff;
    color: white;
}

.divnivel-3 {
    border-radius: 10px;
    padding: 3px;
    background-color: #eab308;
    color: white;
}

.spinner-container-2 {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    width: 100vw;
    z-index: 1000;
    background-color: #00000070;
}

.spinner-2 {
    height: 20px;
    width: 20px;
    border-top: 3px solid transparent;
    border-right: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    border-left: 3px solid var(--color-primary);
    animation: girar 2s linear infinite;
    border-radius: 50%;
}

.spinner {
    height: 20px;
    width: 20px;
    border-top: 3px solid transparent;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    border-left: 3px solid white;
    animation: girar 2s linear infinite;
    border-radius: 50%;
}

@keyframes girar {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#rowCount {
    font-size: 16px;
    color: var(--color-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    justify-content: center;
    align-items: start;
    padding: 60px 0;
    backdrop-filter: blur(5px);
}

.modal-content {
    border-radius: 10px;
    background-color: white;
    width: 500px;
    padding: 20px;
    border: var(--border-1);
    transition: all 0.3s;
    align-items: center;
    box-shadow: var(--box-shadow-2);
    animation: mostrar 0.3s ease-in-out;
}

#barrafilter.sticky {
    position: fixed;
    top: 4rem;
    right: 0;
    background-color: #fffb;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: var(--border-1);
    backdrop-filter: blur(20px);
    padding: 5px 6rem;
    margin-bottom: 0;
    width: 100%;
    transition: all 0s !important;
    animation: none !important;
}


.headermodal {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.bodymodal {
    padding: 20px;
    background-color: rgb(247, 247, 247);
}

.footermodal {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-content-2 {
    display: grid;
    grid-template-columns: 3fr 5fr;
    width: 100%;
    transition: all 0.3s;
    align-items: center;
}

.showeye {
    left: -30px;
    position: absolute;
    height: 100%;
    border: 1px solid var(--color-info-dark2);
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    color: var(--color-dark);
    background-color: var(--color-white);
}

.modal-paper {
    background-color: var(--color-white);
    margin: auto;
    padding: 20px;
    width: 30rem;
    max-width: 700px;
    box-shadow: var(--box-shadow);
    animation: fadeIn 0.4s;
    border-radius: var(--border-radius-2);
    position: relative;
}

.divinput {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-1);
}

.divinput:hover {
    background-color: var(--color-info-dark2);
}

.editpencil {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 1px solid var(--color-info-dark2);
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    color: var(--color-dark);
    background-color: var(--color-white);

}

.editpencil1 {
    zoom: 1.5;
    right: 25px;
    display: flex;
    padding: 0 5px;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid --color-white;
    padding-bottom: 10px;
}

/* Close Button */
.close {
    color: var(--color-info-dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.6rem;
}

.close:hover,
.close:focus {
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
}

/* Modal Body */
.modal-body {
    padding: 10px 20px;
    line-height: 1.6;
}

.modal-content h2 {
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.modal-content p {
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
}

.modalContent_rigth {
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    background-color: white;
    padding: 20px;
    width: 350px;
    display: block;
    overflow-y: auto;
    animation: mostrarRigth 0.2s ease-in-out;
    box-shadow: var(--box-shadow-1);
}

.copiarLink {
    background: white;
    border: 1px solid #1a9b84;
    border-radius: 0 10px 10px 0;
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 5px;
    cursor: pointer;
}

@keyframes mostrarRigth {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }

}





.dropdown-item {
    width: 100%;
    min-width: 120px;
    padding: 10px 15px;
}

.dropdown-item:hover {
    background-color: var(--color-info-dark2);
}

.modalMio {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(4px);
    z-index: 101;
}

.abierto {
    display: flex;
    align-items: flex-start;
}

.modalContent {
    margin-top: 5rem;
    padding: var(--padding-1);
    width: 50%;
    height: max-content;
    background-color: var(--color-white);
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-width: 400px;
    transition: all 0.2s;
    animation: mostrar 0.2s linear;
}

.card_update {
    background: white;
    width: max-content;
    padding: 20px;
    border-radius: 10px;
    border: var(--border-1);
    box-shadow: var(--box-shadow-2);
    animation: mostrar 0.2s ease-in-out;
}

@keyframes mostrar {
    0% {
        transform: translateY(-15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}

.cerrarbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 45px;
    background-color: var(--color-danger);
    cursor: pointer;
    color: white;
}





#navbar_title {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-slide-out-left {
    animation: slideOutLeft 0.3s ease;
}

.navbar-slide-out-right {
    animation: slideOutRight 0.3s ease;
}

.navbar-slide-in {
    animation: slideIn 0.3s ease;
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-30px);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(30px);
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}