/* JUSCEIN 5 de FEBRERO 2024 */
body {
    background: #ffffff; /* antes background: #a7aaee;*/
    color: #333;
    font-weight: 400;
    /*font-family: 'Barlow', sans-serif;*/
    font-family: 'Calibri', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6em; /*INTERLINEADO */
    margin: 0; /* se pega a los costados */
}

.sin_linea{
  text-decoration: none;
}

* {
    margin: 1;
    padding: 0;
    box-sizing: border-box;
  }
  
  .vertimedio{
    vertical-align: middle;
  }
  
  
  
  .textoin{
  
      font: inherit;
    padding: 0.2em 0.5em;
  
  }

  .inpux{
    border-radius: 5px;
      height: 1.6em;
      font: inherit;
      box-sizing: border-box;
      padding: 0.1em 0.2em;
  
  }
  
  
  table { 
      border-spacing: 2px;
      border-collapse: separate;
      font: inherit;
  }
  
  td, th { /* table cells */
    padding: 5px;
}
  
  .botonis {
    padding: 10px 20px;
    /*background-color: #4CAF50;*/
    font-family: 'Calibri', sans-serif;
    font-size: 1.0rem;
    background-color:rgb(9, 156, 53);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .botonis:hover {
    background-color: #0ca004;
  }
  .botonis:active {
    background-color: rgb(9, 156, 53);
  }

  .botonismall {
    padding: 8px 10px;
    /*background-color: #4CAF50;*/
    font-family: 'Calibri', sans-serif;
    font-size: 0.8rem;
    background-color:rgb(9, 156, 53);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .botonismall:hover {
    background-color: #0ca004;
  }
  .botonismall:active {
    background-color: rgb(9, 156, 53);
  }
  
  /*********USAR ESTO EN LUGAR DE ONMOUSEOVER ONMOUSEOUT ************/
  .celda{
      background-color:white;
   }
   .celda:hover{
      background-color:rgb(160, 244, 244);
   }
  
   /* PARA LOS CUADROS DE PAGINACION */
   .celda_paginar{
    background-color:white;
    cursor:pointer;
    height:40px;
    width:40px;
    color:#0032FF;
    font-size:1em;
   }
   .celda_paginar:hover{
    background-color:rgb(160, 244, 244);
    cursor:pointer;
    height:40px;
    width:40px;
    color:#0032FF;
    font-size:1em;
   }
 
  
  /* ESTO ES EL CONTENIDO DEBE TENER UN PADDING Para que el Menu NO lo tape */
  .main{
      padding-top: 1rem ;
  }
  
  .botonex {
      /*background-color: #4CAF50; */
      padding: 5px 10px;
      font-family: 'Calibri', sans-serif;
      font-size: 0.9rem;
      background-color:rgb(9, 156, 53);
      border: none;
      border-radius: 5px;
      color: #ffffff;
      cursor: pointer;
      /*padding: 1px;*/
      /*width: 100%;*/
  }

  .td_invitante{
    background-color: #CDE3ED; 
    font-weight:bold;
  }

  .td_invitante_header{
    background-color: #CDE3ED; 
    font-weight:bold;
    border-top-left-radius: 7px; 
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  

  .td_invitado{
    background-color: #EAC25F;
    font-weight:bold;
  } 

  .td_invitado_header{
    background-color: #EAC25F; 
    font-weight:bold;
    border-top-left-radius: 7px; 
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  
  header {
    background-color: #c3c2c2;
  }
  
  .footer{
      background-color: #f2f2f2;
      padding: 4rem 0;
      text-align: center;
      margin-top: 6rem;
  
  }
  
  header .container {
    position: relative;
    /*max-width: 960px;*/
    padding: 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .container .brand h2 {
    color: #FFF;
    font-size: 28px;
    font-weight: 900;
    
  }
  header .container .brand h2 span {
    color: #444444;
    font-weight: 400;
  
  }
  
  header .container .mobile-nav {
      /*OCULTA LA PALABRA MENU */
    display: none;
  }
  header .container .mobile-nav .open-menu {
    color: #FFF;
    text-decoration: none;
    
  }
  @media screen and (max-width: 1200px) {
    /*MUESTRA LA PALABRA MENU */
    header .container .mobile-nav {
      display: block;
    }
  }
  header .container .navbar .menu {
    display: flex;
    list-style-type: none;
  }
  header .container .navbar .menu .menu-item {
    position: relative;
    border-radius: 5px;
  }
  header .container .navbar .menu .menu-item a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
  }
  header .container .navbar .menu .menu-item a:hover {
    color: #000000;
    background-color: #939090;
  }
  header .container .navbar .menu .menu-item.has-sub-menu > a {
    position: relative;
    padding-right: 35px;
    border-radius: 5px;
  }
  /*ESTO SOLAMENTE ES PARA EL SIGNO + */
  header .container .navbar .menu .menu-item.has-sub-menu > a:after {
    content: "+";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
  }
  header .container .navbar .menu .menu-item.has-sub-menu > a:hover:after {
    color: #000000;
  }
  header .container .navbar .menu .menu-item.has-sub-menu .sub-menu {
   /*ESTE ES EL BLOQUE DE DEBO ACORTAR */
    position: absolute;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: 0.3s ease-out;
    min-width: 50%;
    width: max-content;
    background-color: #4f4f4f;
    list-style-type: none;
    border-radius: 5px;
  }
  
  
  header .container .navbar .menu .menu-item.has-sub-menu .sub-menu .menu-item {
    width: 100%;
    
  }
  
  header .container .navbar .menu .menu-item.has-sub-menu:hover > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  header .container .navbar .menu .menu-item.has-sub-menu:hover > .sub-menu .sub-menu {
    top: 0;
    right: 100%;
  }
  header .container .navbar .close-menu {
    display: none;
    color: #FFF;
    text-decoration: none;
    text-align: center;
  }

  @media screen and (max-width: 1200px) {
    header .container .navbar .close-menu {
      display: block;
    }
  }
 
  
  @media screen and (max-width: 1200px) {
    header .container .navbar {
      /* el width es el ancho del menu negro */
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      /*width: 70vw;*/
      width: 200px;
      min-height: 100vh;
      z-index: 999;
      background-color: #222;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease-out;
    }
    header .container .navbar.is-active {
      opacity: 1;
      pointer-events: all;
    }

    header .container .navbar .menu {
      flex-direction: column;
    }
    header .container .navbar .menu .has-sub-menu > .sub-menu {
      display: none;
      position: relative;
    }
    header .container .navbar .menu .has-sub-menu > .sub-menu .sub-menu {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
    }
    header .container .navbar .menu .has-sub-menu:hover > .sub-menu {
      display: block;
    }
  }
 
  
  main section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  main section h1 {
    color: #868585;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
  }
  main section h2 {
      color: #868585;
      font-size: 30px;
      font-weight: 500;
      text-align: center;
      margin-bottom: 30px;
    }
  
  main section .image-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  main section .image-wrap .image {
    display: block;
    width: 100%;
    max-width: 480px;
  }
  main section .content-wrap {
    display: block;
    max-width: 768px;
    margin: 0 auto;
  }
  main section .content-wrap p {
    color: #676767;
    font-size: 18px;
    font-weight: 400;
  }
  
  /*# sourceMappingURL=main.css.map */
  
  