@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Onest:wght@100..900&display=swap');


html {
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    min-width: 358px;
    margin: 0px;
}

* {
    box-sizing: border-box;
}


/* Textos */
h1,
h2,
h3,
h4 {
    color: var(--S900);
    margin: 0px;
}

h1 {
    font-size: 2rem;
    line-height: 2.75rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: bold;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;
}

h4 {
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: bold;
}

span,
label,
p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}

p {
    margin: 0rem;
}

strong {
    font-weight: bold;
    margin: 0px;
}
.font-semibold { font-weight: 600;}

small {
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
}

i {
    font-size: var(--medida24);
}

.link{
    color: var(--P600);
    text-decoration: none;
}
.link:hover{
    text-decoration: underline;
}
.link--sinEstilo{
    text-decoration: none;
    color: initial;
	border: none;
	padding: 0;
	background: transparent;
}
/* Scroll */
::-webkit-scrollbar {
    width: 9px;
}
/* Estados */
.estado{
    background: var(--S50);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 32px;
    padding: 0px 10px;
    border: 1px solid var(--S200);
	border-radius: var(--radiusSm);
}
.estado--pendiente{
    border: 1px solid #E2D677;
    background: #FFFAD2;
    color: #7F7022;
}

.estado--rechazado{
    border: 1px solid #FF9E9E;
    background: #FFE7E7;
    color: #FF4040;
}

.estado--aprobado{
    border: 1px solid #92DC80;
    background: #C4FFC6;
    color: #3D832C;
}

.estado--sinSubir{
    border: 1px solid #66BFFF;
    background: #DAEBFF;
    color: #425DBF;
}
/* Componentes extras */


/* Clases adicionales */
.cursor-pointer{
    cursor: pointer;
}
.gris--small{
    color: #6A6A6A;
}
.icon{
    width: 24px;
}
.grid2--movil{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.relative, .divContenedor--relative{
    position: relative;
}
.fitContent{
    width: fit-content !important;
}
.circuloNaranjo{
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #FF800A;
}
.row{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}
.row__alignSelfCenter {
	align-self: center;
}
.row__alignItemsEnd{
	align-items: end;
}
.row--gap36{
    gap: 36px;
}
.row--gap20{
    gap: 20px;
}
.row--gap14{
    gap: 14px;
}
.row--gap8{
    gap: 8px;
}
.row--gap4{
    gap: 4px;
}
.row--nowrap{
    flex-wrap: nowrap;
}
.fw400{
    font-weight: 400;
}
.txt-bold{
    font-weight: bold;
}
.txt-center{
    text-align: center;
}
.txt-right{
    text-align: right;
}
.bold{
    font-weight: bold;
}
.w100{
    width: 100%;
}
.w214{
    width: 214px;
}
.w640{
    width: 640px !important;
}
.flex-end{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.gap-12 {
	gap: var(--medida12);
}
.divContenedor--fitContent{
    height: fit-content;
}
.divContenedor--gap24{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.divLineas{
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 1rem;
}
.divLineas--sinLineas{
    border: 0;
}
.mgTop8{
    margin-top: 8px;
}
.mgTop16{
    margin-top: 1rem;
}
.mgTop24{
    margin-top: 24px;
}
.mgTop32{
    margin-top: 2rem;
}
.mgTop50{
    margin-top: 50px;
}
.mgBottom6{
    margin-bottom: 6px;
}
.mgBottom8{
    margin-bottom: 8px;
}
.mgBottom12{
    margin-bottom: 12px;
}
.mgBottom16{
    margin-bottom: 1rem;
}
.mgBottom24{
    margin-bottom: 24px !important;
}
.mgBottom32{
    margin-bottom: 32px !important;
}
.mgBottom40{
    margin-bottom: 40px !important;
}
.mgBottom50{
    margin-bottom: 50px !important;
}
.color--gris{
    color: #94A3B8 !important;
}
.color--red{
    color: #DC2626 !important;
}
.color--azul{
    color: #2980B9 !important;
}
.gridEnd{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: flex-end;
}
.grid2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}
.grid2--mantenedores{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.grid2--autoLeft{
    grid-template-columns: auto 1fr;
}
.grid2--auto{
    grid-template-columns: auto 1fr;
}
.color-naranjo{
    color: #FF6700;
}
.fz16{
    font-size: 16px;
}

.fz18{
    font-size: 18px;
}

.fz24{
    font-size: 24px;
}
.linea-separadora{
    width: 100%;
    height: 1px;
    background: #E2E8F0;
    margin: 12px 0px;
}
.linea-separadora-vertical{
    width: 1px;
    height: 22px;
    background: #E2E8F0;
}
/* Login */
.contenedorLogin{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50vh;
}
.login{
    width: 490px;
    /* margin-top: 50px; */
}

/* Contenido */
.contenido{
    padding: 20px 36px;
}
.header{
    padding: 50px;
}

/* Tabla */
.tablaBase{
    border-collapse: collapse;
    
}
.tablaBase--user td{
    padding: 12px 0px !important;
}
.tablaBase td{
    padding: 12px;
}

.tablaBase th{
    text-align: left;
    color: #64748B;
    background: #F1F5F9;
    padding: 8px 12px;
}
.modal__abrir--reparaciones{
    color: #2980B9;
    cursor: pointer;
}

/* Menu lavanderia */
.Contenedor__btnAdmin{
    position: relative;
}
.menuLavanderia {
  display: none;
  /* Agrega estilos adicionales para el menú */
}

.menuLavanderia.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 200px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background-color: white;
  right: 0px;
  top: 30px;
  box-shadow: 0px 4px 6px -2px #0000000D;
  box-shadow: 0px 10px 15px -3px #0000001A;
  padding: 12px;
  z-index: 2;
}

.menuLavanderia a{
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
}
.menuLavanderia a:hover{
    background-color: #e2f3ff;
}
@media (max-width: 1400px) {
}

@media (max-width: 1250px) {
}

@media (max-width: 1200px) {
   
}

@media (max-width: 1100px) {

}

@media (max-width: 992px) {
    .contenedor900{
        width: 100%;
    }
    .grid2{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid2--auto{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid2--autoLeft{
        grid-template-columns: auto 1fr;
    }
    .flex-end__responsivoStart{
        justify-content: flex-start;
    }
}


@media (max-width: 768px) {
    .gridEnd{
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: flex-end;
    }
}


@media (max-width: 576px) {
    .divContenedor{
        padding: 20px !important;
    }
    /* Login */
    .login{
        width: 95%;
        /* margin-top: 50px; */
    }
    header{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .w100--resposiva{
        width: 100%;
    }
}