h3{
    margin: 0;
}
*{
    margin: 0;
    
}
body{
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    
}

.monitor_background {
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    background-color: #e6edf0b0;
}

.monitor_header {
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 50px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 50px;

}

.monitor_header_logo {
    display: flex;
    position: relative;
    left: 20px;
    height: 40px;
    
    flex-direction: row;
}

.monitor_header_user {
    height: 50px;
    display: flex;
    margin-right: 30px;
    flex-direction: column;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-size: 12px;
}

.side_menu {
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 2;
    width: 60px;
    color: white;
    overflow: hidden; 
    display: flex;
    background-color: #293241;
    flex-direction: column;
    align-items: flex-end;
    height: calc(100vh - 50px);  /* Limita altura desde top (50px) hasta el final */
/*    height: 100%; */
    transition: all 0.5s;
}

.side_menu:hover {
    width: 200px;
    padding: 10px;
    align-items: center;
    overflow-y: auto; 
    height: calc(100vh - 65px);
}

.side_menu_icons {
    display: flex;
    height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
}

.side_menu a {
    display: flex;
    color: white;
    min-width: 200px;
    align-items: center;
    text-decoration: none;
    flex-direction: row-reverse;
    padding-left: 10px;
    height: 49px;
    margin-top: 10px;
    width: 100%;
    transition: all 0.4s;
}

.side_menu:hover a {
    flex-direction: row;
    height: 47px;
}

.side_menu h6 {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 1s;
}

.side_menu:hover h6 {
    visibility: visible;
    opacity: 1;
    height: fit-content;
}

.side_menu a:hover {
    background-color: #0177FF;
    color: white;

}

.inner_page {
    padding-top: 50px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.graf_container {
    display: flex;
    width: 100%;
    height: 330px;
    align-items: center;
    justify-content: center;
}

.graf {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(153, 153, 153);
    width: 500px;
    height: 300px;
    border-radius: 3%;

}

.table_container {
    flex-direction: column;
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
}

.table_container div h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.titulo_tabla{
    display: flex;
    align-items: center;
}
.table_container img {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.tabla_container_2 {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 2px 4px 0px rgb(153, 153, 153);
    border-radius: 10px;
    overflow-y: scroll;
    overflow-x: scroll;
    height: 80vh;
}

.tabla_header {
    position: sticky;
    top: 0;
    background-color: #5CAB7D;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;

}

.tabla_header_encaje {
    background-color: #5CAB7D;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    text-align: center;
}

.tabla_header_encaje_l2 {
    background-color: #5CAB7D;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;

}



.form {
    width: 100%;
}

.table-responsive {
    border-spacing: 1;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}



table {
    border-spacing: 1;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    position: relative;
}

.tabla_container_2 table thead tr {
    height: 50px;
}

.tabla_container_2 table thead tr th {
    box-sizing: border-box;
    border-bottom: solid 1px #f5f5f5;
    text-align: left;
    padding-left: 7px;
}

.tabla_container_2 table thead tr th div {
    display: flex;
    flex-direction: row;
    color: rgb(255, 255, 255);
    justify-content: space-between;
}

.input_table_div {
    width: 100px;
    background-color: white;
    color: rgb(111, 111, 111);
    border-radius: 10px;
    margin-bottom: 5px;

}

.inpt_large{
    width: 400px;
}



.input_table_div input {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    margin-bottom: 3px;
    margin-top: 3px;
    border-radius: 7px;
    outline: transparent;
    width: 100%;
}

.input_table_div a svg {
    color: #888;
    margin-bottom: 3px;
}

.input_table_div_chico {
    width: 50px;
    background-color: white;
    color: rgb(111, 111, 111);
    border-radius: 10px;
    margin-bottom: 5px;

}

.input_table_div_chico a svg {
    color: #888;
    margin-bottom: 3px;
}

.input_table_div_grande {
    width: 120px;
    background-color: white;
    color: rgb(111, 111, 111);
    border-radius: 10px;
    margin-bottom: 5px;

}

.input_table_div_grande a svg {
    color: #888;
    margin-bottom: 3px;
}

.tabla_container_2 table thead tr th input {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    margin-bottom: 3px;
    margin-top: 3px;
    border-radius: 7px;
    outline: transparent;
    width: 100%;
}

.tabla_container_2 table thead tr th a {
    position: relative;
    right: 3px;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    cursor: pointer;
}

.tabla_container_2 table tbody tr td {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 7px;
    padding-right: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 10px;
}

.tabla_container_2 tbody tr {
    font-family: OpenSans-Regular;
    font-size: 9px;
    color: gray;
    line-height: 1.2;
    font-weight: unset;
}

.tabla_container_2 table tbody tr {
    height: 30px;
}

tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 3;
    /* Location of the box */
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.308);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    overflow: hidden;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
}

.modal_select{
    border-radius: 10px;
}

/* The Close Button */
.close {
    display: flex;

    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    height: 100%;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    box-sizing: border-box;
    display: flex;
    background-color: #5CAB7D;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;

    justify-content: space-between;
    color: white;
}
.modal-header div {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    background-color: #ad0c0c;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-footer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding-right: 30px;
    justify-content: flex-end;
    align-items: center;
    background-color: #5CAB7D;
    height: fit-content;
    color: white;
    /*padding-bottom: 15px;*/
}
.section_1{
    box-sizing: border-box;
    padding-left: 6.7%;
    padding-right: 6.7%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 5px;
}
.section_2{
    box-sizing: border-box;
    padding-left: 6.7%;
    padding-right: 6.7%;
    display: flex;
    align-items: center;
}
.section_3{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6.7%;
    padding-right: 6.7%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.section_3t4{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6.7%;
    padding-right: 6.7%;
    margin-top: 10px;

}
.section_4{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-left: 6.7%;
    padding-right: 6.7%;
    margin-top: 10px;
    overflow: scroll;
    margin-bottom: 10px;
    height: 200px;
    border: 1px solid lightgray;
    border-radius: 5px;

}

.sub_section_3{
    display: flex;
    flex-direction: column;
    width: 45%;
}
.sub_section_4{
    display: flex;
    flex-direction: row;
    flex: 1;
}
.sub_section_4 div{
    margin: 3px;
    border-bottom: 1px solid lightgray;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-size: 11px;

}
.sub_section_3 textarea{
    height: 70px;
    border-radius: 8px;
}
.sub_section_3 h3{
    margin-bottom: 8px;
}

/* CSS */
.button-9 {
  appearance: button;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 10px 5px 10px;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  outline: none;
  height: 30px;
  overflow: hidden;
  text-align: center;
  text-transform: none;
  transition: all .2s,box-shadow .08s ease-in;
  touch-action: manipulation;
  width: 100px;
}

.button-9-large {
    appearance: button;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 10px 5px 10px;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-size: 100%;
    outline: none;
    height: 40px;
    overflow: hidden;
    text-align: center;
    text-transform: none;
    transition: all .2s,box-shadow .08s ease-in;
    touch-action: manipulation;
    width: 200px;
  }
  
.danger{
    background-color: red;

}
.alert{
    background-color: yellow;
    color: #888;
}
.accept{
    background-color: #405cf5;

}
.cancel{
    background-color: #b6b6b6;

}
.accept:hover{
    background-color: #2339b4;

}
.cancel:hover{
    background-color: #949494;

}

.button-9:disabled {
  cursor: default;
}

.button-9:focus {
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

.justificacion_page{
    display: flex;
    align-items: center;
    height: 60vh;
    flex-direction: column;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
}

.form_clave_container{
    display: flex;
    border-radius: 30px;
    padding-top: 3%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 3%;
    flex-direction: column;
    background-color: #293241;
    color: white;
}
.form_clave{
    display: flex;
    height: 30vh;
    flex-direction: column;
    justify-content: space-around;
}
.in_form_container{
    display: flex;
    flex-direction: column;
    height: 50px;
    justify-content: space-between;
}

.botones_container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 10px;
    align-items: center;
    width: 100%;

}
.tabla_encaje_tbody tr td {
    font-family: 'Open Sans', sans-serif;
    font-size: 54px;
}

.h-120{
    height: 120px;
}
.corta{
    height: 40vh;
}
.ancho{
    padding-left: 1%;
    padding-right: 1%;

}