/* clases */
.bg-cyan-700{
    background: #076077 !important;
}
.w-fitContent{
    width: fit-content;
}
.w-100{
    width: 100% !important;
}
.select2-container{
    width: 100% !important;
}
.fz24{
    font-size: 24px;
}
.fz20{
    font-size: 20px;
}
.divContenedor{
    border: 1px solid #E2E8F0;
    background-color: white;
    border-radius: 8px;
    padding: 16px 24px;
}
.divContenedor--md{
    padding: 12px 20px;
}

.divContenedor--xs{
    padding: 12px 10px;
    border-radius: 6px;
}

.gap8{
    gap: 8px;
}
.row{
    display: flex;
    gap: 12px;
}

.row--center{
    align-items: center;
}

.txt--naranjo{
    color: #D37409;
}

.link{
    color: #D37409;
    text-decoration: underline;
}

.lista{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lista--scroll{
    overflow: auto;
    max-height: 600px;
}

.color--green{
    color: #A4E068;
}

.color--red{
    color: #FA746C;
}

/* Grid */
.grid-5{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.grid-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Scroll */
::-webkit-scrollbar {
    width: 9px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #d5d6d9;
}

/* Modal detalle */
.modal__detalle{
    width: 600px;
    height: 100vh;
    background: #076077;
    position: fixed;
    top: 0px;
    right: -1000%;
    z-index: 100;
    padding: 40px 32px;
    color: white;
    transition: all 300ms;
    box-shadow: 0 0 0 200vh rgba(0, 0, 0, 0.295);
}

.detalle__fila{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.detalle__fila--sinMargen{
    margin: 0px;
}
.detalle__fila__end{
    text-align: right;   
    margin-right: 20px; 
}
.separador{
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 24px 0px;
}

.separador--gris{
    background-color: rgb(160, 160, 160);
}
.color-gris{
    color: #6B7280;
}
.modal__detalle__scroll{
    overflow: auto;
    max-height: 45%;
    overflow-x: hidden;
}
.modal__detalle__cerrar{
    cursor: pointer;
}

/* Nuevo requerimiento */
.grid__equipos__calendario{
    display: grid;
    grid-template-columns: 375px auto;
}


/*====== modalBase ======*/
.contenedormodalBase {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.312);
}
.contenedormodalBase--nuevoCliente{
    z-index: 10001;
}

.modalBase {
    display: flex;
    flex-direction: column;
    width: 600px;
    height: auto;
    background: #FFF;
    gap: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--S100);
    padding: 30px;
}

.modalBase__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--S50);
}

.modalBase_headerTitulo {
    margin: 0px;
    font-size: 20px !important;
    font-weight: 600;
}

.modalBase__cerrar {
    cursor: pointer;
}

.modalBase__contenedorBody {
    padding: 0rem 2.25rem;
}

.modalBase__body {
    max-height: 500px;
    overflow-y: scroll;
}

.modalBase__botones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    height: 76px;
    border-top: 1px solid var(--S50, );
}


/*====== tabBases ======*/
.tabBase{
    display: flex;
    flex-direction: column;
    position: relative;
}
.tabBase__listabBaseotones{
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid #E7E7E7;
}

.tabBase__boton{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    height: 3.75rem;
    gap: 0.75rem;
    padding: 0rem 1.5rem;
    cursor: pointer;
    border-radius: 0px;
    /* border-bottom: 1px solid #b8b3b300; */
}

.tabBase__nombre{
    color: #454545;
}

.tabBase__boton--active{
    color: #076077;
    border-bottom: 2px solid #076077 !important;
}

.tabBase__boton--active:hover{
    background: var(--P400);
}
.tabBase__boton--active .tabBase__nombre{
    font-weight: 700;
    color: var(--S900);
}
.tabBase__botonImg{
    width: 1rem;
}

.tabBase__contenido{
    display: none;
    width: 100%;
    height: auto;
    padding-top: 10px;
}
.tabBase__botonAcordeon{
    display: none;
}

.login__fondo{
    background: white;
    margin-left: 20px;
    z-index: 10;
}

/* Acciones */
.cardAcciones{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 12px;
}
.cardAcciones--activo{
    background-color: #076077;
    color: white;
}
.cardAcciones .input[type=checkbox]:not(.input--switch):checked{
    background-color: white;
}
.cardAcciones .input[type=checkbox]:not(.input--switch):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23076077' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.w45{
    width: 45px;
}
.input-w20{
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 1400px) { 

}



@media (max-width: 1280px) {  
    .grid-4{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }
    .login__fondo{
        background: transparent;
        margin-left: 0px;
        z-index: 1;
    }
}

@media (max-width: 1200px) {  
    /* Nuevo requerimiento */
    .grid__equipos__calendario{
        grid-template-columns: 260px auto;
    }
}


@media (max-width: 992px) {  
    /* Nuevo requerimiento */
    .grid__equipos__calendario{
        grid-template-columns: 1fr;
    }
    .divContenedor.ml-4{
        margin: 1rem 0 0 0;
    }
}


@media (max-width: 768px) {  
    /* Modal */
    .modalBase{
        width: 90%;
    }
}


@media (max-width: 576px) {  
    /* Grid */
    .grid-4{
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .grid-3{
        display: grid;
        grid-template-columns: 1fr;
    }
    .grid-2{
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* Select */
    .select2-container{
        width: 100% !important;
    }
    /*  */
    .modal__detalle{
        width: 100%;
    }
    .modal__detalle__scroll{
        max-height: 40%;
    }
    /* tabBases */
    .tabBase__botonAcordeon, .tabBase__listabBaseotones{
        width: 100%;
    }
    /* Menu user */
    .dropdown-box-responsivo{
        left: 0px;
    }
}