/* globales */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
header.shadow {
  box-shadow: var(--box-shadow-2);
}

header nav { height: 78px; }
@media only screen and (min-width: 1115px) {
  header nav { height: initial; }
}

.nav__logo {
  width: 112px;
  margin-right: auto;
}
@media only screen and (min-width: 1115px) {
  .nav__logo { margin-right: 16px; }
}
@media only screen and (min-width: 1200px) {
  .nav__logo { margin-right: 56px; }
}

.nav__collapse {
  background: var(--wb-bg-modules);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 80vh;
    left: 0;
    opacity: 0;
  /*  padding: 0 5%; */
    position: fixed;
    top: -100%;
    -webkit-transition: all .65s ease;
    -o-transition: all .65s ease;
    transition: all .65s ease;
    width: 100%;
}
@media only screen and (min-width: 1115px) {
  .nav__collapse {
    background: var(--color-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    opacity: initial;
    padding: initial;
    position: initial;
    transition: initial;
    height: 109px;
    width: calc(100% - 112px - 8px - 16px);
  }
}
@media only screen and (min-width: 1200px) {
  .nav__collapse {
    width: calc(100% - 112px - 8px - 56px);
  }
}


.nav__navigation {
  font-family: var(--font-family-title);
  padding: 0 5%;
}
@media only screen and (min-width: 1115px) {
  .nav__navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .nav__navigation { gap: 32px; }
}

  .nav_submenu-item .item-disabled a {color: var(--wb-font-color-2)!important;}
  .nav_submenu-item .item-disabled a { text-decoration: none!important; cursor: auto;}


.nav__item a,
.nav__item button {
  color: var(--color-blue-buk);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 400;
}
.nav__item button {
  appearance: none;
  border: none;
  background: inherit;
}
@media only screen and (min-width: 1115px) {
  .nav__item { height: 100%; display: flex; justify-content: center; flex-direction: column; }
}

@media only screen and (min-width: 1300px) {
  .nav__actions { gap: 32px; }
}

/* BUTTON COUNTRIES AND SUBMENU */
.buk-countries--mobile { 
  margin-right: 30px;
}
@media only screen and (min-width: 1115px) {
  .buk-countries--mobile { display: none; }
}

.buk-countries--desktop { display: none; }
@media only screen and (min-width: 1115px) {
  .buk-countries--desktop { display: inline-block; }
}

.buk-countries {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.buk-countries svg {
  transition: transform .4s ease;
}
.buk-countries.show svg {
  transform: rotate(180deg);
}

.buk-countries__submenu {
  position: absolute;
  top: 40px;
  right: 0;
  width: 180px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09);
  /* padding: 4px; */
  z-index: 5;
  transition: height .5s;
  height: 0;
  overflow: hidden;
}
.buk-countries.show .buk-countries__submenu {
  height: 205px;
}

@media only screen and (min-width: 767px) {
  .buk-countries__submenu {
    width: 200px;
  }
}

.buk-countries__wrap {
  border-radius: 16px;
  padding: 4px;
}

.buk-countries__link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.buk-countries__link span {
  color: var(--color-blue-buk);
  font-size: 1.125rem;
  font-family: var(--font-family-title);
}

.buk-countries__item {
  border-radius: 14px;
  text-align: initial;
  padding: 8px 12px;
}
.buk-countries__item:hover {
  background-color: var(--wb-bg-modules);
}

.buk-countries__submenu .buk-flag__xs {
  width: 20px;
  height: 20px;
}

/* Button collapse */
.nav__toggle {
  width: 40px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  position: relative;
  transition: all 1s ease-in-out;
  z-index: 15;
}
@media only screen and (min-width: 1115px) {
  .nav__toggle { display: none; }
}

.nav__hamburger {
  height: 3px;
  width: 80%;
  border-radius: 5px;
  background-color: var(--color-dark-blue);
  transition: all .5s ease-in-out;
}

.nav__hamburger::before,
.nav__hamburger::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 80%;
  background-color: var(--color-dark-blue);
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

.nav__hamburger::before {
  transform: translate(-50%, -10px);
}

.nav__hamburger::after {
  transform: translate(-50%, 10px);
}

.nav__toggle.open-collapse .nav__hamburger {
  transform: translateX(-20px);
  background: transparent;
  z-index: 4;
  transition: all .5s ease-in-out;
}

.nav__toggle.open-collapse .nav__hamburger::before {
  transform: rotate(45deg) translate(6px, -6px);
}

.nav__toggle.open-collapse .nav__hamburger::after {
  transform: rotate(-45deg) translate(5.5px, 5.5px);
}

/* Menu Mobile */

.nav__toggle.open-collapse ~ .nav__collapse {
  box-shadow: 0px 6px 5px -1px rgba(43, 60, 106, 0.12);
  top: 78px;
  overflow-y: auto;
  opacity: 1;
}
@media only screen and (min-width: 1115px) {
  .nav__toggle.open-collapse ~ .nav__collapse {
    box-shadow: initial;
    flex-direction: initial;
    position: initial;
    padding: 0;
    overflow: initial;
    width: calc(100% - 112px - 8px - 56px);
  }
}

.nav__item:not(:last-of-type) {
  border-bottom: 2px solid var(--color-light-blue);
}
.nav__item.item-selected {
  border-bottom: none;
}
@media only screen and (min-width: 1115px) {
  .nav__item:not(:last-of-type) {
    border-bottom: none;
  }
  .nav__item.item-selected {
    border-bottom: none;
  }
}


.nav__item button {
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}
.nav__item button svg {
  transition: transform .4s ease;
  margin-right: .8rem;
}
.nav__item button.active {
  background: var(--color-blue-buk);
  color: var(--color-white);
  margin: 0 -5.5%;
  width: 111%;
  padding: 20px 5.5%;
}
.nav__item button.active svg {
  transform: rotate(180deg);
}
.nav__item button.active svg path {
  fill: #fff;
}
.nav__item > a {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
}
@media only screen and (min-width: 1115px) {
  .nav__item button {
    width: initial;
    padding: initial;
  }
  .nav__item button.active {
    background: initial;
    color: var(--color-blue-buk);
  }
  .nav__item button svg {
    margin-right: initial;
  }
  .nav__item button.active svg path {
    fill: var(--color-blue-buk);
  }
  .nav__item > a {
    width: initial;
    padding: initial;
  }
}

.nav__submenu {
  background: var(--color-white);
  margin: 0 -5.5%;
  height: 0;
  overflow: hidden;
  transition: height .5s ease-in-out;
  
}
.nav__submenu-wrap {
  padding: 32px 5.5%;
}

.nav__submenu-wrap-row {
  padding: 0px 5.5%;
}

.nav_submenu-item {
  display: flex;
  flex-direction: column;
}
.nav__submenu-item-header {
  display: flex;
  align-items: center;
}
.nav__submenu-item-header img {
  width: 43px;
  height: 43px;
}
.nav__submenu-item-header a, .nav__submenu-item-header p {
  margin-left: 1rem;
}
.nav__submenu-item-header a:hover, .nav__submenu-label a:hover {
  text-decoration: underline;
}
.nav__submenu-item-header .txt--desktop {
  display: none;
}
.nav_submenu-item--mobile {
  flex-direction: initial;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 2px solid var(--color-light-blue);
}
.nav__submenu-label--desktop {
  display: none;
}

@media only screen and (min-width: 1115px) {
  .nav__submenu {
    /* display: none; */
    position: fixed;
    left: 0;
    right: 0;
    top: 109px;
    border-radius: 0 0 16px 16px;
    margin: initial;
  }
  .nav__submenu.open {
    box-shadow: 0px 10px 7px 0px rgba(43, 60, 106, 0.12);
    
/*     box-shadow: var(--box-shadow-1); */
  }
    .nav__submenu-wrap-row {
    width: 90%;
    border-radius: 0 0 16px 16px;
    padding: 0px 0% 24px 0%;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: baseline;
    /*justify-content: center;*/
    gap: 1.5rem;
  }
  .nav__submenu-wrap {
    width: 90%;
    border-radius: 0 0 16px 16px;
    padding: 56px 0;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.5rem;
  }
  .nav_submenu-item {
    width: calc(25% - 1.5rem);
  }
  
  .nav__submenu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav__submenu-item-header img {
    width: 45px;
    height: 45px;
  }
  .nav__submenu-item-header a, .nav__submenu-item-header p {
    margin-left: 0;
  }
  .nav__submenu-item-header .txt--desktop {
    display: block;
    font-family: var(--font-family-body);
    font-size: 14px;
    color: #A1A2AA;
  }

  .nav_submenu-item--mobile {
    display: none;
  }
  .nav__submenu-label--desktop {
    display: block;
    margin-top: 2.5rem;
  }

}

.nav__submenu-label > a {
  display: inline-block;
}
.nav__submenu-label:not(:last-of-type) > a {
  padding-bottom: 16px;
}

.nav__actions {
  background: var(--color-white);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  /*  margin: 0 -5.5%; */
  padding: 32px 5.5%;
  height: 100%;
}
.nav__actions .hs-cta-wrapper {
  order: 2;
}
.nav__actions .btn.btn--txt {
  color: var(--wb-font-color-2);
}
@media only screen and (min-width: 1115px) {
  .nav__actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    height: initial;
    padding: initial;
    margin: initial;
  }
  .nav__actions .hs-cta-wrapper {
    order: initial;
  }
}
@media only screen and (min-width: 1300px) {
  .nav__actions {
    gap: 2rem;
  }
}

nav .btn--1.version-b:hover { zoom: 106%;
    background: var(--bg-cta-1);
    border-color: var(--bg-cta-1);
    margin-right: -3%;
    display: flex; transition: width 0.8s linear 0.4s;
}
nav .btn--1.version-b: { zoom: 100%;
    margin-right: 0%;
    display: flex; transition: width 1s linear 0.5s;
}

@media only screen and (max-width: 1115px) {
  /* btn-principales */
#btn-principales .primerNivel {width:100%;}
#btn-principales .segundoNivel {width:100%;}
}
footer {
  background: var(--color-white);
  color: var(--color-blue-buk);
  font-size: 1rem;
}
/* @media only screen and (min-width:767px) {
  footer {
    font-size: 1.125rem;
  }
} */

footer h3 {
  font-size: 1.125rem;
  color: var(--color-orange-buk);
  margin-bottom: 10px;
}
footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-blue-buk);
  margin-bottom: 5px;
}

.footer {
  border-bottom: 3px solid var(--color-light-blue);
}

.footer__menu h3 {
  margin-bottom: 12px;
}

.footer__solutions .buk-grid [class*="buk-col"] {
  padding-top: 0;
  /* padding-bottom: 0; */
}
/* .footer__solutions .ds-flex [class*="footer__"] {
  width: calc(50% - 8px);
} */

.footer__list li:not(:last-of-type) {
  margin-bottom: 6px;
}
.footer__list a:hover { text-decoration: underline; }

footer .brand {
  padding: 63px 0;
}

.brand__logo {
  width: 70%;
}
.brand__logo p {
  margin-top: 1rem;
  font-family: var(--font-family-title);
  font-size: 1.5rem;
}
@media only screen and (min-width: 767px) {
  .brand__logo {
    width: auto;
  }
  .brand__logo p {
    margin-top: 0;
    padding-left: .25rem;
  }
}

.brand__rrss {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand__rrss a {
  display: inline-block;
}
.brand__rrss a .fill-rrss {
  transition: fill .3s ease-in;
}
.brand__rrss a:hover .fill-rrss {
  fill: var(--color-orange-buk);
}



#search {background-color: #fff; border: 1px solid #A1A2AA; border-radius: 47px;
    height: 43px; font-family: var(--font-family-body); padding: 0 16px 0 40px; font-size: 16px; appearance: none; outline:none;width: 100%; position: relative;}

form .btn-search {     height: 40px;
    position: absolute;
    width: 30px;
    font-family: var(--font-family-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .33px;
    background-color: white;
    border: none;
    z-index: 5;
    border-radius: 61px 0px 0px 61px;
    margin: 1px 0px 1px 6px;}

.box-search {display:flex; margin-top: 0rem;}
.lupa { display: block; margin:auto; content: url("https://www.buk.cl/hubfs/2023/Buk-ui-kit/lupa-blog.svg");}

.search-suggestions { list-style: none; width: auto; padding: 24px; position: absolute; margin: 10px auto; display: none;}
.search-section.search-open .search-suggestions { border: 2px solid rgba(0,0,0,0.1); border-radius: 8px; display: block; background-color: var(--color-white);}
li#result0 { margin-top: 15px;}

@media screen and (min-width: 767px ) {
  .search-suggestions { z-index: 4; width: 100%;}
}
.search-section { width: 100%!important; }
.search-suggestions li { display: block;margin: 0 0 10px 0;}
.search-suggestions #results-for  position: absolute; top: 10px; font-weight: bold;}
.search-suggestions a,
.search-suggestions #results-for {  display: block;}
.search-suggestions a:hover,
.search-suggestions a:focus { background-color: rgba(0, 0, 0, 0.1); outline: none;}
li#result0 { margin-top: 15px;}

#siguenos p { font-size: 1.125rem; color: var(--color-blue-buk)}
#siguenos a {margin-right:8px}
#siguenos .logos-siguenos{fill:var(--color-blue-buk);}
#siguenos a:hover .logos-siguenos{fill:#73A0DB;}
/*#newsletter {padding: 32px 16px;}

#newsletter form input[type=email], 
#newsletter form input[type=text],
#newsletter form select{ display: block; font-size: 1.125rem; line-height: 22px; margin: 24px 0 0 0; padding: 0px 16px; border: none; width: 100% !important; border-radius: 21px !important; color: #2f4daacc; background-color: var(--color-white);box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09); font-family: var(--font-family-body); font-weight: 400; height: 39px; }
#newsletter form .hs-error-msg { color: var(--color-error); }
#newsletter form input[type=email]:focus,form input[type=tel]:focus,form input[type=text]:focus,form select:focus,form textarea:focus {
     box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09); outline: 0}
#newsletter form label span:first-child { color: var(--color-error)!important; font-size: 0.875rem; font-weight: 400; line-height: 20px; font-family: var(--font-family-body);}
#newsletter form .inputs-list{ margin: 0px; padding-left: 0px; list-style-type: none; margin-top:10px;}
#newsletter form.hs-form a.hs-button.primary, 
#newsletter form input[type=submit] { width: 100%; cursor: pointer; display: block; margin: 24px auto 0; font-family: var(--font-family-title); font-size: 20px; color: var(--color-blue-buk); border: 2px solid var(--color-blue-buk); line-height: 32px; font-weight: 700; background-color: var(--wb-bg-modules); -webkit-transition: all ease .3s; -moz-transition: all ease .3s; transition: all ease .3s; border-radius: var(--radius-btn);padding: 0.5rem 1.25rem!important; line-height: 26px;}
#newsletter form.hs-form a.hs-button.primary:hover, 
#newsletter form input[type=submit]:hover {  color: white;  border: 2px solid var(--color-blue-buk); background: linear-gradient(180deg, #2F4DAA 0%, #2E4176 100%);}
#newsletter form input::placeholder { color: #2f4daacc!important ;}
#newsletter form input[type="checkbox" i] {margin-right: 5px;}
#newsletter form select {
    appearance: none;
    background: url(https://info.buk.co/hubfs/2023/Landing/pago%20UI%20kit/Vector-abajo.svg),white;
    background-position-x: 93%;
    background-position-y: center;
    background-repeat: no-repeat;
}*/

#newsletter {padding: 32px 16px;}

#newsletter form input[type=email], 
#newsletter form input[type=text],
#newsletter form select{ display: block; font-size: 1rem; line-height: 22px; margin: 8px 0 0 0; padding: 10px 16px; border: none; width: 100% !important; border-radius: 21px !important; color: #2f4daa94; background-color: var(--color-white); /* border: 0px solid var(--color-white); */ box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09); font-family: var(--font-family-body); font-weight: 400; height: 39px; }
#newsletter form .hs-error-msg { color: var(--color-error); }
#newsletter form input[type=email]:focus,form input[type=tel]:focus,form input[type=text]:focus,form select:focus,form textarea:focus {
     box-shadow: 0px 0px 14px 0px rgba(43, 60, 106, 0.09); outline: 0}

#newsletter form label span:first-child { color: var(--color-error)!important; font-size: 0.875rem; font-weight: 400; line-height: 20px; font-family: var(--font-family-body);}
#newsletter form .inputs-list{ margin: 0px; padding-left: 0px; list-style-type: none; margin-top:10px; color: white !important; font-size: 14px;}
#newsletter form.hs-form a.hs-button.primary, 
#newsletter form input[type=submit] { width: 100%!important; cursor: pointer; display: block; margin: 24px auto 0; font-family: var(--font-family-title); font-size: 20px; color: var(--color-white); border: 2px solid var(--color-white);font-weight: 600; background-color: transparent; -webkit-transition: all ease .3s; -moz-transition: all ease .3s; transition: all ease .3s;/* height: 39px;*/ border-radius: var(--radius-btn);padding: 0.5rem 1.25rem!important;}
#newsletter form.hs-form a.hs-button.primary:hover, 
#newsletter form input[type=submit]:hover {  color: var(--color-blue-buk);  border: 2px solid var(--color-white); background: var(--color-white)}
#newsletter form input::placeholder { color: #2f4daacc!important ;}
#newsletter form input[type="checkbox" i] {margin-right: 5px;}
#newsletter form select {
    appearance: none;
    background: url(https://info.buk.co/hubfs/2023/Landing/pago%20UI%20kit/Vector-abajo.svg),white;
    background-position-x: 93%;
    background-position-y: center;
    background-repeat: no-repeat;
}

#newsletter form .inputs-list .hs-form-booleancheckbox {color: #fff !important;}
#newsletter form label a, #newsletter form span a, #newsletter form .hs-form-booleancheckbox span a {color: #9ac6ff!important; }
#newsletter form label a:hover, #newsletter form span a:hover {color: var(--color-yellow-buk)!important; }

#categorias .accordion {background-color: var(--color-light-blue); color: var(--color-blue-buk); padding: 11px 32px;
    width: 100%; border: 0; text-align: left; outline: 0;font-size: 1.125rem; transition: .4s; font-weight: 400; line-height: 21px;
    font-family: var(--font-family-body); border-radius: 26px ; height:44px}
#categorias .accordion svg { float: right;  margin: 8px 0px; transition: 0.3s;}
#categorias .accordion.active svg { transform: rotate(180deg);}
#categorias .accordion.active {border-radius: 26px 26px 0px 0px;}
.panel {background-color: var(--wb-bg-modules); max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out;border-radius: 0px 0px 26px 26px;}
/*.panel ul{ list-style-type: none; padding-left: 0px;}*/

#categorias .panel li{font-family: var(--font-family-body); font-size: 18px;font-weight: 400; line-height: 22px; letter-spacing: 0em; text-align: left; color:var(--color-blue-buk);}
#categorias .panel li:hover{ background-color: var(--color-blue-buk); color: white;}
#categorias .panel li {padding:11px 32px;}
#categorias .panel ul {padding:0px}

/*@media screen and (min-width: 767px) {
  #categorias .accordion {  border-radius: 69px;}
}*/

/*@media screen and (min-width: 1020px) {
  #categorias .accordion { margin-bottom: 26px; margin-top: 32px;}}
*/


#aside_post hr {border-top: 0.063rem solid var(--color-light-blue);}
#aside_post .box-categorias__desktop ul{display: flex; flex-wrap: wrap; gap: 0.75rem 0.5rem;}



.box-categorias__desktop {background-color: var(--color-white);}
.box-categorias__desktop ul {display:flex; flex-wrap: wrap; gap:1.19rem 0.7rem;}
.box-categorias__desktop li {font-size: 18px;font-weight: 400;font-family:var(--font-family-title); line-height: 26px;color: var(--color-blue-buk); background-color: var(--color-light-blue); padding: 11px 30px; border-radius:var(--radius-btn);}
.box-categorias__desktop li:hover {color:white; background-color: var(--color-blue-buk); }



#img_cta img{ width: 160px; height: auto; display: block; margin: 24px auto;}
.box-cta {padding: 32px 20px; flex-direction: column; }
#img_cta p{ font-family: var(--font-family-body); font-size: 1.25rem; font-weight: 400; line-height: 1.1; letter-spacing: 0px; margin: 0px;}
#img_cta p strong { font-weight: 700;}
form { color: var(--font-color-primary); padding-left:5%; padding-right:5%;}
  form input[type="submit"] { font-family:'Source Sans Pro',sans-serif;  background: #FFBC2F; 
    border-radius: var(--radius-btn);  border: 2px solid #FFBC2F;  font-size: 1.25rem;
    padding: .5rem 1.25rem; /*   line-height: 12px; */ text-transform: capitalize; font-weight: 900;
    color: #fff; cursor: pointer; transition: all ease .3s; margin: 16px auto 0; display: inline-block; width:100%;}

  form input[type=submit]:hover {background-color: #fff;color: #fdb92f;}
  form fieldset .field { padding: 0 10px 8px; }
  form .input { margin: 8px 0; margin-right: 0px !important; }
  form input[type=text], 
  form input[type=email], 
  form select, 
  form fielset.form-columns-1 select.hs-input { width: 100% !important;}
  form input[type=text], 
  form input[type=email],
  form textarea,
  form select, 
  form input[type=tel] { padding: .5rem; border: 2px solid #d3e3f0; border-radius: var(--radius-btn);
                         font-size: 0.875rem; transition: box-shadow .2s ease-in-out; cursor: pointer; }
  form input[type=text]:focus, 
  form input[type=email]:focus, 
  form select:focus,
  form textarea:focus,
  form input[type=tel]:focus { box-shadow: 0 0 0 .25rem rgba(211, 227, 240, .45); outline: 0;}
  form .hs-error-msg { color: var(--color-error); }

  form textarea.hs-fieldtype-textarea { width: 100% !important; }
  form textarea { font-family: var(--font-family-body); }  

  /* form fieldset label span { font-size: 0.875rem; } */

  @media only screen and (min-width: 576px) {
    form fieldset { max-width: initial !important; }
  }

  @media only screen and (min-width: 767px){
    form fieldset .field { padding: 0 10px 14px; }
		form input[type="submit"] {width:auto!important; margin: auto; display: block;}
  }

.bg-section__formulario {display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; height: auto; padding: 70px 0 70px; background: #dae5fa; background: -moz-linear-gradient(top,  #dae5fa 0%, #f6f9fe 50%); background: -webkit-linear-gradient(top,  #dae5fa 0%,#f6f9fe 50%);background: linear-gradient(to bottom,  #dae5fa 0%,#f6f9fe 50%);  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dae5fa', endColorstr='#f6f9fe',GradientType=0 );}
.bg-formulario {background-color: var(--color-white);}

span.hs-form__field__checkbox__label-text a {color: #9ac6ff !important;}


/* para etiquetas audio*/
.box-audio {background: var(--color-blue-buk); border: 3px solid var(--color-blue-buk); border-radius: 60px; display:inline-flex}

#search_categoria_movil {position:sticky; top: 77px; background-color: var(--color-white); padding: 24px 0px 24px 0px; box-shadow: 0px 0px 12px rgba(43, 60, 106, 0.25); z-index: 10;}
#content_post img{ max-width: 100%; height: auto;}
#content_post iframe,
#content_post video,
#content_post .hs-embed-wrapper { max-width: 100%!important; max-height: initial!important;}

.btn-volver { text-decoration:none; font-size: 1.125rem; font-weight: 400px; color: var(--color-blue-buk); display: block; font-family:var(--font-family-title);}
.btn-volver:hover { text-decoration: underline; }


#cabecera-articulo .post-categoria a {text-decoration: none; color: var(--color-middle-blue-2); font-size: 0.875rem; font-weight: 400; font-family:var(--font-family-body)}
#cabecera-articulo .post-categoria a:hover {color: var(--color-middle-blue-1);}

.autor-text__superior {color: var(--wb-font-color-2); font-weight: 400!important; font-size: 0.875rem!important;}
.autor-avatar__superior {width:36px; height:36px; border-radius: 50%; object-fit: cover;}
.author-link__superior { color: var(--wb-font-color-2); text-decoration: none; font-weight: 400; font-size: 0.875rem;}
.author-link__superior:hover { text-decoration: underline;}

.autor-text__inferior{color: var(--color-blue-buk); font-weight: 400!important; font-size: 1.125rem!important;}
.autor-avatar__inferior {width:48px; height:48px; border-radius: 50%; object-fit: cover;}
.author-link__inferior { color: var(--color-blue-buk); text-decoration: none; font-weight: 400; font-size: 1.125rem; }
.author-link__inferior:hover { text-decoration: underline;}

hr {border-top: 0.063rem solid var(--color-light-blue)!important;}


.img-post {max-width: 100%; width:100%;/*height: auto;*/border: 0;vertical-align: middle; box-shadow: rgb(0 0 0 / 12%) 0rem 0rem 0.938rem;}

#content_post h1,
#content_post h2,
#content_post h3,
#content_post h4,
#content_post h5,
#content_post h6,
#content_post h1 span,
#content_post h2 span,
#content_post h3 span,
#content_post h4 span,
#content_post h5 span,
#content_post h6 span,
#content_post h1 strong,
#content_post h2 strong,
#content_post h3 strong,
#content_post h4 strong,
#content_post h5 strong,
#content_post h6 strong{font-weight:700; font-family: var(--font-family-title);line-height: 1.3; color: var(--color-blue-buk)!important; margin-bottom: 24px; margin-top: 24px} 
#cabecera-articulo h1,
#cabecera-articulo h1 span {font-size: 3rem!important; text-align: left!important;} /*lo encuentro muy grande 64 pixeles*/
#content_post h2,
#content_post h2 span,
#content_post h2 strong{font-size: 2rem!important; text-align: left!important;} /* nuevo 2024 - 32 pixeles cambia a 46*/
#content_post h3,
#content_post h3 span,
#content_post h3 strong{font-size: 1.5rem!important; text-align: left!important;} /* nuevo 2024 - 24 pixeles*/
#content_post h4,
#content_post h4 span,
#content_post h4 strong{font-size: 1.25rem!important; text-align: left!important;} /* nuevo 2024 - 20 pixeles*/
#content_post h5,
#content_post h5 span,
#content_post h5 strong{font-size: 1.125rem!important; text-align: left!important;} /* nuevo 2024 - 18pixeles*/
#content_post h6,
#content_post h6 span,
#content_post h6 strong{font-size: 1rem!important; text-align: left!important;} /* nuevo 2024 -16 pixeles*/
#content_post li h1,
#content_post li h2,
#content_post li h3,
#content_post li h4,
#content_post li h5,
#content_post li h6 {margin:0;}

#content_post strong,
#content_post strong span,
#content_post b span {font-weight:600; color: var(--wb-font-color-1); font-family: var(--font-family-body);}
#content_post a, 
#content_post p a,
#content_post a span{color: var(--color-blue-buk)!important; text-decoration: underline!important; font-weight: 600; transition: .3s;}
#content_post a:hover,
#content_post p a:hover,
#content_post a span:hover{color: var(--color-middle-blue-2)!important;}

#content_post p,
#content_post span,
#content_post p span,
#content_post ul li p,
#content_post ol li p{ font-weight: 400; font-family: var(--font-family-body); font-size: 1rem!important; line-height: 1.3; color: var(--wb-font-color-1); }


#content_post ul li  { color: var(--wb-font-color-1); font-size: 1rem; font-weight: 400; line-height: 1.3; list-style: none; padding-bottom: 1rem;/* display: flex; align-items: baseline;*/}
#content_post ol li { color: var(--wb-font-color-1); font-size: 1rem; font-weight: 400; line-height: 1.3; list-style: none; padding-bottom: 1rem;/* display: flex; align-items: baseline;*/}

#content_post ol li strong,
#content_post ol li p strong,
#content_post ol li b,
#content_post ol li p b {font-weight:600; font-family: var(--font-family-body); font-size: 1rem;}

#content_post ul li::before { content: "\2022"; color: var(--color-blue-buk); font-weight: bolder; display: inline-block; width: 1rem;  margin-left: 1rem; color: var(--color-blue-buk);}
#content_post ol li::before { content: "\2022"; color: var(--color-blue-buk); display: inline-block; width: 1rem;  margin-left: 1rem;}

#content_post ol { counter-reset: item; /*padding-left: 1rem;*/}
#content_post li::before { content: counter(item) ". ";  counter-increment: item; color: var(--color-blue-buk); margin-left: 1rem; font-weight: 700;}


#blog-post aside .cta .hs_cos_wrapper {position: relative;height:50%;}

/*@media only screen and (min-width: 767px) {
 #cabecera-articulo h1,
#cabecera-articulo h1 span {font-size: 4rem!important;} 
}*/
  #blog-post aside .cta {position: relative;height:56%;}
@media only screen and (min-width: 1024px) {
  #blog-post aside .cta {position: relative;height:96%;}
  #blog-post aside .cta .hs_cos_wrapper {position: relative;height:70%;}
  #blog-post aside #img_cta {position:sticky; top: 6.875rem;}
   #cabecera-articulo h1,
#cabecera-articulo h1 span {font-size: 4rem!important;} 
}



.box-comentarios #comentarios form input[type="submit"] { /*font-family:'Source Sans Pro',sans-serif;  background: var(--color-blue-buk)!important; 
  border-radius: var(--radius-btn);  border: 2px solid var(--color-blue-buk); font-size: 1.25rem;  padding: .5rem 1.25rem; 
  text-transform: capitalize; font-weight: 600; color: #fff!important; cursor: pointer; transition: all ease .3s; display: block;*/
background: var(--bg-cta-1); border-color: var(--bg-cta-1); color: var(--color-white); font-size: 1.25rem; border-width: 0; border-style: none;
border-radius: var(--radius-btn); cursor: pointer; display: inline-block; font-family: var(--font-family-title);
       font-weight: 600; padding: 0.688rem 1.875rem; text-align: center; transition: .3s; width: 100%;
}

.box-comentarios #comentarios form input[type=submit]:hover {background: var(--bg-cta-1-hover); color: var(--color-white);
  
  /*background-color: #fff!important; color: var(--color-blue-buk)!important;*/}

.box-comentarios {width: 100%; /*padding: 20px 25px;*/}
.comment-from h4{color: #2f48a7;}
/*section .post-footer { padding: 30px;}*/
.comment-body p {font-size: 16px;}
.comment-reply-to {color: #3c75bdb5!important; margin-bottom: 15px;}
#comentarios form { background-color: white; border-radius: var(--radius-16); padding:32px; margin:auto; box-shadow: 0px 0px 16px 3px rgba(43, 60, 106, 0.12);}
#comentarios form textarea {padding: 0.5rem;
    border: 2px solid #d3e3f0; border-radius: var(--radius-btn); font-size: .875rem; transition: box-shadow .2s ease-in-out; width: 100%}
#comentarios form li {list-style: none;}
#comentarios .comment.depth-0 {border-top-color: #3c75bd4a;}

/*@media screen and (min-width: 767px) {
.box-comentarios { padding: 0px 55px 40px;}
}*/


.btn1-blog{width: 100%;display: inline-block; font-family:var(--font-family-title); padding: 7.75px 21px; background-color: var(--color-white) ; color: var(--color-blue-buk); text-align: center; font-size: 1.125rem; font-weight: 700; border-radius: 3.038rem; border: 1.40909px solid var(--color-blue-buk); line-height: 26px;}
.btn1-blog:hover{ background: var(--bg-cta-2-hover); color: var(--color-white); text-align: center;border: 1.40909px solid var(--color-blue-buk);}

/*#relacionados {background-color: white; padding: 60px 0px 0px 0px}*/
#contenedor_articulos_relacionados {display: flex; flex-wrap: wrap; justify-content: center;}
/*#relacionados .title {padding-bottom: 30px; text-align:center;}*/
#contenedor_articulos_relacionados .card-articulo { width: 100%; min-height: 470px; margin-bottom: 20px; border-radius: 11px 11px 15px 15px;}
#contenedor_articulos_relacionados .img-articulo {width: 100%; border-radius: 11px 11px 0px 0px;}
/*#contenedor_articulos_relacionados .card-articulo .article-category a {color: var(--color-middle-blue-2)!important; }*/
#contenedor_articulos_relacionados .boxer-text h4 { font-size: 1.125rem; font-weight: 600; line-height: 25px; letter-spacing: 0px; /*color: var(--color-blue-buk);*/ transition: .3s; }
/*#contenedor_articulos_relacionados .boxer-text .descripcion { font-size: 1rem; font-weight: 400; line-height: 1.3; color: #354256; margin: 0px 0px 25px 0px;}*/
@media only screen and (min-width: 767px) {
	.btn1-blog{width: auto;}
		.box-comentarios #comentarios form input[type="submit"] {width:auto!important; margin: auto; display: block;}
#contenedor_articulos_relacionados {/*display: flex; flex-wrap: wrap;*/ justify-content: space-between;}
#contenedor_articulos_relacionados .card-articulo { width: 31%;}
}