*{
    margin: 0;
    padding: 0;
    /*color: windowtext;*/
    
   font-weight: 400;
    font-style: normal;
    text-decoration: none;

  }
body{
  font-size: 11.0pt;
  margin: 0;
  padding: 0;
   
  font-family: "Roboto", sans-serif;
    background: #f2f2f2;
    color: #000;
}

header{
  z-index: 1;
  position: fixed;
  background: #22242A;
  padding: 20px;
  width: calc(100% - 0%);
  top: 0;
  height: 30px;
}

.left_area h3{
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 900;
}

.left_area span{
  color: #19B3D3;
}

.logout_btn{
  padding: 5px;
  background: #19B3D3;
  text-decoration: none;
  float: right;
  margin-top: -30px;
  margin-right: 40px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: 0.5s;
  transition-property: background;
}

.logout_btn:hover{
  background: #0B87A6;
}

.sidebar{
  z-index: 1;
  top: 0;
  background: #2f323a;
  margin-top: 70px;
  padding-top: 30px;
  position: fixed;
  left: 0;
  width: 250px;
  height: 100%;
  transition: 0.5s;
  transition-property: left;
  overflow-y: auto;
}

.profile_info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidebar .profile_info .profile_image{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.sidebar .profile_info h4{
  color: #ccc;
  margin-top: 0;
  margin-bottom: 20px;
}

.sidebar a{
  color: #fff;
  display: block;
  width: 100%;
  line-height: 50px;
  text-decoration: none;
  padding-left: 40px;
  box-sizing: border-box;
  transition: 0.5s;
  transition-property: background;
}

.sidebar a:hover{
  background: #19B3D3;
}

.sidebar i{
  padding-right: 10px;
}

label #sidebar_btn{
  z-index: 1;
  color: #fff;
  position: fixed;
  cursor: pointer;
  left: 300px;
  font-size: 20px;
  margin: 5px 0;
  transition: 0.5s;
  transition-property: color;
}

label #sidebar_btn:hover{
  color: #19B3D3;
}

#check:checked ~ .sidebar{
  left: -185px;
}

#check:checked ~ .sidebar a span{
  display: none;
}

#check:checked ~ .sidebar a{
  font-size: 20px;
  margin-left: 165px;
  width: 100%;
}

.content{
    padding: 20px;
    margin-top: 70px;
    margin-left: 250px;
    background: url(background.png) no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    transition: 0.5s;
    text-align: center;
}

#check:checked ~ .content{
  margin-left: 60px;
}

#check:checked ~ .sidebar .profile_info{
  display: none;
}

#check{
  display: none;
}

.mobile_nav{
  display: none;
}

.content .card p{
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive CSS */

.boton_anim {
    background: linear-gradient(180deg, #65bce8 0%, #306485 49%, #fbde74 50%, #ff9900 100%);
    background-size: 1px 100px;
    transition: all .1s;
    height: 30px;
    width: 100%;
    text-align: center;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;

}
.boton_anim:hover {
    background-position: 0 -50px;
    transition: all .3s;
}

.form-header{
  margin-top: 20px;
    flex-direction: column;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 23px;
}


    .contenedor_turno {
        display: flex;
      }
      
      .contenedor-elementos_turno {
        background-color: #adadad;
      }
      .contenedor-encabezado_turno, .info-extra_turno {
        width: 55%;
        background-color: #ffffff;
      }
      .contenedor-elementos_turno__articulo {
        /*border: 1px solid;*/
        /*min-height: 33.3vh;*/
      }
      .titulo_turno {
        padding: 4px;
        border: 1px solid;
        margin: 2px;
        background-color: #ffffff;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
      }
      .text-negrita_turno{
        font-weight: 700;
      }
      .text-trans_turno{
        font-size: 12px;
        color: #06060694;
        float: left;
      }
      .class_td_turno{

        padding: 5px;
        width: 40px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        border-color: #12121273;
      }
      table tr td {
        
        width: 1%;
        white-space: nowrap;
      }
      table.class_table tr:nth-child(even) {

      }
      table.class_table thead {

      }

      #id_planilla{
          box-shadow: -1px -3px 36px -12px rgba(0,0,0,0.75);
          width: fit-content;
          border: 3px solid #9f9f9f4a;
      } 
      #id_datos_unicos_planillas{
        border: 2px solid #1212121c;
        font-size: 86%;
        margin: 10px;
        color: #2a383e;
      }




@media screen and (max-width: 780px){
  .sidebar{
    display: none;
  }


  #sidebar_btn{
    display: none;
  }

  .content{
    margin-left: 0;
    margin-top: 0;
    padding: 10px 20px;
    transition: 0s;
  }

  #check:checked ~ .content{
    margin-left: 0;
  }

  .mobile_nav{
    display: block;
    width: calc(100% - 0%);
  }
  .logout_btn{
    margin-top: 22px;
  }

  .nav_bar{
    background: #222;
    width: (100% - 0px);
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .nav_bar .mobile_profile_image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .nav_bar .nav_btn{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.5s;
    transition-property: color;
  }

  .nav_bar .nav_btn:hover{
    color: #19B3D3;
  }

  .mobile_nav_items{
    background: #2F323A;
    display: none;
  }

  .mobile_nav_items a{
    font-size: 14pt;
    color: #fff;
    display: block;
    text-align: center;
    letter-spacing: 1px;
    line-height: 50px;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.5s;
    transition-property: background;
  }

  .mobile_nav_items a:hover{
    background: #19B3D3;
  }

  .mobile_nav_items i{
    padding-right: 10px;
  }

  .active{
    display: block;
  }

  /*.mobile_nav_items{
    background: #2F323A;
    overflow: hidden;
    max-height: 0;
	transition: 0.5s;
	transition-property: max-height;
  }

  .mobile_nav_items a{
    color: #fff;
    display: block;
    text-align: center;
    letter-spacing: 1px;
    line-height: 60px;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.5s;
    transition-property: background;
  }

  .mobile_nav_items a:hover{
    background: #19B3D3;
  }

  .mobile_nav_items i{
    padding-right: 10px;
  }

  .active{
    max-height: 1000px;
  }*/
}



  body{


  }
  /*aspectos generales: bordes y color de fondo de calculadora*/
  .celda{ 
        width: 1250px;
    height: 26px;
    display:  flex;

    text-align: center;
    background-color: #fcfcfc;

  }

  .container{
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;

  }
  div > .tc , div > .tc2 {
    height: 30px;
    font-style: normal;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 10pt;
    font-weight: 600;
  }

  .tc > p {

    font-size: 12pt;
    font-weight: 700;

  }
  .container .contenedor{
    display: inline-flex;

  }
  .celda > input{
    font-size: 9.0pt;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-family: Calibri, sans-serif; 

    padding: 0px  3px;
    border:  0.5px solid;
    border-collapse: collapse  ;

    min-height: 25px;
    overflow: hidden;


  }


  .celda2 {
    
    width: 2000px;
    margin:  0px 10px;


  }

  .titulo , .celda2 > input{
    border:  0.5px solid;
    border-collapse: collapse  ;
    width: 109px;
    padding: 0px  3px;
    min-height: 30px;
    overflow: hidden;


  }

  input > #turnofin{
    background: red;
  }

  .class_ord,  .class_porcentaje,
  .class_porcentaje_ins, #id_cuotas{
    width: 40px;
    text-align: center; 

  }
  .class_ccpp, #id_superficie , .class_riega, #id_deuda,  
  .class_totalhas, .class_recorrido, .class_descuelgue,
  .class_tiempo_adic, #id_tiempo_real{
    width: 80px;
    text-align: center;

  }
  .class_titular{

    width: 250px;
  }
  #id_nota{

    width: 150px;
  }

  .tc {

    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    width: 225px;
    border: 0.1px solid windowtext;
    background: aliceblue;
    height: 24px;
  }
  .tc2 {
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    width: 180px;
    border: 1px solid;
    background: aliceblue;
    height: 24px;

  }

  .tc > input ,.tc2 > input ,.tc2 > select{
    width: 100px;
    margin-left:  5px;
  }

  .tc3 {
    width: 140;
  }

  .rotulo {
    width: 1250;
    min-width: 1200px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .t_habilitado {
      padding: 5px;
      /* margin: 150px; */
      height: 40px;
      width: min-content;
      margin-left: 40px;
      /* margin-bottom: 21px; */
      width: 273px;
      border: 2px solid;
      text-align: center;
       border-color: red; 
      /* padding-bottom: 4px; */
      /* padding-top: 3px; */
      /* padding-left: 3px; */
      font-size: 16px;
  }


  .check{
    width: 18px;
    height: 18px;
    margin-top: 2px;

  }

  .overlay { 
    position: fixed;

    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }

  .overlay:target{
    visibility: visible;
    opacity: 1;
  }
  #popup2:target{
    visibility: hidden; /* Se regresa a hidden para ocultar */
    opacity: 0; /* Se regresa a o para hacerlo "invisible" */
  }

  .boton_p {
    display: flex;
    height: 35px;
    width: 150px;
    border: 2px solid;
    border-radius: 20px;
    text-align: center;
    background: #4723d9;
    justify-content: center;
    align-items: center;
  }


  .boton_p > a {
    background: #4723d9;
    color: white;
    font-size: 15px;
  }

  .boton_p > a:hover {
    background: #4723d9c9;
    color: red;
  }
  .class_cuerpo {

    display: flex;
    position: relative;
    width: 99%;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;

  }
  .class_cuerpo_botones{ 
    
    width: -webkit-fill-available;
    display: flex;
    
    border-bottom: 3px solid; 
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    align-items: center;
    padding: 10px


  }
  .class_cuerpo_contenido{
    width: -webkit-fill-available;
    border-bottom: 3px solid;
    padding: 10px;



  }
  .class_button{

    min-width: 80px;
    width: auto;
    max-width: 120px;
    height: auto;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 1px;
    background-color: #ffffff;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;


  }
  .class_button:hover {
    background: #4723d9c9;
    color: white;
  }

table.class_table tr:nth-child(even) {
  background: #D0E4F5;
}
table.class_table thead {
  background: #ff0000;
}

