@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url("https://use.typekit.net/etl1kbw.css");
/************************************************************************************
2025 Equipo NTG Colombia
CSS Estilos personalizados 
/************************************************************************************/

/************************************************************************************
COLORES GOVCO - new
*************************************************************************************/

:root {  /*new colores govco*/
    
    --govcolor-black: #000000;
    --govcolor-tundora: #4B4B4B;
    --govcolor-dimgray: #737373;    
    --govcolor-concrete: #F2F2F2;
    --govcolor-white: #FFFFFF;
    --govcolor-marine: #3666CC;
    --govcolor-bluedark: #004884;
    --govcolor-bluelight: #E6EFFD;
    --govcolor-silver: #BABABA;
    --govcolor-hawkesblue: #F6F8F9;
    --govcolor-radicalred: #F42F63;
    --govcolor-shiraz: #A80521;
    --govcolor-orange: #F3561F;
    --govcolor-gold: #FFAB00;
    --bs-secondary: #e8a046;
    --govcolor-elfgreen: #068460;
    --govcolor-bluedemin: #4573D0;
    --govcolor-blueocean: #5881D5;
    --govcolor-dodgerblue: #3772FF;
    --govcolor-bluemarlin: #4A7EFF;
    --govcolor-bluelake: #5B8BFF;
    --govcolor-blue-capri: #81ABFF;
    --govcolor-bluequilt: #9DBEFF;
    --govcolor-green: #069169;
    --govcolor-yellow: #FAD118;
    --govcolor-orangev2: #FF6C00;
    --govcolor-redflag: #D31F3F;
    --govtypo-fontfamily-title: "Nunito Sans";
    --govtypo-fontfamily-text: "verdana";
    --govtypo-text-regular: 400;
    --govtypo-text-medium: 500;
    --govtypo-text-bold: 700;
    --govtypo-text-semibold: 600;
    --govtypo-title-medium:: 500;
    --govtypo-title-semibold: 600;
    --govtypo-h1: 2.625rem;
    --govtypo-h2: 2.125rem;
    --govtypo-h3: 1.625rem;
    --govtypo-h4: 1.375rem;
    --govtypo-h5: 1.25rem;
    --govtypo-h6: 1rem;
    --govtypo-h1-lh: 1.2;
    --govtypo-h2-lh: 1.25;
    --govtypo-h3-lh: 1.33;
    --govtypo-h4-lh: 1.5;
    --govtypo-h5-lh: 1.33;
    --govtypo-h6-lh: 1.38;
    --govtypo-description: 1.125rem;
    --govtypo-body-text1: 1rem;
    --govtypo-body-text2: 0.875rem;
    --govtypo-description-lh: 1.33;
    --govtypo-body-text1-lh: 1.38;
    --govtypo-body-text2-lh: 1.43;
    --govlabel-red: #EECDD2;
    --govlabel-default: var(--govcolor-concrete);
    --govlabel-yellow: #FFEECC;
    --govlabel-green: #CDE6DF;
    --govlabel-red-text: #B30937;
    --govlabel-default-text: var(--govcolor-black): ;
    --govlabel-yellow-text: #8B5D13;
    --govlabel-green-text: #0D684B;

}

/************************************************************************************
GENERALES
*************************************************************************************/
html {
    overflow-x: hidden;
}

body { /*update*/
    
    line-height: var(--govtypo-body-text1-lh);
    color: var(--govcolor-tundora);
    text-align: left;   
    background-color: var(--govcolor-white);
}

a { /*update*/
    color: var(--bs-primary);
    background-color: transparent;
}

a:visited { /*update*/
    color: var(--govcolor-tundora);
}

a:hover, a:visited:hover { /*new update*/
    color: var(--govcolor-bluedark);
    text-decoration: underline;
}

a:focus-visible { /*new -update*/

  color: var(--govcolor-bluedark) !important;
  outline: max(0.125rem, 0.125rem) solid #707070 !important;
  outline-offset: max(0.125rem, 0.188rem) !important;
  border-radius: 1.875rem !important;
}

a.disabled {

    color:  var(--govcolor-dimgray);
}

/* BARRA ACCESIBILIDAD */

.altoContraste {
    -webkit-filter: invert(1);
    filter: invert(1);
    background-color: #fff;
}

@-moz-document url-prefix() {
    .altoContraste {
        mix-blend-mode: difference;
        background-color: #fff;
        filter: none;
    }
}

.accesibilidad-menu { /*update*/
    background-color: var(--bs-primary);
    display: block;
    position: fixed;
    top: 45%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
    z-index: 200;
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0px 0px 10px 3px #0000002b;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.accesibilidad-items { /*update*/
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0px;
    width: 48px;
    margin: 8px 0;
}

.accesibilidad-items a { /*update*/
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 0px;
    transition: all .5s;
    width: 172px;
    padding: 0px 12px;
    text-decoration: none;
}

.accesibilidad-items a:hover {
    background-color: var(--bs-link-color);
}

.accesibilidad-items img { /*update*/
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    margin: 5px 0;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.accesibilidad-items .accesibilidad-title  { /*new*/
      display: flex;
      align-items: center;
      color: #fff;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      transition: all .5s;
      width: 124px;
      height: 40px;
      padding: 0px 0px 0px 10px;
      text-decoration: none;
      font-size: 14px; 
      margin-left: 0px; 
      font-weight: 500;
      opacity: 0;
      position: relative;
      right: 136px;
      overflow: visible;
      visibility: hidden;
}

.accesibilidad-items a:hover .accesibilidad-title { /*new*/
    opacity: 1;
    visibility: visible;
    background-color: var(--bs-link-color);
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
 }

.accesibilidad-items a span:before { /*new*/
  background: #fff;
  height: 24px;
  width: 24px;
  color: #004884;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 5px;
  opacity: 1;
  position: relative;
  margin: 5px 0;
  font-size: 16px; 
 
}

@media only screen and (max-width: 575.98px) {
    .accesibilidad-items {
        width: 38px;
    }

    .accesibilidad-items a {
        padding: 0px 8px;
    }

    .accesibilidad-items img {
        width: 24px;
        height: 24px;
        margin: 3px 0;
    }

    .accesibilidad-items a:hover .accesibilidad-title { /*new*/
    opacity: 1;
    background-color: var(--bs-primary);
    -webkit-transform: translateX(-16px);
    transform: translateX(-16px);
    }
}

/* BARRA ACCESIBILIDAD FIN*/

/* Iconos de gov co*/
.govco-caret-down:before { /*new*/
  font-size: 1rem;  
  margin-left: 8px;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-primary { /*update*/
    background-color: var(--bs-primary) !important;
}

.bg-gray {
    background: #e6e6e6;
}

.bg-blue-light {
    background-color: #F6F8F9;
}

.bg-blue-light-02 {
    background: #e6effd;
}

.sub-section-container > div, 
.section-container {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    padding: 20px;
}

#consulta_general {
    padding-bottom: 0;
    padding-top: 0;
}

#consulta_general ul {
    margin-bottom: 3rem;
}

#informe_wrapper table thead th:first-child{
    max-width: 300px;
}

.bg-blue {
    background: var(--bs-blue);
    z-index: 0;
    clear: both;
}

.bg-blue-noticias {
    background: var(--bs-blue);
    clear: both; 
}

.btn {
    border-radius: 3rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: normal;
    padding: 0.5rem 2rem;
}

.btn:visited {
    color: #fff;
}

.btn strong {
    font-weight: normal;
}

.btn-outline-primary {
    border: solid;
    border-width: 1.5px;
}

.btn-outline-primary:hover {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

/* BOTONES APLICANDO ESTILOS GOVCO */

.div-btn a,
.btn-govco { /*new update*/
  text-decoration: none;
  border-radius: 1.563rem;
  font-family: var(--govtypo-fontfamily-text);
  font-size: 16px;
  line-height: 1.38;
  padding: 0.5rem 2rem;
  border-width: 0.125rem;
  border-style: solid;
  min-width: 165px;
  height: 42px;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn.btn-outline-primary,
.btn.btn-outline-primary:disabled,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus-visible,
.div-btn.div-btn-outline-primary a,
.div-btn.div-btn-outline-primary a:disabled,
.div-btn.div-btn-secondary a,
.div-btn.div-btn-outline-secondary a:hover,
.div-btn.div-btn-outline-secondary a:focus-visible,
.btn-govco.outline-btn-govco,
.btn-govco.outline-btn-govco:disabled,
.btn-govco.fill-secondary-btn-govco,
.btn-govco.outline-secondary-btn-govco:hover,
.btn-govco.outline-secondary-btn-govco:focus-visible { /*new*/

  background-color: var(--govcolor-white);
}

.btn.btn-primary:hover,  
.btn.btn-primary:focus-visible,
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus-visible,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible,
.div-btn.div-btn-primary a:hover,  
.div-btn.div-btn-primary a:focus-visible,
.div-btn.div-btn-outline-primary a:hover,
.div-btn.div-btn-outline-primary a:focus-visible,
.div-btn.div-btn-secondary a:hover,
.div-btn.div-btn-secondary a:focus-visible,
.btn-govco.fill-btn-govco:hover,
.btn-govco.fill-btn-govco:focus-visible,
.btn-govco.outline-btn-govco:hover,
.btn-govco.outline-btn-govco:focus-visible,
.btn-govco.fill-secondary-btn-govco:hover,
.btn-govco.fill-secondary-btn-govco:focus-visible
 {  /*new*/
  background-color: var(--bs-link-color);
}

.btn.btn-primary,
.div-btn.div-btn-primary a,
.btn-govco.fill-btn-govco { /*new*/
  background-color: var(--bs-primary);
 
}

.btn.btn-outline-secondary,
.div-btn.div-btn-outline-secondary a,
.btn-govco.outline-secondary-btn-govco { /*new*/
  background-color: transparent;
}

.btn.btn-primary,
.btn.btn-outline-primary,
.div-btn.div-btn-primary a,
.div-btn.div-btn-outline-primary a,
.btn-govco.fill-btn-govco,
.btn-govco.outline-btn-govco { /*new*/
  border-color: var(--bs-primary);
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:disabled,
.btn.btn-outline-secondary,
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:disabled,
.div-btn.div-btn-secondary a,
.div-btn.div-btn-secondary a:hover,
.div-btn.div-btn-secondary a:disabled,
.div-btn.div-btn-outline-secondary a,
.div-btn.div-btn-outline-secondary a:hover,
.div-btn.div-btn-outline-secondary a:disabled,
.btn-govco.fill-secondary-btn-govco,
.btn-govco.fill-secondary-btn-govco:hover,
.btn-govco.fill-secondary-btn-govco:disabled, 
.btn-govco.outline-secondary-btn-govco,
.btn-govco.outline-secondary-btn-govco:hover,
.btn-govco.outline-secondary-btn-govco:disabled

{  /*new*/
  border-color: var(--govcolor-white) !important;
}

.btn.btn-primary:hover,  
.btn.btn-primary:focus-visible,
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus-visible,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible,
.btn.btn-outline-secondary:focus-visible,
.div-btn.div-btn-primary a:hover,  
.div-btn.div-btn-primary a:focus-visible,
.div-btn.div-btn-outline-primary a:hover,
.div-btn.div-btn-outline-primary a:focus-visible,
.div-btn.div-btn-secondary a:hover,
.div-btn.div-btn-secondary a:focus-visible,
.div-btn.div-btn-outline-secondary a:focus-visible,
.btn-govco.fill-btn-govco:hover,
.btn-govco.fill-btn-govco:focus-visible,
.btn-govco.outline-btn-govco:hover,
.btn-govco.outline-btn-govco:focus-visible,
.btn-govco.fill-secondary-btn-govco:hover,
.btn-govco.fill-secondary-btn-govco:focus-visible,
.btn-govco.outline-secondary-btn-govco:focus-visible

{  /*new*/
  border-color: var(--bs-link-color);
}

.btn.btn-outline-primary,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus-visible,
.div-btn.div-btn-outline-primary a,
.div-btn.div-btn-secondary a,
.div-btn.div-btn-outline-secondary a:hover,
.div-btn.div-btn-outline-secondary a:focus-visible,
.btn-govco.outline-btn-govco,
.btn-govco.fill-secondary-btn-govco,
.btn-govco.outline-secondary-btn-govco:hover,
.btn-govco.outline-secondary-btn-govco:focus-visible

 { /*new*/

  color: var(--bs-primary) !important;
}

.btn.btn-primary,
.btn.btn-primary:hover,  
.btn.btn-primary:focus-visible,
.btn.btn-primary:disabled,
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus-visible,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible,
.btn.btn-outline-secondary,
.btn.btn-outline-secondary:disabled,
.div-btn.div-btn-primary a,
.div-btn.div-btn-primary a:hover,  
.div-btn.div-btn-primary a:focus-visible,
.div-btn.div-btn-primary a:disabled,
.div-btn.div-btn-outline-primary a:hover,
.div-btn.div-btn-outline-primary a:focus-visible,
.div-btn.div-btn-secondary a:hover,
.div-btn.div-btn-secondary a:focus-visible,
.div-btn.div-btn-outline-secondary a,
.div-btn.div-btn-outline-secondary a:disabled,
.btn-govco.fill-btn-govco,
.btn-govco.fill-btn-govco:hover,
.btn-govco.fill-btn-govco:focus-visible,
.btn-govco.fill-btn-govco:disabled,
.btn-govco.outline-btn-govco:hover,
.btn-govco.outline-btn-govco:focus-visible,
.btn-govco.fill-secondary-btn-govco:hover,
.btn-govco.fill-secondary-btn-govco:focus-visible,
.btn-govco.outline-secondary-btn-govco,
.btn-govco.outline-secondary-btn-govco:disabled 
{  /*new*/
    color: var(--govcolor-white) !important;
}

.btn.btn-secondary:focus-visible,
.btn.btn-outline-secondary:focus-visible,
.div-btn.div-btn-secondary a:focus-visible,
.div-btn.div-btn-outline-secondary a:focus-visible,
.btn-govco.fill-secondary-btn-govco:focus-visible,
.btn-govco.outline-secondary-btn-govco:focus-visible {  /*new*/
  outline-color: #FFFFFF !important;
}

.btn.btn-primary:focus-visible,
.btn.btn-outline-primary:focus-visible,
.btn.btn-secondary:focus-visible,
.btn.btn-outline-secondary:focus-visible,
.div-btn.div-btn-primary a:focus-visible,
.div-btn.div-btn-outline-primary a:focus-visible,
.div-btn.div-btn-secondary a:focus-visible,
.div-btn.div-btn-outline-secondary a:focus-visible,
.btn-govco.fill-btn-govco:focus-visible,
.btn-govco.outline-btn-govco:focus-visible,
.btn-govco.fill-secondary-btn-govco:focus-visible,
.btn-govco.outline-secondary-btn-govco:focus-visible {  /*new*/
  outline: max(0.125rem, 0.125rem) solid #000000;
  outline-offset: max(0.125rem, 0.188rem);
}

.div-btn:disabled,
.btn-govco:disabled { /* new*/
  background-color: var(--govcolor-dimgray);
  border-color: var(--govcolor-dimgray);
  color: var(--govcolor-white);
  pointer-events: none;
}

/*Fin botones govco*/

.div-btn-primary a {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.div-btn-secondary a {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.div-btn-primary a:hover {
    background-color: var(--bs-blue);
    text-decoration: none;
    color: white;
}
.div-btn-secondary a:hover {
    background-color: var(--bs-blue);
    text-decoration: none;
    color: white;
    border-color: var(--bs-blue);
}

.div-btn-border a {
    color: #fff;
    background-color: transparent;
    border-color: white;
}

.div-btn-border a:hover {
    background-color: white;
    text-decoration: none;
    color: var(--bs-blue) !important;
}

.btn-saltar:focus,
.btn-saltar:focus-visible {
    display: block;
    height: auto;
    width: auto;
    background-color: #fff;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    font-size: 1rem;
    color: #000;
    overflow: unset;
    opacity: 1;
    clip: unset;
    border-radius: 5px !important;
    padding: 5px 1rem;
}

.card {
    overflow: hidden;
    height: calc(100% - 2rem);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.card a { 
    text-decoration: underline;
  }

.card .figure {
    margin-bottom: 1rem;
}

.binary-img_seccion img,
.binary-foto_perfil img,
.binary-foto_marquesina img,
.binary-demo img,
.binary-img_articulo img {
    border-radius: 5px;
}

.carousel .binary-foto_marquesina img {
    border-radius: 0px;
}

.card .figure img {
    border-radius: 0; 
    width: 100%;
}

.cards-discursos .card .figure img {
    width: 100%;
}

.fecha { /*update*/ /*update*/
    font-family: var(--govtypo-fontfamily-text);
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--govcolor-tundora);
    width: 100%;
    font-weight: 400;
}

.card .fecha { /*update*/
    padding: 0 1rem;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.card .titulo {
    padding: 0 1rem 1rem 1rem;
}

.recuadro .titulo a, .card .titulo a {
  font-size:var(--govtypo-h5);
  font-weight: var(--govtypo-title-semibold);
  line-height: var(--govtypo-h5-lh);
  font-family: var(--govtypo-fontfamily-title);
}

.title_underline_padre > .ntg-titulo-caja,
.convocatorias_container > .ntg-titulo-caja,
.title_underline { /*update*/
    position: relative;
    padding: 0;
    padding-bottom: 1.5rem;
    text-align: center;
}

.title_underline a {
    color: var(--bs-link-color); 
}

.title_underline_padre > .ntg-titulo-caja a,
.convocatorias_container > .ntg-titulo-caja a{
    color: var(--bs-link-color);}

.articulo strong {
    font-weight: 600;
}

.articulo {
    max-width: 640px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.articulo h2 {
    clear: both;
}

.articulo .resumen,
.articulo .abstract {
    font-size: 1.12rem;
    line-height: 1.3;
    margin: 1rem 0 2rem 0;
    color: var(--bs-primary);
}

.articulo .figure img {
    margin-bottom: 30px;
}
.tramites_links .figure img {
    margin-bottom: 0;
}

.articulo .figure a:last-child {
    display: none;
}

.formulario {
    padding: 30px;
}
@media only screen and (max-width: 767.98px) {
    .formulario {
        padding: 16px;
    }

    .more_news {
        text-align: center !important;
    }
}

.formulario fieldset > div {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.formulario .tituloencuesta {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--bs-blue);
}

.formulario  ul {
    padding: 0;
}

.formulario label {
    font-weight: 600;
    padding-top: 25px;
    color: var(--bs-blue);
    margin-bottom: .5rem;
}

.formulario .form-control {
    width: 100%;
    height: auto;
    margin-right: 8px;
    margin-top: 3px;
}

.formulario input[type=text]{
    background: #e5eefb;
    border-bottom: 1.5px solid var(--bs-blue);
    border-radius: 5px 5px 0 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 35px;
    padding: 0 16px;
}

.formulario input[type=checkbox],
.formulario input[type=radio] {
    width: auto;
    margin-right: 8px;
}

.formulario .form_text .alert-warning + input {
    border-bottom: 1.5px solid #dc3545;
}

.formulario .form_select ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 23px;
    padding-bottom: 8px;
    color: var(--bs-blue);
    border-bottom: 1px solid #E6EFFD;
}

#comentarios_form .form_button input,
.formulario .form_button .btn-default {
    display: block;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 3rem;
    margin: auto;
    margin-top: 1rem;
    padding: .375rem 1.4rem;
    white-space: normal;
}

#comentarios_form .form_captcha > div > div {
    margin: auto;
}

#comentarios_form .form_button input {
    margin-bottom: 2rem;
    margin-top: 3rem;
    border: solid 1px;
}

#comentarios_form .form_button input:hover,
.formulario .form_button .btn-default:hover {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

.formulario .form_dateonly {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.formulario .form_dateonly  input {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    margin-right: 12px;
    text-align: center;
    height: calc(1.5em + .75rem + 2px);
    width: auto;
    background-color: #fff;
    font-family: var(--govtypo-fontfamily-text);
    font-size: 1rem;
    font-weight: normal;
}

.formulario .form_dateonly  .form-control {
    margin-right: 12px;
}

.formulario .form_dateonly label {
    font-weight: 600;
    width: 100%;
}

.formulario .form_dateonly .form-control{
    width: auto;
    padding-right: 40px;
    background-position: 95%;
    height: calc(1.5em + .75rem + 2px);
    margin-top: 0;
    border: 1px solid #ced4da;
    font-family: var(--govtypo-fontfamily-text);
    font-size: 1rem;
    font-weight: normal;
}

.formulario .counter {
    display: inline-block;
    background-color: var(--light);
    box-shadow: 0 0 2px #000000b8;
    padding: 2px 5px;
    font-size: .875rem;
    border-radius: 5px;
    margin-bottom: 6px;
    float: right;
}

.ui-autocomplete {
    background-color: #fff !important;
    width: 100% !important;
    max-width: 680px;
    max-height: 400px;
    overflow: auto;
    box-shadow: 0px 0px 4px #59595982;
    padding: 1rem 0;
    list-style: none;
}

.ui-autocomplete li {
    cursor: pointer;
    padding: .5rem 1rem;
}

.ui-autocomplete li:hover {
    background-color: var(--govcolor-bluelight);
}

@media only screen and (max-width: 400px) {
    .formulario .form_dateonly input {
        width: 100%;
        margin-bottom: .5rem;
        margin-right: 0;
    }

    .formulario .form_dateonly .form-control {
        width: 100%;
        margin: 0 0 .5rem 0;
        text-align: center;
        padding: 0 10px;
    }
}

.formulario_ser > form {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
}

.formulario_ser .ntg-titulo-caja {
    max-width: 1240px;
    margin: auto;
    padding: 20px 0px 5px 0px;
}

@media screen and (min-width: 1280px){
    .formulario_ser .ntg-titulo-caja {
        max-width: 2000px;
        margin: auto;
        padding: 20px 0px 5px 0px;
        width: 85%;
    }
}

.formulario_ser a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

.formulario_ser .form_button {
    text-align: center;
}
.formulario_ser .form_button input {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem 1.4rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 3rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.formulario_ser .form_button input:hover {
    background-color: var(--bs-blue);
    text-decoration: none;
    color: white;
}

.formulario_ser .form_text input {
    background: #e5eefb;
    border: 1px solid #ced4da;
    border-bottom: 1.5px solid var(--bs-blue);
    border-radius: 5px 5px 0 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0 16px;
    color: #495057;
    height: 35px;
}
.formulario_ser .form_text .alert-warning + input {
    border-bottom: 1.5px solid #dc3545;
}

.formulario_ser label {
    width: 100%;
    font-weight: 600;
    color: var(--bs-blue);
}

.formulario_ser div {
    width: 100%;
    display: inline-block;
    margin-bottom: 18px;
}

.formulario_ser div.form_text {
    width: 50%;
    padding: 0px 20px 20px 0px;
    margin: 0;
}
.formulario_ser #titulo_div_918 {
   padding-bottom: 30px;
}
.formulario_ser #text_acepto_div_918 {
    padding-top: 30px;
 }

.formulario_ser .form_select ul li,
.formulario div[id^="Acepto_div"]{
    width: 50%;
    display: inline;
    margin-right: 20px;
    border: 0;
}

.formulario_ser .form_select ul {
    padding: 0;
    list-style: none;
}

div#Acepto_div_918 ul li {
    display: flex;
    margin-bottom: .3rem;
}

.form-emprendimiento {
    padding-top: 0;
}

.form-emprendimiento .ntg-titulo-grupo-formulario {
    display: none;
}

.form-emprendimiento ul.ntg-formulario-indice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.form-emprendimiento ul.ntg-formulario-indice:before {
    content: "";
    height: 2px;
    background-color: var(--bs-primary);
    position: absolute;
    top: 50%;
    left: 1.1rem;
    right: 1.1rem;
}

.form-emprendimiento ul.ntg-formulario-indice li {
    padding: 1rem;
    margin: 0;
}

.form-emprendimiento ul.ntg-formulario-indice li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    width: 3.5rem;
    height: 3.5rem;
    border: solid 2px var(--bs-primary);
    border-radius: 50%;
    background-color: #fff;
    text-decoration: none;
}

.form-emprendimiento ul.ntg-formulario-indice li a:before {
    content: "";
    display: block;
    font-family: "govco-fontv2";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2rem;
    text-align: center;
}

.form-emprendimiento ul.ntg-formulario-indice li:first-child a:before {
    content: "\ebb7";
}

.form-emprendimiento ul.ntg-formulario-indice li:nth-child(2) a:before {
   content: "\ebb9";
}

.form-emprendimiento ul.ntg-formulario-indice li:nth-child(3) a:before {
    content: "\ebaa";
}

.form-emprendimiento ul.ntg-formulario-indice li:nth-child(4) a:before {
    content: "\ea13";
}

.form-emprendimiento ul.ntg-formulario-indice li:nth-child(5) a:before {
    content: "\e8d4";
}

.form-emprendimiento ul.ntg-formulario-indice li:nth-child(6) a:before {
    content: "\e94c";
}

.form-emprendimiento ul.ntg-formulario-indice li a:hover,
.form-emprendimiento ul.ntg-formulario-indice li.ui-state-active a {
    background-color: var(--bs-primary);
}

.form-emprendimiento ul.ntg-formulario-indice li a:hover:before,
.form-emprendimiento ul.ntg-formulario-indice li.ui-state-active a:before {
    color: #fff;
}

.form-emprendimiento-02 ul.ntg-formulario-indice li:first-child a:before {
    content: "\ebb7";
}

.form-emprendimiento-02 ul.ntg-formulario-indice li:nth-child(2) a:before {
    content: "\ebaa";
} 

.form-emprendimiento-02 ul.ntg-formulario-indice li:nth-child(3) a:before {
    content: "\ea13";
} 

.form-emprendimiento-02 ul.ntg-formulario-indice li:nth-child(4) a:before {
    content: '\e8a4';
} 

@media only screen and (max-width: 767.98px) {
    .formulario_ser div.form_text {
        width: 100%;
    }
    .formulario_ser .form_select ul li {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .form-emprendimiento ul.ntg-formulario-indice {
        overflow-x: scroll;
    }

    .form-emprendimiento ul.ntg-formulario-indice::-webkit-scrollbar {
        height: 8px;
        background-color: var(--bs-primary);
        border-radius: 5px;
    }

    .form-emprendimiento ul.ntg-formulario-indice::-webkit-scrollbar-track {
        box-shadow: inset 0px 0px 6px rgba(0,0,0,.3);
        background-color: #f5f5f5;
    }

    .form-emprendimiento ul.ntg-formulario-indice::-webkit-scrollbar-thumb {
        background-color: var(--bs-primary);
        border-radius: 5px;
    }

    .form-emprendimiento ul.ntg-formulario-indice:before {
        width: 470px;
    }

}

.formulario .form_captcha {
    overflow: hidden;
}

#P009_Captcha_div_838 {
    text-align: center;
}

.formulario .form_captcha > div > div  {
    margin: auto;
}

.gj-datepicker {
    padding: 20px 0;
}

.tags {
    font-size: 14px;
    color: var(--bs-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.tags > span {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid var(--bs-secondary);
}

.tags > span:last-of-type {
    border-right: none;
}

/* LISTA NEWS */

.lista-news > .recuadro {
    padding: 10px 0;
    border-bottom: 2px solid rgba(157,190,255,.3);
    margin: 0;
}

.lista-news > .recuadro > div > div:nth-of-type(3) {
    color: var(--bs-primary);
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

form .alert-warning {
    background: transparent;
    color: #dc3545;
    font-size: .85rem;
    padding: 0;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0;
}

/*************** TIPOGRAFIAS ***************/

.alianzas-link a {
    text-decoration: underline;
}
.alianzas-link a:hover {
    color: var(--bs-secondary);
}

ol {
    list-style-type: none;
    list-style-position: outside;
    margin-left: 0;
    counter-reset: item;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 2.5rem;
}

ol > li {
    color: #000;
    padding-left: 0;
    position: relative;
}
ol > li:before {
    counter-increment: item;
    content: counter(item) ".";
    display: inline-block;
    position: absolute;
    left: -2.5rem;
    top: 0;
    color: var(--bs-primary);
    width: 2rem;
    text-align: right;
}

.dropdown-item {
    font-weight: 100;
}

.dropdown-menu .active,
.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: #cecece;
}

.div-titulo-secundario .ntg-titulo-caja,
.titulo-secundario {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    color: var(--bs-blue);
    font-size: 1.5rem;
}

.div-titulo-secundario .ntg-titulo-caja a,
.titulo-secundario a {
    color: var(--bs-blue);
    text-decoration: underline;
}

.div-titulo-secundario .ntg-titulo-caja a:hover,
.titulo-secundario a:hover {
    color: var(--bs-primary);
}

/************************************************************************************
HOME
*************************************************************************************/

.destacados-home a img {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgb(51 102 204 / 29%);
}

.destacados-home a img:hover{
    -webkit-transform: scale(.95);
            transform: scale(.95);
}

/*---------HEADER---------*/

/* BARRA SUPERIOR GOVCO -new */

.barra-superior-govco { /*new*/
  background-color: var(--bs-primary);
 /* width: 100%;*/
  height: 3rem;
  padding-left: 0rem; /*modificado*/
}

.barra-superior-govco a { /*new*/
    content: url(https://css.mintic.gov.co/mt/mintic/img/header_govco.png);
    height: 30px;
    width: auto;
}

.barra-superior-govco a:focus-visible {/*new*/
  outline: max(0.125rem, 0.15em) solid #FFFFFF;
  border-radius: 0.313rem;
}

.barra-superior-govco .idioma-icon-barra-superior-govco { /*new*/
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.313rem;
  background-color: #FFFFFF;
  cursor: pointer;
  padding: 0;
  border: 0.125rem solid #FFFFFF;
  font-size: 10px;
  position: absolute;
  right: 5.375rem;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:hover { /*new*/
  background-color: #004884;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:focus { /*new*/
  outline: max(0.125rem, 0.15em) solid #FFFFFF;
  outline-offset: max(0.188rem, 0.15em);
}

.barra-superior-govco .idioma-icon-barra-superior-govco::before { /*new*/
  font-family: "govco-fontv2";
  content: '\ec56';
  color: #3366CC;
  font-size: 14px;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:hover::before { /*new*/
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .barra-superior-govco {
    justify-content: center;
    padding: 0;
  }

  .barra-superior-govco .idioma-icon-barra-superior-govco  { /*new*/
    right: 1rem;
  }
}

/* FIN BARRA SUPERIOR GOVCO */

/* SLIDER PRINCIPAL */

.carousel {
    max-width: 1600px;
    margin: auto;
}

.carousel .bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.carousel .slide-title {
    display: flex;
    align-items: center;
    padding-left: 7rem;
    font-size: 1.5rem;
}

.carousel .slide-title a {
    font-family: var(--govtypo-fontfamily-title);
    font-size: var(--govtypo-h5);
    color: var(--govcolor-bluedark);
    text-decoration: underline;
    font-weight: 700;
}

.carousel .slide-title a:hover {
    color: var(--light)
}

.carousel ol li:before {
    display: none;
}

.carousel-control-next, .carousel-control-prev {
    width: 80px;
    opacity: 1;
}

.carousel-control-next{
    justify-content: flex-start;
}
.carousel-control-prev {
    justify-content: flex-end;
}

.carousel-indicators button[data-bs-target] {
    border-radius: 50%;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0.25rem;
    box-shadow: 0 0.188rem 0.25rem #00000029;
    background-color: rgba(255, 255, 255, .4);
    border: 0;
    opacity: 1;
}

.carousel-indicators button[data-bs-target].active {
    opacity: 1;
    background-color: #FFFFFF;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    height: 32px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
    content: "\e811";
    font-family: "govco-fontv2";
    font-size: 2.625rem;
    color: #FFFFFF;
    text-shadow: 3px 3px 3px #00000029;
}

.carousel-control-prev-icon:after {
    content: "\e811";
}

.carousel-control-next-icon:after {
    content: "\e812";
}

.carousel-control-prev-icon:hover:after,
.carousel-control-next-icon:hover:after {
    color: var(--govcolor-bluedark);
}

.carousel .ntg-button {
    background: transparent;
    border: none;
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    margin: 1rem;
}

@media only screen and (max-width: 991.98px) {
    .carousel {
        padding-bottom: 60px;
        margin-bottom: 1rem !important;
    }

    .carousel .slide-title {
        padding: 2rem 4rem;
        justify-content: center;
        font-size: 1.2rem;
        min-height: 12rem;
    }
    .carousel .slide-title + .text-right {
        text-align: center !important;
    }
}
@media only screen and (max-width: 767.98px) {
    .carousel .slide-title {
        min-height: 18rem;
    }
}
.ntg-pause,
.ntg-play {
    display: flex;
    color: #fff;
    align-items: center;
}
.ntg-pause span,
.ntg-play span {
    font-weight: 500;
    text-decoration: underline;
}
.ntg-button:hover span {
    color: var(--govcolor-bluedark);
}

.fa-play,
.fa-pause {
    line-height: 0;
    display: block;
}
.fa-pause:before,
.fa-play:before {
    display: inline-block;
    content: "";
    font-family: "govco-fontv2";
    background-repeat: no-repeat;
    background-size: 25px;
    width: 25px;
    text-decoration: none;
}

.fa-play:before {
    content: "\ea95";
}

.fa-pause:before {
    content: "\ea75";
}

@media only screen and (max-width:991.98px) {
    .carousel-control-next, .carousel-control-prev {
        align-items: flex-end;
        padding-bottom: 15px;
        width: 70px;
    }
    .carousel .ntg-button {
        bottom: auto;
        top: 1rem;
        margin: 0;
    }
}

#imgHeader {
    position: relative;
}

#imgHeader:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    opacity: 0.7;
}

#imgHeader .recuadro:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    height: 150px;
    width: 400px;
    background: red;
    background: url(https://colombiatic.mintic.gov.co/679/channels-581_logo_footer_mintic.png);
    background-repeat: no-repeat;
    left: 38px;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

#imgHeader .recuadro:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--bs-secondary);
    width: 333px;
    height: 100%;
}

#imgHeader .titulo {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 65px;
    max-width: 480px;
    color: #fff;
    font-size: 32px;
}

@media screen and (min-width: 1px) and (max-width: 768px){

    #imgHeader .recuadro:before {
        display: block;
        position: relative;
        margin: auto;
        left: 0px;
        height: 100px;
        width: auto;
        background-size: contain;
        background-position: center;
        background-color: #fff;
    }

    #imgHeader .recuadro:after{
        display: none;
    }

    #imgHeader .titulo {
        font-size: 19px;
        right: initial;
        left: 0;
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 10px;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        text-align: center;
    }
}

#header .recuadro img {
    width: 100%;
}

.logo_menu_superior, 
.menu_superior {
    color: #fff;
}
.items_menu_superior, .buscador_menu_superior {
    display: flex;
    align-items: center;
}

#header .logo img {
    width: auto;
}

#header .buscador_menu_superior + .logo {
    text-align: right;
}  

@media only screen and (max-width: 767.98px) {
    #header .logo,
    #header .buscador_menu_superior + .logo  {
        text-align:center;
    }
}

@media screen and (min-width: 1px) and (max-width: 991.98px){
    .items_menu_superior > div {
        width: 100%;
    }

    .busqueda_avanzada,
    .header-govco {
        margin: auto;
    }
}

.items_menu_superior ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

.items_menu_superior ul > li {
    display: inline-block;
}

.items_menu_superior ul > li a {
    color: #fff;
    padding: 20px 15px;
    display: inline-block;
    position: relative;
    font-size: 14px;
}

.items_menu_superior ul > li a:hover {
    text-decoration: none;
}

.items_menu_superior ul > li a:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f0cf37;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .items_menu_superior ul {
        margin-bottom: 20px;
    }
    .items_menu_superior ul > li {
        width: 100%;
        text-align: center;
    }
    .items_menu_superior ul > li a {
        color: #fff;
        padding: 5px 15px;
    }
}

.busqueda_avanzada {
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 350px;
}

.busqueda_avanzada .govco-search,
#busquedaForm .govco-search { /*new*/
  font-family: "govco-font";
  content: "\eae1";
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
}

.busqueda_avanzada .search-icon-search-govco,
#busquedaForm .search-icon-search-govco  { /*new*/
  right: 0.45rem;
  background-color: var(--govcolor-dimgray);
  border-radius: 50%;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.625rem;
  position: absolute;right: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.busqueda_avanzada:hover #buscador_mintic { /*new*/
    
    border: 1.5px solid var(--bs-primary);
  }

input#buscador_mintic:focus { /*new*/
    border: 2px solid var(--govcolor-black) !important;
    outline: 1px solid var(--govcolor-dimgray);
    outline-offset: -4px;}

#buscador_mintic input:-webkit-autofill,
input:-webkit-autofill:focus, input:-webkit-autofill:focus-visible, input:-webkit-autofill:hover
 {   /*new*/
  -webkit-box-shadow: 0 0 0px 1000px var(--govcolor-white) inset;
  transition: background-color 5000s ease-in-out 0s;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .busqueda_avanzada {
        position: relative;
        margin: auto;
        margin-bottom: 20px;
    }
}

.busqueda_avanzada #cuadro_busqueda_movil
/* .busqueda_avanzada #cuadro_busqueda */ {
    position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    white-space: pre;
    width: 40px;
    padding: 0;
    color: transparent;
    z-index: 2;
    border: 0;
    opacity: 0;
    margin: 0;
}

#busquedaForm {
    position: relative;
    max-width: 350px;
    margin-bottom: 2rem;
}

#buscador_mintic,
#busquedaForm #keywords { /*update*/
    padding: 8px 56px 8px 20px; 
    width: 100%;
    border: 1px solid var(--govcolor-tundora);
    border-radius:5rem;
    color: var(--govcolor-tundora);
}

.busqueda_avanzada #buscador_mintic_movil 
/* .busqueda_avanzada #buscador_mintic */ {
    border-radius: 20px;
    border: 0;
    padding: 5px 40px 5px 10px;
    box-sizing: border-box;
    font-size: 14px;
}

.filtros-buscador-avanzado {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--govcolor-bluelight);
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.filtros-buscador-avanzado * {
    margin: 0;
}

.filtros-buscador-avanzado form.filtros {
    border-right: solid 1px var(--bs-blue);
    padding-right: 1rem;
}

.filtros-buscador-avanzado form.filtros ul {
    display: flex;
    padding: 0;
    list-style: none;
}

.filtros-buscador-avanzado form.filtros ul li {
    margin-right: 1rem;
}

.filtros-buscador-avanzado h2,
.filtros-buscador-avanzado > label {
    font-size: var(--govtypo-h5);
    margin-right: 1rem;
}

.filtros-buscador-avanzado > label {
    margin-right: 1rem;
    font-family: var(--govtypo-fontfamily-title);
    font-weight: var(--govtypo-title-semibold);
    color: var(--bs-primary);
}

.filtros-buscador-avanzado > select {
    font-family: var(--govtypo-fontfamily-text);
    color: #4B4B4B;
    padding: 0.438rem 3.8rem 0.438rem 1rem;
    cursor: pointer;
    user-select: none;
    background-color: #FFFFFF;
    text-align: left;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    border: 0.063rem solid #737373;
    border-radius: 0.313rem;
}

.filtros-buscador-avanzado > select:hover {
    border: 0.063rem solid  var(--bs-primary);
}

.limpiar-filtros label {
    background-color: var(--bs-primary);
    color: #fff;
    padding: .5rem 1rem;
    margin-right: 1rem;
    border-radius: 5px;
}

.limpiar-filtros label:hover {
    background-color: var(--govcolor-bluedark);
}

.limpiar-filtros label {
    cursor: pointer;
}

@media only screen and (max-width: 991.98px) {
    .filtros-buscador-avanzado {
        flex-direction: column;
    }

    .filtros-buscador-avanzado > * {
        margin: 0 1rem 1rem 1rem;
    }

    .filtros-buscador-avanzado form.filtros {
        border: 0;
        padding: 0;
    }
}

/*---------Indicador de carga ---------*/

div[aria-describedby="waiting"].ui-dialog {
    position: fixed !important;
    top:0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #00000033;
    justify-content: center;
} 

div[aria-describedby="waiting"].ui-dialog .ui-dialog-titlebar {
    display: none;
}

.spinner-modal-govco {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 800px !important;
    max-height: 600px !important;
    background-color: #fff;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.ui-progressbar-overlay {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    color: var(--bs-primary);
    margin: 1rem;
}

/*---------MENU---------*/

.main-navbar { /*update*/
    padding: 0;
    background: var(--govcolor-concrete);
    border-bottom: solid 3px var(--govcolor-bluedark);
}

.main-navbar .navbar-nav {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    margin-left: -0.875rem;
    margin-right: -0.875rem;
}

.main-navbar .navbar-nav li { /*new*/
    margin: 0;
    min-height: 69px;
    height: auto;
    display: inline !important;
    position: relative;
}

.main-navbar .navbar-nav > li:not(:last-child) { /*update*/
    margin-right: 0px;
}

.main-navbar .navbar-nav > li > a { /*update*/
    padding: 1.125rem 0.875rem 1.125rem 0.875rem;
    display: flex;
    align-items: baseline;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.3;
    height: 69px;
    color: var(--govcolor-tundora);
    font-weight: 500;
    margin-right: 0px;
    text-align: left;
    max-width: 13rem;

}

.sticky.main-navbar .navbar-nav > li > a {
    height: 90px;
}

.main-navbar .navbar-nav > li > a:visited { /*update*/
    color: var(--govcolor-tundora);
}

.main-navbar .navbar-nav > li > a:visited:hover { /*new*/
    color: var(--govcolor-white);
}

.container-menu-micro .navbar-nav > li > a {
    align-items: center;
}

.container-menu-micro .navbar-nav > li > a:visited,
.container-menu-micro .navbar-nav > li > a {
    color: var(--bs-blue);
}

.menu-micrositios li > a:hover,
.main-navbar .navbar-nav > li > a:hover { /*update*/
    background-color: var(--govcolor-bluedark);
    font-weight: 400;
    text-decoration: underline;
    color: var(--govcolor-white);
}

.main-navbar .navbar-nav > li > a:focus-visible { /*new update*/

    border-radius: 0 !important;
    outline: max(0.125rem, 0.15em) solid #000000 !important;
    outline-offset: max(0.15rem, 0.15em) !important;
    font-weight: 500 !important;
    background-color: var(--govcolor-bluedark) !important;
    color: var(--govcolor-white) !important;
}

.menu-micrositios li.active > a,
.main-navbar .navbar-nav > li > a.active { /*update*/
    color: white !important;
    background-color: var(--govcolor-bluedark) !important;
    font-weight: 500;
}

.main-navbar .navbar-nav > li:has(a:hover) > a { /*new*/
    background-color: var(--govcolor-bluedark) !important;
    color: var(--govcolor-white) !important;;
}

.main-navbar .navbar-nav > li > ul { /*update*/
    display: none;
    list-style: none;
    max-width: 300px;
    min-width: 300px;
    background: #F2F2F2;
    border-bottom: solid 2px var(--govcolor-concrete);
}

.main-navbar .navbar-nav > li > ul {
    overflow-y: auto;
    max-height: 80vh;
}

.main-navbar .navbar-nav li ul::-webkit-scrollbar
{
    width: 10px;
    background-color: var(--bs-primary);
    border-radius: 5px;
}

.main-navbar .navbar-nav li ul::-webkit-scrollbar-track
{
    box-shadow: inset 0px 0px 6px rgba(0,0,0,.3);
    background-color: #f5f5f5;
}

.main-navbar .navbar-nav li ul::-webkit-scrollbar-thumb
{
    background-color: var(--bs-primary);
    border-radius: 5px;
}

.main-navbar .navbar-nav > li:hover > ul,
.main-navbar .navbar-nav > li.access-gif > ul  {
    display: block;
    position: absolute;
    top: 100%;
    z-index: 500;
    padding: 0;
}

.main-navbar .navbar-nav > li > ul > li {
    position: relative;
}

.main-navbar .navbar-nav > li > ul > li ul {
    background: #ececec;
    padding: 10px 0px 10px 20px;
    list-style: none;
}

.main-navbar .navbar-nav > li ul li a { /*update*/
    color: var(--govcolor-tundora);
    width: 100%;
    display: inline-block;
    padding: 6px;
    text-transform: initial;
    text-decoration: none;
    font-size: 0.875rem;
    text-align: left;
}

.main-navbar .navbar-nav > li ul li a:focus-visible { /*new update*/
    border-radius: 0 !important;
    background: var(--govcolor-white);
    font-weight: 500;
    outline: max(0.125rem, 0.15em) solid #000000 !important;
    outline-offset: max(0.188rem, 0.15em) !important;
    z-index: 1;
    color: var(--govcolor-tundora) !important;
}

.main-navbar .navbar-nav > li ul li a:visited { /*update*/
    color: var(--govcolor-tundora);
}

.main-navbar .navbar-nav > li ul li.active a,
.main-navbar .navbar-nav > li ul li a:hover { /*update*/
    
    text-decoration: underline;
    background: #E8E8E8;
    color: var(--govcolor-tundora);

}

.main-navbar .navbar-nav > li:hover:last-child > ul {
    right:0
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .main-navbar .navbar-nav > li {
        width: 100%;
    }
    .main-navbar .navbar-nav > li > a {
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
    }
}

/*---------MENU STICKY---------*/
@media screen and (min-width: 769px){

    .sticky-padding {
        padding-top: 72px;
    }

    .main-navbar.sticky {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 500;
        width: 100%;
        margin: auto;
        -webkit-animation: fixed-move-down .5s;
        animation: fixed-move-down .5s;
    }

    .main-navbar.sticky .navbar-nav {
        position: relative;
        align-items: stretch;

    }

    .main-navbar.sticky .navbar-nav > li > a { /*new*/
    
     align-items: center;
    }

    .main-navbar.sticky .navbar-nav.menu-micrositios {
        width: 95%;
    }

    .main-navbar.sticky > div > .navbar-nav:before { /*update*/
        content: "";
        display: block;
        width: 100px;
        background: url(https://css.mintic.gov.co/mt/mintic/new/img/logo_mintic_24_dark.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: .5rem 10px .5rem 1rem;
    }
    

    .main-navbar.sticky #tramites-sticky {
        width: 25%;
        float: left;
    }

    .main-navbar.sticky #tramites-sticky > ul {
        padding: 0;
        list-style: none;
    }

    .main-navbar.sticky #tramites-sticky > ul li {
        float: left;
        width: 50%;
        text-align: center;
    }

    .main-navbar.sticky .navbar-nav > li ul li a{
        font-size: 13px;
    }

    .main-navbar.sticky #tramites-sticky > ul li a {
        color: #0056b3;
        padding: 22px 10px;
        display: inline-block;
        position: relative;
        font-size: 14px;
    }

    .main-navbar.sticky #tramites-sticky > ul li a:hover{
        text-decoration: none;
    }

    .main-navbar.sticky #tramites-sticky > ul li a:hover:before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #f0cf37;
    }

}

@media screen and (min-width: 1px) and (max-width: 768px){

    .main-navbar.sticky #tramites-sticky {
        width: 100%;
    }

    .main-navbar.sticky #tramites-sticky > ul li {
        width: 100%;
    }
    .main-navbar.sticky #tramites-sticky {
        width: 100%;
        display: none;
    }
}

/*MENU MOVIL*/

@media screen and (min-width: 1px) and (max-width: 991.98px){
    .main-navbar {
        display: none;
    }
    .menu_superior .items_menu_superior, .menu_superior .buscador_menu_superior {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .btn-menu-movil,
    .btn-menu-micro,
    .container-menu-movil{
        display: none;
    }
}

.container-menu-movil { /*update*/
    position: fixed;
    left: 0;
    top: 0;
    background: var(--govcolor-concrete);
    width: 100%;
    height: 100vh !important;
    left: -100%;
    max-width: 80%;
    min-width: 300px;
    z-index: 20;
    /* overflow: auto; */
    -webkit-box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    -moz-box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.container-menu-movil.collapse,
.container-menu-movil.show {
    left: 0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    max-height: 95vh;
}

#menu-movil #items-principal {
    overflow-y: scroll;
    max-height: 62vh;
}

.btn-menu-movil { /*update*/
    position: fixed;
    left: 10px;
    top: 4px;
    z-index: 30;
    background: var(--bs-primary);
    border-radius: 1.313rem;
    margin: 0;
    width: 42px;
    height: 42px;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
}

.btn-menu-movil span:before { /*new*/
  
  color: #ffffff;
  display: inline-block;
  font-size: 28px;
  padding: 0;
}

.btn-menu-movil:not(.collapsed) span:before,
.btn-menu-movil:not(.collapsed):hover span:before { /*new*/

  font-family: "govco-fontv2";
  content: "\eb73";
  color: var(--govcolor-white);

}

.btn-menu-movil:not(.collapsed),
.btn-menu-movil:not(.collapsed):hover,
.btn-menu-movil:not(.collapsed):focus
{  /*new*/

  background-color: var(--govcolor-bluedark) !important;
  outline: none;
}

.btn-menu-movil:focus { /*new*/
outline: none;

}

.btn-menu-movil:hover span:before { /*new*/
  
  color: var(--bs-primary);
}

.btn-menu-movil[aria-expanded="false"]:hover,
.btn-menu-movil[aria-expanded="false"]:focus-visible,
.btn-menu-movil[aria-expanded="false"].hover,
.btn-menu-movil[aria-expanded="false"].focus { /*new*/
  background-color: var(--govcolor-bluelight);
}

.btn-menu-movil:focus-visible

 { /*new*/
  outline: max(0.125rem, 0.125rem) solid #000000;
  outline-offset: max(0.125rem, 0.125rem);
}

.btn-menu-movil[aria-expanded="false"]:active { /*new*/
  background-color: var(--govcolor-bluedark) !important;
}

.btn-menu-movil[aria-expanded="true"] { /*new*/
  background-color: var(--govcolor-bluedark) !important;
}
.btn-menu-movil[aria-expanded="false"]:hover span:before,
.btn-menu-movil[aria-expanded="false"]:focus-visible span:before,
.btn-menu-movil[aria-expanded="false"].hover span:before,
.btn-menu-movil[aria-expanded="false"].focus span:before {  /*new*/
  color: var(--bs-primary);
}

.btn-menu-movil[aria-expanded="false"]:active span:before { /*new*/
  color: #ffffff;
}

.menu_superior_movil{
    background: var(--bs-primary);
    margin: 0;
    border: 0;
}

.menu_superior_movil div {
    margin: auto;
    text-align: center;
}

.header-govco {
    padding: 8px 0;
}

.header-govco img {
    max-height: 20px;
}

#menu-movil-micro .items_menu_superior,
#menu-movil-micro .buscador_menu_superior {
    flex: 0 0 100%;
    max-width: 100%;
}

#menu-movil-micro .buscador_menu_superior {
    padding-bottom: 30px;
}

#items-principal ul {
    padding: 0;
}

.menu-movil-micro-cc .menu-micrositios li,
.container-menu-movil .menu-micrositios li,
.container-menu-movil #items-principal li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu-movil-micro-cc .menu-micrositios li.current,
.container-menu-movil .menu-micrositios li.current,
.container-menu-movil #items-principal li.current {
    background-color: #fff;
}
.menu-movil-micro-cc .menu-micrositios li.current + li.current,
.container-menu-movil .menu-micrositios li.current + li.current,
.container-menu-movil #items-principal li.current + li.current {
    background-color: transparent;
}

.container-menu-movil .menu-micrositios #inicio {
    margin: 0;
}

.menu-movil-micro-cc .menu-micrositios li > ul,
.container-menu-movil .menu-micrositios li > ul {
    display: none;
}

.menu-movil-micro-cc .menu-micrositios li a,
.container-menu-movil .menu-micrositios li a,
.container-menu-movil #items-principal li a {
    color: var(--bs-primary);
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 10px;
    position: relative;
}

.menu-movil-micro-cc .menu-micrositios li a,
.container-menu-movil .menu-micrositios li a,
.container-menu-movil #items-principal li a{
    text-decoration: none;
}

.menu-movil-micro-cc .menu-micrositios li a:active,
.container-menu-movil .menu-micrositios li a:active,
.container-menu-movil #items-principal li a:active {
    background: #fff;
}

.btn-menu-movil span.navbar-toggler-icon {
    background: gray;
    height: 3px;
    width: 45%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.btn-menu-movil span.navbar-toggler-icon:before {
    content: "";
    display: block;
    background: gray;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 6px;
}

.btn-menu-movil span.navbar-toggler-icon:after {
    content: "";
    display: block;
    background: gray;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 6px;
}

/*MENU MOVIL (end)*/

@media only screen and (min-width: 992px) {

    .main-navbar > div > .navbar-nav > li {
        position: relative;
    }
    
    .main-navbar > div > .navbar-nav > li:hover:before,
    .main-navbar > div > .navbar-nav > li.access-gif:before {
        content: "";
        display: block;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 130px;
        height: 73px;
        margin: auto;
        top: -90px;
        left: -50px;
        right: -50px;
        box-shadow: 0 0px 15px 0px var(--bs-blue);
        border-radius: 5px;
        z-index: 30;
    }
    .main-navbar.sticky > div > .navbar-nav > li:hover > ul:before {
        content: "";
        display: block;
        background-size: cover;
        background-position: center;
        width: 100px;
        height: 80px;
        margin: 6px 0 1rem 6px;
        z-index: 30;
    }
    

    .main-navbar.sticky > div > .navbar-nav > li:hover > ul:after,
    .main-navbar > div > .navbar-nav > li:hover:after { /*update*/
        
        font-family: "govco-fontv2";
        content: "\e88e";
        display: block;
        position: absolute;
        top: -25px;
        left: 0;
        right: 0;
        margin: auto;
        font-size: 24px;
    }
    

    .main-navbar.sticky > div > .navbar-nav > li:hover:before {
        top: 90px;
    }
  
    .main-navbar.sticky > div > .navbar-nav > li:hover:after  { /*update*/
        top: 58px;
    }
    
    .main-navbar li#inicio:hover:after,
    .main-navbar li#inicio:hover:before,
    .main-navbar li#ministro:hover:after,
    .main-navbar li#ministro:hover:before,
    .main-navbar li#servicios:hover:after,
    .main-navbar li#servicios:hover:before,
    .main-navbar li#participacion:hover:after,
    .main-navbar li#participacion:hover:before,
    .main-navbar li#iniciativas:hover:after,
    .main-navbar li#iniciativas:hover:before,
    .main-navbar li#inicio.access-gif:after,
    .main-navbar li#inicio.access-gif:before,
    .main-navbar li#ministro.access-gif:after,
    .main-navbar li#ministro.access-gif:before,
    .main-navbar li#servicios.access-gif:after,
    .main-navbar li#servicios.access-gif:before,
    .main-navbar li#participacion.access-gif:after,
    .main-navbar li#participacion.access-gif:before,
    .main-navbar li#iniciativas.access-gif:after,
    .main-navbar li#iniciativas.access-gif:before{
        background-image: url(); display: none;
    }

    .main-navbar.sticky li#atencion:hover:before,
    .main-navbar.sticky li#ministerio:hover:before,
    .main-navbar.sticky li#sala_prensa:hover:before,
    .main-navbar.sticky li#atencion.access-gif:before,
    .main-navbar.sticky li#ministerio.access-gif:before,
    .main-navbar.sticky li#sala_prensa.access-gif:before {
        display: none;
    }
    
    .main-navbar.sticky li#ministerio:hover > ul:before, 
    .main-navbar li#ministerio:hover:before,
    .main-navbar li#ministerio.access-gif:before {
        /* background-image: url(https://css.mintic.gov.co/mt/mintic/img/ministerio.gif); */
        background-image: url(channels-616_gif_ministerio.gif);
    }
    
    .main-navbar.sticky li#normativa:hover > ul:before, 
    .main-navbar li#normativa:hover:before,
    .main-navbar li#normativa.access-gif:before {
        /* background-image: url(https://css.mintic.gov.co/mt/mintic/img/normativa.gif); */
        background-image: url(channels-616_gif_normativa.gif);
    }
    
    .main-navbar.sticky li#sala_prensa:hover > ul:before, 
    .main-navbar li#sala_prensa:hover:before,
    .main-navbar li#sala_prensa.access-gif:before {
        /* background-image: url(https://css.mintic.gov.co/mt/mintic/img/sala_prensa.gif); */
        background-image: url(channels-616_gif_sala_prensa.gif);
    }
    
    .main-navbar.sticky li#atencion:hover > ul:before, 
    .main-navbar li#atencion:hover:before,
    .main-navbar li#atencion.access-gif:before {
        background-image: url(https://css.mintic.gov.co/mt/mintic/img/atencion_publico.gif); 
        /*background-image: url(channels-616_gif_atencion_publico.gif);*/
    }
    
    .main-navbar.sticky li#transparencia:hover > ul:before, 
    .main-navbar li#transparencia:hover:before, 
    .main-navbar li#transparencia.access-gif:before {
        /* background-image: url(https://css.mintic.gov.co/mt/mintic/img/transparencia.gif); */
        background-image: url(channels-616_gif_transparencia.gif);
    }
    
    .container-menu-micro.main-navbar > div > .navbar-nav > li:hover:after,
    .container-menu-micro.main-navbar > div > .navbar-nav > li:hover:before {
        display: none;
    }
}

/*---------MENU PQRSD---------*/

.navbar-pqrsd .navbar-nav {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: auto;
    background-color: #e6effd;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgb(51 102 204 / 29%);
    padding: 1rem;
}

.navbar-pqrsd .nav-item {
    padding: 0 1rem ;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-pqrsd .nav-item:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    background-color: #6c757d73;
    position: absolute;
    right: 0;
    top: 3px;
    bottom: 3px;
    margin: auto;
}

.navbar-pqrsd .nav-link {
    color: var(--bs-primary);
    font-weight: bold;
    line-height: 1.3;
}
.navbar-pqrsd .nav-item.active .nav-link,
.navbar-pqrsd .nav-link:hover {
    color: var(--bs-secondary);
}

@media only screen and (max-width: 767.98px) {
    .navbar-pqrsd .navbar-nav{
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .navbar-pqrsd .nav-item:after {
        display: none !important;
    }
}

.bg-destacado {
    background-image: url(channels-616_bg_destacado.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*---------HOME IFRAME---------*/

.home_iframe .titulo {
    color: var(--bs-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.home_iframe .embed-responsive {
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgb(51 102 204 / 29%);
}

.home_iframe .recuadro > div:nth-of-type(2) {
    padding-top: 40px;
}

.home_iframe .recuadro .embed-responsive {
    max-width: 800px;
    margin: auto;
}

/*--------- NOTICIAS---------*/

.noticias-destacadas .fecha {
    margin-top: 1rem;
}

.recuadros-sala-prensa {
    margin-top: 3rem;
}

.recuadros-sala-prensa .recuadro {
    padding-bottom: 2rem;
}

.tag-convocatoria .pvid-111099 {
    display: block;
    margin-right: 1rem;
    font-size: 0.875rem;
    color: var(--govcolor-tundora); 
    margin: .5rem 0;
}

.lista-news > .recuadro .titulo a,
.recuadros-sala-prensa .recuadro .titulo a,
.right_col_noticias .recuadro .titulo a,
#recuadros_articulo_11870 > .recuadro .titulo a,
#recuadros_articulo_11677 > .recuadro .titulo a { /*update*/
    display: inline-block;
    font-family: var(--govtypo-fontfamily-title);
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    font-weight: var(--govtypo-title-semibold);
    text-decoration: underline;
}

#recuadros-youtube .recuadro .titulo a {
    display: inline-block;
    max-width: 100%;
    font-weight: 500;
    text-decoration: underline;
}

#recuadros-youtube .binary-recurso_1 {
    padding: 0 15px;
    margin-top: 8px;
}

#recuadros-youtube .binary-recurso_1 img {
    display: none;
}

#recuadros-youtube .binary-recurso_1 a:first-child:after {
    display: inline-block;
    content: "";
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF1979' class='bi bi-chat-text' viewBox='0 0 16 16'><path d='M2.678 11.894a1 1 0 0 1 .287.801 10.97 10.97 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8.06 8.06 0 0 0 8 14c3.996 0 7-2.807 7-6 0-3.192-3.004-6-7-6S1 4.808 1 8c0 1.468.617 2.83 1.678 3.894zm-.493 3.905a21.682 21.682 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a9.68 9.68 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9.06 9.06 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105z'/><path d='M4 5.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zM4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8zm0 2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5z'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: text-top;
    margin-right: 8px;
}

.btn-abrir-filtros {
    background-color: var(--bs-primary);
    border: none;
    color: #fff;
    border-radius: 3rem;
    max-width: 450px;
    margin-bottom: 30px;
    width: 100%;
    box-shadow: none !important;
    margin: auto;
    display: inherit;
    position: relative;
    padding-right: 35px;
}

.btn-abrir-filtros:focus,
.btn-abrir-filtros:hover {
    background-color: var(--bs-blue);
    color: #fff;
}

.btn-abrir-filtros span,
.btn-abrir-filtros span strong{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.btn-abrir-filtros:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 12px;
    bottom: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    background-image: none;
    margin: auto;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -5px;
}
button[aria-expanded="true"].btn-abrir-filtros:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 5px;
}

.card .pvid-133234,
.card .pvid-133233 {
    margin-bottom: 1.2rem;
}

/*---------MIGA DE PAN---------*/
.miga_depan .section-container {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 35px;
    padding-right: 35px;
}

.miga_depan p {
    margin: 0;
    display: flex;
    align-items: center;
    color: transparent;
}

.miga_depan {
    padding: 2rem 0;
}

.miga_depan a {   /*update*/
    color: var(--bs-primary);
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    width: auto;
    max-width: 15.625rem;
}

.miga_depan a.current {  /*update*/
    color: #282C34;
    font-weight: 500;
}

.miga_depan a:last-child { /*new*/
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.miga_depan a:not(:last-child):before { /*new*/
  float: right;
  padding-right: 0.8rem;
  color: #282C34;
  content: var(--bs-breadcrumb-divider, ">");
  font-weight: medium;
  padding: 0 0.625rem;
}

/*--------- Atencion y Servicio a la Ciudadania ---------*/

#recuadros_articulo_11675 .recuadro > div:nth-of-type(1) {
    position: relative;
    margin-bottom: 15px;
    position: relative;
    min-height: 50px;
}

#recuadros_articulo_11675 .recuadro > div:nth-of-type(1) .titulo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px;
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
    box-sizing: border-box;
}

#recuadros_articulo_11675 .recuadro > div:nth-of-type(1) img, 
#recuadros_articulo_11675 .recuadro > div:nth-of-type(1) h5 {
    width: 100% !important;
}

#i__MT_pa_atencion_publico_1 {
    max-width: 800px;
    margin: auto;
}

#i__MT_pa_atencion_publico_1 ul {
    padding: 0;
}
#i__MT_pa_atencion_publico_1 ul li {
    display: inline-block;
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    #i__MT_pa_atencion_publico_1 ul li {
        display: inline-block;
        width: 100%;
    }
}

#i__MT_pa_atencion_publico_1 ul li a {
    padding: 20px;
    border-bottom: 2px solid rgba(157,190,255,.3);
    display: inline-block;
    width: 100%;
}

#recuadros_articulo_11864 {
    padding: 50px 0;
}

#recuadros_articulo_11864 img {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

#recuadros_articulo_11864 img:nth-child(3) {
    width: 49%;
    display: inline-block;
    margin-right: 1%;
}

#recuadros_articulo_11864 img:nth-child(4) {
    width: 49%;
    display: inline-block;
    margin-left: 1%;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    #recuadros_articulo_11864 img:nth-of-type(3),
    #recuadros_articulo_11864 img:nth-of-type(4) {
        width: 50%;
        display: inline-block;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4B4B4B;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #BABABA;
    border-radius: 5px !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:hover {
    box-shadow: 0 0 3px #004884;
}

#filtroBuscar {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    font-weight: 100;
    border-radius: 0;
}

.filtros-desplegados .gj-datepicker-bootstrap [role=right-icon] button:hover,
.filtros-desplegados .gj-datepicker-bootstrap [role=right-icon] button {
    background: var(--bs-secondary);
    height: 38px;
    color: #fff;
    border: 1px solid var(--bs-secondary) !important;
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-right-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomright: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 0 22px;
}

.link-historico {
    padding-top: 30px;
}

.link-historico a {
    color: #fff;
    text-decoration: overline;
}

.link-historico a:hover {
    color: var(--bs-secondary);
}

.link-historico:before {
    content: "";
    display: block;
    background-image: url(channels-616_icon_noticias.svg);
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 8px;
}

/*---------INICIATIVAS---------*/

.btns_iniciativas {
    padding: 30px 0px;
}

.btns_iniciativas a { /*update*/
    background: var(--govcolor-bluedark);
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50rem;
    margin: 1rem 0;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
 }

.btns_iniciativas a span:before { /*new*/

  font-size: 190%;
  vertical-align: middle;
  width: 1.25em;

}

.btns_iniciativas .links-iniciativa:nth-child(odd) a { /*update*/
    background: var(--bs-primary);
}

.btns_iniciativas a:hover { /*update*/
    background: var(--bs-link-color) !important;
    color: #fff;
}

/*---------CONVOCATORIAS---------*/

#recuadros_articulo_11682 .recuadro .fecha,
#recuadros_articulo_11682 .recuadro .titulo{
    padding: 0px 20px;
    line-height: 1.2;
}

#recuadros_articulo_11682 .recuadro .titulo a {
    color: #000;
    font-size: 16px;
}

#recuadros_articulo_11682 .recuadro .fecha {
    color: var(--bs-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

#recuadros_articulo_11682 .recuadro:hover .fecha,
#recuadros_articulo_11682 .recuadro:hover .titulo a{
    color: #fff;
}

#recuadros_articulo_11682 .recuadro {
    position: relative;
    padding-bottom: 10px;
}

#recuadros_articulo_11682 .recuadro .figure {
    margin-bottom: 10px;
}

#recuadros_articulo_11682 .recuadro:before {
    content: "";
    background: #FFF;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    display: block;
    height: 100%;
    z-index: -1;
}

#recuadros_articulo_11682 .recuadro:hover:before {
    content: "";
    background: var(--bs-primary);
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    display: block;
    height: 100%;
    z-index: -1;
}

.more_convoca {
    padding: 15px;
    margin-top: 20px;
    border-top: 2px solid rgba(157,190,255,.3);
}

.more_convoca a {
    color: var(--bs-secondary);
}

.more_convoca a:before {
    content: "";
    display: inline-block;
    height: 15px;
    width: 15px;
    background: url(channels-616_plus_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 5px;
}

.recuadro-publicos .recuadro {
    width: 20%;
    float: left;
    background-color: var(--bs-info);
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0;
}

.recuadro-publicos .recuadro:hover {
    background-color: var(--bs-secondary) !important;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .recuadro-publicos .recuadro {
        width: 100%;
    }
}

.recuadro-publicos .recuadro:nth-child(odd) {
    background: var(--bs-primary);
}

.recuadro-publicos .recuadro:hover {
    background: var(--bs-info);
}

.recuadro-publicos .recuadro img {
    width: 50px;
}

.recuadro-publicos .recuadro .titulo a {
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
}

/*---------PROGRAMA TV---------*/

#article_i__MT_alt_programatv_header_1 .figure {
    width: auto !important;
}

#article_i__MT_alt_programatv_header_1 img {
    margin-bottom: 0;
}

#programa_tv {
    padding: 80px 20px;
}

#programa_tv .ntg-titulo-caja {
    color: #00FFFF;
}

#programa_tv.title_underline_padre .ntg-titulo-caja{
    color: #fff;
    word-break: break-all;
}

#slider-conoce .swiper-slide {
    text-align: center;
}

#slider-conoce img {
    max-width: 160px;
}

#slider-conoce .caption {
    color: var(--govcolor-bluedark);
}

#slider-conoce .swiper-container {
    padding: 2rem 0;
}

#slider-conoce .swiper-button-next {
    right: 0px;
}

#slider-conoce .swiper-button-prev {
    left: 0px;
}

.slider-emisiones.swiper {
    padding: 20px !important;
}

.slider-emisiones.swiper .recuadro {
    text-align: center;
}

.slider-emisiones .swiper-button-prev {
    top: 40%;
} 

.slider-emisiones .swiper-button-next {
    top: 40%;
}

.slider-emisiones .swiper-button-next:after, 
.slider-emisiones .swiper-button-prev:after {
    font-size: 30px !important;
}

.episodios .figure img{
    border-radius: 1rem;
}

@media only screen and (min-width: 992px) {
    .slider-emisiones .swiper-button-prev {
        left: -3px;
    } 
    
    .slider-emisiones .swiper-button-next {
        right: -3px;
    }}

@media screen and (min-width: 1280px){
    #programa_tv {
        padding: 30px 20px;
    }
}

.bg-tv {
    background: url(channels-616_bg_tv.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: initial;
    padding: 0;
    max-width: initial;
    float: left;
    width: 100%;
    background-color: var(--bs-blue);
}

#programa_tv .titulo, #programa_tv .abstract {
    color: #FEB329;
}

#programa_tv .abstract {
    line-height: 1.2;
    font-weight: 400;
    color: #FEB329;
  }
#programa_tv .titulo {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15% 0 10px 0;
    line-height: 1.2;
}

/*---------CONVOCATORIAS---------*/

.has-parallax {
    background: #1d5785;
}

/*---------FOOTER---------*/

#footer .bg-secondary {
    border-top: 100px solid white;
    margin-top: 3rem;
    background-color: var(--govcolor-bluedark) !important;
}

#footer .card {
    margin-top:-100px;
}


#footer .small p{
    margin-bottom: .5rem;
}

#footer a {
    text-decoration: underline;
    color: var(--bs-primary);
}

#footer .bg-primary ul {
    color: #fff;
}

.list-group-flush .list-group-item:first-child img {
    width: auto;
}

#footer > .bg-secondary > .bg-primary ul.list-unstyled {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 991.98px) {
    #footer  .list-group-horizontal {
        flex-direction: column;
    }
    
    #footer  .list-group-horizontal .pl-0 {
        padding-left: 1.25rem !important;
    }
}

.menu_inferior {
    max-width: 1240px;
    margin: 28px auto;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

#enlaces_gobierno {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#selects {
    float: left;
    width: 20%;
}

.menu_inferior #enlaces_gobierno ul {
    width: 18%;
    float: left;
    padding: 0 10px;
    list-style: none;
    font-size: 14px;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .menu_inferior #enlaces_gobierno ul {
        width: 50%;
        padding: 0 0px;
    }
}

.menu_inferior #enlaces_gobierno .logo_gobierno {
    width: 28%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 20px;
    box-sizing: border-box;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .menu_inferior #enlaces_gobierno .logo_gobierno {
        width: 100%;
        padding: 20px;
    }
    .menu_inferior #enlaces_gobierno .logo_gobierno img{
        max-width: 250px;
    }
}

#redes > .row > div {
    padding: 5px;
}

.menu_inferior .title {
    font-size: 15px;
    color: dimgrey;
}

.menu_inferior li a {
    color: #000;
}

.ul_ministerios li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    margin-right: 5px;
}

#selects ul {
    list-style: none;
    padding: 0;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    #logo_mcolombia {
        text-align: center;
    }
    #logo_mcolombia img {
        width: 100%;
        max-width: 60px;
        margin: auto;
    }
}

/*COLUMNA1*/
.ul_ministerios.columna1 li.item1 a:before {
    background: #c5131d;
}

.ul_ministerios.columna1 li.item2 a:before {
    background: #9b087b;
}

.ul_ministerios.columna1 li.item3 a:before {
    background: #2b449c;
}

.ul_ministerios.columna1 li.item4 a:before {
    background: #077ec3;
}

.ul_ministerios.columna1 li.item5 a:before {
    background: #00a548;
}

.ul_ministerios.columna1 li.item6 a:before {
    background: #3c208a;
}

/*COLUMNA2*/
.ul_ministerios.columna2 li.item1 a:before {
    background: #881b02;
}

.ul_ministerios.columna2 li.item2 a:before {
    background: #bfac00;
}

.ul_ministerios.columna2 li.item3 a:before {
    background: #3d9132;
}

.ul_ministerios.columna2 li.item4 a:before {
    background: #781d7d;
}

.ul_ministerios.columna2 li.item5 a:before {
    background: #8f208b;
}

.ul_ministerios.columna2 li.item6 a:before {
    background: #63ae33;
}

/*COLUMNA3*/
.ul_ministerios.columna3 li.item1 a:before {
    background: #a0cf66;
}

.ul_ministerios.columna3 li.item2 a:before {
    background: #d06f1a;
}

.ul_ministerios.columna3 li.item3 a:before {
    background: #b1850a;
}

.ul_ministerios.columna3 li.item4 a:before {
    background: #333092;
}

.ul_ministerios.columna3 li.item5 a:before {
    background: #00a8cb;
}

.ul_ministerios.columna3 li.item6 a:before {
    background: #c4101a;
}

/* REDES SOCIALES FOOTER GOVCO -new*/

.govco-footer-card { /*new */
  border: 2px solid #e5eefb;
  border-radius: 10px;
  opacity: 1;
}

.govco-footer-card > .row > .text-center.text-lg-right {
    display: none;
}

.redes_footer a { /*new*/
font-weight: var(--govtypo-text-medium);
}

.govco-instagram-square:before {
  content: "\ed5c";
 }

.govco-facebook-square:before {
  content: "\ed0e";

}

.govco-youtube-square:before {
  content: "\ee52";
}

.govco-whatsapp-square:before {    
  content: "\ee38";
}

.govco-instagram-square:before,
.govco-twitter-square:before,
.govco-facebook-square:before,
.govco-youtube-square:before,
.govco-whatsapp-square:before, 
.govco-threads-square:before,
.govco-tiktok-square:before,
.govco-telegram-square:before,
.govco-x-square:before  {
    display: inline-block;
    width: 1.2558rem;
    height: 1.2558rem;
    border-radius: 2px;
    background-color: var(--bs-primary);
    vertical-align: text-bottom;
    color: white;
    font-size: 1rem;
    padding-top: 2px;
}

.govco-threads-square:before,
.govco-tiktok-square:before,
.govco-telegram-square:before,
.govco-x-square:before  {
    
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65%;
  }

.govco-threads-square:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='337.25' height='392' fill='%23ffffff' viewBox='0 0 337.25 392'> <path d='m262.43,181.68c-1.69-.81-3.4-1.59-5.14-2.33-3.03-55.75-33.49-87.67-84.64-88-.23,0-.46,0-.69,0-30.6,0-56.04,13.06-71.7,36.82l28.13,19.3c11.7-17.75,30.06-21.54,43.58-21.54.16,0,.31,0,.47,0,16.84.11,29.55,5,37.78,14.55,5.99,6.95,9.99,16.56,11.97,28.69-14.93-2.54-31.08-3.32-48.35-2.33-48.63,2.8-79.9,31.17-77.8,70.58,1.07,19.99,11.03,37.19,28.04,48.43,14.39,9.5,32.92,14.14,52.18,13.09,25.43-1.39,45.39-11.1,59.31-28.84,10.57-13.48,17.26-30.94,20.21-52.94,12.12,7.32,21.1,16.94,26.07,28.51,8.44,19.67,8.93,52-17.45,78.35-23.11,23.09-50.89,33.08-92.87,33.38-46.57-.35-81.79-15.28-104.69-44.39-21.44-27.26-32.52-66.63-32.94-117.02.41-50.39,11.5-89.76,32.94-117.02,22.9-29.11,58.12-44.04,104.69-44.39,46.91.35,82.74,15.36,106.52,44.61,11.66,14.34,20.45,32.38,26.24,53.41l32.97-8.8c-7.02-25.89-18.07-48.2-33.11-66.7C273.66,19.61,229.08.4,171.64,0h-.23C114.09.4,70.01,19.69,40.4,57.33,14.05,90.83.46,137.44,0,195.86v.14s0,.14,0,.14c.46,58.43,14.05,105.04,40.4,138.53,29.61,37.64,73.69,56.93,131.01,57.33h.23c50.96-.35,86.88-13.7,116.47-43.26,38.72-38.68,37.55-87.16,24.79-116.93-9.15-21.34-26.61-38.68-50.48-50.13Zm-87.99,82.73c-21.31,1.2-43.46-8.37-44.55-28.86-.81-15.19,10.81-32.15,45.86-34.17,4.01-.23,7.95-.34,11.82-.34,12.73,0,24.64,1.24,35.47,3.6-4.04,50.43-27.73,58.62-48.59,59.77Z'/></svg>");
}

.govco-tiktok-square:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='447.87' height='511.87' fill='%23ffffff' viewBox='0 0 447.87 511.87'><path d='m447.87,209.91c-44.03.11-86.97-13.62-122.77-39.25v178.72c-.03,89.77-72.84,162.52-162.61,162.49C72.72,511.84-.03,439.03,0,349.26c.03-89.77,72.84-162.52,162.61-162.49,7.45,0,14.88.52,22.26,1.54v89.89c-39.31-12.37-81.21,9.48-93.57,48.79s9.48,81.21,48.79,93.57,81.21-9.48,93.57-48.79c2.28-7.25,3.44-14.8,3.44-22.39V0h88c-.06,7.43.56,14.85,1.86,22.17h0c6.18,33.01,25.68,62.03,53.91,80.22,19.87,13.14,43.17,20.15,67,20.14v87.38Z'/></svg>");
}

.govco-telegram-square:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='447.96' height='375.68' fill='%23ffffff' viewBox='0 0 447.96 375.68'><path d='m446.68,34.2l-67.6,318.8c-5.1,22.5-18.4,28.1-37.3,17.5l-103-75.9-49.7,47.8c-5.5,5.5-10.1,10.1-20.7,10.1l7.4-104.9,190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.78,219.6l-101.6-31.8c-22.1-6.9-22.5-22.1,4.6-32.7L418.18,2c18.4-6.9,34.5,4.1,28.5,32.2Z'/></svg>");
}

.govco-x-square:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24.44' height='22.88' viewBox='0 0 24.44 22.88' fill='%23fff'><path d='m.06,0l9.44,12.62L0,22.88h2.14l8.31-8.98,6.72,8.98h7.27l-9.97-13.33L23.32,0h-2.14l-7.66,8.27L7.33,0H.06Zm3.14,1.57h3.34l14.76,19.73h-3.34L3.2,1.57Z'/></svg>");
}
a:visited > .govco-instagram-square:before,
a:visited > .govco-twitter-square:before,
a:visited > .govco-facebook-square:before,
a:visited > .govco-youtube-square:before,
a:visited > .govco-whatsapp-square:before, 
a:visited > .govco-threads-square:before,
a:visited > .govco-tiktok-square:before,
a:visited > .govco-telegram-square:before,
a:visited > .govco-x-square:before
 {
    background-color: var(--govcolor-tundora);
}

a:hover > .govco-instagram-square:before,
a:hover > .govco-twitter-square:before,
a:hover > .govco-facebook-square:before,
a:hover > .govco-youtube-square:before,
a:hover > .govco-whatsapp-square:before, 
a:hover > .govco-threads-square:before,
a:hover > .govco-tiktok-square:before,
a:hover > .govco-telegram-square:before,
a:hover > .govco-x-square:before {
    background-color: var(--govcolor-bluedark);
}

/* END REDES SOCIALES FOOTER */

/*---------ACERCA DE---------*/

#recuadros_articulo_11762 .recuadro, 
#recuadros_articulo_11761 .recuadro, 
#recuadros_articulo_11760 .recuadro {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

#recuadros_articulo_11762 .recuadro .titulo,
#recuadros_articulo_11761 .recuadro .titulo,
#recuadros_articulo_11760 .recuadro .titulo,
#recuadros_articulo_11761 .recuadro .titulo a,
#recuadros_articulo_11760 .recuadro .titulo a{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bs-secondary);
    display: inline-block;
}

#recuadros_articulo_11761 .recuadro .titulo a,
#recuadros_articulo_11760 .recuadro .titulo a{
    text-decoration: underline;
}

#recuadros_articulo_11761 .recuadro .titulo a:hover,
#recuadros_articulo_11760 .recuadro .titulo a:hover{
    text-decoration: none;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    #recuadros_articulo_11761 .recuadro > div:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    #recuadros_articulo_11761 .recuadro .titulo a,
    #recuadros_articulo_11760 .recuadro .titulo a {
        margin-top: 20px;
    }
}

.bajardoc-cc .bajardoc {
    border-bottom: none;
    padding: 0;
}

.bajardoc-cc .recuadro {
    width: 100%;
}

.bajardoc-cc ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    width: 100%;
}

.bajardoc-cc ul li {
    position: relative;
    min-height: 100px;
    padding: 10px;
    padding-left: 80px;
    margin-bottom: 20px;
    line-height: 1.2;
    list-style: none;
    width: 100%;
}
.bajardoc-cc ul li:before {
    display: none !important;
}

.bajardoc-cc ul li a:before {
    content:"";
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'><path d='M46.67,0H17a3.8,3.8,0,0,0-3.8,3.79V66.21A3.8,3.8,0,0,0,17,70H61.68a3.79,3.79,0,0,0,3.79-3.79V17.72Z' fill='%239dcb3b'/><path d='M46.67,13.93a3.79,3.79,0,0,0,3.8,3.79h15L46.67,0Z' fill='%2396b33d'/><rect x='4.53' y='23.96' width='41.23' height='22.08' rx='4.67' fill='%2396b33d'/><g><path d='M21.64,37.73a.72.72,0,0,1,.15.45.67.67,0,0,1-.23.52.76.76,0,0,1-.5.21.71.71,0,0,1-.6-.32l-2.17-2.88-2.1,2.86a.73.73,0,0,1-.61.34.64.64,0,0,1-.47-.19.61.61,0,0,1-.19-.45.79.79,0,0,1,.18-.5l2.35-3.18L15.1,31.47a.68.68,0,0,1,.08-1,.74.74,0,0,1,.51-.22.73.73,0,0,1,.59.32l2.15,2.85,2.09-2.79a.86.86,0,0,1,.28-.26.65.65,0,0,1,.32-.09.64.64,0,0,1,.47.21.66.66,0,0,1,.21.47.7.7,0,0,1-.16.44l-2.37,3.13Z' fill='%23fff'/><path d='M28.31,37.63a.72.72,0,0,1,0,1,.78.78,0,0,1-.53.2h-4a.72.72,0,0,1-.74-.74v-7a.69.69,0,0,1,.22-.53.76.76,0,0,1,.56-.21.73.73,0,0,1,.74.74v6.36h3.18A.73.73,0,0,1,28.31,37.63Z' fill='%23fff'/><path d='M30.92,38.75A3.48,3.48,0,0,1,29.64,38a.84.84,0,0,1-.33-.64.69.69,0,0,1,.21-.5.66.66,0,0,1,.5-.21.63.63,0,0,1,.41.15,3.62,3.62,0,0,0,.95.58,3,3,0,0,0,1.1.18,2.21,2.21,0,0,0,1.17-.3.88.88,0,0,0,.49-.76,1,1,0,0,0-.48-.85,4,4,0,0,0-1.55-.47q-2.67-.39-2.67-2.49a2.23,2.23,0,0,1,.41-1.33,2.49,2.49,0,0,1,1.09-.87,4,4,0,0,1,1.55-.29,4.26,4.26,0,0,1,1.44.23,3.47,3.47,0,0,1,1.13.61.81.81,0,0,1,.35.64.7.7,0,0,1-.21.5.66.66,0,0,1-.48.21.52.52,0,0,1-.33-.11,3.18,3.18,0,0,0-.89-.47,2.9,2.9,0,0,0-1-.21,2.12,2.12,0,0,0-1.19.28.91.91,0,0,0,0,1.54,4,4,0,0,0,1.36.44,6.82,6.82,0,0,1,1.67.47,2.13,2.13,0,0,1,.95.78,2.4,2.4,0,0,1,.31,1.31,2.15,2.15,0,0,1-.43,1.34,2.77,2.77,0,0,1-1.15.89,3.78,3.78,0,0,1-1.54.31A4.94,4.94,0,0,1,30.92,38.75Z' fill='%23fff'/></g></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70px;
    left: 0;
    top: 8px;
}

.bajardoc-cc ul li:after {
    content:"";
    display:block;
    border-bottom: 1px solid #E7E7E7;
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
}

.bajardoc-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px auto;
        grid-template-columns: 70px auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    padding: 28.8px 0;
    padding: 1.8rem 0;
    width: 100%;

}
.bajardoc-grid:not(:last-child) {
    border-bottom: 1px solid #E7E7E7;
}

.bajardoc-grid a:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
}
.bajardoc-grid a:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    -ms-flex-item-align: end;
        align-self: flex-end;
}
.bajardoc-grid .fecha {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    -ms-flex-item-align: start;
        align-self: flex-start;
}

.bajardoc-grid .bajardoc.title,
.bajardoc-grid .caption{
    grid-column: 2 / 3;
    border-bottom: 0 !important;
}

#modelo_planeacion .bajardoc-grid .aid-125145,
#modelo_planeacion .bajardoc-grid .aid-125145 + .fecha,
#modelo_planeacion .bajardoc-grid .aid-125147,
#modelo_planeacion .bajardoc-grid .aid-125147 + .fecha,
#modelo_planeacion .bajardoc-grid .aid-125148,
#modelo_planeacion .bajardoc-grid .aid-125148 + .fecha,
#modelo_planeacion .bajardoc-grid .aid-125151,
#modelo_planeacion .bajardoc-grid .aid-125151 + .fecha,
#modelo_planeacion .bajardoc-grid .aid-125150,
#modelo_planeacion .bajardoc-grid .aid-125150 + .fecha {
    grid-column: 1 / 3;
}

.bajardoc, .item_descarga {
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    margin: 30px 0;
    border-bottom: 1px solid #E7E7E7;
}

.title.bajardoc {
    padding: 1rem 0 0 0;
    margin: 0;
    border-bottom: 0;
}
.title.bajardoc + .fecha {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 1rem;
}

.title.bajardoc.aid-125143 + .fecha,
.title.bajardoc.aid-125144 + .fecha  {
    border-bottom: none;
}

.bajardoc a:first-child{
    display: block;
}

.bajardoc img, .item_descarga img {
    width: 70px;
    height: auto;
    margin-right: 30px;
}

.bajardoc .caption, .item_descarga .caption {
    font-size: 14px;
    margin-top: 5px;
    color: #484848;
}

.tabs-capacitate .bajardoc-grid {
    width: 50%;
    float: left;
    align-items: center;
    border-bottom: 1px solid #E7E7E7;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 160px;
}

.tabs-capacitate .bajardoc-grid a:nth-child(2) {
    grid-row: 2 / 3;
}

.tabs-capacitate .bajardoc-grid div:nth-child(3) {
    grid-row: 3 / 4;
    background-color: #e5eefb;
    justify-self: flex-start;
    padding: 2px 10px;
    border-radius: 5rem;
    font-size: .875rem;
    color: var(--bs-blue);
}

@media only screen and (max-width: 767.98px) {
    .tabs-capacitate .bajardoc-grid {
        width: 100%;
    }
}

/*---------ART NOTICIAS left and right column---------*/

.left-column-art {
    padding-top: 40px;
    padding-bottom: 40px;
}

.right-column-art {
    padding-top: 40px;
    padding-bottom: 40px;
}

.left-column-art .figure .caption {
    background: #dedede;
    padding: 20px;
    width: 100% !important;
    text-align: left;
}

.left-column-art .figure {
    text-align: center;
}
.left-column-art .figure > img {
  /*   width: 100%; */
    margin: auto;
    height: auto;
}

.left-column-art .figure .caption {
    background: #dedede;
    padding: 10px;
    width: 100% !important;
}

/*---------DESPACHO DE LA MINISTRA---------*/

#recuadros_articulo_11764 .recuadro {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.right-column-art .ntg-titulo-caja,
.left-column-art .recuadro > h2 {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.right-column-art .ntg-titulo-caja a,
.left-column-art .recuadro > h2 a{
    color: #000; }

.right-column-art .figure {
    float: left;
    width: 50% !important;
    padding-right: 10px;
    box-sizing: border-box;
}

.right-column-art .figure img {
    width: 100%;
    height: auto;
}

.left-column-art .recuadro p strong {
    font-weight: 400;
    color: gray;
}

.left-column-art .recuadro p:nth-of-type(1) strong {
    color: #000;
    font-weight: 600;
}

/*Borrar*/

.right-column-art .abstract {
    display: none;
}

.right-column-art .titulo {
    line-height: 1.4;
    width: 50%;
    float: right;
}

.right-column-art .titulo a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    font-weight: 500;
    text-decoration: underline;
}

.right-column-art div > .recuadro:nth-of-type(1) .grupo {
    float: left;
    padding: 10px 0;
    width: 100%;
}

.right-column-art div > .recuadro:nth-of-type(1) .titulo {
    background: transparent;
    color: #fff;
    clear: both;
    box-sizing: border-box;
    width: 100%;
}

.right-column-art div > .recuadro:nth-of-type(1) .figure{
    float: initial;
    width: 100% !important;
    padding-right: 00px;
}

.right-column-art div > .recuadro{
    margin-bottom: 20px;
    float: left;
    padding-bottom: 1rem;
}

.left-column-art ul li br, .articulo ul li br {
    display: none;
}

.left-column-art p {
    width: 100%;
    clear: both;
}

/*---------ART NOTICIAS---------*/

.left-column-art ul li,
.articulo ul li {
    list-style: none;
    position: relative;
    margin-bottom: 1rem;
}

.btn_tramites_glosario a:before,
.btn_preguntas_frec .titulo a:before,
.accordion-eidox ul li:before, 
.faq ul li:before,
.tabs_mig ul li:before,
.left-column-art ul li:before,
.articulo ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    top: 7px;
    bottom: auto;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--bs-blue);
}

.formulario  ul li:before {
    display: none;
}

.articulo a,
.rendicion_cuentas .recuadro p a{
    display: inline-block;
    text-decoration: underline;
}

.accordion-eidox .ui-accordion-content a{
    display: inline;
}
 
.ui-accordion table.table {
        overflow-x: auto;
        width: 100%;
        display: block;
    }

    .ui-accordion table.table p {
        font-size: 0.875rem;
    }

.logo-art img {
    width: 100%;
    max-width: 150px;
}
.logo-art a:nth-child(2) {
    display: none;
}
.logo-art {
    float: left;
    padding-right: 20px;
    margin-bottom: 20px;
    text-align: center;
}

@media only screen and (max-width: 991.98px) {
    .articulo a {
        word-break: break-all;
    }

}

@media screen and (min-width: 1px) and (max-width: 768px) {

    .logo-art {
        width: 100%;
        padding-right: 00px;
    }
}

.rendicion_cuentas .recuadro > .titulo {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    color: var(--bs-blue);
    font-size: 1.5rem;
}

.articulo .figure {
    text-align: center;
    clear: both;
}
.articulo .figure > img {
    width: auto;
    margin-bottom: 20px;
}

.articulo .figure > a:nth-of-type(2) {
    display: none;
}

.binary-Banner_notificaciones_Mintic,
.binary-Banner_notificaciones_Fontic,
.binary-Banner_Cobro,
.binary-Banner_notificaciones_Radicados,
.articulo .recuadro .binary-boton_buscar,
.articulo .recuadro .binary-boton_registrar {
    width: auto !important;
}

.art_compartir_redes {
    background: #F6F8F9;
    padding: 10px;
    text-align: right;
    margin: auto;
    clear: both;
}

.art_compartir_redes.section-container{
    max-width: 1010px;
    width: 100%;
}

.art_compartir_redes a {
    text-decoration: none;
}

.art_compartir_redes a img {
    max-width: 40px;
}

.art_compartir_redes:before {
    content: "Comparte";
    display: inline-block;
    text-align: left;
    padding: 8px;
}

.articulo .table h3 {
    font-size: 18px;
}

.flotar_izquierda a:nth-child(3),
.flotar_derecha a:nth-child(3) {
    display: none;
}

.flotar_izquierda {
    float: left !important;
    width: auto !important;
}

.flotar_derecha {
    float: right !important;
    width: auto !important;
}

.flotar_izquierda img, 
.flotar_derecha img {
    padding: 1rem;
}

@media only screen and (max-width: 767.98px) {
    .flotar_izquierda {
        float: none !important;
        width: 100% !important;
    }
    
    .flotar_derecha {
        float: none !important;
        width: 100% !important;
    }
}

table.table {
    border: 0;
    background-color: transparent;
    margin: 2rem 0;
}

table.table thead th {
    background-color: var(--bs-blue);
    border: 0px;
    color: white;
}

table.table thead a,
table.table thead h1,
table.table thead h2,
table.table thead h3,
table.table thead h4 {
    color: white;
}

table.table td,
table.table tbody tr,
#agenda_portadilla tbody tr {
    padding: .75rem;
    vertical-align: top;
    border: none;
    border-top: 1px solid #dee2e6;
    background-color: transparent;
    color: #4b4b4b;
}
table.table thead + tbody tr td {
    color: #4b4b4b; 
}

table.table th {
    border: none;
}

table.table a {
    min-width: 200px;
}

table.table .bajardoc {
    align-items: center;
    border-bottom: unset;
    margin: 0;
    padding: 0;
}

table.table .bajardoc a {
    min-width: unset;
}

.tramites_links + .articulo > .recuadro .flotar_izquierda {
    display: none;
    border-bottom: 1px dotted #333;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.tramites_links + .articulo > .recuadro .flotar_izquierda + h2 {
    display: inline-block;
    width: 100%;
}

.tramites_links + .articulo ol > li {
    background-color: #f8f9fa;
    padding: 15px;
}

.tramites_links + .articulo ol > li:before {
    font-size: 1.6rem;
    font-weight: 700;
    left: -30px;
} 

.articulo ol li {
    margin-bottom: 20px;
}

.articulo iframe {
    width: 100%;
    height: 37vw;
}

.articulo .embed-responsive-item {
    height: 100%;
    width: 100%;
}

#Adjunto_div_1182 iframe {
    height: 260px;
}

#Fotografias_div_1388 iframe {
    height: 180px;
}

.pqr_form_register iframe {
    height: 1377px;
}

#Info_estudio_de_sitios iframe {
    height: 240px;
}

@media (max-width: 767.98px) {
    .pqr_form_register iframe {
        height: 1500px;
    }
}

#casas_form_div_1388 button {
    display: inline-block;
    background-color: var(--bs-primary);
    border: unset;
    color: #fff;
    border-radius: 3rem;
    margin: auto;
    margin-top: 1rem;
    padding: .375rem 1.4rem;
}

#casas_form_div_1388 button:hover {
    background-color: var(--bs-blue);
    border-color: var(--bs-blue);
}

@media (max-width: 575.98px) {
    .pqr_form_register iframe {
        height: 1600px;
    }
    .pqr_form_find iframe {
        height: 400px;
    }
}

@media (max-width: 400px) {
    .pqr_form_register iframe {
        height: 1800px;
    }
}

/*---------INICIATIVAS---------*/

#recuadros_articulo_11782,
#recuadros_articulo_11774 {
    max-width: 1240px;
    margin: auto;
    padding: 20px;
}

@media screen and (min-width: 1280px){
    #recuadros_articulo_11782,
    #recuadros_articulo_11774 {
        max-width: 2000px;
        margin: auto;
        padding: 20px;
        width: 85%;
    }
}

.filtro-iniciativas .prev,
.filtro-iniciativas .next,
.filtro-iniciativas .ant,
.filtro-iniciativas .sig,
.filtro-iniciativas .controls,
.filtro-iniciativas .boton,
.recuadro-iniciativas .prev, 
.recuadro-iniciativas .next, 
.recuadro-iniciativas .ant, 
.recuadro-iniciativas .sig, 
.recuadro-iniciativas .controls, 
.recuadro-iniciativas .boton,
.paginador-primary .prev, 
.paginador-primary .next, 
.paginador-primary .ant, 
.paginador-primary .sig, 
.paginador-primary .controls, 
.paginador-primary .boton {
    display: none;
}

.paginador-primary .titulo {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

.paginador-primary .recuadro{
    border-bottom: 2px solid rgba(157,190,255,.3);
    padding-bottom: 1.5rem;
}

.pagination-govco .prev, 
.pagination-govco .next, 
.pagination-govco .ant, 
.pagination-govco .sig,
.pagination-govco .boton,
.pagination-govco ul.controls li:before  {
    display: none;
}

.pagination-govco ul.controls {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.pagination-govco ul.controls li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--govcolor-bluedark);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 4px;
}

.pagination-govco ul.controls li a:hover {
    background: #e6effd;
}

.pagination-govco ul.controls li.current a {
    background-color: var(--bs-primary);
    color: #fff;
}

.formulario select,
#filtrosRecursos select {
    background: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 30 20'><polygon points='29.72 5.01 24.98 0.27 15 10.25 5.02 0.27 0.28 5.01 15 19.73 29.72 5.01' style='fill: %230066CD'/></svg>");
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 12px;
}

#filtrosRecursos .text-right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

#filtrosRecursos label {
    margin: 0;
}

#filtrosRecursos {
    background: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,.125);
}

#filtrosRecursos {
    margin-right: auto;
    margin-left: auto;
}

#filtrosRecursos .btn-outline-primary {
    text-transform: none;
}

#filtrosRecursos .btn-outline-primary.active {
    color: #fff !important;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.recuadro-iniciativas .ntg_paginador > div,
.filtro-iniciativas .ntg_paginador > div {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}


.recuadro-iniciativas .ntg_paginador > div > *,
.filtro-iniciativas .ntg_paginador > div > *{
  flex-shrink: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.recuadros-sectortic .ntg-titulo-caja, 
.recuadro-iniciativas .ntg-titulo-caja {
    width: 100%;
}

.recuadros-sectortic .ntg-titulo-caja {
    text-align: center;
    margin-bottom: 3rem;
}

.recuadro-iniciativas .ntg-titulo-caja {
    padding-top: 3rem;
    text-align: left;
    padding: 0 15px;
    padding-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
}

.recuadros-sectortic .rounded-circle {
    display: flex;
    justify-content: center;
    max-width: 100px;
    height: 100px;
    margin: auto;
    border: solid 4px var(--govcolor-bluequilt);
}

.recuadros-sectortic .rounded-circle img {    
    height: 100%;
    width: auto;
    max-width: unset;
}

.tabs-iniciativas {
    margin: 0 !important;
}

.tabs-iniciativas .nav-link {
    border-radius: 0;
    background-color: transparent !important;
    color: #fff !important;
    padding: 1rem 3rem;
    border: 0 !important;
    margin: 0;
}

.tabs-iniciativas.nav-tabs .nav-item {
    margin-bottom: 0;
}

.tabs-iniciativas .nav-link.active,
.tabs-iniciativas .nav-link:hover {
    background-color: var(--bs-primary) !important;
}

@media only screen and (max-width: 991.98px){
    .recuadro-iniciativas .recuadro {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 767.98px){
    .recuadro-iniciativas .recuadro {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.indice.nav-tabs {
    list-style: none;
}

.indice.nav-tabs li:before {
    display: none;
}

.indice.nav-tabs li a {
    padding: .5rem 1rem;
}

/*---------COLS SERVICIOS Y TRAMITES---------*/

.tramites_links .recuadro > .figure .titulo,
.left_col_serv > div > .recuadro > .figure .titulo {
    font-size: 13px;
    text-align: center;
    margin: auto;
    width: 100% !important;
    padding: 3px;
    word-break: break-word;
    font-weight: 600;
    margin-bottom: 10px;
    color: #525252;
}

.tramites_links .recuadro,
.left_col_serv > div > .recuadro {
    clear: both;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tramites_links .recuadro > .figure,
.left_col_serv > div > .recuadro > .figure {
    float: left;
    width: 20% !important;
    text-align: center;
}

.tramites_links .recuadro > .figure a, .left_col_serv > div > .recuadro > .figure a {
    width: 100%;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    margin: auto;
    width: 100% !important;
    padding: 3px;
    word-break: break-word;
    font-weight: 600;
    margin-bottom: 10px;
    color: #525252;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .tramites_links .recuadro > .figure,
    .left_col_serv > div > .recuadro > .figure {
        float: left;
        width: 50% !important;
        text-align: center;
    }
}

.left_col_serv > div > .recuadro > .abstract {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
}

.left_col_serv > div > .recuadro > .titulo {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.left_col_serv > .recuadro-iniciativas > .recuadro > .titulo {
    position: absolute;
}

.left_col_serv > div > .recuadro > .titulo a {
    text-decoration: underline;
}

.left_col_serv > .recuadro-iniciativas > .recuadro > .titulo a{
    font-size: 1rem;
    line-height: 1.3;
}

.left_col_serv > div > .recuadro > .titulo a:hover {
    text-decoration: none;
}

.right_col_serv ul li {
    list-style: none;
    position: relative;
}

.right_col_serv ul {
    list-style: none;
    position: relative;
    padding: 0;
    background: #e8e8e8;
    list-style: none;
}

.right_col_serv ul li {
    padding: 3px 10px;
    list-style: none;
}

.right_col_serv ul li a {
    color: #000;
    font-size: 14px;
}

.right_col_serv ul li:hover,
.right_col_serv ul li.current.active  {
    background: var(--bs-primary);
}

.right_col_serv ul li:hover a,
.right_col_serv ul li.current.active a {
    color: #fff;
}

.right_col_serv > a > img.img-fluid {
    width: 100%;
    max-width: 250px;
    margin: auto;
    display: block;
}

@media only screen and (min-width:768px) {
    .art-servicios {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.art-servicios > .recuadro {
    border-bottom: 2px solid rgba(157,190,255,.3);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.art-servicios > .recuadro > .titulo {
    font-size: 1.25rem !important;
}

.art-servicios > .recuadro > .abstract {
    font-size: 1rem !important;
    line-height: 1.3;
}

.btn_tramites_glosario a img {
    max-width: 25px;
}

.btn_tramites_glosario a div {
    display: inline-block;
    text-decoration: underline;
}

.btn_tramites_glosario a,
.btn_preguntas_frec .titulo a {
    margin: 5px 0;
    display: inline-block;
    text-decoration: underline;
    position: relative;
    padding-left: 25px;
}

.btn_tramites_glosario a:before, 
.btn_preguntas_frec .titulo a:before {
    left: 0;
}

/*---------FAQ Y GLOSARIO---------*/

.ui-accordion .ui-accordion-header,
.accordion-eidox .recuadro > .ui-accordion-header,
.tabs_mig > .ui-accordion-header,
.faq > .ui-accordion-header,
.accordion > .ui-accordion-header { /*update*/
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    display: inline-block;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    border-bottom: 2px solid var(--govcolor-bluelight);
    cursor: pointer;
    margin: 0;
    line-height: 1.25rem;
    color: var(--govcolor-black);
}

.ui-accordion .ui-accordion-header:focus-visible,
.accordion-eidox .recuadro > .ui-accordion-header:focus-visible,
.tabs_mig > .ui-accordion-header:focus-visible,
.faq > .ui-accordion-header:focus-visible,
.accordion > .ui-accordion-header:focus-visible { /*new*/
    
    outline: max(0.125rem, 0.15em) solid #000000;
    outline-offset: max(0.188rem, 0.15em);
    z-index: 1;

}

.ui-accordion .ui-accordion-header-active,
.accordion-eidox .recuadro > .ui-accordion-header-active,
.faq > .ui-accordion-header-active,
.tabs_mig > .ui-accordion-header-active,
.accordion > .ui-accordion-header-active { /*update*/
    background-color: var(--govcolor-white);
    color: var(--govcolor-black);
}

.ui-accordion .ui-accordion-header:after,
.accordion-eidox .recuadro > .ui-accordion-header:after,
.faq > .ui-accordion-header:after,
.tabs_mig > .ui-accordion-header:after,
.accordion > .ui-accordion-header:after { /*update*/
    font-family: "govco-fontv2";
    content: "\e814";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1;
    color: var(--govcolor-bluedark);
    padding-right: 1.5rem;
 }

.ui-accordion .ui-accordion-header.ui-accordion-header-active:after,
.accordion-eidox .recuadro > .ui-accordion-header.ui-accordion-header-active:after,
.faq > .ui-accordion-header.ui-accordion-header-active:after,
.tabs_mig > .ui-accordion-header.ui-accordion-header-active:after,
.accordion > .ui-accordion-header-active:after { /*update*/
    font-family: "govco-fontv2";
    content: "\e813";
    font-size: 1.625rem;
    color: var(--govcolor-bluedark);
    right: 0px;
  }

.accordion-numbered .ui-accordion { /*new*/
    counter-reset: section;
}

.accordion-numbered .ui-accordion .ui-accordion-header:before { /*new*/
  counter-increment: section;
  content: counter(section);
  font-size: 20px;
  color: #FFFFFF;
  background-color: #004884;
  border-radius: 3.125rem;
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
}

.ui-accordion .ui-accordion-content,
.accordion-eidox .recuadro > .ui-accordion-content,
.faq > .ui-accordion-content,
.tabs_mig > .ui-accordion-content,
.accordion > .ui-accordion-content { /*update*/
    padding: 1.875rem 1.5rem 1.875rem 1.5rem;
    clear: both;
    margin-bottom: 20px;
    background: var(--govcolor-hawkesblue);
}

.ui-accordion .ui-accordion-content h4,
.accordion-eidox .recuadro > .ui-accordion-content h4,
.faq > .ui-accordion-content h4,
.tabs_mig > .ui-accordion-content h4,
.accordion > .ui-accordion-content h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
}

.ui-accordion .ui-accordion-content .figure,
.accordion-eidox .recuadro > .ui-accordion-content .figure,
.faq > .ui-accordion-content .figure,
.tabs_mig > .ui-accordion-content .figure,
.accordion > .ui-accordion-content .figure {
    text-align: center;
}

.ui-accordion .ui-accordion-header > span img {
    margin-right: 10px;
}

.ui-accordion ul li,
.accordion-eidox ul li,
.faq ul li,
.tabs_mig ul li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
}

.ui-accordion ol,
.accordion-eidox ol,
.tabs_mig ol,
.faq ol {
    list-style-type: none;
    list-style-position: outside;
    margin-left: 0;
    counter-reset: item;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ui-accordion ol li,
.accordion-eidox ol li,
.tabs_mig ol li,
.faq ol li {
    padding-left: 0;
    position: relative;
}

.ui-accordion ol li:before,
.accordion-eidox ol li:before,
.tabs_mig ol li:before, 
.faq ol li:before {
    content: counter(item,decimal) ".";
    counter-increment: item;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 3px;
    color: var(--bs-primary);
}

#glosario_terminos input {
    border-radius: 20px;
    border: 2px solid #a0a0a0;
    width: 100%;
    padding: 5px 12px;
    max-width: 300px;
    margin: auto;
    display: block;
    color: #5d5d5d;
    outline: none !important;
}

#glosario_terminos,
.glosario {
    max-width: 640px;
    margin: auto;
}

.glosario .tab-content .tab-pane .titulo-caja {
    font-size: 1.25rem;
}

.glosario .tab-content .tab-pane p {
    margin-bottom: 2rem;
}

.nav-tabs,
.tabs-cc ul,
.glosario .nav-tabs {
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.nav-tabs li a,
.tabs-cc ul li a,
.glosario .nav-tabs li a {
    padding: 4px 8px;
    border: 1px solid rgba(183,183,183,.25);
    color: var(--bs-blue);
    font-weight: 700;
    border-radius: 5px 5px 0px 0px;
    display: block;
    background-color: #e5eefb;
    cursor: pointer;
}

.glosario .nav-tabs li a {
    font-size: .85rem;
}

.nav-tabs li a.active,
.tabs-cc ul li.active a,
.glosario .nav-tabs li a.active {
    background: white;
    color: var(--bs-blue);
    font-weight: 700;
    border-bottom: none;
}

.nav-tabs {
    border-bottom: none;
}

.tab-content p {
    word-break: break-word;
}

.nav-tabs .nav-link:hover {
    border-color: #e6effd;
}

.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.pagination a,
.pagination li.active a.page-link:focus-visible {
    padding: .5rem 1rem;
    border-radius: 4px !important;
    font-weight: 500;
    border: none;
}

.pagination a:hover {
    background-color: var(--govcolor-bluelight);
    text-decoration: none;
}

.pagination .current a,
.pagination li.active a.page-link  {
    color: #fff;
    background-color: var(--bs-primary);
}

ul.pagination li:before {
display: none;
}

.pagination .prev a,
.pagination .next a {
    text-decoration: underline;
}

.pagination .prev a:hover,
.pagination .next a:hover {
    background-color: transparent;
}

.dataTables_wrapper {
    border: 2px solid #E5EEFB;
    border-radius: 5px;
    margin: 2rem 0;
    font-size: 0.875rem;
}

.dataTables_wrapper .row:first-child,
.dataTables_wrapper .row:last-child {
    padding: 1rem;
} 

.dataTables_paginate .page-link {
    border: 0;
}

.dataTables_paginate .page-item.previous a,
.dataTables_paginate .page-item.next a{
    font-weight: normal;
    text-decoration: underline;
}

.dataTables_wrapper caption,
.dataTables_wrapper table.table tbody tr,
.dataTables_wrapper table.table td {
    border-top: 2px solid #E5EEFB;
}

.dataTables_wrapper caption {
    text-align: center;
    font-size: 0.875rem;
}

.dataTables_wrapper table.dataTable thead .sorting:after {
    right: 0.3em;
}

div.dataTables_wrapper {
    padding: 1rem;
}

div.dataTables_wrapper div.dataTables_info {
    text-align: center;
    margin-bottom: 1rem;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center !important;
}

div.dt-container .dt-paging .dt-paging-button {
    padding: 0;
    margin: 0;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    border: unset;
    background: unset;
}

.dt-length label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

#DataTables_Table_0_wrapper div:first-child {
    align-items: flex-end;
}

.dt-length label select {
    margin: 0 .6rem;
    width: 60px;
}

.dt-search {
    display: flex;
}

.dt-length,
.dt-search {
    margin-top: 1rem;
}

.dt-info {
    text-align: center;
}

/*---------GRIDS MINISTERIO, SERV TRAMITES, INICIATIVAS---------*/

.recuadros-pa .recuadro {
    position: relative;
    margin-bottom: 15px;
    min-height: 50px;
    background-color: var(--bs-blue);
    background-clip: content-box;
    color: #fff;
}

.recuadros-pa .recuadro .titulo {
    position: absolute;
    top: 0;
    left: calc(var(--bs-gutter-x) * 0.5);
    right: calc(var(--bs-gutter-x) * 0.5);
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.recuadros-pa .recuadro:hover .titulo {
    background-color: #0943b5d1;
    backdrop-filter: blur(5px);
    transition: all .5s;
}

.recuadros-pa .titulo a {
    font-weight: 700;
    color: #fff;
    font-size: var(--govtypo-h5);
    text-align: center;
    background-color: #0943b5d1;
    backdrop-filter: blur(5px);
    padding: 5px 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.recuadros-pa .recuadro .titulo a:hover {
    text-decoration: none;
}

.recuadros-pa .recuadro:hover .titulo a {
    background-color: transparent;
    backdrop-filter: unset;
}

.recuadros-pa .recuadro img {
    width: 100%;
}

/*desplegable recuadros*/

.recuadros-pa .recuadro > ul {
    display: none;
    list-style: none;
    padding: 10px;
    box-sizing: border-box;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
}

.recuadros-pa .recuadro:hover > ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: #e6e6e6;
    z-index: 1;
}

.recuadros-pa .recuadro > ul li a {
    color: #000;
    width: 100%;
    display: inline-block;
    padding: 6px;
    text-transform: initial;
    text-decoration: none;
    font-size: 14px;
    text-align: left;
}

.recuadros-pa .recuadro > ul li a:hover {
    color: #fff;
    background: var(--bs-secondary);
}

.recuadros-pa .recuadro:hover > ul:after {
    content: "";
    bottom: 105%;
    display: block;
    height: 25px;
    width: 25px;
    background: url(channels-616_white_arrow_down.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

/*---------EIDOX NOTICIAS---------*/

.leftcol-eidox-noticias > .recuadro:nth-child(1) .figure > img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .grupo {
    background: #F6F8F9;
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .fecha {
    margin: 0 0 5px 0;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .titulo {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .abstract {
    clear: both;
    font-size: 18px;
    line-height: 1.2;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .tag {
    color: #4b4b4b;
    font-size: 14px;
    display: inline-block;
}

.leftcol-eidox-noticias > .recuadro:nth-child(1) .tag .pv-branch {
    margin-right: 8px;
}

.prensa-lateral {
    padding: 0 0 0 30px;
}

.prensa-lateral > .recuadro {
    padding: 10px 0;
    margin: 0;
}

.prensa-lateral img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.prensa-lateral > .recuadro > div > div:nth-of-type(3) {
    color: var(--bs-primary);
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.prensa-lateral > .recuadro .titulo a {
    display: inline-block;
    max-width: 100%;
    display: -webkit-box;
    max-height: 60px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: underline;
}

@media only screen and (max-width: 991.98px) {
    .prensa-lateral {
        padding: 0;
    }
}

/*---------SEARCH RESULTS---------*/

.container_resultados_busqueda {
    margin-top: 30px;
    margin-bottom: 30px;
}

.container_resultados_busqueda ul.search-results.P p {
    margin-bottom: 5px;
    list-style: none;
    position: relative;
}

.container_resultados_busqueda ul.search-results.P p:before {
    content: "";
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid var(--bs-secondary);
    height: 15px;
    width: 15px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.search-results b {
    color: var(--bs-secondary);
    font-weight: 600;
}

.container_resultados_busqueda ol.search-results.P li > a {
    color: var(--bs-primary);
}

form.ntg_busqueda {
    text-align: center;
    background: #d8d8d8;
    padding: 15px;
}

form.ntg_busqueda .orden input {
    margin-left: 17px;
    margin-right: 10px;
    height: 15px;
    width: 15px;
}

form.ntg_busqueda .orden label {
    margin: 0;
}

/*---------NOTICIAS---------*/

.right_col_noticias > div {
    padding-bottom: 25px;
} 

.right_col_serv .ntg-titulo-caja,
.lista-news .ntg-titulo-caja,
.right_col_noticias .ntg-titulo-caja,
.left_col_noticias .ntg-titulo-caja { /*update*/
    position: relative;
    padding-bottom: 24px;
    text-align: center;
  }

/*---------EVENTOS---------*/

.agenda {
    position: relative;
    padding-top: 70px;
}

.agenda .anterior,
.agenda .siguiente {
    position: absolute;
    top: 0;
    z-index: 1;
    color: transparent;
    width: 30px;
    padding: 8px 0;
}

.agenda .anterior {
    left: 0;
}

.agenda .siguiente {
    right: 0;
}

.agenda .anterior:before,
.agenda .siguiente:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 24px;
    background: url(channels-616_right_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.agenda .anterior:before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.agenda > .ntg-titulo-caja {
    position: absolute;
    text-align: center;
    top: 0;
    background-color: #ececec;
    padding: 8px 0;
    color: #4a4a4a;
}

.agenda table {
    background-color: #ececec;
}

.agenda table > caption {
   display: none;
}

.agenda th {
    padding: 4px 0 4px 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.agenda tbody td {
    border: 1px solid var(--bs-primary);
    color: var(--bs-secondary);
    padding: 4px;
    vertical-align: top;
    width: 88px;
    font-weight: 600;
}

.agenda tbody td div:first-child {
    font-size: 40px;
    color: #4a4545;
}

.agenda tbody .evento {
    margin-bottom: 1rem;
}

.agenda tbody td .titulo {
    line-height: .9;
    border-bottom: solid 1px #6c757d70;
    padding-bottom: 1rem;
}

.agenda tbody td a {
    font-size: .8rem;
    font-weight: 400;
}

.agenda-responsive {
    display: none;
}

.agenda-responsive .recuadro {
    flex-direction: column;
    padding: 10px 0;
    border-bottom: solid 1px #ececec;
}

.agenda-responsive .titulo-caja {
    position: relative;
    padding: 0;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: #4a4545;
}

.agenda-responsive .recuadro a {
    font-weight: 500;
}

@media (max-width: 991.98px) {
    #agenda_portadilla {
        display: none;
    }
    
    .agenda-responsive {
        display: block;
    }
}

/*otros*/

.iframe_normatividad .link_iframe {
    width: 100%;
}

.iframe_normatividad .link_iframe iframe,
.iframe_normatividad .link_iframe .iframe-embebido{
    height: 1100px;
}

.header_control_interno {
    padding: 0 20px;
}

.header_control_interno .titulo-header {
    position: relative;
}

.header_control_interno .titulo-header .titulo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 2rem;
    margin: auto;
    padding: 0 15px;
    max-width: 1200px;
    width: 100%;
    color: #fff;
}
@media only screen and (max-width:767.98px) {
    .header_control_interno .titulo-header .titulo {
        position: static;
        background: var(--bs-blue);
        padding: 15px 15px;
    }
}

.header_control_interno .recuadro {
    padding-left: 15px;
    padding-right: 15px;
}

.header_control_interno .recuadro .descripcion {
    max-width: 1080px;
    margin: auto;
    padding: 0px 20px 20px 20px;
    text-align: center;
    color: var(--bs-blue);
    font-size: 1.25rem;
}

#article_i__MT_pa_eidox_micrositio_1 > h3 {
    margin-top: 2rem;
    clear: both;
}

.container-menu-micro {
    border-bottom: none;
    padding: 0 35px;
    background-color: transparent;
    margin-bottom: 2rem;
}

.menu-micrositios {
    justify-content: center;
    max-width: 1240px;
    margin: auto;
    padding-left: 0 !important;
}

.menu-micrositios li:hover:nth-last-of-type(-n+3) ul {
    right: 0;
    min-width: 220px;
}

.menu-micrositios li:hover:nth-last-of-type(-n+3)  ul a {
    text-align: right;
}

@media only screen and (min-width: 992px) {
    .container-menu-micro {
        width: 100%;
    }
    
    .container-menu-micro .navbar-nav {
        max-width: 1200px;
        width: 100%;
        margin: auto;
    }

    .container-menu-micro .menu-micrositios {
        justify-content: flex-start;
        align-items: unset;
    }
}

@media screen and (min-width: 1280px){
    .menu-micrositios {
        max-width: 2000px;
        margin: auto;
        width: 85%;
    }
}

.menu-micrositios .navbar-nav > li > a {
    text-transform: initial;
    font-size: 0.875rem;
    padding: 10px;
}

.menu-micrositios > li:nth-child(2) > a {
    text-transform: uppercase;
    font-weight: 600;
}

.menu-micrositios > li:nth-child(2) > a.pvid-411274 {
    text-transform: unset;
}

.menu-micrositios.navbar-nav > li#inicio > a {
    color: var(--bs-primary);
    font-size: 16px;
}

.menu-micrositios #inicio {
    font-weight: 700;
    margin-right: 30px;
}

#items-menu-micro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #e6effd;
    clear: both;
    box-shadow: 0 1px 3px 0 rgb(51 102 204 / 29%);
}

.sticky #items-menu-micro {
    border-top: none;
}

.btn-menu-micro {
    display: block;
    width: 90%;
    background-color: #fff;
    border: solid 2px var(--bs-primary);
    margin: 20px auto;
    position: relative;
    padding: 10px;
    padding-left: 28px;
    min-height: 45px;
}

.btn-menu-micro:before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(channels-616_icon_menu.png);
    background-repeat:no-repeat;
    width: 12px;
    height: 30px;
    top: 0;
    bottom: 0;
    left: 9px;
    margin: auto;
}

.btn-menu-micro span {
    font-weight: 600;
    color: var(--bs-primary);
}

.menu-movil-micro-cc {
    width: 90%;
    margin: auto;
    margin-bottom: 16px;
    margin-top: -19px;
    background: #e8e8e8;
    z-index: 20;
    -webkit-box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    -moz-box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    box-shadow: 7px 9px 8px -5px rgba(0,0,0,0.3);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.menu-movil-micro-cc.collapse,
.menu-movil-micro-cc.show {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.informe_pormenorizado > .grupo {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.informe_pormenorizado > .titulo-grupo a {
    color: var(--bs-secondary);
    text-decoration: underline;
}

/*---------NOTICIAS MICROSITIO---------*/

.bg-blue-noticias .ntg-titulo-caja {
    color: #fff;
}

.bg-blue-noticias .left_col_noticias .recuadro .fecha,
.bg-blue-noticias .right_col_noticias .recuadro .fecha {
    color: #fff;
}

.bg-blue-noticias a {
    color: #fff;
}

.bg-blue-noticias a:hover {
    color: #E5EEFB;
}

.banners_micrositio .recuadro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#btnFiltros strong {
    color: #fff;
    font-weight: 100;
    font-size: 16px;
}
#btnFiltros {
    background: var(--bs-secondary);
    border: none;
    color: #fff;
    border-radius: 0;
    max-width: 450px;
    margin: auto;
    margin-bottom: 30px;
}

#recuadros_articulo_12003 {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

#recuadros_articulo_12003 .recuadro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-right: -15px;
    margin-left: -15px;
}

#recuadros_articulo_12003 .recuadro .figure {
    display: inline-block;
    width: 50%;
    padding: 0 15px;
}

#recuadros_articulo_12003 .recuadro .figure:nth-child(even) {
    padding-right: 30px;
}

.modal-content .modal-body img {
    width: 100%;
    margin-bottom: 1rem;
}

.modal-emisiones .modal-body .figure {
    display: none;
} 

a.link_modal {
    position: relative;
}

a.link_modal:hover:after {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23004884' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2rem;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

a.link_modal:hover img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: 0.5;
}

#calendarModal table {
    width: 100%;
    margin-top: 2rem;
}

#calendarModal table td, 
#calendarModal table th {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid var(--bs-blue);
}

#calendarModal table thead {
    background-color: var(--bs-blue);
    color: white;
    border: 0px;
    text-align: left;
}

#calendarModal table thead th {
    color: white;
}

/************************************************************************************
PORTADILLAS / EIDOX
*************************************************************************************/

.fb_iframe_widget {
    margin-left: 3rem;
    margin-top: 2rem;
}

@media only screen and (max-width:767.98px) {
    .fb_iframe_widget {
        display: block !important;
        margin: 2rem 0px 0 1rem;
    } 
}

.tramites-grupo .prev,
.tramites-grupo .next,
.tramites-grupo .ant,
.tramites-grupo .sig,
.tramites-grupo .play {
    display:none;
}

.tramites-grupo .controls {
    display: flex;
    list-style: none;
    justify-content: center;
    margin-top: 1rem;
}

.tramites-grupo .controls a {
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    color: #004884;
    border: none;
    border-radius: .3rem;
    padding: .66rem .933rem;
    margin: 0;
    line-height: 1;
}

.tramites-grupo .controls a:hover {
    background-color: #e6effd;
    text-decoration:none;
}

.tramites-grupo .controls .current a {
    color: #fff;
    background-color: var(--bs-primary);
}

.tramite-row {
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: solid 1px var(--gray)
}

.tramite-row .figure img {
    max-height: 21px;
    width: auto;
    margin-right: 8px;
}

.tramite-row .figure {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.tramite-row a {
    text-decoration: underline;
}

#organigrama {
    font-size: 80%;
    max-width: 1440px;
    margin: auto;
}

#organigrama .zona_despacho {
    position: relative;
}

#organigrama .titulo {
    text-align: center;
}

#organigrama ul {
    list-style: none;
    padding: 0;
}

#organigrama ol {
    list-style: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
}

#organigrama .zona_despacho .recuadro:first-child {
    position: absolute;
    margin-left: 5rem;
    z-index: 1;
    right: 0;
    top: -70px;
}

#organigrama .zona_despacho .recuadro:first-child .titulo {
    display: none;
}

#organigrama .zona_despacho .recuadro:first-child > div {
    display: block !important; 
}

#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type {
    border: solid 2px;
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li {
    margin-bottom: 5px;
}

#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}
#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:first-child:before {background-color: var(--bs-secondary);}
#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:nth-child(2):before {background-color: #004884;}
#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:nth-child(3):before {background-color: #43B2D7;}
#organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:last-child:before {background-color: #d4e6f1;}

#organigrama .zona_viceministerio .recuadro {
    padding-left: 15px;
    padding-right: 15px;
}

#organigrama .zona_viceministerio .recuadro ul li  {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 2rem;
    display: flex;
    position: relative;
}

#organigrama .zona_viceministerio .recuadro ul li:first-child {
    margin-top: 1rem;
}

#organigrama .figure,
#organigrama .direccion,
#organigrama .jefe-oficina {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: #d4e6f1;
    max-width: 300px;
    padding: 2.2rem 10px 1.2rem 10px;
    position: relative;
    margin: auto;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    color:#5a5a6c;
    text-transform: uppercase;
}

#organigrama .zona_despacho .recuadro:last-child ul {
    width: 70%;
}

#organigrama .zona_despacho .recuadro:last-child ul:after {
    content: "";
    display: block;
    width: 1px;
    height: 2rem;
    margin: auto;
    background-color: #000;
}

#organigrama .zona_despacho .recuadro:last-child ul li {
    position: relative;
}

#organigrama .zona_despacho .recuadro:last-child ul li:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #000;
}

#organigrama .zona_despacho .recuadro:last-child ul li:after {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #000;
}

#organigrama .zona_despacho .recuadro:last-child ul li:nth-child(even):after {
    right: 0;
}

#organigrama .zona_despacho .recuadro:last-child ul li:nth-child(even) .figure {
    margin: 0;
    margin-left: auto;
    z-index: 1;
}

#organigrama .zona_despacho .recuadro:last-child ul li:nth-child(odd) .figure {
    margin: 0;
    margin-right: auto;
    z-index: 1;
}

#organigrama .figure a {
    color:#5a5a6c;
    text-decoration: underline;
}

#organigrama .zona_despacho .figure a {
    color: #fff;
}

#organigrama ol .figure a {
    color: #fff;
    text-decoration: underline;
}

#organigrama .figure a:hover {
    color: var(--bs-primary);
}

#organigrama .zona_despacho .figure a:hover {
    color: var(--bs-secondary);
}
#organigrama .zona_despacho .figure.direccion a:hover,
#organigrama .zona_despacho ol .figure a:hover,
#organigrama ol .figure a:hover  {
    color: var(--bs-secondary);
}

#organigrama ol .figure {background-color: var(--bs-secondary);color: #fff;} 
#organigrama .direccion {background-color: #43B2D7; color: #fff;}
#organigrama .jefe-oficina {background-color: #004884; color: #fff;}

#organigrama .zona_viceministerio .recuadro > div:before,
#organigrama ul.col-lg-6:before,
#organigrama ul.col-lg-4:before {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #000;
    margin-left: auto;
}

#organigrama .zona_viceministerio .recuadro:nth-child(2) > div:before,
#organigrama .zona_viceministerio .recuadro:nth-child(3) > div:before,
#organigrama ul.col-lg-6:nth-of-type(2):before,
#organigrama ul.col-lg-4:nth-of-type(3):before {
    margin-right: auto;
    margin-left: 0;
}

#organigrama ul.col-lg-4:nth-of-type(2):before,
#organigrama .zona_viceministerio .recuadro:nth-child(2) > div:before {
    margin: auto;
    width: 100%;
}

#organigrama ol li:before,
#organigrama ol li:after {
    content: "";
    display: block;
    height: 3rem;
    width: 1px;
    background-color: #000;
    position: static;
    margin: auto;
}

#organigrama ol li:after {
    height: 2rem;
}

#organigrama ul li:before {
    content: "";
    display: block;
    width: 1rem;
    height: 1px;
    background-color: #000;
    margin: auto;
    margin-left: -15px;
    position: static;
}

#organigrama .zona_viceministerio ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

#organigrama .zona_viceministerio ul li:last-child:after {
    height: calc(50% + 1rem);
}

#organigrama .zona_viceministerio ul li:first-child:after {
    height: calc(50% - 1rem );
    bottom: 0;
    top: unset;
}

#organigrama .zona_viceministerio ul li.line-none:first-child:after,
#organigrama ul li.line-none:before {
    display: none;
} 

#organigrama .zona_despacho ol li:before {
    display: none;
}

#organigrama .zona_despacho .recuadro:first-child > div ul li:before {
    display: none;
}

#organigrama .zona_viceministerio ul li:first-child > div:before {
    content: "";
    display: block;
    width: 1px;
    height: 3rem;
    background-color: #000;
    position: absolute;
    top: -3rem;
}

#organigrama .figure img,
#organigrama .direccion img,
#organigrama .jefe-oficina img {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    max-width: 50px;
    border-radius: 50%;
    box-shadow: 2px 3px 0px 1px #0402472e;
}

#organigrama .figure .caption,
#organigrama .direccion .caption,
#organigrama .jefe-oficina .caption {
    width: 100% !important;
    color: #fff;
}

#organigrama .zona_despacho ul {
    margin-bottom: 0;
}

#organigrama ul .figure .caption p {
    color:#5a5a6c;
}

#organigrama .zona_despacho ul .figure .caption p {
    color: #fff;
}

#organigrama .figure .caption p,
#organigrama .direccion .caption p,
#organigrama .jefe-oficina .caption p,
#organigrama .zona_despacho ul .caption p {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 90%;
    margin-top: 5px;
    text-transform: initial;
}

#organigrama .zona_despacho ul {
    margin-top: 0;
}

#organigrama .direccion a,
#organigrama .jefe-oficina a {
    color: #fff;
    text-decoration: underline;
}

#organigrama .direccion a:hover {
    color: var(--govcolor-bluedark);
} 

#organigrama .jefe-oficina a:hover {
    color: var(--bs-secondary);
}

@media only screen and (max-width:991.98px) {
    #organigrama .zona_despacho .recuadro:first-child {
        position: static;
        margin: auto;
        margin-bottom: 3rem;
        max-width: 500px;
    }

    #organigrama .figure, #organigrama .direccion, #organigrama .jefe-oficina {
        position: static;
        margin: 0 0 .5rem 0 !important;
        text-align: left;
        justify-content: flex-start;
    }

    #organigrama .zona_despacho .recuadro:last-child ul,
    #organigrama .zona_viceministerio ul {
        width: 100%;
        list-style: disc;
        padding-left: 3rem;
        padding-right: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        color: var(--bs-secondary);
    }

    #organigrama .zona_viceministerio .recuadro ul li {
        display: list-item;
        padding: 0;
    }

    #organigrama .figure,
    #organigrama .direccion,
    #organigrama .jefe-oficina {
        padding: 1rem 1rem 1rem 4.5rem;
        max-width: unset;
    }

    #organigrama .figure,
    #organigrama .zona_despacho ul .figure .caption p,
    #organigrama .zona_despacho .figure a {
        background-color: transparent;
        color: #000;
    }

    #organigrama .figure,
    #organigrama .zona_despacho ul .figure .caption p {
        position: relative;
    }

    #organigrama :before,
    #organigrama :after {
        display: none !important;
    }

    #organigrama .zona_despacho .recuadro:first-child > div ul:first-of-type li:before {
        display: inline-block !important;
    }

    #organigrama .figure img, 
    #organigrama .direccion img, 
    #organigrama .jefe-oficina img {
        left: 8px;
        top: 5px;
        margin: 0;
    }

    .zona_viceministerio > div {
        flex-wrap: wrap !important;
    }
}

.ticker-01 {
    background-color: var(--bs-secondary);
    padding-top: .5rem;
    padding-bottom: .5rem;

}

.ticker-01 span {
    color: var(--govcolor-bluedark);
    font-family: var(--font-family-sans-serif);
    font-size: 1.3rem;
}

.ticker-02 {
    background-color: var(--govcolor-bluequilt);
    padding-top: .5rem;
    padding-bottom: .5rem;

}

.ticker-02 span {
    color: var(--bs-blue);
    font-family: var(--font-family-sans-serif);
    font-size: 1.3rem;
}

.ticker-03 {
    background-color: var(--govcolor-bluedark);
    padding-top: .5rem;
    padding-bottom: .5rem;

}

.ticker-03 span {
    color: var(--bs-secondary);
    font-family: var(--font-family-sans-serif);
    font-size: 1.3rem;
}

.box-glow.link_youtube iframe {
    box-shadow: 0 0 20px 0px #00FFFF;
    border-radius: 1rem;
}

/************************************************************************************
UTILIDADES
*************************************************************************************/
hr {
    width: 100%;
}

.container-sm {
    max-width: 640px;
} 

.bg-bluedark {
    background-color: var(--govcolor-bluedark);
}

.recuadros-reverse .recuadro {
    box-shadow: 2px 2px 15px #00000024;
    border-radius: 3rem;
    margin-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;

}

.recuadros-reverse .recuadro a {
    text-decoration: underline;
}

.recuadros-reverse .recuadro:nth-child(even) {
    flex-direction: row-reverse;
}

.ntg-titulo-center .ntg-titulo-caja {
    text-align: center;
}

.ntg-titulo-mb .ntg-titulo-caja {
    margin-bottom: 2.5rem;
}

.articulo .boton-1,
.articulo .boton-2 {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5;
    border-radius: 5rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    margin: 1.5rem 0;
}

.articulo .boton-2 {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.articulo .boton-1:hover,
.articulo .boton-2:hover {
    color: #fff;
    background-color: var(--bs-link-color);
    border-color: var(--bs-link-color);
}

.m-titulos h2:not(:first-of-type) {
    padding-top: 2rem;
}

.m-titulos h3 {
    padding-top: 2rem;
}

h3.titulo-grupo{
    font-size: 1.1rem;
}

#recuadros_articulo_17163 h3.titulo-grupo {
    font-size: 1.8rem;
}

div#recuadros_articulo_12007 {
    margin-top: 0;
}

.titulo_grupo_padding h2.ntg-titulo-caja {
    max-width: 2000px;
    width: 85%;
    margin: auto;
}

@media only screen and (max-width: 991.98px){
    header .container-fluid.d-flex {
        flex-direction: column;
        text-align: center;
    }
    .banner-grid-wrapper {
        display: none;
    }
}

.transparencia {
    background: var(--bs-primary);
    padding: 20px;
    clear: both;
}

.transparencia .titulo {
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
}
.transparencia a {
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
}

.transparencia .recuadro .titulo a {
  font-size:var(--govtypo-h3);
  font-weight: var(--govtypo-title-semibold);
  line-height: var(--govtypo-h3-lh);
  font-family: var(--govtypo-fontfamily-title);
  text-decoration: none !important;
  color: #fff !important;
}

@media screen and (min-width: 1px) and (max-width: 768px){
    .transparencia a {
        display: flex;
        flex-direction: column;
        padding: 0;
        font-size: 1rem;
    }
}

.transparencia a:hover {
    color: #fff;
}

.transparencia a:before {
    content: "";
    display: inline-block;
    /* background: url(https://css.mintic.gov.co/mt/mintic/new/img/recursos_mesa_trabajo.png); */
    background: url(channels-616_icon_transparencia.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 40px;
    width: 40px;
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
}
@media only screen and (max-width: 767.98px) {
    .transparencia a:before {
        position: static;
    }
}

.icon-yt:before,
.icon-fb:before,
.icon-ig:before,
.icon-tw:before,
.icon-tg:before {
    display: inline-block;
    content: "";
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-color: var(--bs-blue);
    color: #fff;
    border-radius: 50%;
    background-position: center;
    background-size: 1rem;
    vertical-align: middle;
    margin-right: 5px;
}
.icon-fb:before {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path d='M11.344,5.71c0-0.73,0.074-1.122,1.199-1.122h1.502V1.871h-2.404c-2.886,0-3.903,1.36-3.903,3.646v1.765h-1.8V10h1.8v8.128h3.601V10h2.403l0.32-2.718h-2.724L11.344,5.71z'/></svg>");
}
.icon-yt:before {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 25 25' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path d='M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z'/></svg>");
}
.icon-ig:before {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 25 25' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/></svg>");
}
.icon-tw:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24.44' height='22.88' viewBox='0 0 24.44 22.88' fill='%23fff'><path d='m.06,0l9.44,12.62L0,22.88h2.14l8.31-8.98,6.72,8.98h7.27l-9.97-13.33L23.32,0h-2.14l-7.66,8.27L7.33,0H.06Zm3.14,1.57h3.34l14.76,19.73h-3.34L3.2,1.57Z'/></svg>");
}

.icon-tg:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='%23fff' class='bi bi-telegram' viewBox='0 0 16 16'><path d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.287 5.906c-.778.324-2.334.994-4.666 2.01-.378.15-.577.298-.595.442-.03.243.275.339.69.47l.175.055c.408.133.958.288 1.243.294.26.006.549-.1.868-.32 2.179-1.471 3.304-2.214 3.374-2.23.05-.012.12-.026.166.016.047.041.042.12.037.141-.03.129-1.227 1.241-1.846 1.817-.193.18-.33.307-.358.336a8.154 8.154 0 0 1-.188.186c-.38.366-.664.64.015 1.088.327.216.589.393.85.571.284.194.568.387.936.629.093.06.183.125.27.187.331.236.63.448.997.414.214-.02.435-.22.547-.82.265-1.417.786-4.486.906-5.751a1.426 1.426 0 0 0-.013-.315.337.337 0 0 0-.114-.217.526.526 0 0 0-.31-.093c-.3.005-.763.166-2.984 1.09z'/></svg>");
}

/* CSS TEMP */

#disqus_thread {
	max-width: 640px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.destacado .recuadro {
    display: flex;
    flex-wrap: wrap;
}

.destacado .recuadro:not(:nth-child(2)) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(157,190,255,.3);
}

.destacado .titulo {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
    text-decoration: underline;
}

.destacado .ntg-titulo-caja {
    position: relative;
    padding: 0 15px;
    padding-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
}

.binary-foto_marquesina a:last-child,
.titulo_invisible a:last-child {
    display:none;
}

#recuadros_articulo_17163 .binary-foto_marquesina a:last-child {
    display: block;
    align-self: center;
}   

/* RECUADROS VIDEOS MICROSITIOS */

.recuadro-video .recuadro {
    margin-bottom: 30px;
}

.recuadro-video .recuadro:before {
    content: "";
    background: #cccccc;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    display: block;
    height: 100%;
    z-index: -1;
}

.recuadro-video .recuadro:hover:before {
    background: var(--bs-primary);
}

.recuadro-video img {
    width: 100%;
}

.recuadro-video .titulo {
    padding: 15px; }

.recuadro-video .recuadro:hover .titulo,
.recuadro-video .recuadro:hover .titulo a {
    color: #fff;
}

@media (min-width: 576px) {
    .recuadro-video .recuadro {
        height: 270px;
    }

    .recuadro-video .titulo {
        max-width: 100%;
        color: var(--bs-secondary);
        display: -webkit-box;
        max-height: 86px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
    }
}

/* SLIDER BANNERS */

.banners_slider_micrositio {
    padding: 30px 20px;
}

.banners_slider_micrositio .recuadro {
    display: flex;
    align-items: center;
}

.banners_slider_micrositio .recuadro img {
    max-height: 100px;
    width: auto;
}

.banners_slider_micrositio .carousel-indicators {
    bottom: -20px;
}

.banners_slider_micrositio .carousel-indicators li {
    background-color: var(--govcolor-dimgray);
}

.banners_slider_micrositio .carousel-indicators li.active {
    background-color: var(--bs-primary);
}

.banners_slider_micrositio .carousel-control-prev-icon {
    background-image: none;
    border-top: solid 5px var(--bs-primary);
    border-left: solid 5px var(--bs-primary);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    height: 20px;
    width: 20px;
}

.banners_slider_micrositio .carousel-control-next-icon {
    background-image: none;
    border-top: solid 5px var(--bs-primary);
    border-right: solid 5px var(--bs-primary);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            height: 20px;
            width: 20px;
}

.banners_slider_micrositio .carousel-inner .carousel-item {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.banners_slider_micrositio .carousel-item.active, 
.banners_slider_micrositio .carousel-item-next, 
.banners_slider_micrositio .carousel-item-prev {
    display: flex;
}

.banners_slider_micrositio .carousel-control-prev-icon:after, 
.banners_slider_micrositio .carousel-control-next-icon:after {
    display: none;
}

/*MAPA DEL SITIO*/

.mapa-sitio ul {
    list-style: none;
    padding: 0;
}

.mapa-sitio > ul > li {
    margin: 1.5rem 0;
}

.mapa-sitio > ul > li > a{
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bs-blue);
}

#petal_gr_interes,
#petal_arq_inst,
#petal_cultura,
#petal_estrategia,
#box_seguimiento {
    transform-origin: center;
    transition: all .2s;
    cursor: pointer;
}

.petal-animate,
#petal_gr_interes:hover,
#petal_arq_inst:hover,
#petal_cultura:hover,
#petal_estrategia:hover {
    transform: scale(1.05);
}

.box-animate,
#box_seguimiento:hover {
    transform: scale(1.07) rotate(5deg);
}

#petal_gr_interes.petal-animate path:first-child {fill:#e42528; opacity: 0.8;}
#petal_arq_inst.petal-animate path:first-child {fill:#009b52; opacity: 0.8;}
#petal_cultura.petal-animate path:first-child {fill:#fdc90a; opacity: 0.8;}
#petal_estrategia.petal-animate path:first-child {fill:#863399; opacity: 0.8;}

#arquitectura .btn_destacado {
    background-color: var(--bs-primary);
    color: #fff !important;
    border: none !important;
    padding: 5px 9px;
    box-shadow: 0 1px 2px 0px #00000038;
}
#arquitectura .btn_destacado:hover {
    background-color: #f42f63;
}

.tabs_mig .ui-widget-content {
    clear: both;
}

.tabs_mig h1.titulo {
    font-size: 1.25rem;
    font-weight: 600;
}

    .tabs_mig svg {
        width: 50%;
        float: left;
        height: auto;
        padding: 16px;
        box-sizing: border-box;
    }

    .tabs_mig .tab-content {
        clear: both;
    }
    
    .tabs_mig ul.nav-tabs {
        width: 50%;
        float: left;
        margin-top: 60px !important;
    }
    @media only screen and (max-width:767.98px) {
        .tabs_mig ul.nav-tabs {
            width: 100%;
        }
    }

    .tabs_mig ul.nav-tabs li {
        width: 100%;
    }

    .tabs_mig ul.nav-tabs li:before {
        display:none
    }
    
    .tabs_mig .nav-tabs li a.nav-link.active,
    .tabs_mig .nav-tabs li a {
        display: inline-block;
        width: 100%;
        padding: 0 0;
        overflow: hidden;
        border-left: solid 5px;
    }
    
    .tabs_mig .nav-tabs li a {
        background-color: #e8e8e8;
        text-decoration: none;
    }

    .tabs_mig .nav-tabs li:nth-child(1) a {
        border-left-color: #009b51!important;
    }
    .tabs_mig .nav-tabs li:nth-child(2) a {
        border-left-color: #4956a1!important;
    }
    .tabs_mig .nav-tabs li:nth-child(3) a {
        border-left-color: #fdc90c!important;
    }
    .tabs_mig .nav-tabs li:nth-child(4) a {
        border-left-color: #82258f!important;
    }
    .tabs_mig .nav-tabs li:nth-child(5) a {
        border-left-color: #e42729!important;
    }
    
    .tabs_mig .nav-tabs li a {
        padding: 5px 10px !important;
    }
    .tabs_mig .nav-tabs li:nth-child(1) a.nav-link.active,
    .tabs_mig .nav-tabs li:nth-child(1) a:hover{
        background-color: #009b51 !important;
    }
    .tabs_mig .nav-tabs li:nth-child(2) a.nav-link.active,
    .tabs_mig .nav-tabs li:nth-child(2) a:hover{
        background-color: #4956a1 !important;
    }
    .tabs_mig .nav-tabs li:nth-child(3) a.nav-link.active,
    .tabs_mig .nav-tabs li:nth-child(3) a:hover{
        background-color: #fdc90c !important;
    }
    .tabs_mig .nav-tabs li:nth-child(4) a.nav-link.active,
    .tabs_mig .nav-tabs li:nth-child(4) a:hover{
        background-color: #82258f !important;
    }
    .tabs_mig .nav-tabs li:nth-child(5) a.nav-link.active,
    .tabs_mig .nav-tabs li:nth-child(5) a:hover{
        background-color: #e42729 !important;
    }

    .tabs_mig .nav-tabs li a.nav-link.active,
    .tabs_mig .nav-tabs li a:hover {
        color:#fff !important;
        text-decoration: none;
    }

@media only screen and (max-width: 760px) {
    .tabs_mig > svg {
        width: 100%;
    }
}

@-webkit-keyframes fixed-move-down { 
    0% {top: -80px;}
    100% {top: 0;}
} 

@keyframes fixed-move-down { 
    0% {top: -80px;}
}
  

/*---------PESTAÃƒÆ’Ã¢â‚¬ËœAS HORIZONTALES GOVCO-NEW--------*/

.navbar-pestana-govco {
    
    width: 100%;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
 }

.navbar-pestana-govco .navbar-nav {
   
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*width: 100%;*/
    margin: auto;
    background-color: #fff;
    box-shadow:none;
    padding: 1rem;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
}

.navbar-pestana-govco .nav-item,
.navbar-pestana-govco ul li 
 {
    position: relative;
    align-items: center;
    background-color: #F6F8F9;
    width: 100%;
  }

.navbar-pestana-govco .nav-item hr,
.navbar-pestana-govco ul li hr
 {
  visibility: hidden;
}

.navbar-pestana-govco .nav-link,
.navbar-pestana-govco ul li a
 {
  white-space: normal;
  color: #004884;
  font-size: 0.938rem !important;
  text-align:center;
  line-height: normal!important;
  font-weight: 500;
  padding-top: 1.125rem;
  padding-bottom: 1.438rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  opacity: 1;
  height: 5rem; 
  border: 0;
  margin: 0;
  border: 2px solid #E8EFFC;
}

.navbar-pestana-govco .nav-link p,
.navbar-pestana-govco ul li a p { line-height:1;}

.navbar-pestana-govco .nav-item:hover,
.navbar-pestana-govco ul li:hover,
.navbar-pestana-govco .nav-link:hover,
.navbar-pestana-govco ul li a:hover
{
  background-color: #004884 ;
  color: #FFFFFF;
  border-color:#004884 ;
 
}

.navbar-pestana-govco .nav-item.active {
  background-color: #fff ;
  border-bottom: 6px solid var(--bs-primary);
}

.navbar-pestana-govco ul li.active hr {
  visibility: visible;
  position: relative;
  height: 0.25rem !important;
  /*width: 13.375rem !important;*/
  background-color: var(--bs-primary) !important;
  opacity: 1;
  margin-top: -5px!important;
}

.navbar-pestana-govco ul li a:focus-visible,
.navbar-pestana-govco ul li a:focus-visible:hover,
.navbar-pestana-govco .nav-link:focus-visible,
.navbar-pestana-govco .nav-link:focus-visible:hover

 {
  outline: 0 !important;
  outline-offset:0 !important;
  border: 4px double #000;
  color: var(--govcolor-tundora) !important;
  background-color: transparent;
  background-color: #FFFFFF;
  border-radius: 0 !important;
}

.navbar-pestana-govco ul li a.disabled {
  background-color: #F2F2F2;
  color: #BABABA!important;
}

@media only screen and (max-width: 767.98px) {
    .navbar-pestana-govco .navbar-nav {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 100%;
    }

    .navbar-pestana-govco .nav-item,
    .navbar-pestana-govco ul li 
     {
               
        min-height: 3.5rem;
        height: auto;
    }

    .navbar-pestana-govco .nav-link,
    .navbar-pestana-govco ul li a
     {
          
      min-height: 3.5rem;
      text-align:left;
      padding-top: 1.0625rem;
      padding-bottom: 1rem;
      height: auto;
      
    }

    .navbar-pestana-govco .nav-item.active,
    .navbar-pestana-govco ul li a.active
     {
          background-color: #fff ;
          border-left: 6px solid var(--bs-primary);
          border-bottom:0;
    }

    .navbar-pestana-govco ul li a:after,
    .navbar-pestana-govco .nav-link:after {
      content: "\e8b7";
      font-family: "govco-fontv2";
      color: #004884;
      opacity: 1;
      height: auto;
      width:8px;
      float: right;

    }

    .navbar-pestana-govco ul li a:hover:after,
    .navbar-pestana-govco .nav-link:hover:after {
      
      color: #fff;

    }

    .navbar-pestana-govco ul li.active a:after,
    .navbar-pestana-govco .nav-item.active a:after {
      
      content: "\e8b6";
      font-family: "govco-fontv2";

    }
}

#back-to-top {
    display: flex;
    align-items: center;
    position: fixed;
    right: 17px;
    bottom: 155px;
    z-index: 2;
    background: var(--bs-primary);
    border: 0;
    padding: 9px;
    border-radius: 5rem;
    text-transform: initial;
    max-width: 8.1rem;
    text-align: left;
    line-height: 1.2;
    font-size: 0;
    color: transparent !important;
    transition: all .4s ;
}

#back-to-top:before {
    content: "";
    display: inline-block;
    background-color: #fff;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='57.07' height='35.61' viewBox='0 0 57.07 35.61'> <polygon points='50 35.61 28.54 14.14 7.07 35.61 0 28.54 28.54 0 57.07 28.54 50 35.61' style='fill: %233366cc;'/></svg>");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    flex-shrink: 0;
}

#back-to-top:hover {
    background-color: var(--bs-blue);
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 1rem;
    font-weight: normal;
    color: #fff !important;
}

#back-to-top:hover:before {
    margin-right: 11px;
}

@media only screen and (max-width: 767.98px) {
    #back-to-top {
        right: 5px;
        bottom: 60px;
    }

    #back-to-top:before {
        width: 1.8rem;
        height: 1.8rem;
    }
}

/**
* Gov.co (https://www.gov.co) - Gobierno de Colombia
*  - Componente: Etiqueta  ajustado ntg**/
 
.etiqueta-govco, .pvid-133234, .pvid-133233 {
  background-color: var(--govlabel-default) !important;
  border-radius: 0.875rem !important;
  color: #000000 !important;
  text-align: left;
  font-size: 0.875rem;
  font-family: var(--govtypo-fontfamily-text) !important;
  font-weight: var(--govtypo-text-medium);
  height: 28px;
  padding-top: 6px;
  padding-bottom: 6px !important;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  margin: 5px 10px 5px 0;
  line-height: 1;
}

.etiqueta-govco.completado, .pvid-133233 {
  background-color: var(--govlabel-green) !important;
  color: var(--govlabel-green-text) !important;
}

.etiqueta-govco.error {
  background-color: var(--govlabel-red) !important;
  color: var(--govlabel-red-text) !important;
}

.etiqueta-govco.pendiente {
  background-color: var(--govlabel-yellow) !important;
  color: var(--govlabel-yellow-text) !important;
}

/*DESCRIPCIÃƒâ€œN EMERGENTE GOVCO */

.btn-descripcion-emergente-govco {
  background-color: var(--bs-primary);
  border: var(--bs-primary);
  color: var(--govcolor-white);
  border-radius: 0.7rem;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-descripcion-emergente-govco:before {
  font-family: "govco-fontv2";
  content: "\eab0";
  text-align: center;
  font-size: 1.5rem;
}

.descripcion-emergente-govco {
  position: relative;
}

.descripcion-emergente-govco .tiptext {
  visibility:hidden;
  background-color: #000000B3!important;
  color: #fff;
  border-radius: 4px;
  width: 215px;
  min-height: 40px;
  position: absolute;
  font-size: 0.875rem;
  font-family: var(--govtypo-fontfamily-text) !important;
  font-weight: 600;
  z-index: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.descripcion-emergente-govco .tiptext::after {
  content: "";
  position: absolute;
  border-width: 5px;
  border-style: solid;
}

.descripcion-emergente-govco:hover .tiptext {
  visibility: visible;
}

.descripcion-emergente-govco.top .tiptext{
  margin-left: -100px;
  bottom: 150%;
  left: 30%;
}

.descripcion-emergente-govco.top .tiptext:after{
  margin-left: -5px;
  top: 100%;
  left: 50%;
  border-color: #000000B3 transparent transparent transparent;
}

.descripcion-emergente-govco.bottom .tiptext{
  margin-left: -100px;
  top: 150%;
  left: 30%;
}

.descripcion-emergente-govco.bottom .tiptext:after{
  margin-left: -5px;
  bottom: 100%;
  left: 50%;
  border-color: #000000B3 transparent transparent transparent;
}

.btn-descripcion-emergente-govco:focus {
  background-color: var(--bs-primary);
  border: var(--bs-primary);;
  min-width: 40px;
  height: 40px;
  font-size: 1.5rem;
  outline: 2px  solid #000 !important;
  border: 2px  solid #fff !important;
  font-size: 0.875rem;
  font-family: var(--govtypo-fontfamily-text);
}

.btn-descripcion-emergente-govco:focus:before {
  font-family: "govco-fontv2";
  content: "\eab0";
  font-size: 1.5rem;
  text-align: center;
}

.descripcion-emergente-govco:focus .tiptext {
  visibility: visible;
}

.btn-descripcion-emergente-govco.disabled {
  background-color: var(--govcolor-dimgray) !important;
  border: var(--govcolor-dimgray) !important;
  color: #fff !important;
  border-radius: 0.7rem !important;
  width: 2.5em !important;
  height: 2.5em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-descripcion-emergente-govco.disabled:hover {
  outline: 0rem !important;
 }

.btn-descripcion-emergente-govco.disabled:focus {
  border: 0rem !important;
  outline: 0rem !important;
 }

.descripcion-emergente-govco.disabled:focus .tiptext {
  visibility: hidden !important;
}

.descripcion-emergente-govco.disabled:hover .tiptext {
  visibility: hidden !important;
}

/*Galeria de aplicaciones govco*/

.dropdown-candy-box-govco { /*update*/
  font-family: var(--govtypo-fontfamily-text);
  font-weight: var(--govtypo-text-regular);
  position: fixed;
  right: 10px;
  top: 4px;
  z-index: 1000;
}

.button-rounded-menu-govco {
  position: relative;
  padding: 0px 0px !important;
  border-radius: 1.313rem !important;
  transition-duration: 0.3s;
  width: 42px;
  height: 42px;
  background-color: #3366cc !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  font-family: var(--govtypo-fontfamily-text);
  text-transform: none !important;
  letter-spacing: normal !important;
}

.button-rounded-menu-govco[aria-expanded="false"]:hover,
.button-rounded-menu-govco[aria-expanded="false"]:focus-visible,
.button-rounded-menu-govco[aria-expanded="false"].hover,
.button-rounded-menu-govco[aria-expanded="false"].focus {
  background-color: var(--govcolor-bluelight) !important;
}

.button-rounded-menu-govco[aria-expanded="false"]:focus-visible,
.button-rounded-menu-govco[aria-expanded="false"].focus {
  outline: max(0.125rem, 0.125rem) solid #000000;
  outline-offset: max(0.125rem, 0.125rem);
}

.button-rounded-menu-govco[aria-expanded="false"]:active {
  background-color: var(--govcolor-bluedark) !important;
}

.button-rounded-menu-govco[aria-expanded="true"] {
  background-color: var(--govcolor-bluedark) !important;
}

.button-rounded-menu-govco::before {
  font-family: "govco-fontv2";
  color: #ffffff;
  display: inline-block;
  font-size: 24px;
  content: "\eb66";
}

.button-rounded-menu-govco[aria-expanded="false"]:hover::before,
.button-rounded-menu-govco[aria-expanded="false"]:focus-visible::before,
.button-rounded-menu-govco[aria-expanded="false"].hover::before,
.button-rounded-menu-govco[aria-expanded="false"].focus::before {
  color: var(--bs-primary);
}

.button-rounded-menu-govco[aria-expanded="false"]:active::before {
  color: #ffffff;
}

.dropdown-container-govco {
  width: 2.625rem !important;
  padding: 0 !important;
}

.dropdown-arrow-govco {
  visibility: hidden;
  width: 0;
  height: 0;
  border-right: 0.435rem solid transparent;
  border-top: 0.435rem solid transparent;
  border-left: 0.435rem solid transparent;
  border-bottom: 0.435rem solid #ffffff;
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: 1;
  transform: translate(-14px, 10px);
}

.button-rounded-menu-govco .tooltip-text-govco {
  visibility: hidden;
  width: 19.5rem;
  height: 5.125rem;
  background-color: #ffffff;
  color: var(--govcolor-tundora);
  text-align: left;
  border-radius: 5px;
  padding: 10px 15px;
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 0%;
  font-size: 14px;
  box-shadow: 4px 4px 2px #4b4b4b1a;
  transform: translate(0px, 52px);
}

.button-rounded-menu-govco[aria-expanded="false"]:hover .tooltip-text-govco,
.button-rounded-menu-govco[aria-expanded="false"]:hover .dropdown-arrow-govco,
.button-rounded-menu-govco[aria-expanded="false"].hover .tooltip-text-govco,
.button-rounded-menu-govco[aria-expanded="false"].hover .dropdown-arrow-govco,
.button-rounded-menu-govco[aria-expanded="false"]:focus .tooltip-text-govco,
.button-rounded-menu-govco[aria-expanded="false"]:focus .dropdown-arrow-govco,
.button-rounded-menu-govco[aria-expanded="false"].focus .tooltip-text-govco,
.button-rounded-menu-govco[aria-expanded="false"].focus .dropdown-arrow-govco {
  visibility: visible;
}

.dropdown-menu-candy-box-govco {
  width: 19.5rem;
  height: auto;
  background-color: #ffffff !important;
  box-shadow: 0.25rem 0.25rem 0.125rem #4b4b4b1a !important;
  border-radius: 0.313rem !important;
  padding: 14px 0.375rem 7px 0.375rem !important;
  margin-top: 10px !important;
  text-align: center !important;
  border: none !important;
  inset: 0px calc(2.625rem * (-0.01)) auto auto !important;
}

.dropdown-menu-candy-box-govco.show {
  transform: translate(0px, 42px) !important;
}

.dropdown-menu-candy-box-govco.not-show {
  display: none !important;
}

.button-rounded-menu-govco[aria-expanded="true"]+.dropdown-arrow-govco {
  visibility: visible;
}

.dropdown-title-govco {
  font-family: var(--govtypo-fontfamily-text);
  font-weight: var(--govtypo-text-semibold);
  font-size: 16px;
  color: #4b4b4b;
}

.dropdown-item-menu-ul {
  list-style: none;
  padding: 0 !important;
  margin: 0.4rem 0 0 0 !important;
  display: flex;
}

.dropdown-item-menu-li {
  width: 6.25rem;
  height: auto;
  padding: 0;
}

.dropdown-item-govco {
  padding: 1rem 0rem 1rem 0rem !important;
  white-space: normal !important;
  border-radius: 0.3rem;
  line-height: 1rem;
  position: relative;
}

.dropdown-item-icon-govco {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 1.313rem;
  background-color: #3366cc;
  margin: 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
}

.icon-ciiu-govco {
  line-height: 0;
}

.icon-ciiu-govco::after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 18px;
  content: "\ec02";
}

.icon-govco-govco {
  line-height: 0;
}

.icon-app-pqrsd:after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ec0c";
} 

.icon-app-transparencia:after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ec17";
} 

.icon-app-tramites:after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ea03";
} 

.icon-app-participacion:after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ec3f";
} 

.icon-app-iniciativas:after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ec5e";
} 

.icon-govco-govco::after {
  font-family: "govco-fontv2";
  color: #ffffff;
  font-size: 2rem;
  line-height: 18px;
  content: "\ec2f";
}

.icon-folder-user-govco::after {
  font-family: "govco-fontv2";
  color: #ffffff;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 18px;
  content: "\ec26";
}

.dropdown-item-govco span {
  font-family: var(--govtypo-fontfamily-text);
  font-weight: var(--govtypo-text-regular);
  text-align: center;
  color: #4b4b4b;
  font-size: 0.875rem;
}

.dropdown-item-govco.disabled .dropdown-item-icon-govco {
  background-color: #737373;
}

.dropdown-item-govco:hover,
.dropdown-item-govco.hover {
  background-color: #e6effd !important;
  transition: all 0.3s linear;
}

.dropdown-item-govco:hover span,
.dropdown-item-govco.hover span {
  color: #004884;
}

.dropdown-item-govco:focus {
  background-color: #ffffff !important;
}

.dropdown-item-govco:focus-visible,
.dropdown-item-govco.focus {
  background-color: #ffffff !important;
  outline: max(0.125rem, 0.125rem) solid #000000;
  z-index: 1;
}

.dropdown-item-govco:active,
.dropdown-item-govco.active-select {
  background-color: #ffffff !important;
  outline: 1px solid #004884;
  outline-offset: -1px;
  box-shadow: 0px 3px 2px #282c3424;
}

.dropdown-item-govco:active .dropdown-item-icon-govco,
.dropdown-item-govco.active-select .dropdown-item-icon-govco {
  background-color: #004884 !important;
}

.dropdown-item-govco:active .item-active-icon-govco::before,
.dropdown-item-govco.active-select .item-active-icon-govco::before {
  font-family: "govco-fontv2";
  position: absolute;
  top: 10%;
  right: 22%;
  content: "\e8a4";
  font-size: 16px;
  color: #068460;
}

.dropdown-item-govco:active .item-active-icon-background-govco::before,
.dropdown-item-govco.active-select .item-active-icon-background-govco::before {
  font-family: "govco-fontv2";
  position: absolute;
  top: 10%;
  right: 22%;
  content: "\ec01";
  font-size: 16px;
  color: #ffffff;
}

.fecha-evento .dia,
.fecha-evento .hora {
    margin-bottom: .5rem;
}

.fecha-evento .dia:before,
.fecha-evento .hora:before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    margin-right: 4px;
    vertical-align: middle;
}

.fecha-evento .dia:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%233666CC'><path d='M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'/></svg>");
}

.fecha-evento .hora:before {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%233666CC'><path d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'/></svg>");
}

/** Documentos para comentar **/

#informe_wrapper {
    padding: 15px;
    box-sizing: border-box;
}

#informe_wrapper > table{
    width: 100% !important;
    margin: 20px 0;
    border: 0;
}

#informe_wrapper > table th, 
#informe_wrapper > table td {
    padding: 8px;
    font-size: 14px;
    word-break: break-word;
}

#informe_wrapper #informe_filter input[type="search"] {
    border: 1px solid #cccccc;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_paginate .ellipsis,
#informe_wrapper .dataTables_paginate span a {
    padding: 8px 13px !important;
    text-decoration: underline !important;
    border-right: 1px solid #dee2e6;
    margin: 0 !important;
}

#informe_wrapper .dataTables_paginate span a.current {
    background: var(--bs-primary) !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0;
}

#informe_wrapper .dataTables_paginate .paginate_button:hover {
    color: #FF1F6D !important;
    text-decoration: none !important;
    background-color: #e9ecef !important;
    border-color: #dee2e6!important;
    background-image: none !important;
    border-radius: 0 !important;
}

#informe_wrapper .dt-buttons > button {
    background: #3366cc;
    color: #fff;
    border: 0;
    padding: 8px 12px;
}

#informe_wrapper .dt-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.dataTables_wrapper .dataTables_paginate {
    color: #011840 !important;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 0 !important;
}

table#informe button {
    font-size: 0;
    height: 2rem;
    width: 2rem;
    line-height: 1;
    border-radius: 50%;
    display: block;
    margin: auto;
    background-color: var(--bs-primary);
    border: unset;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-arrow-clockwise' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2z'/><path d='M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466'/></svg>");
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: center;
}

table#informe button:hover {
    background-color: var(--bs-secondary);
}

#comentarios_form label {
    display: block;
    color: var(--bs-primary);
    font-weight: bold;
    margin-top: 2.5rem;
}

#comentarios_form textarea {
    width: 100%;
}

#comentarios_form .form_attachments iframe {
    height: 220px;
}

table.dataTable.no-footer {
    margin-bottom: 2rem;
}

.loader {
    width: 5rem !important;
    height:5rem !important;
    margin: auto !important;
    position: static !important;
}

#consulta_general ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

#consulta_general ul li:first-child {
    display: flex;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto auto 3rem auto;
    box-shadow: 2px 2px 6px #00488457;
    border-radius: .5rem;
}

#consulta_general ul li:first-child b {
    color: var(--bs-primary);
    font-size: 2rem;
}

#consulta_general ul li {
    width: 100%;
    max-width: 800px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    margin-bottom: 2rem;
}

#consulta_general ul li:last-child {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#consulta_general ul li:last-child button {
    display: block;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 3rem;
    margin: auto;
    margin-top: 1rem;
    padding: .375rem 1.4rem;
    margin-bottom: 2rem;
    border: solid 1px;
}

.ui-dialog-buttonset button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .63rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    border-radius: 3rem;
    text-decoration: none;
    background-color: var(--bs-primary);
    color: #fff;
}

.ui-dialog-buttonset button,
#ia_comentarios .ntg-titulo-formulario {
    font-size: var(--govtypo-h3);
    line-height: var(--govtypo-h3-lh);
    font-family: var(--govtypo-fontfamily-title);
    color: var(--bs-primary);
    font-weight: var(--govtypo-title-semibold);
    border: unset;
}

.ui-dialog-buttonset button {
    color: #fff;
}

.ui-dialog-buttonset button:hover {
    color: #fff;
    background-color: var(--govcolor-bluedark);
}

.ui-dialog {
    background-color: #fff;
    box-shadow: 0 0 8px #0000006e;
    padding: 2rem;
    border-radius: 1rem;
}

.ui-dialog-titlebar-close {
    display: none;
}

.ui-dialog-title {
    display: inline-block;
    color: var(--bs-primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.comentariosia-tabs {
    justify-content: flex-start;
    margin-bottom: 3rem;
    border-bottom: solid 1px #E6EFFD;
}

.comentariosia-tabs li.nav-item {
    margin-bottom: -3px;
}

.comentariosia-tabs li a.nav-link {
    border-radius: 0;
    padding: 1rem 2rem;
    background-color: var(--light);
    border: solid 1px #E6EFFD;
    font-weight: normal;
}

.comentariosia-tabs li a.nav-link.active {
    border-color: var(--light);
    border-bottom: solid 4px var(--govcolor-bluedark);
    color: var(--govcolor-bluedark);
    font-weight: bold;
}

.comentariosia-tabs li a.nav-link:hover {
    background-color: var(--govcolor-bluedark);
    color: #fff;
}

.full-text {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--bs-primary);
    font-size: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-plus-lg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/></svg>');
    background-position: center;
    background-size: .8rem;
    cursor: pointer;
    border-radius: 5px;
    background-repeat: no-repeat;
}

.full-text:hover {
    background-color: var(--bs-secondary);
}