
* {
   /* afecta a la 142 padding: 0px;*/
    margin: 0px;
  }



  /* afecta a la 142
  ul {
    list-style: none;
  }
  */

  /* afecta a la 142 cuando no estaban estos estilos para el body */
  body {
    font-family: Roboto,Arial,sans-serif !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #333 !important;
    font-weight: 300 !important;
  }
/* afecta al diseño anterior que no esté (paginas con la 142.style, puede que de algún conflicto) */
  .col-sm-8 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

/* afecta al diseño anterior que no esté (paginas con la 142.style, puede que de algún conflicto) */
  a:focus, a:hover {
    color: white !important;
    text-decoration: underline;
}
  
  
  .bg_alert {
    background-color: #FF2B2B;
    min-height: 62px;
    padding-top: 20px;
    animation-name: bg-alert-animation;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
  }
  
  @keyframes bg-alert-animation {
    0% {
      background-color: #FF2B2B;
    }
    50% {
      background-color: #a71a1a;
    }
    100% {
      background-color: #FF2B2B;
    }
  }
  /*Containers*/
  @media only screen and (min-width: 1200px) {
    .container {
      width: 1086px !important;
      padding-left: 0px !important;
      padding-right: 0px !important;
    }
  }
  .container-xxl {
    width: 97%;
    margin: 0 auto;
  }
  
  /*Sizes of container grids*/
  .w-60 {
    width: 616px;
    min-height: 423px;
  }
  
  .w-30 {
    width: 415px;
    min-height: 423px;
    padding: 40px 55px;
  }
  
  .w-522 {
    width: 522px;
  }
  
  .p-40-50 {
    padding: 40px 55px;
  }
  
  .w-100 {
    width: 100% !important;
  }
  
  @media only screen and (max-width: 1000px) {
    .w-60 {
      width: 90%;
      display: block;
      margin: 0 auto;
    }
  
    .w-30 {
      width: 90%;
      display: block;
      margin: 0 auto;
      padding: 20px 25px;
      min-height: auto;
    }
  
    .p-40-50 {
      padding: 20px 25px;
    }
  
    .w-522 {
      width: 100% !important;
    }
  }
  /*Cards*/
  .bg_card-w-100 {
    background-color: #005BAA;
    border-radius: 14px;
    transition: all ease-in 0.2s;
    width: 100% !important;
  }
  
  .bg_card-w-100:hover {
    outline: 10px solid white;
  }
  .bg_card-w-100:hover ~ button:hover {
    background-color: white;
    color: #005BAA !important;
  }
  
  .bg_card-w-100:hover button {
    background-color: white !important;
    color: #005BAA !important;
  }
  
  @media only screen and (max-width: 1025px) {
    .card-contenedor {
      flex-wrap: wrap;
    }
  }
  /*Audio*/
  .bg-audio-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 55px;
  }
  
  @media only screen and (max-width: 1000px) {
    .bg-audio-section {
      padding: 20px 25px;
      align-items: flex-start;
    }
    .bg-audio-section p {
      text-align: start;
    }
  }
  /*Colors*/
  .bg_primary {
    background-color: #005BAA;
  }
  
  .bg_primary-medium {
    background-color: #0046A3;
  }
  
  .bg-brown {
    background-color: #83624F;
  }
  
  .bg-lightblue {
    background-color: #1AC8FF;
  }
  
  .bg-green {
    background-color: #35CC9F;
  }
  
  .bg-gray {
    background-color: #E8E9ED;
  }
  
  /*Radius*/
  .radius-14 {
    border-radius: 14px;
  }
  
  /*box model*/
  .d-flex {
    display: flex;
  }
  
  .flex-column {
    flex-direction: column;
  }
  
  .justify-content-between {
    justify-content: space-between;
  }
  
  .justify-content-end {
    justify-content: flex-end;
  }
  
  .justify-content-center {
    justify-content: center;
  }
  
  .aling-items-center {
    align-items: center !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  .d-none {
    display: none !important;
  }
  .d-sm-block-md-none{
    display: none !important;
  }
  
  .float-left {
    float: left;
  }
  
  .float-right {
    float: right;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  @media only screen and (max-width: 1000px) {
    .d-md-none {
      display: none !important;
    }
    .d-sm-block-md-none{
    display: block !important;
  }
   
    .flex-md-column {
      flex-direction: column;
    }
  }
  @media only screen and (max-width: 768px) {
    .d-sm-flex {
      display: flex;
    }
  
    .flex-column-sm {
      flex-direction: column;
    }
  
    .justify-content-sm-between {
      justify-content: space-between;
    }
  
    .order-sm-1 {
      order: 1 !important;
    }
  
    .order-sm-2 {
      order: 2 !important;
    }
  
    .order-sm-3 {
      order: 3 !important;
    }
  }
  @media only screen and (max-width: 992px) {
    .d-md-flex {
      display: flex !important;
    }
  
    .flex-column-md {
      flex-direction: column;
    }
  
    .justify-content-md-between {
      justify-content: space-between;
    }
  
    .order-md-1 {
      order: 1 !important;
    }
  
    .order-md-2 {
      order: 2 !important;
    }
  
    .order-md-3 {
      order: 3 !important;
    }
  }
  /*center*/
  .mx-auto {
    margin: 0 auto;
  }
  
  /*Paddings*/
  .px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
  .pt-28 {
    padding-top: 28px;
  }
  
  .py-54 {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  
  .py-47 {
    padding-top: 47px;
    padding-bottom: 47px;
  }
  
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  @media only screen and (max-width: 994px) {
    .py-54 {
      padding-top: 32px;
      padding-bottom: 32px;
    }
  
    .mx-md-auto {
      margin: 0 auto !important;
    }
  }
  /*Margins*/
  .pl-24 {
    padding-left: 24px;
  }
  
  .mt-10 {
    margin-top: 10px;
  }
  .mt-28 {
    margin-top: 28px;
  }
  .mt-37 {
    margin-top: 37px;
  }
  
  .mt-44 {
    margin-top: 44px;
  }
  
  .mt-78 {
    margin-top: 78px;
  }
  
  .mt-100 {
    margin-top: 100px;
  }
  .mb-100{
    margin-bottom: 100px;
  }
  
  .my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  .mx-15 {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .mb-31 {
    margin-bottom: 31px;
  }
  
  @media only screen and (max-width: 1000px) {
    .mt-md-50 {
      margin-top: 50px;
    }
  }
  @media only screen and (max-width: 768px) {
    .mt-sm-20 {
      margin-top: 20px !important;
    }
  
    .mt-sm-40 {
      margin-top: 40px !important;
    }
  
    .mt-78 {
      margin-top: 40px;
    }
  
      .mt-100 {
    margin-top: 50px;
  }
  .mb-100{
    margin-bottom: 50px;
  }
    .my-100 {
      margin-top: 50px;
      margin-bottom: 50px;
    }
  
    .mt-sm-50 {
      margin-top: 50px;
    }
  }
  /*List*/
  .bg_ul_border-white li {
    border-bottom: 1px solid white;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .bg_boletines {
    width: 66px;
    width: 66px;
  }
  
  /*Images*/
  .bg_cambio-climatico {
    background-image: url(../../images/cambio-climatico-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  @media only screen and (max-width: 768px) {
    .bg_cambio-climatico {
      background-size: 280%;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .bg_cambio-climatico p {
      text-align: start;
    }
  }
  /*temas descatados*/
  .bg_temas_destacados_list {
    padding: 0px;
  }
  .bg_temas_destacados_list li:first-child {
    margin-top: 0px;
    padding: 19px 21px;
  }
  .bg_temas_destacados_list li {
    background-color: white !important;
    border-radius: 8px;
    margin-top: 19px;
    padding: 19px 21px;
    display: flex;
    align-items: center;
  }
  .bg_temas_destacados_list img {
    width: 100px;
    height: 100px;
  }
  .bg_temas_destacados_list p {
    padding-left: 20px;
  }
  
  /*Footer*/
  footer {
    background-color: #201F61;
    padding-top: 93px;
    padding-bottom: 51px;
  }
  
  .bg_line-footer {
    width: 100%;
    height: 1px;
    background-color: #005BAA;
  }
  
  @media only screen and (max-width: 992px) {
    .bg_line-footer {
      display: none;
    }
  }
  .btn-search {
    width: 197px;
    color: #005BAA;
    background-color: #F4F4F7;
    border-radius: 15px !important;
    font-size: 12px;
  }
  
  .btn-search::placeholder {
    color: #005BAA;
  }
  
  .search-submit {
    position: absolute !important;
    left: 0 !important;
    background-color: transparent !important;
    border: none !important;
    margin-left: 40px !important;
    border: none !important;
    color: #005BAA !important;
    margin-top: 8px !important;
  }
  
  @media only screen and (max-width: 400px) {
    .search-submit {
      margin-left: 25px !important;
    }
  
    .btn-search {
      width: 120px;
    }
  }
  .btn-primary {
    color: white !important;
    background-color: #005BAA !important;
    border-radius: 15px !important;
    font-size: 18px !important;
    height: 58px;
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
  
  .btn-primary:hover {
    background-color: #0046A3 !important;
  }
  
  .social-buttons {
    width: 34px;
    height: 34px;
    background-color: #005BAA;
    display: flex;
    justify-content: center;
    border-radius: 100% !important;
    padding: 0px !important;
    align-items: center;
  }
  
  .btn-secundary {
    background-color: white;
    border: 1px solid #005BAA !important;
    font-size: 10px;
    color: #005BAA;
    border-radius: 3px;
    transition: all ease-in 0.2s;
  }
  
  .btn-secundary:hover {
    background-color: #005BAA;
    color: white !important;
  }
  
  .btn-trasnparent-white {
    background-color: transparent;
    border: 1px solid white !important;
    font-size: 18px !important;
    color: white;
    border-radius: 14px !important;
    padding: 21px 38px !important;
    transition: all ease-in 0.2s;
  }
  
  .btn-trasnparent-white:hover {
    background-color: white;
    border: 1px solid white !important;
    color: #005BAA !important;
  }
  
  @media only screen and (max-width: 994px) {
    .btn-trasnparent-white {
      padding: 14px 26px !important;
    }
  
    .btn-secundary, .btn-search {
      max-height: 34px;
    }
  }
  .btn-social-white {
    width: 45px;
    height: 45px;
    padding: 0px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
  }
  
  .input-contact {
    background-color: transparent !important;
    border: 1px solid white !important;
    color: white !important;
    border-radius: 12px !important;
    height: 48px !important;
  }
  
  .input-contact-textarea {
    background-color: transparent !important;
    border: 1px solid white !important;
    color: white !important;
    border-radius: 12px !important;
    height: 158px !important;
  }
  
  .input-contact::placeholder, .input-contact-textarea::placeholder {
    color: white !important;
    font-size: 18px;
  }
  
  .buttons_audio-player-container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 92px;
  }
  
  .buttons_video-container {
    background-color: white;
    border-radius: 10px;
    height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button-play {
    border: none;
    background-color: transparent;
    color: #005BAA;
    display: flex;
    align-items: center;
  }
  .button-play .circle-play {
    background-color: #005BAA;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .button-play .circle-play:hover {
    background-color: #0046A3;
  }
  
  .bg-progress {
    width: 100%;
    background-color: white;
    height: 10px;
    margin-top: 10px;
  }
  
  .progress {
    width: 1px;
    height: 10px !important;
    background: #005BAA !important;
    transition: width 0.1s linear;
  }
  
  .audio-animation {
    height: 48px;
    width: 90px;
    background-image: url($themeDisplay.getPathThemeRoot()/images/frecuencia.png);
  }
  
  .audio-animation-active {
    animation-name: audio-keyframes;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
  
  @keyframes audio-keyframes {
    0% {
      background-position: left;
    }
    50% {
      background-position: right;
    }
    100% {
      background-position: left;
    }
  }
  h1, h2, h3 ,h4, h5, h6 h7, p, span, li, a{
    font-family: "Roboto", sans-serif !important;
  }
  
  /*Titles*/
  h1 {
    font-weight: 700 !important;
    font-size: 51px !important;
    font-family: "Roboto", sans-serif !important;
  }
  
  /*Position*/
  @media only screen and (max-width: 768px) {
    .text-sm-start {
      text-align: left !important;
    }
  
    .text-sm-center {
      text-align: center;
    }
  }
  .text-start {
    text-align: left;
  }
  
  .text-end {
    text-align: right;
  }
  
  /*Colors*/
  .text-white {
    color: white;
  }
  
  .text-gray {
    color: #7C849B;
  }
  
  .text-primary {
    color: #005BAA;
  }
  
  .text-primary-medium {
    color: #0046A3;
  }
  
  .text-gray-title {
    color: #4B4A60;
  }
  
  /*Weigth*/
  .text-bold {
    font-weight: 700;
  }
  
  /*Size*/
  .f-14 {
    font-size: 14px;
  }
  
  .f-18 {
    font-size: 18px;
  }
  
  .f-23 {
    font-size: 23px;
  }
  
  .f-47 {
    font-size: 47px;
  }
  
  .f-51 {
    font-size: 51px;
  }
  
  .fas {
    font-size: 12px !important;
  }
  
  @media only screen and (max-width: 994px) {
    .f-18 {
      font-size: 12px;
    }
  
    .f-23 {
      font-size: 16px;
    }
  
    .f-47 {
      font-size: 25px;
    }
  
    .text-md-center {
      text-align: center;
    }
  }
  #menu {
      background-color: white;
  
   
    }
  .navbar{     
        position: relative;
      min-height: 50px;
      margin-bottom: 0px;
      border: 1px solid transparent;
  }
  .navbar-nav {
    display: flex !important;
    justify-content: space-between;
  }
  .navbar-nav li a {
    font-size: 17px;
    color: #005BAA;
  }
  .navbar-nav li a:focus, .navbar-nav li a:hover {
    background-color: white !important;
    color: #005BAA !important;
    border: none;
  }
  
  .dropdown-menu {
    background-color: #005BAA !important;
    border: 0px !important;
  }
  .dropdown-menu li a {
    color: white !important;
  }
  
  .icon-bar {
    background-color: #005BAA;
  }
  
  .collapse1 {
    display: block;
  }
  
  #bnt-menu-collapse {
    display: none !important;
  }
  
  @media only screen and (max-width: 1135px) {
    .navbar-nav {
      flex-direction: column !important;
    }
    .navbar-nav li a {
      color: white !important;
    }
  
    .navbar-toggle {
      display: block !important;
    }
  
    .collapse1 {
      display: none;
    }
  
    .navbar-nav .open .dropdown-menu {
      position: static;
    }
  
    .controles-white p {
      color: white !important;
    }
  
    #menu {
      display: none;
      position: absolute;
      top: 0;
      background-color: #0046A3;
      z-index: 50;
      width: 100%;
      padding-top: 200px;
      min-height: 100vh;
      
    }
  
    #controles-header {
      position: relative;
      z-index: 51;
    }
  
    #bnt-menu-collapse {
      width: 23px;
      height: 23px;
      border: none;
      background-color: transparent;
      color: #0046A3;
      padding: 0px !important;
      font-size: 23px;
      display: block !important;
    }
    #bnt-menu-collapse #bnt-menu-collapse:focus {
      outline: none;
      border: none;
    }
  
    .icon-bar {
      height: 30px;
      width: 100%;
      background-color: #0046A3;
      margin-top: 5px;
    }
  }
  .dropdown-menu > li > a {
    padding: 8px 20px !important;
  }
  
  /* Carousel Fading slide */
  .carousel-fade .carousel-control {
    z-index: 2;
  }
  
  .carousel-fade .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }
  
  .carousel-fade .next.left,
  .carousel-fade .prev.right,
  .carousel-fade .item.active {
    opacity: 1;
    transition: all ease-in 0.2s;
  }
  
  .carousel-fade .active.left,
  .carousel-fade .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
  }
  
  /* Safari Fix */
  @media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  /* Carousel Control custom */
  .carousel {
    position: relative;
  }
  
  .img-slider {
    background-size: cover;
    width: 100%;
    height: 849px;
  }
  
  .slider_bg-opacity {
    width: 100%;
    height: 849px;
    position: absolute;
    background-color: #0046A3;
    z-index: 10;
    top: 0;
    opacity: 0.4;
  }
  
  .slider_content {
    width: 100%;
    height: 849px;
    position: absolute;
    top: 0;
    z-index: 11;
    display: flex;
    align-items: center;
  }
  
  .bg_card-slider {
    width: 239px;
    height: 284px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 53px;
    padding-left: 38px;
    padding-right: 38px;
    transition: all ease-in 0.2s;
    margin-top: 37px;
  }
  .bg_card-slider img {
    width: 113px;
    height: 113px;
  }
  .bg_card-slider p {
    font-size: 23px;
    color: white;
    margin-top: 20px;
    font-weight: 700;
  }
  
  .bg_card-slider:hover {
    border: 10px solid white;
    margin-top: 25px;
  }
  
  .card-contenedor {
    display: flex;
    justify-content: space-between;
  }
  
  @media only screen and (max-width: 1025px) {
    .img-slider {
      background-size: cover;
      width: 100%;
      min-height: 849px;
    }
  
    .slider_bg-opacity {
      height: auto;
    }
  
    .slider_content {
      height: auto;
    }
  }
  @media only screen and (max-width: 994px) {
    .carousel {
      margin-top: 26px;
    }
  
    .h1-slider {
      font-size: 31px !important;
      color: white !important;
    }
  
    .slider_card-1 {
      height: 181px;
      display: flex;
      width: 100%;
    }
  
    .bg_card-slider {
      width: 46%;
      height: 207px;
      padding-top: 0px;
      margin-top: 20px;
    }
    .bg_card-slider p {
      font-size: 16px;
    }
  }
  /*Carousel 2*/
  .carousel2 {
    position: relative;
  }
  .carousel2 .img-slider {
    background-size: cover;
    width: 100%;
    height: 423px;
  }
  
  .img-slider2 {
    background-size: cover;
    width: 100%;
    height: 423px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border-radius: 14px;
    background-repeat: no-repeat;
  }
  .img-slider2 .img-slider2-content {
    width: 70%;
  }
  .img-slider2 .img-slider2-content .title {
    line-height: 50px;
  }
  .img-slider2 button {
    width: 179px;
    height: 58px;
    background-color: #005BAA;
    border-radius: 14px !important;
    color: white;
    font-size: 18px;
  }
  .img-slider2 button:hover {
    color: white !important;
    background-color: #0046A3;
  }
  
  @media only screen and (max-width: 994px) {
    .img-slider2 {
      flex-direction: column;
      justify-content: end;
      align-items: flex-start;
      padding: 20px 25px;
    }
    .img-slider2 .img-slider2-content .title {
      line-height: 25px;
    }
  }
  /* Removing BS background */
  .carousel .control-box {
    opacity: 0;
  }
  
  a.carousel-control.left {
    left: 0;
    background: none;
    border: 0;
  }
  
  a.carousel-control.right {
    right: 0;
    background: none;
    border: 0;
  }
  
  /* Animation */
  .control-box, a.carousel-control, .carousel-indicators li {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    /* hardware acceleration causes Bootstrap carousel controlbox margin error in webkit */
    /* Assigning animation to indicator li will make slides flicker */
  }
  
  /*# sourceMappingURL=main.css.map */
  
  
  
  .lfr-meta-actions{
    padding-top: 0px !important;
  }
  
  .modalDialog {
      position: fixed;
      font-family: Arial, Helvetica, sans-serif;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0,0,0,0.8);
      z-index: 99999;
      opacity:0;
      -webkit-transition: opacity 400ms ease-in;
      -moz-transition: opacity 400ms ease-in;
      transition: opacity 400ms ease-in;
      pointer-events: none;
  }
  .modalDialog:target {
      opacity:1;
      pointer-events: auto;
  }
  .modalDialog > div {
      width: 400px;
      position: relative;
      margin: 10% auto;
      padding: 5px 20px 13px 20px;
      border-radius: 10px;
      background: #fff;
    -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  }
  .close2 {
      background: #005BAA;
      color: #FFFFFF;
      line-height: 25px;
      position: absolute;
      right: -12px;
      text-align: center;
      top: -10px;
      width: 24px;
      text-decoration: none;
      font-weight: bold;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      border-radius: 12px;
      -moz-box-shadow: 1px 1px 3px #000;
      -webkit-box-shadow: 1px 1px 3px #000;
      box-shadow: 1px 1px 3px #000;
  }
  .close2:hover { background: #005BAA; }
  
  video{
    width: 100%;
    height: auto;
  }
  
  
  
  .portlet-content, .portlet-minimized .portlet-content-container {
      padding: 0px !important;
  }
  
  
  
  /*text*/
  .f-20{
    font-size: 20px;
  }
  .f-36{
    font-size: 36px;
  }
  .fw-bold{
    font-weight: 800;
  }
  /*Images*/
  .temas-educativos-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
  }
  
  /*Images*/
  .img-h-159{
    width: 100%;
    height: 159px;
    object-fit: cover;
    border-radius: 14px;
  }
  
  
  /*Bg*/
  
  .bg-btn-gray{
    background-color: #F4F4F7;
  }
  .bg-dark-gray{
    background-color: #7C849B;
  }
  
  
  
  
  /*paddings*/
  .py-40{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mr-20{
    margin-right: 20px;
  }
  .mt-20{
    margin-top: 20px;
  }
  .mt-30{
    margin-top: 30px;
  }
  .pb-54{
    padding-bottom: 54px;
  }
  .p-20{
    padding: 20px;
  }
  .p-30{
    padding: 30px;
  }
  .p-40{
    padding: 40px;
  }
  
  /*estaciones automaticas*/
  .estaciones-automaticas-card{
    display: flex;
  }
  .info{
    width: 80%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .estaciones-automaticas-card .date{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #005BAA;
    border-radius: 18px;
    margin-top: 20px;
  }
  @media only screen and (max-width: 1000px) {
    .estaciones-automaticas-card .date{
      width: 100px;
      height: 100px;
    }
    .estaciones-automaticas-card{
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .info{
      width: 100;
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  .line-gray{
    width: 100%;
    height: 1px;
    background-color: #E8E9ED;
  }
  /*Tables*/
  .table>thead>tr>th {
    border-bottom: 0px !important;
  }
  .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
    border-top: 0px !important;
    text-align: center;
  }
  .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #F5F6F7;
  }
  .table-striped thead tr{
    width: 100%;
    background-color: #005BAA;
    color: white;
    width: 100%;
    border-radius: 14px 14px 0px 0px;
  }
  .table-striped thead tr th{
    font-weight: 400;
    text-align: center;
    
  }
  .table-striped tbody tr td{
    color: #4B4A60;
    vertical-align: middle !important;
  }
  table{
    border-collapse: separate !important;
  }
  .bordered {
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    border-radius: 14px;
  }
  .bordered tr:hover {  
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  
  
  .bordered td:first-child, .bordered th:first-child {
    border-left: none;
  }
  .bordered th:first-child {
    -moz-border-radius: 14px 0 0 0;
    -webkit-border-radius: 14px 0 0 0;
    border-radius: 14px 0 0 0;
  }
  .bordered th:last-child {
    -moz-border-radius: 0 14px 0 0;
    -webkit-border-radius: 0 14px 0 0;
    border-radius: 0 14px 0 0;
  }
  .bordered th:only-child{
    -moz-border-radius: 14px 14px 0 0;
    -webkit-border-radius: 14px 14px 0 0;
    border-radius: 14px 14px 0 0;
  }
  .bordered tr:last-child td:first-child {
    -moz-border-radius: 0 0 0 14px;
    -webkit-border-radius: 0 0 0 14px;
    border-radius: 0 0 0 14px;
  }
  .bordered tr:last-child td:last-child {
    -moz-border-radius: 0 0 14px 0;
    -webkit-border-radius: 0 0 14px 0;
    border-radius: 0 0 14px 0;
  } 
  /*red de transparencia*/
  .container-redTransparencia{
    max-width: 1240px;
    display: block;
    margin: 0 auto;
    padding: 20px;
  }
  .files-redTransparencia{
    border: 1px solid #005BAA;
    border-radius: 14px;
    min-height: 80px;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    
  }
  @media only screen and (max-width: 1000px){
    .files-redTransparencia{
      flex-direction: column;
      
    }
  }
  
  
  .dropdown-toggle {
      display: flex !important;
      align-items: center !important;
  }
  .portlet-column-content {
      padding: 0px !important;
  }
  
  .breadcrumb {
      padding: 8px 15px;
      margin-bottom: 20px;
      list-style: none;
      background-color: #005BAA;
      border-radius: 4px;
         color: white !important;
  }
  .breadcrumb li span a{
         color: white !important;
  }
  
  
  
  
  
  
  
  
  
  
  
  /*estilos actualizados*/
  
  
  
      .bg_card-slider {
       
          height: 320px;
     
      }
     
      .bg_card-slider a:hover {
     
          text-decoration: none;
      }
     
      .text-white-a:hover {
     
          color: white;
          text-decoration: underline;
     
      }
      .text-white-a:focus {
     
          color: white;
          text-decoration: underline;
     
      }
     
      .padding-card {
      padding: 40px;
      }
     
     
     
      @media only screen and (max-width: 620px) {
      .bg_card-slider {
          height: auto;
      }
      }
      
      .titulo-tabla {​
		font-family: 'Roboto';
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
	}
	
	.tabla-texto-contenido {
		font-family: 'Roboto';
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		color: #4B4A60;
    }
      
    .btn-buscar-mapa{
		margin-left: 15px;
		color: white !important;
    	border-radius: 15px !important;
    	font-size: 18px !important;
    	box-shadow: none !important;
    	text-shadow: none !important;
    	border: unset !important;
    	background: #005BAA !important;
    	padding: .3em 1em !important;
	}

	.enlace_mapa a:hover {
		color: #0f6795 !important;
		text-decoration: underline;
	}
	
	.enlace_mapa a:active {
		color: #0f6795 !important;
		text-decoration: underline;
	}
	
	.enlace_mapa a:focus {
		color: #0f6795 !important;
		text-decoration: underline;
	}
	
	.enlace_mapa :hover {
		color: #0f6795 !important;
		text-decoration: underline;
	}
	
	.enlace_mapa :active {
		color: #0f6795 !important;
		text-decoration: underline;
	}
	
	.enlace_mapa :focus {
		color: #0f6795 !important;
		text-decoration: underline;
	}	
	