
:root {
    --cGuinda: #A50034;
    --cCafe: #CEB888;
    --cGris: #EDEEF0;
    --cGrisF: #63666A;
    --cAzul: #253746;
    --cGrisClaro: #e3e3e3;
  }
  
  @font-face {
    font-family: 'Sublima-Light';
    src: url('../fonts/sublima/Sublima-Light.otf');
}

@font-face {
    font-family: 'Sublima-Bold';
    src: url('/fonts/sublima/Sublima-ExtraBold.otf');
}
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    text-decoration: none;
    list-style: none;
    text-decoration: none;
  }
  
  body {
    box-sizing: border-box;
    font-family: 'Sublima-Light';
    list-style: none;
    text-decoration: none;
  }
  
  .body-cumplimiento {
    margin-top: 4rem;
  }
  #titulo_guias {
    position: relative;
    left: 190px;
    top: -100px;
    width: 25%;
      /*    z-index: 990;*/
  }
  
  .contenedor-principal {
    position: relative;
    bottom: 10px;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #encabezado_imagen {
    width: auto;
    max-width: 100%;
  }
  
  /* tabs */
  .options {
    display: flex;
    list-style: none;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  
  .option {
    text-align: center;
    padding: 10px 25px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-style: 'Sublima-Bold';
    background-color: var(--cAzul);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  
  }
  
  .option-active {
    background: var(--cAzul) !important;
    color: white !important;
  }
  
  .option-active:before,
  .option-active:after {
    background-color: var(--cAzul) !important;
    color: white !important;
  
  }
  
  /* .contents {
    box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 0 auto;
    margin-bottom: 68px;
    overflow: hidden;
    transition: border 250ms ease;
  } */
  
  .content {
    width: 100%;
    height: 100%;
    /* color: #fff; */
    display: none;
    padding: 20px;
    box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1);
    border-style: solid;
    /* border-top-color: var(--cAzul); */
    border-width: 0.025rem;
    /* border-left: none;
    border-right: none;
    border-bottom: none; */
    border-radius: 1rem;
    border-color: #BBBCBC;
    background-color: #fdfdfd56;
  
  }
  
  .letra {
    color: #253746;
  }
  
  .content-active {
    display: block;
    /* color: black; */
    /* box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1); */
    /* border-style: solid; */
    /* border-top-color: var(--cAzul); */
    /* border-width: 3rem;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 1rem; */
    height: 550px;
    box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 0 auto;
    margin-bottom: 68px;
    overflow: hidden;
    transition: border 250ms ease;
    background-color: #fdfdfd56;
  
  }
  
  .content h3 {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(255, 255, 255, .3);
    letter-spacing: 2px;
    margin: 10px;
  }
  
  .content p {
    margin: 15px;
    letter-spacing: 1px;
  }
  
  
  
  
  
  /*selects*/
  .container {
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  
  
  /*tab mun*/
  
  .container2 {
    width: auto;
    height: auto;
    margin: 2rem 8rem;
  }
  
  
  
  .tablas-forma {
    width: 80%;
    /* min-width: 400px; */
    margin: 0 auto;
    overflow: hidden;
    transition: border 250ms ease;
  }
  
  .tablas-forma ul {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    padding-left: 48px;
    list-style-type: none;
  }
  
  .tablas-forma ul * {
    margin: 0px;
    padding: 0px;
  }
  
  .tablas-forma ul li {
    display: block;
    float: right;
    padding: 10px 29px 8px;
    background-color: var(--cGrisClaro);
    margin-right: 66px;
    position: relative;
    cursor: pointer;
    color: #777;
    font-style: 'sublima-Bold';
  
    transition: all 250ms ease;
  }
  
  .tablas-forma ul li:before,
  .tablas-forma ul li:after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 44px;
    background-color: var(--cGrisClaro);
    transition: all 250ms ease;
  }
  
  .tablas-forma ul li:before {
    right: -24px;
    transform: skew(30deg, 0deg);
    box-shadow: rgba(0, 0, 0, .1) 3px 2px 5px, inset rgba(255, 255, 255, .09) -1px 0;
  }
  
  .tablas-forma ul li:after {
    left: -24px;
    transform: skew(-30deg, 0deg);
    box-shadow: rgba(0, 0, 0, .1) -3px 2px 5px, inset rgba(255, 255, 255, .09) 1px 0;
  }
  
  .tablas-forma ul li:hover,
  .tablas-forma ul li:hover:before,
  .tablas-forma ul li:hover:after {
    background-color: var(--cAzul);
    color: #fff;
  }
  
  .tablas-forma ul li.active {}
  
  .tablas-forma ul li.active,
  .tablas-forma ul li.active:before,
  .tablas-forma ul li.active:after {
    background-color: var(--cAzul);
    color: var(--cGrisClaro);
  }
  
  /* Round Tabs */
  .tablas-forma ul li {
    border-radius: 8px 8px 0 0;
  }
  
  .tablas-forma ul li:before {
    border-radius: 0 14px 0 0;
  }
  
  .tablas-forma ul li:after {
    border-radius: 14px 0 0 0;
  }
  
  
  a:hover,
  a:focus {
    outline: none;
    text-decoration: none;
  }
  
  
  
  /* Para el scroll de los contenedores  */
  .c {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 500px;
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin;  
  }

  
  
  /* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/
  .c::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
  
  }
  
  .c::-webkit-scrollbar:vertical {
    width: 10px;
    height: 300px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  
  .c::-webkit-scrollbar-button:increment,
  .c::-webkit-scrollbar-button {
    display: none;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  .c::-webkit-scrollbar:horizontal {
    height: 10px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  .c::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: #797979;
    border-radius: 5px;
  }
  
  .c::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #fff 0%, #fff 35%, #eaeaea 35%, #eaeaea 75%, #fff 75%, #fff 100%);
  }
  
  
  
  @media only screen and (max-width: 1029px) {
  
    .options {
      margin-top: 20px;
      margin-left: 20px;
      margin-right: 30px;
      margin-bottom: 0;
      display: contents !important;
    }
  
    .option {
      text-align: center;
      padding: 10px 25px;
      color: white;
      cursor: pointer;
      font-weight: bold;
      font-style: 'Sublima-Bold';
      background-color: var(--cAzul);
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      max-width: 350px;
      align-items: center;
  
    }
  
    .option-active {
      background: var(--cAzul) !important;
      color: white !important;
    }
  
    .option-active:before,
    .option-active:after {
      background-color: var(--cAzul) !important;
      color: white !important;
  
    }
  
    .tablas-forma2 {
      width: auto;
      /* min-width: 800px; */
      margin: 0 auto;
      overflow: hidden;
      transition: border 250ms ease;
      font-size: 0.7rem;
      margin-left: 2.5rem;
    }
  
    /* .tablas-forma2 ul li {
      padding: 10px 15px 1px;
      background-color: var(--cGrisClaro);
      margin-right: 1rem;
      position: relative;
      cursor: pointer;
      color: #777;
      font-style: 'sublima-Bold';
      transition: all 250ms ease;
    } */
    .tablas-forma ul li {
      display: block;
      padding: 10px 29px 8px;
      background-color: var(--cGrisClaro);
      margin-left: 60px;
      position: relative;
      cursor: pointer;
      color: #777;
      font-style: 'sublima-Bold';
      transition: all 250ms ease;
      float: none;
    }
  
    .tablas-forma2 ul {
      margin: 0px;
      padding: 0px;
      overflow: hidden;
      padding-left: 145px;
      list-style-type: none;
    }
  
    .tablas-forma ul li:before {
      right: -24px;
      transform: none;
      box-shadow: rgba(0, 0, 0, .1) 3px 2px 5px, inset rgba(255, 255, 255, .09) -1px 0;
    }
  
    .tablas-forma ul li:after {
      left: -24px;
      transform: none;
      box-shadow: rgba(0, 0, 0, .1) -3px 2px 5px, inset rgba(255, 255, 255, .09) 1px 0;
    }
  
    .tablas-forma ul li {
      border-radius: 0px 0px 0 0;
    }
  
    .tablas-forma ul li:before {
      border-radius: 0 0px 0 0;
    }
  
    .tablas-forma ul li:after {
      border-radius: 0px 0 0 0;
    }
  
    .contents {
      margin-top: 1.5rem;
    }
  
    /*  .tab .nav-tabs li a {
      padding: 0;
      margin-left: 1rem;
      margin-right: 2rem;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: 1fr;
      grid-column-gap: 0px;
      grid-row-gap: 12px;
    }*/
    /* .tab .nav-tabs li.active a {
      background-color: red !important;
    } */
  
    .nav {
      display: inline-block !important;
      flex-wrap: wrap;
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
      column-count: 3;
      column-gap: 10px;
    }
  
    
  
    #encabezado_imagen {
      width: auto;
      max-width: 100%;
      height: 50px;
    }
  
  }
  
  /* @media only screen and (min-width: 1030px) and (max-width: 1269px) {
    .tablas-forma {
      width: auto;
      min-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      transition: border 250ms ease;
      font-size: 0.7rem;
   
    }
  
    .tablas-forma ul li {
      float: right;
      padding: 2px 15px 1px;
      background-color: var(--cGrisClaro);
      margin-right: 1rem;
      position: relative;
      cursor: pointer;
      color: #777;
      font-style: 'sublima-Bold';
      transition: all 250ms ease;
    }
  
    .tablas-forma ul {
      margin: 0px;
      padding: 0px;
      overflow: hidden;
      padding-left: 145px;
      list-style-type: none;
    }
  
    .nav-buscarcum {
      position: absolute;
      border-top-left-radius: 1.5em;
      border-top-right-radius: 1.5em;
      right: 0.5rem;
      width: auto;
      background-color: var(--cAzul) !important;
      height: auto;
    }
  
    .tab .nav-tabs li a {
      display: block;
      padding: 10px;
      border: 1px solid var(--cGrisClaro);
      border-radius: 50px;
      background: var(--cGrisClaro);
      font-size: 10px;
      color: var(--cGrisF);
      text-align: center;
      margin: 0 5px 30px 0;
      z-index: 1;
      position: relative;
      transition: all 0.3s ease 0s;
      line-height: 0.7;
      text-decoration: none;
      font-family: 'Sublima-Light';
  
    }
  
    .tablas-forma ul li:before,
    .tablas-forma ul li:after {
      display: block;
      content: " ";
      position: absolute;
      top: 0;
      height: 100%;
      width: 35px;
      background-color: var(--cGrisClaro);
      transition: all 250ms ease;
    }
  
    .input-ibuscar {
      color: white;
      position: absolute;
      width: 20px;
      height: 30px;
      left: 1px;
      transform: translate(-6px, -16%);
      z-index: 2;
    }
  
  
  
    .div-imagen {
      max-width: 65%;
      margin-right: -5rem;
      margin-left: -0.5rem;
    }
  
    .sub {
      display: none;
  
    }
  
    .tablas-forma {
      display: none;
  
    }
  

  } */
  
  @media only screen and (min-width: 1270px) and (max-width: 1343px) {
  
    .tablas-forma {
      width: auto;
      min-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      transition: border 250ms ease;
      font-size: 0.7rem;
      /* margin-left: 0.5rem; */
  
      /* margin-left: 1rem; */
  
    }
  
    .tablas-forma ul li {
      /* display: block; */
      float: right;
      /* padding: 10px 21px 8px; */
      padding: 2px 15px 1px;
      background-color: var(--cGrisClaro);
      margin-right: 1rem;
      position: relative;
      cursor: pointer;
      color: #777;
      font-style: 'sublima-Bold';
      transition: all 250ms ease;
    }
  
    .tablas-forma ul {
      margin: 0px;
      padding: 0px;
      overflow: hidden;
      padding-left: 190px;
      list-style-type: none;
    }
  
    .nav-buscarcum {
      position: absolute;
      border-top-left-radius: 1.5em;
      border-top-right-radius: 1.5em;
      right: -4rem;
      width: auto;
      background-color: var(--cAzul) !important;
      height: auto;
    }
  
    .tab .nav-tabs li a {
      display: block;
      padding: 10px;
      border: 1px solid var(--cGrisClaro);
      border-radius: 50px;
      background: var(--cGrisClaro);
      font-size: 10px;
      color: var(--cGrisF);
      text-align: center;
      margin: 0 5px 30px 0;
      z-index: 1;
      position: relative;
      transition: all 0.3s ease 0s;
      line-height: 0.7;
      text-decoration: none;
      font-family: 'Sublima-Light';
  
    }
  
    .tablas-forma ul li:before,
    .tablas-forma ul li:after {
      display: block;
      content: " ";
      position: absolute;
      top: 0;
      height: 100%;
      width: 35px;
      background-color: var(--cGrisClaro);
      transition: all 250ms ease;
    }
  
  
    .tablas-forma {
      display: block;
    }
  
  
  }

  @media only screen and (min-width: 1441px) and (max-width: 1870px) {
  
    .tablas-forma {
      width: auto;
      min-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      transition: border 250ms ease;
      font-size: 0.8rem;
      margin-left: 2rem;
  
    }
  
    .tablas-forma ul li {
      /* display: block; */
      float: right;
      /* padding: 10px 21px 8px; */
      padding: 2px 15px 1px;
      background-color: var(--cGrisClaro);
      margin-right: 2rem;
      position: relative;
      cursor: pointer;
      color: #777;
      font-style: 'sublima-Bold';
      transition: all 250ms ease;
    }
  
    .tablas-forma ul {
      margin: 0px;
      padding: 0px;
      overflow: hidden;
      padding-left: 170px;
      list-style-type: none;
    }
  
    .nav-buscarcum {
      position: absolute;
      border-top-left-radius: 1.5em;
      border-top-right-radius: 1.5em;
      right: -4rem;
      width: auto;
      background-color: var(--cAzul) !important;
      height: auto;
    }
  
    .tab .nav-tabs li a {
      display: block;
      padding: 10px;
      border: 1px solid var(--cGrisClaro);
      border-radius: 50px;
      background: var(--cGrisClaro);
      font-size: 10px;
      color: var(--cGrisF);
      text-align: center;
      margin: 0 5px 30px 0;
      z-index: 1;
      position: relative;
      transition: all 0.3s ease 0s;
      line-height: 0.7;
      text-decoration: none;
      font-family: 'Sublima-Light';
  
    }
  
    .tablas-forma ul li:before,
    .tablas-forma ul li:after {
      display: block;
      content: " ";
      position: absolute;
      top: 0;
      height: 100%;
      width: 35px;
      background-color: var(--cGrisClaro);
      transition: all 250ms ease;
    }
  
  
    .tablas-forma {
      display: block;
    }
  

  }
  
  @media only screen and (min-width: 1871px) and (max-width: 4000px) {

  }
  
  
  
  .grid-container-cards {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  
  .grid-container-cards>div {
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    padding-top: 0%;
  }
  
  .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: 1.5px solid var(--cCafe) !important;
  }
  
  .bordes-puntos{
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
    background-image: linear-gradient(to right, #CCCFD4 30%, rgba(204, 206, 212, 0) 10%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x;
  }
  
  .titulo-tabla {
    color: var(--cCafe);
    font-size: 20px;
    font-family: 'Sublima-Light';
    letter-spacing: .2rem;
  }
  
  
  a.enlacePersonal {
    color: black;
    text-align: left;
    text-decoration: none !important;
    font-size: 18px;
    font-family: 'Sublima-Light';
    padding: 0px;
  
    &:hover {
      text-decoration: none;
      color: var(--cGuinda);
    }
  
  }
  
  .btn-acuerdos {
    background-color: var(--cCafe);
    color: #fff;
    border: 1px solid var(--cCafe);
    ;
    width: 85px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25), -1px -1px 30px 1px rgba(0, 0, 0, 0.22);
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 50px;
  
    &:hover {
      text-decoration: none;
      color: white;
      background-color: var(--cGuinda);
    }
  
  
  
  }
  
  .texto-acuerdos-asfe {
    color: var(--cAzul);
    font-family: 'Sublima-Light';
    font-size: 18px;
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
    background-image: linear-gradient(to right, #CCCFD4 30%, rgba(204, 206, 212, 0) 10%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x;
  }
  
  .sp-blocknumber {
    background: #ffffff;
    color: #b9b8b8;
    font-size: 25px;
    font-family: 'sublima_bold';
  }
  .rounded{
    background: #ffffff;
    color: #b9b8b8;
    font-size: 25px;
  }
  
  .texto-sin-borde{
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
  }

  
  /* .bordes-puntos{
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
    background-image: linear-gradient(to right, #CCCFD4 30%, rgba(204, 206, 212, 0) 10%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x;
  } */
  
  
  .btn-acuerdos-largo {
    background-color: var(--cCafe);
    color: #fff;
    border: 1px solid var(--cCafe);
    width: 200px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25), -1px -1px 30px 1px rgba(0, 0, 0, 0.22);
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 50px;
  }
  
  @media(max-width:1280px){
      #titulo_guias {
          position: relative;
          left: 40px;
          top: -8rem;
          width: 55%;
      /*    z-index: 990;*/
      }
  }
  
  @media(max-width:600px){
      #titulo_guias {
        position: relative;
          left: 35px;
          top: -100px;
          width: 100%;
      /*    z-index: 990;*/
      }

             
  }
  
  
/*/////////////////////////////////////pada*/

.contenedor__pada{

    display: block;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1);
    border-style: solid;
    border-width: 0.025rem;
    border-radius: 1rem;
    border-color: #BBBCBC;
    height: 600px;
    box-shadow: 0px 7px 7px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 2.5rem auto;
    margin-bottom: 68px;
    overflow: hidden;
    transition: border 250ms ease;
    background-color: #fdfdfd56;
  
  }
  
  .pada__scroll {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 550px;
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin;
  }
  
  .pada__scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
  
  }
  
  .pada__scroll::-webkit-scrollbar:vertical {
    width: 10px;
    height: 100px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  
  .pada__scroll::-webkit-scrollbar-button:increment,
  .pada__scroll::-webkit-scrollbar-button {
    display: none;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  .pada__scroll::-webkit-scrollbar:horizontal {
    height: 10px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  }
  
  .pada__scroll::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: #797979;
    border-radius: 5px;
  }
  
  .pada__scroll::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #fff 0%, #fff 35%, #eaeaea 35%, #eaeaea 75%, #fff 75%, #fff 100%);
  }
  
  
  
  .container-cards {
    display: block;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  .table__pada{
      margin: auto 3rem;
  }
  
  
  .table__pada th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: 1.5px solid var(--cCafe) !important;
  }
  
  .bordes_puntos{
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
    background-image: linear-gradient(to right, #CCCFD4 30%, rgba(204, 206, 212, 0) 10%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x;
  }
  
  .titulopada-tabla {
    color: var(--cCafe);
    font-size: 20px;
    font-family: 'Sublima-Light';
    letter-spacing: .2rem;
  }
  
  
  a.enlacePersonal {
    color: black;
    text-align: left;
    text-decoration: none !important;
    font-size: 18px;
    font-family: 'Sublima-Light';
    padding: 0px;
  
    &:hover {
      text-decoration: none;
      color: var(--cGuinda);
    }
  
  }
  
  .btn-pada {
    background-color: var(--cCafe);
    color: #fff;
    border: 1px solid var(--cCafe);
    width: 85px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25), -1px -1px 30px 1px rgba(0, 0, 0, 0.22);
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 50px;
  
    &:hover {
      text-decoration: none;
      color: white;
      background-color: var(--cGuinda);
    }
  
  
  
  }
  
  .texto-acuerdos-pada {
    color: var(--cAzul);
    font-family: 'Sublima-Light';
    font-size: 18px;
    padding: 0.75rem;
    vertical-align: top;
    /* border-top: none !important;
    border-bottom: none !important; */
    /* background-image: linear-gradient(to right, #CCCFD4 30%, rgba(204, 206, 212, 0) 10%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x; */
  }
  
  .sp-blocknumber {
    background: #ffffff;
    color: #b9b8b8;
    font-size: 25px;
    font-family: 'sublima_bold';
  }
  .rounded{
    background: #ffffff;
    color: #b9b8b8;
    font-size: 25px;
  }
  
  .texto_borde{
    padding: 0.75rem;
    vertical-align: top;
    border-top: none !important;
    border-bottom: none !important;
  }
  
  
  @media(max-width:600px){
      .table__pada {
          margin: 0;
      }
      .texto-acuerdos-pada{
          font-size: 13px;
      }
      .btn-pada {
          width: 45px;
          font-size: 0.7rem;
      }
      .rounded{
    
            font-size: 20px;
      }
  
  }
  
  .titulos-sia{
    background: #ffffff;
    color: #253746;
    font-size: 25px;
    font-family: 'Sublima-Light';
  }
  .texto-sia-sistemadquisi {
    color: var(--cAzul);
    font-family: 'Sublima-Light';
    /* font-size: 18px; */
    padding: 0.75rem;
    vertical-align: top;
  
  }
  #tabla_manuales{
    width: 90%;
}
.contenedor {
    display: flex;
    justify-content: center;
  }
.titulo{
    color: white;
    text-align: left;
    font-size: 15px;
    font-family: 'sublima_bold';
    justify-content: center;
}


#titulo_manual {
    position: relative;
    left: 200px;
    top: -160px;
    width: 15%;
    /* z-index: 999; */
  }
  .btn{
    /*filtro gris comentar cuando se a necesario  */
  filter: grayscale(100%);
  transition: filter 1s;
/**/

  }