@charset "UTF-8";
.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.tabs-container .tab {
  display: inline-block;
  background-color: transparent;
  color: #f4f7e9;
  text-transform: uppercase;
  font-weight: 300;
  padding: 5px;
  text-align: center;
  font-size: 0.85rem;
  border-bottom: 6px solid #123549;
  width: 95%;
  margin: 1px;
}
@media (max-width: 40rem) {
  .tabs-container .tab {
    font-size: 0.8rem;
    padding: 5px;
    width: fit-content;
  }
}
.tabs-container .tab.active, .tabs-container .tab:hover {
  color: #f4f7e9;
  border-bottom: 6px solid #FF1A6A;
}

.tabs-content {
  max-width: 1200px;
  margin: 15px auto;
}

.programacion {
  display: none;
  padding-top: 25px;
  padding-bottom: 25px;
}
.programacion .row {
  border-bottom: 1px solid #E7DE74;
}
.programacion .row:hover, .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.programacion .row:hover h4, .programacion .row.active h4 {
  color: #FF1A6A;
}
.programacion img {
  max-height: 120px;
}
.programacion h4 {
  padding: 5px;
}
.programacion .horario {
  padding: 5px;
  text-align: right;
  display: block;
  margin-top: 15px;
}
.programacion.active {
  display: block;
}

.programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
  font-size: 0.7rem;
  padding: 0.5rem;
}

.header {
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
}
@media (max-width: 64rem) {
  .header {
    background-color: #072034;
  }
}
.header .logo-container {
  z-index: 1500;
}
@media (max-width: 64rem) {
  .header .logo-container {
    flex: 1 0 auto;
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
.header .logo-container .logo-header {
  padding: 10px 0;
  display: flex;
}
@media (max-width: 64rem) {
  .header.active {
    background-color: #123549 !important;
  }
}
@media (max-width: 64rem) {
  .header {
    padding: 10px;
    z-index: 2000;
    top: 0;
    transition: 0.3s all ease;
  }
}
.header .nav-container, .header .logo-container, .header .search-container, .header .social {
  padding: 1rem 0.5rem;
}
@media (max-width: 64rem) {
  .header .nav-container, .header .logo-container, .header .search-container, .header .social {
    padding: 0 0.5rem;
  }
}
.header .social {
  display: flex;
  align-items: center;
  max-width: 14%;
  flex: 1 0 auto;
}
.header .social img {
  width: 18px;
}
.header .nav-container {
  flex: 1 0 auto;
  max-width: 100%;
}
@media (max-width: 64rem) {
  .header .nav-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100vw;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    padding: 0;
  }
}
.header .nav-container.show .nav {
  height: 100vh;
  opacity: 1;
  margin-top: 20px;
  overflow-y: auto;
}
.header .nav-container.show ~ .fixed-banner {
  display: none;
}
.header .nav-container .nav {
  text-align: right;
  margin-bottom: 0;
}
.header .nav-container .nav .link {
  list-style: none;
  display: inline-block;
  padding: 5px 6px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .link {
    padding: 0;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .link + .link {
    margin-top: 10px;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .link + .desp {
    margin-top: 10px !important;
  }
}
.header .nav-container .nav .link a {
  display: inline-block;
  text-decoration: none;
  color: #f4f7e9;
  font-size: 0.9em;
  display: block;
  margin: 2px;
  text-transform: none;
  font-weight: bold;
}
.header .nav-container .nav .link a :hover {
  color: #61CDB8;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .link a {
    margin: 0;
    padding: 5px 15px;
    text-align: left;
    font-size: 1rem;
  }
}
.header .nav-container .nav .link:hover a {
  color: #61CDB8;
}
.header .nav-container .nav .menu {
  position: relative;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0px;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu:hover a {
    background: none !important;
  }
}
.header .nav-container .nav .menu a {
  padding: 5px 15px;
  border-radius: 20.23px;
  color: #f4f7e9;
  font-weight: 600;
  background-image: url(../imags/icons/down-white.svg);
  background-repeat: no-repeat;
  background-position: 95%;
  padding-right: 25px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu a {
    padding: 8px 15px;
  }
}
.header .nav-container .nav .menu a:hover a {
  background-image: url(../imags/icons/up-turquoise.svg);
  fill: #FF1A6A;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu > .acc-head-mobile {
    background: none;
    display: flex;
    justify-content: space-between;
    padding-right: 0;
  }
}
.header .nav-container .nav .menu > .acc-head-mobile:hover {
  background-image: none;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu > .acc-head-mobile:after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 6px;
    background-image: url("../imags/icons/ic-chevron-down-w.svg");
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 20px;
    transition: 0.3s all ease;
  }
}
.header .nav-container .nav .menu.active .primary {
  max-height: 100vh;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu .primary {
    width: auto;
    padding: 0 !important;
    overflow: hidden;
    max-height: 0;
    margin: 0 !important;
    transition: max-height 0.3s ease;
    padding-left: 20px;
  }
}
.header .nav-container .nav .menu.desp {
  padding-bottom: 25px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu.desp {
    padding-bottom: 0;
  }
}
.header .nav-container .nav .menu:not(.mega-menu) .link {
  display: block;
}
.header .nav-container .nav .menu:not(.mega-menu) .link a {
  padding: 5px 15px;
  border-radius: 20.23px;
  color: #f4f7e9;
  font-weight: 600;
  display: inline-block;
}
.header .nav-container .nav .menu:not(.mega-menu) .link a:hover {
  color: #123549;
  background-color: #61CDB8;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu:not(.mega-menu) .link a:hover {
    background: none;
    color: #61CDB8;
  }
}
.header .nav-container .nav .menu .submenu {
  list-style: none;
  position: absolute;
  top: 55px;
  display: none;
  padding: 0;
  margin: 0;
  width: 250px;
  right: -25px;
  background-color: #123549;
  border-radius: 12px;
  text-align: left;
  padding: 10px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu .submenu {
    width: 95%;
    position: relative;
    top: unset;
    margin: 15px auto;
  }
}
.header .nav-container .nav .menu .submenu:before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  display: block;
  border-bottom: 25px solid #123549;
  margin-top: -25px;
  margin-left: 185px;
  top: 10px;
  position: absolute;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu .submenu .link a {
    padding: 5px 0 5px 10px;
    text-align: left;
    width: 100%;
    font-size: 14px;
  }
}
.header .nav-container .nav .menu.highlight {
  border-radius: 20.23px;
  color: #123549;
  padding-bottom: 25px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu.highlight {
    padding-bottom: 0px;
  }
}
.header .nav-container .nav .menu.highlight:hover a {
  color: #FF1A6A;
}
.header .nav-container .nav .menu.highlight a {
  padding: 5px 15px;
  background-color: #E7DE74;
  border-radius: 20.23px;
  color: #123549;
  font-weight: 600;
  background-image: url(../imags/icons/down-blue.svg) !important;
  background-repeat: no-repeat;
  background-position: 95%;
  padding-right: 25px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu.highlight a {
    padding: 8px 15px;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu.highlight a.acc-head-mobile {
    background: none !important;
    background-repeat: no-repeat !important;
    background-color: #E7DE74 !important;
    display: flex;
    justify-content: space-between;
  }
  .header .nav-container .nav .menu.highlight a.acc-head-mobile:after {
    content: "";
    width: 20px;
    height: 20px;
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 20px;
    background-image: url(../imags/icons/ic-chevron-right-b.svg) !important;
    transform: rotate(-270deg);
  }
}
.header .nav-container .nav .menu.highlight:hover a {
  background-image: url(../imags/icons/up-pink.svg) !important;
  fill: #FF1A6A;
}
.header .nav-container .nav .menu.highlight.active .yellow {
  max-height: 100vh;
  margin-top: 15px;
}
.header .nav-container .nav .menu .yellow {
  right: -25px;
  background-color: #E7DE74;
  border-radius: 12px;
  text-align: left;
  padding: 10px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .menu .yellow {
    right: 0;
    text-align: center;
    display: block;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
    width: 100%;
  }
}
.header .nav-container .nav .menu .yellow .link {
  color: #FF1A6A;
  padding: 5px 10px;
  border-radius: 20.23px;
  display: block;
  width: fit-content;
  text-align: left;
  box-sizing: border-box;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .menu .yellow .link {
    margin: 0;
    width: 100%;
  }
}
.header .nav-container .nav .menu .yellow .link a {
  color: #FF1A6A;
  background-color: transparent;
  background-image: none !important;
}
.header .nav-container .nav .menu .yellow .link:hover a {
  background-color: #FF1A6A;
  color: #E7DE74;
  background-image: none;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .menu .yellow .link:hover a {
    color: #FF1A6A;
  }
}
.header .nav-container .nav .menu .yellow:before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  display: block;
  border-bottom: 25px solid #E7DE74;
  margin-top: -25px;
  margin-left: 185px;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .menu .yellow:before {
    display: none;
  }
}
.header .nav-container .nav .menu:hover a {
  background-image: url(../imags/icons/up-turquoise.svg);
}
.header .nav-container .nav .menu:hover .submenu {
  display: block;
}
.header .nav-container .nav .menu:hover .submenu a {
  background-image: none;
}
.header .nav-container .nav .links-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  gap: 0 80px;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .links-list .link:not(.desp) a {
    margin-top: 10px;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .links-list .link:not(.desp) a {
    padding: 5px 0 5px 10px !important;
    font-size: 14px;
  }
}
.header .nav-container .nav .mega-menu {
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu {
    padding: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
}
.header .nav-container .nav .mega-menu a {
  padding: 5px 15px;
  background-image: url(../imags/icons/down-white.svg);
  background-repeat: no-repeat;
  background-position: 95%;
  padding-right: 25px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu a {
    display: flex;
    background: none !important;
    justify-content: space-between;
    padding-right: 0;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu > .acc-head-mobile:after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 6px;
    background-image: url("../imags/icons/ic-chevron-down-w.svg");
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 20px;
    transition: 0.3s all ease;
  }
}
.header .nav-container .nav .mega-menu:hover a {
  background-image: url(../imags/icons/up-turquoise.svg);
  fill: #FF1A6A;
}
.header .nav-container .nav .mega-menu.active .primary {
  max-height: 100vh;
}
.header .nav-container .nav .mega-menu .submenu {
  list-style: none;
  position: absolute;
  top: 60px;
  display: none;
  left: 0;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .submenu {
    width: 100%;
    position: relative;
    background-color: #072034;
    top: unset;
    margin: 0;
    display: block;
  }
}
.header .nav-container .nav .mega-menu .primary {
  background-color: #123549;
  border-radius: 12px;
  text-align: left;
  padding: 40px;
  width: 560px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .primary {
    width: auto;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-left: 20px;
  }
}
.header .nav-container .nav .mega-menu .primary .link {
  color: #f4f7e9;
  padding: 5px 0;
  display: block;
  width: fit-content;
  box-sizing: border-box;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .mega-menu .primary .link {
    text-align: center;
    margin: 0;
    padding: 0;
    flex: 1 0 auto;
  }
}
.header .nav-container .nav .mega-menu .primary .link a {
  color: #f4f7e9;
  padding: 5px 10px;
  background-color: transparent;
  border-radius: 20.23px;
  background-image: none;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .mega-menu .primary .link a {
    padding: 7px 10px 7px 36px;
  }
}
.header .nav-container .nav .mega-menu .primary .link .sub-menu a {
  background: none !important;
}
.header .nav-container .nav .mega-menu .primary .link.bottom {
  position: absolute;
  bottom: 28px;
  left: 52%;
}
@media (max-width: 40rem) {
  .header .nav-container .nav .mega-menu .primary .link.bottom {
    position: relative;
    left: unset;
    margin-top: 50px;
  }
}
.header .nav-container .nav .mega-menu .primary .link .links-list {
  position: relative;
}
.header .nav-container .nav .mega-menu .primary .link .links-list .bottom {
  position: absolute;
  bottom: 28px;
  left: 50%;
}
.header .nav-container .nav .mega-menu .primary .link:hover a {
  background-color: #61CDB8;
  color: #123549;
}
.header .nav-container .nav .mega-menu .primary::before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  display: block;
  border-bottom: 25px solid #123549;
  margin-top: -25px;
  margin-left: 50px;
  top: 10px;
  position: absolute;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .primary::before {
    display: none;
  }
}
.header .nav-container .nav .mega-menu .desp {
  position: relative;
  flex: 0 1 220px;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .desp {
    flex: 1 0 100%;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .desp + .desp {
    margin-top: 10px;
  }
}
.header .nav-container .nav .mega-menu .desp > a {
  display: flex;
}
.header .nav-container .nav .mega-menu .desp > a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 6px;
  background-image: url("../imags/icons/ic-chevron-right-w.svg") !important;
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 20px;
}
.header .nav-container .nav .mega-menu .desp > a:not(.acc-head-mobile):hover:after {
  background-image: url("../imags/icons/ic-chevron-right-b.svg") !important;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .desp > a:not(.acc-head-mobile) {
    display: none;
  }
}
.header .nav-container .nav .mega-menu .desp:hover .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .nav-container .nav .mega-menu .desp:hover .sub-menu li {
  background: none;
  border-radius: 0;
  padding: 0;
}
.header .nav-container .nav .mega-menu .desp .acc-head-mobile {
  display: none;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .desp .acc-head-mobile {
    display: flex;
    justify-content: space-between;
    padding: 5px 0 5px 10px;
    text-align: left;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .desp .acc-head-mobile:after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 6px;
    background-image: url("../imags/icons/ic-chevron-down-w.svg");
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 20px;
    transition: 0.3s all ease;
    transform: rotate(270deg);
  }
}
.header .nav-container .nav .mega-menu .desp.active .acc-head-mobile:after {
  transform: rotate(180deg);
}
.header .nav-container .nav .mega-menu .sub-menu {
  display: none;
  position: absolute;
  list-style-type: none;
  z-index: 30;
  left: 100%;
  top: 5px;
  min-width: 200px;
  width: 100%;
  padding: 20px 10px;
  border-radius: 15px;
  background: #072034;
  transition: 0.3s all ease;
}
.header .nav-container .nav .mega-menu .sub-menu li a {
  padding: 10px 20px;
  color: #f4f7e9 !important;
  background: none;
  font-size: 13px;
  line-height: 1.4;
  transition: 0.3s all ease;
}
.header .nav-container .nav .mega-menu .sub-menu li a:hover {
  color: #61CDB8 !important;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .sub-menu li:first-child {
    padding-top: 10px !important;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .sub-menu li:last-child {
    padding-bottom: 10px !important;
  }
}
.header .nav-container .nav .mega-menu .sub-menu .link-mobile {
  display: none !important;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .sub-menu .link-mobile {
    display: block !important;
    color: #61CDB8 !important;
    font-family: "Poppins-Bold", sans-serif;
  }
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu .sub-menu.accordion-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
    display: block;
    position: relative;
    left: 0;
    padding: 0;
    background-color: #072034;
  }
}
.header .nav-container .nav .mega-menu .sub-menu.accordion-content.active {
  max-height: 600px;
}
.header .nav-container .nav .mega-menu:hover a {
  color: #61CDB8;
}
@media (max-width: 64rem) {
  .header .nav-container .nav .mega-menu:hover a {
    color: #ffffff;
  }
}
.header .nav-container .nav .mega-menu:hover .submenu {
  display: block;
}
.header .nav-container .nav.mobile-menu {
  display: none;
  background-color: #123549;
  width: 80vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 64rem) {
  .header .nav-container .nav {
    text-align: center;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    margin-block-start: 0;
  }
  .header .nav-container .nav .link {
    display: block;
  }
  .header .nav-container .nav:hover .mobile-menu {
    display: block;
  }
  .header .nav-container .nav .links-list {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.header .mobile-menu-trigger {
  display: none;
  width: 11%;
  background-image: url(../imags/icons/trigger-menu.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
}
.header .mobile-menu-trigger:hover {
  background-image: url(../imags/icons/trigger-menu-hover.svg);
  fill: #FF1A6A;
}
@media (max-width: 64rem) {
  .header .mobile-menu-trigger {
    display: flex;
  }
}
.header .mobile-menu-trigger.close {
  z-index: 1000;
  background-image: url(../imags/icons/close.svg);
  background-size: 18px;
}
.header .search-container {
  z-index: 1500;
}
@media (max-width: 64rem) {
  .header .search-container:not(.mobile) {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
.header .search-container .search-trigger-mobile {
  display: none;
  width: 40px;
  height: 60px;
  background-image: url(../imags/icons/search-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: 10px;
}
.header .search-container .search-trigger-mobile:hover {
  background-image: url(../imags/icons/search-pink.svg);
  fill: #FF1A6A;
}
@media (max-width: 64rem) {
  .header .search-container .search-trigger-mobile {
    display: flex;
  }
}
.header .search-container .search-box {
  margin-top: 22px;
  text-align: right;
}
.header .search-container .search-box .search {
  padding: 10px;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  background-color: #F5F8EA;
  background-image: url(../imags/icons/search-blue.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 94% 10px;
  font-size: 0.8rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 64rem) {
  .header .search-container .search-box {
    display: none;
  }
  .header .search-container .search-box .search-trigger-mobile {
    display: flex;
  }
}
.header .search-container .search-box.mobile {
  text-align: center;
}
.header .search-container .search-box.mobile .search {
  background-color: #072034;
  padding: 15px;
  width: 80%;
  margin: 5px auto;
  background-image: url(../imags/icons/search-white.svg);
  background-repeat: no-repeat;
  background-size: 34px;
  background-position: 94% 5px;
  color: #f4f7e9;
}
.header .search-container .search-box.mobile .search::-webkit-input-placeholder { /* Edge */
  color: #f4f7e9;
}
.header .search-container .search-box.mobile .search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #f4f7e9;
}
.header .search-container .search-box.mobile .search::placeholder {
  color: #f4f7e9;
}
@media (max-width: 64rem) {
  .header .search-container .search-box.mobile {
    display: block;
  }
}
.header .fixed-banner {
  display: none;
  background-color: #123549;
  height: 12vh;
  position: absolute;
  left: 0;
  right: 0;
  top: 77px;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.header .fixed-banner .banner-pic {
  padding: 0;
}
.header .fixed-banner .banner-pic .thumb {
  max-height: 10vh;
  padding: 0.5rem;
  border-radius: 12px;
}
.header .fixed-banner .btn {
  display: block;
  padding: 1rem;
  margin-top: 5px;
}
.header .fixed-banner .btn .icon-right img {
  height: 20px;
}
.header .fixed-banner .banner-title {
  padding: 0.5rem;
  font-size: 1em;
}
@media (max-width: 64rem) {
  .header .fixed-banner .banner-title {
    font-size: 0.9em;
  }
}
.header .fixed-banner.banner-link {
  z-index: 100;
  height: auto;
}
.header .fixed-banner.banner-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  background-color: #FF1A6A;
}
@media (max-width: 40rem) {
  .header .fixed-banner.banner-link a {
    gap: 10px;
  }
}
.header .fixed-banner.banner-link a .btn, .header .fixed-banner.banner-link a .live {
  padding: 3px 6px;
  background-color: #f4f7e9;
  color: #FF1A6A;
  border-radius: 10px;
  font-family: "Poppins-Bold", sans-serif;
  font-size: 14px;
  margin-top: 0;
  position: relative;
}
@media (max-width: 40rem) {
  .header .fixed-banner.banner-link a .btn, .header .fixed-banner.banner-link a .live {
    font-size: 11px;
    padding: 3px 4px;
  }
}
.header .fixed-banner.banner-link a .live:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #f4f7e9;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: -30px;
  top: 4px;
}
@media (max-width: 40rem) {
  .header .fixed-banner.banner-link a .live:before {
    width: 10px;
    height: 10px;
    left: -16px;
    top: 8px;
  }
}
.header .fixed-banner.banner-link a p {
  margin: 0;
  font-size: 16px;
  color: #f4f7e9;
}
@media (max-width: 40rem) {
  .header .fixed-banner.banner-link a p {
    font-size: 14px;
  }
}
.header .fixed-banner.banner-link a .bold {
  font-family: "Poppins-Bold", sans-serif;
}
.header.fixed {
  background-color: #072034;
  position: fixed;
}
.header.fixed .nav-container {
  z-index: 500;
  padding-bottom: 0;
}
.header.fixed .fixed-banner {
  display: block;
}
.header.fixed .social {
  padding-top: 30px;
}
.header .social {
  text-align: center;
}
.header .social .social-link {
  display: inline-flex;
  padding: 3px;
  margin: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}
.header .social .social-link:hover img {
  fill: #FF1A6A;
}
@media (max-width: 64rem) {
  .header .social {
    padding: 15px;
    display: none;
  }
}
.header .social.mobile {
  display: none;
}
@media (max-width: 64rem) {
  .header .social.mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
}

/* INNER PAGES TOP NAVIGATION PILLS*/
.inner-nav-container .inner-menu-trigger {
  padding: 10px;
  padding-right: 35px;
  color: #f4f7e9;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  border-bottom: #123549 1px solid;
  position: relative;
}
.inner-nav-container .inner-menu-trigger:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../imags/icons/open-menu.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  right: 15px;
  top: 14px;
  transition: 0.3s all ease;
}
.inner-nav-container .inner-menu-trigger.active:after {
  transform: rotate(-180deg);
}
.inner-nav-container .inner-menu-trigger.close {
  background-image: url(../imags/icons/close-menu.svg);
  background-color: #123549;
  border-bottom: #072034 1px solid;
}
.inner-nav-container .inner-nav {
  width: 100%;
  max-width: 1200px;
  margin: 45px auto;
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
}
@media (max-width: 64rem) {
  .inner-nav-container .inner-nav {
    display: block;
    background-color: #123549;
    margin: unset;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .inner-nav-container .inner-nav.active {
    max-height: 500px;
  }
}
.inner-nav-container .inner-nav .pill {
  display: inline-flex;
  margin: 2px 5px;
  color: #f4f7e9;
  font-size: 0.85rem;
}
@media (max-width: 64rem) {
  .inner-nav-container .inner-nav .pill {
    width: fit-content;
    position: relative;
    margin: 15px auto;
    display: block;
  }
}
.inner-nav-container .inner-nav .pill a {
  padding: 5px 10px;
}
.inner-nav-container .inner-nav .pill.active a, .inner-nav-container .inner-nav .pill:hover a {
  background-color: #61CDB8;
  color: #123549;
  border-radius: 12px;
  padding: 5px 10px;
}
.inner-nav-container .inner-nav .pill.highlight a {
  padding: 5px 10px;
  background-color: #E7DE74;
  border-radius: 12px;
  color: #123549;
}
.inner-nav-container .inner-nav .pill.highlight a:hover {
  background-color: #61CDB8;
  color: #123549;
}
.inner-nav-container .inner-nav .pill.active.highlight a {
  background-color: #61CDB8;
  color: #123549;
  border-radius: 12px;
  padding: 5px 10px;
}
.inner-nav-container .inner-nav .pill.menu {
  position: relative;
}
@media (max-width: 64rem) {
  .inner-nav-container .inner-nav .pill.menu {
    width: 100%;
    margin: 0;
    padding-bottom: 0px;
  }
}
.inner-nav-container .inner-nav .pill.menu a {
  padding: 5px 10px;
  border-radius: 20.23px;
  background-image: url(../imags/icons/down-white.svg);
  background-repeat: no-repeat;
  background-position: 95%;
  padding-right: 25px;
}
.inner-nav-container .inner-nav .pill.menu a:hover a {
  background-image: url(../imags/icons/up-turquoise.svg);
  fill: #FF1A6A;
}
.inner-nav-container .inner-nav .pill.menu .submenu {
  list-style: none;
  position: absolute;
  top: 32px;
  display: none;
  padding: 0;
  padding-top: 15px;
  margin: 0;
  width: 90%;
  background-color: #072034;
}
@media (max-width: 64rem) {
  .inner-nav-container .inner-nav .pill.menu .submenu {
    width: 100%;
    position: relative;
    top: unset;
    margin: 15px auto;
    padding-top: 0px;
  }
}
.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #072034;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.inner-nav-container .inner-nav .pill.menu:hover a {
  background-image: none;
}
.inner-nav-container .inner-nav .pill.menu:hover .submenu {
  display: block;
}
.inner-nav-container .inner-nav .pill.menu:hover .submenu a {
  background-image: none;
  padding: 5px;
  display: block;
  border-radius: 0;
}
.inner-nav-container .inner-nav .pill.menu:hover .submenu a:hover {
  border-bottom: 1px solid #61CDB8;
}

.footer {
  background-color: #123549;
  color: #f4f7e9;
  padding: 15px;
}
@media (max-width: 64rem) {
  .footer {
    padding: 20px;
  }
}
.footer .logo-container {
  padding: 0;
}
@media (max-width: 64rem) {
  .footer .logo-container {
    margin-bottom: 15px;
  }
}
.footer .nav {
  margin: 1rem 0;
  padding: 0;
}
.footer .nav .link-item {
  display: inline-block;
}
.footer .nav .link-item .link {
  color: #f4f7e9;
  display: block;
  padding: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  border-radius: 12px;
}
.footer .nav .link-item .link:hover {
  background-color: #FF1A6A;
}
@media (max-width: 64rem) {
  .footer .nav .link-item {
    display: block;
  }
}
.footer .nav .link-item .submenu {
  list-style: none;
  position: absolute;
  bottom: 30px;
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
  left: 0;
  background-color: #072034;
  border-radius: 12px;
  text-align: left;
  padding: 10px;
}
@media (max-width: 64rem) {
  .footer .nav .link-item .submenu {
    width: 95%;
    position: relative;
    top: unset;
    margin: 15px auto;
  }
}
@media (max-width: 64rem) {
  .footer .nav .link-item .submenu .link a {
    padding: 5px 0 5px 10px;
    text-align: left;
    width: 100%;
    font-size: 11px;
  }
}
@media (max-width: 64rem) {
  .footer .nav .link-item .submenu {
    display: block;
    position: relative;
    background-color: transparent;
    margin: 0 0 10px;
    padding: 0;
    border-radius: 0;
    bottom: inherit;
    right: inherit;
    width: auto;
  }
}
.footer .nav .menu {
  position: relative;
}
.footer .nav .menu:hover .submenu {
  display: block;
}
.footer .social {
  text-align: right;
  /* @media (max-width: $sm-max) {
       padding: 5px;
    }*/
}
.footer .social .social-link {
  display: inline-flex;
  padding: 3px;
  margin: 3px;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .social .social-link:hover img {
  fill: #FF1A6A;
}
.footer .stores .store-link {
  padding: 5px;
  margin: 3px;
  display: inline-flex;
}

/* GLOBALS - GENERICS */
.btn {
  font-family: "Poppins", sans-serif;
  border-radius: 20.23px;
  padding: 8px 25px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: normal;
  width: fit-content;
}
.btn.primary {
  background-color: #FF1A6A;
  color: #ffffff;
}
.btn.primary:hover {
  background-color: #123448;
  color: #FFFFFF;
}
.btn.secondary {
  background-color: #E7DE74;
  color: #123448;
}
.btn.secondary:hover {
  background-color: #FF1A6A;
  color: #E7DE74;
}
.btn.tertiary {
  background-color: #61CDB8;
  color: #123448;
}
.btn.tertiary:hover {
  background-color: #123448;
  color: #61CDB8;
}
.btn.right {
  max-width: 150px;
  text-align: center;
  height: fit-content;
  margin-top: 0.9rem;
  font-weight: bold;
}
@media (max-width: 64rem) {
  .btn.right {
    margin-top: 0.7rem;
    margin-left: 15px;
    margin-bottom: 15px;
    /*display: none;*/
  }
}
.btn.back {
  background-color: #123448;
  color: #FFFFFF;
}
.btn.back:hover {
  background-color: #FF1A6A;
  color: #ffffff;
}
.btn .icon-right {
  margin-left: 10px;
  display: inline-block;
  margin-bottom: -2px;
}
.btn .icon-right img {
  height: 15px;
}
.btn .icon-left {
  margin-right: 10px;
  display: inline-flex;
  margin-bottom: -2px;
}

/*@import 'variables/swiper-variables.scss';*/
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #072034;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 25%;
  height: 100%;
  position: relative;
  transition-property: transform;
  /**/
  background-size: cover;
  background-position: center right;
  /* NO Valido 

  Align slide text vertically
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-box-align: left;
  -ms-flex-align: left;
  -webkit-align-items: left;
  align-items: left; */
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide .caption {
  padding: 2.3em;
}
@media (max-width: 64rem) {
  .swiper-slide {
    background: none !important;
  }
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Auto Height */
.swiper-fixed-height,
.swiper-fixed-height .swiper-slide {
  height: 85vh;
}
.swiper-fixed-height .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-thumbs {
  width: 95%;
  min-height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  margin: 5px auto;
  margin-top: -200px;
}
@media (max-width: 40rem) {
  .swiper-thumbs {
    margin-top: -180px;
  }
}
.swiper-thumbs .swiper-slide {
  max-width: 24%;
  max-height: 300px;
  opacity: 0.9;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .swiper-thumbs .swiper-slide {
    max-width: 100%;
  }
}
@media (max-width: 64rem) {
  .swiper-thumbs .swiper-slide {
    max-width: 100%;
  }
}
.swiper-thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.swiper-thumbs h4 {
  font-size: 16px;
  text-align: left;
  padding: 20px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  margin-bottom: 0;
  border-radius: 0 0 12px 12px;
}
.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #66D7BD;
}
@media (max-width: 40rem) {
  .swiper-thumbs .swiper-slide-thumb-active {
    border: 5px solid #66D7BD;
  }
}
.swiper-thumbs .swiper-slide-thumb-active img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.slider-hero {
  height: 100vh;
  top: 0px;
  /* background-position: top center;*/
  position: relative;
}
@media (max-width: 40rem) {
  .slider-hero {
    background-position: top right;
    height: 90vh;
  }
}
.slider-hero .overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.2) 100%);
}
.slider-hero .caption {
  margin-top: 150px;
  color: #fff;
  z-index: 50;
  width: 40vw;
  position: relative;
}
@media (max-width: 64rem) {
  .slider-hero .caption {
    position: absolute;
    width: 70vw;
    top: 5vh;
  }
}
.slider-hero .caption .featured-title-lg {
  line-height: 110%;
}
.slider-hero .caption p, .slider-hero .caption .description {
  margin-bottom: 35px;
}
.slider-hero .caption .btn {
  display: block;
  margin: 0;
}
@media (max-width: 40rem) {
  .slider-hero .caption {
    padding: 1.3em;
    width: 90vw;
    margin-top: 25vh;
  }
  .slider-hero .caption p {
    display: none;
  }
  .slider-hero .caption .btn {
    margin-top: 15px;
    margin-left: 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 45%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.1;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 0.95rem;
  text-transform: none !important;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  padding: 12px 15px;
  border-radius: 100px;
  background-color: #E7DE74;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  background-image: url(../imags/icons/prev.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  color: transparent;
  display: block;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
  background-image: url(../imags/icons/next.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  color: transparent;
  display: block;
}

/* ADS STYLES*/
.single-ad-responsive .ad-container {
  width: 97%;
  max-width: 1080px;
  padding: 10px;
  margin: 45px auto;
  background-color: #072034;
  border-radius: 12px;
  position: relative;
  background-color: #0B263B;
}
@media (max-width: 64rem) {
  .single-ad-responsive .ad-container {
    padding: 5px;
    text-align: center;
  }
}
.single-ad-responsive .ad-container .rotate {
  transform: rotate(270deg);
  color: #3E88C4;
  font-size: 0.8rem;
  display: inline-flex;
  position: absolute;
  left: 5px;
  top: 45px;
}
@media (max-width: 64rem) {
  .single-ad-responsive .ad-container .rotate {
    transform: unset;
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    top: unset;
    left: unset;
  }
}
.single-ad-responsive .ad-container .ad {
  margin-left: 45px;
  width: 100%;
  max-width: 970px;
}
@media (max-width: 64rem) {
  .single-ad-responsive .ad-container .ad {
    margin-left: unset;
  }
}
@media (max-width: 40rem) {
  .single-ad-responsive .ad-container .ad {
    margin-top: 20px;
    width: 100%;
  }
}

.ad-single {
  width: 90%;
  padding: 5px;
  margin: 3px auto;
  border-radius: 12px;
  background-color: #123549;
  text-align: center;
}
.ad-single .legend {
  color: #3E88C4;
  font-size: 0.8rem;
  padding: 5px;
}
.ad-single .ad {
  width: 100%;
  max-width: 300px;
}

.col-lg-3 .single-ad-responsive .ad-container .rotate {
  display: none;
}
.col-lg-3 .single-ad-responsive .ad-container img, .col-lg-3 .single-ad-responsive .ad-container .ad {
  margin-left: 0;
}

@font-face {
  font-family: "JosefinSans-Bold";
  src: url("../fonts/josefinsans/JosefinSans-Bold.woff2") format("woff2"), url("../fonts/josefinsans/JosefinSans-Bold.woff") format("woff"), url("../fonts/josefinsans/JosefinSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "JosefinSans-Medium";
  src: url("../fonts/josefinsans/JosefinSans-Medium.woff2") format("woff2"), url("../fonts/josefinsans/JosefinSans-Medium.woff") format("woff"), url("../fonts/josefinsans/JosefinSans-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Regular.eot"); /* IE9 */
  src: url("../fonts/poppins/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-Regular.woff2") format("woff2"), url("../fonts/poppins/Poppins-Regular.woff") format("woff"), url("../fonts/poppins/Poppins-Regular.ttf") format("truetype"), url("../fonts/poppins/Poppins-Regular.svg#Poppins") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-700.eot"); /* IE9 */
  src: url("../fonts/poppins/Poppins-700.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-700.woff2") format("woff2"), url("../fonts/poppins/Poppins-700.woff") format("woff"), url("../fonts/poppins/Poppins-700.ttf") format("truetype"), url("../fonts/poppins/Poppins-700.svg#Poppins") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Medium.eot"); /* IE9 */
  src: url("../fonts/poppins/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-Medium.woff2") format("woff2"), url("../fonts/poppins/Poppins-Medium.woff") format("woff"), url("../fonts/poppins/Poppins-Medium.ttf") format("truetype"), url("../fonts/poppins/Poppins-Medium.svg#Poppins") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-SemiBold.eot"); /* IE9 */
  src: url("../fonts/poppins/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/poppins/Poppins-SemiBold.woff") format("woff"), url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/poppins/Poppins-SemiBold.svg#Poppins") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Montserrat-Bold";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-Bold.woff") format("woff");
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/montserrat/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Montserrat-Regular";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-Regular.woff") format("woff");
}
body {
  background-color: #072034;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
  color: #f4f7e9;
}

h1, .caption-title {
  font-family: "JosefinSans-Bold", sans-serif;
  font-weight: 800;
  line-height: 130%;
  margin-bottom: 10px;
  font-size: 3rem;
  margin-left: 0;
}
@media (max-width: 64rem) {
  h1, .caption-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 40rem) {
  h1, .caption-title {
    font-size: 1.66rem;
  }
}
h1.title-programas, h1.title-personajes, h1.title-section, .caption-title.title-programas, .caption-title.title-personajes, .caption-title.title-section {
  font-family: "JosefinSans-Bold", sans-serif;
  color: #f4f7e9;
  display: block;
  font-size: 1.4em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 15px;
  font-weight: bold;
}
h1.seo-title, .caption-title.seo-title {
  display: none;
}

.inner-title {
  font-size: 2rem;
  margin-top: 2.38rem;
  margin-left: unset;
}
@media (max-width: 40rem) {
  .inner-title {
    font-size: 1.66rem;
  }
}

.featured-title-lg {
  font-family: "JosefinSans-Bold", sans-serif;
  font-weight: 800;
  line-height: 130%;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 0;
  font-size: 3.2rem;
}
@media (max-width: 64rem) {
  .featured-title-lg {
    font-size: 2.1rem;
  }
}

.featured-title-sm {
  font-family: "JosefinSans-Bold", sans-serif;
  font-weight: 800;
  line-height: 130%;
  margin-bottom: 10px;
  margin-left: 0;
  font-size: 2.2rem;
}
@media (max-width: 64rem) {
  .featured-title-sm {
    font-size: 1.5rem;
  }
}

.section-title h2, .section-title h1, .section-title h3, .section-title h4 {
  border-left: 8px solid #61CDB8;
  padding-left: 15px;
  padding-bottom: 0;
  padding-top: 5px;
  line-height: 120%;
  min-width: 250px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.17em;
}
.section-title h2.highlight, .section-title h1.highlight, .section-title h3.highlight, .section-title h4.highlight {
  background-image: url(../imags/logo-min.svg);
  background-repeat: no-repeat;
  background-position-y: 0.2rem;
  padding-left: 45px;
  border-left: none;
}
@media (max-width: 64rem) {
  .section-title h2.highlight, .section-title h1.highlight, .section-title h3.highlight, .section-title h4.highlight {
    background-position-y: 0rem;
  }
}
.section-title h2.no-indent, .section-title h1.no-indent, .section-title h3.no-indent, .section-title h4.no-indent {
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}
.section-title h2.top-heading, .section-title h1.top-heading, .section-title h3.top-heading, .section-title h4.top-heading {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.section-title h2.seo-title, .section-title h1.seo-title, .section-title h3.seo-title, .section-title h4.seo-title {
  display: none;
}

h2, h3 {
  font-family: "JosefinSans-Bold", sans-serif;
  color: #f4f7e9;
  line-height: 120%;
}
h2.highlight, h3.highlight {
  background-image: url(../imags/logo-min.svg);
  background-repeat: no-repeat;
  background-position-y: 1rem;
  padding-left: 45px;
  border-left: none;
}
@media (max-width: 64rem) {
  h2.highlight, h3.highlight {
    background-position-y: 0rem;
  }
}
h2.highlight.card-text, h3.highlight.card-text {
  font-size: 1rem;
  font-weight: normal;
}
@media (max-width: 64rem) {
  h2, h3 {
    margin-left: 15px;
  }
}

h4 {
  font-family: "Poppins-Bold", sans-serif;
  color: #f4f7e9;
}

.small-text {
  font-size: 0.75rem;
}

/* text accents */
.txt-accent {
  color: #FF1A6A;
}

.txt-accent-02 {
  color: #E7DE74;
}

.txt-accent-03 {
  color: #61CDB8;
}

a {
  text-decoration: none;
  color: inherit;
}

.centered {
  margin: 20px auto;
}

.center {
  text-align: center;
}

figure {
  padding: 0;
  margin: 0;
}
figure img {
  width: 100%;
}

.no-gutters {
  padding: 0px;
  margin: 0px;
}

.page-header {
  margin-top: 110px;
}

.personaje {
  padding: 0.1rem;
}

/* Enviar a scss de visibilidad */
.mobile {
  display: none;
}
@media (max-width: 64rem) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media (max-width: 64rem) {
  .desktop {
    display: none;
  }
}

/* ESTILOS PENDIENTES DE ASIGNACION
.featured-header {

    &.inner-content{

    }

}
*/
.featured-header {
  position: relative;
}
.featured-header .swiper-thumbs {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 15px auto;
}
@media (max-width: 64rem) {
  .featured-header .swiper-thumbs {
    margin-top: 0;
    min-height: auto;
  }
}
.featured-header > figure {
  position: relative;
}
.featured-header > figure:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.container {
  max-width: 1350px;
  margin: 20px auto;
  position: relative;
}
.container.section-title {
  padding: 10px 0;
}
.container.section-title .color-red {
  border-color: #ff0000;
  font-size: 22px;
  margin-left: 0;
}
.container.single-video {
  margin: 20px 0;
  overflow: hidden;
}
@media (max-width: 64rem) {
  .container.single-video .row:not(.section-title) {
    padding: 0 15px;
  }
}
@media (max-width: 64rem) {
  .container.pan-video .row {
    flex-direction: column;
  }
  .container.pan-video .col-sm-8 {
    flex: 1 0 auto;
    width: 100%;
    padding: 1rem 0 0;
    max-width: 100%;
  }
  .container.pan-video .col-sm-4 {
    max-width: 100%;
  }
  .container.pan-video .col-sm-4 .inner-title {
    margin-top: 15px;
  }
  .container.pan-video .single-video {
    margin: 0 auto;
    padding: 0;
  }
  .container.pan-video .wrap-video {
    min-width: 100% !important;
  }
}
.container.pan-video.video-box .col {
  padding: 0;
}
.container.pan-video.video-box .col:last-child {
  display: flex;
  flex-direction: column;
}
.container.pan-video.video-box .single-video {
  margin: 0;
}
@media (max-width: 64rem) {
  .container.pan-video.video-box .video-player {
    margin: 0 auto;
  }
}
.container.pan-video.video-box .inner-title {
  background-color: #FF1A6A;
  margin: 0;
  padding: 20px 40px;
  color: #ffffff;
  line-height: 1.2;
  border-top-right-radius: 20px;
}
@media (max-width: 90rem) {
  .container.pan-video.video-box .inner-title {
    padding: 16px;
    font-size: 28px;
  }
}
@media (max-width: 64rem) {
  .container.pan-video.video-box .inner-title {
    border-top-right-radius: 0;
    font-size: 26px;
  }
}
.container.pan-video.video-box .content {
  background-color: #123549;
  padding: 20px 40px;
  border-bottom-right-radius: 20px;
  height: 100%;
}
@media (max-width: 90rem) {
  .container.pan-video.video-box .content {
    padding: 20px;
  }
}
@media (max-width: 64rem) {
  .container.pan-video.video-box .content {
    border-bottom-left-radius: 20px;
  }
}
.container.pan-video.video-box .content p {
  color: #ffffff;
  line-height: 1.5;
}
.container.pan-video.video-box .content p:first-child {
  margin-top: 0;
}
@media (max-width: 90rem) {
  .container.pan-video.video-box .content p:first-child {
    font-size: 14px;
  }
}
@media (max-width: 64rem) {
  .container.pan-video.video-box .content p:first-child {
    font-size: 16px;
  }
}
.container.pan-video.video-box .tool {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  margin-top: 20px;
  padding: 0;
}
.container.pan-video.video-box .tool li a {
  background: #ffffff;
  padding: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container.pan-video.video-box .tool li a:hover a {
  background-color: #f4f7e9;
}
.container.container__bg {
  padding: 30px 0;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 40rem) {
  .container.container__bg {
    background-image: none !important;
  }
}
.container.container__bg .auxi {
  max-width: 1350px;
}
.container.container__bg .featured-cols {
  border-radius: 22px;
}
@media (max-width: 90rem) {
  .container.container__bg .featured-cols {
    background: none !important;
  }
}
@media (max-width: 90rem) {
  .container.container__bg .container-iframe {
    padding: 0 1rem;
  }
}
.container.container__bg .section-title__logo {
  margin-bottom: 15px;
}
@media (max-width: 90rem) {
  .container.container__bg .section-title__logo {
    padding: 0 1rem;
    margin-bottom: 0;
  }
}
.container.container__bg .section-title__logo img {
  max-height: 100px;
  width: auto;
}
.container.container__bg .section-title__logo--justify {
  display: flex;
  justify-content: space-between;
}
.container.container__bg .section-title__logo .section-title__img-logo {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 40rem) {
  .container.container__bg .section-title__logo .section-title__img-logo {
    max-width: 112px;
  }
}
.container.container__bg .section-title__logo .section-title__img-banner {
  max-width: 580px;
  width: 100%;
}
@media (max-width: 40rem) {
  .container.container__bg .section-title__logo .section-title__img-banner {
    width: 42%;
    height: 62px;
    object-fit: cover;
    object-position: 0;
  }
}
@media (max-width: 64rem) {
  .container.container__bg .section-title__logo .section-title__img-banner {
    max-width: 400px;
  }
}

.video-background {
  background-color: #000000;
}

.video-player {
  border-radius: 12px;
  width: 100%;
  max-width: 1080px;
  margin: 1rem auto;
}
.video-player.no-margin {
  margin: 0;
}
@media (max-width: 64rem) {
  .video-player {
    max-width: 100%;
    margin: 15px auto;
    display: block;
  }
}

/*sliders*/
.img-container {
  padding: 5px;
}
.img-container img {
  display: unset;
  width: unset;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT FORMATS */
.card {
  background-color: #123549;
  border-radius: 12px;
  margin: 5px;
  padding: 5px;
  display: block;
  min-height: 300px;
  height: fit-content;
}
.card:hover {
  background-color: #FF1A6A;
}
.card.smaller {
  min-height: unset;
  height: fit-content;
  padding-bottom: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.card.smaller .card-title {
  margin-top: 5px;
  margin-left: 0;
  font-size: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.card.smaller .card-title::after {
  display: inline-block;
  content: "...";
}
.card.smaller .card-img {
  margin: 5px auto;
  border-radius: 12px;
  width: 98%;
  position: relative;
}
.card.smaller .card-img img {
  max-width: 98%;
}
.card .card-title {
  padding: 0px 10px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin-left: 0px;
  font-size: 1rem;
  line-height: 120%;
  margin-top: 21.28px;
  font-family: "Poppins-Bold", sans-serif;
}
.card .card-title::after {
  display: inline-block;
  content: "...";
}
.card .card-stamp {
  padding: 15px 10px 25px 10px;
  display: block;
  color: #f4f7e9;
  font-size: 0.8rem;
}
.card .card-text {
  padding: 0 10px 10px 10px;
  display: block;
  color: #f4f7e9;
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.5ch;
}
.card .card-img {
  margin: 5px auto;
  border-radius: 12px;
  width: 98%;
  position: relative;
}
.card .card-img img {
  max-width: 98%;
}
.card .card-img .reprod {
  position: absolute;
  /*top:100px;*/
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
}
.card .card-img .reprod .cont_play {
  background-image: url(../imags/icons/play.svg);
  background-repeat: no-repeat;
  background-position: 55%;
  background-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF1A6A;
}
.card .card-img .reprod .cont_play:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #FF1A6A;
}
.card .card-img .reprod .cont_pill {
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 7px 15px;
}
.card.poster .card-img img {
  width: 100%;
  border-radius: 12px;
}
.card.poster .card-title {
  font-size: 1.4rem;
}
.card.poster .card-title::after {
  content: none;
}
.card.poster .card-text {
  margin-top: -2px;
}

.featured-cols .col-md-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.featured-cols .col-md-3 a {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-cols .col-md-3 a .card {
  flex: 1;
  margin-bottom: 0;
}
.featured-cols .col-md-3 a .card .card-title {
  -webkit-line-clamp: 5;
}
.featured-cols .col-md-3 a .card .card-title::after {
  content: none;
}
.featured-cols .row .col-md-4.col-xs-12.col .section-title.row h2.col-md-10.col-sm-9 {
  border-left: 8px solid #0E3A81;
}

.col-lg-9 .featured-cols .col-md-9, .col-lg-9 .featured-cols .col-md-3 {
  width: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-lg-9 .featured-cols .col-md-3 {
  display: flex;
  flex-direction: row;
}
@media (max-width: 40rem) {
  .col-lg-9 .featured-cols .col-md-3 {
    flex-direction: column;
  }
}
.col-lg-9 .featured-cols .col-md-3 a {
  flex: 1 0 50%;
}
.col-lg-9 .featured-sm .featured-content {
  flex: 1 0 auto;
  margin-top: -50px;
  align-items: center;
}
@media (max-width: 40rem) {
  .col-lg-9 .featured-sm .featured-content {
    margin-top: 0;
  }
}

.col-lg-3 .featured-sm .featured-content {
  bottom: 0;
  background: #000000;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 15px;
  align-items: flex-start;
}

.featured {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 12px;
  text-align: center;
  color: #f4f7e9;
  /*
      .featured-img{
          position:absolute;
          height: 100%;
          top:0px;
          bottom:0px;
          left:0px;
          right: 0px;


      }
  */
}
@media (max-width: 40rem) {
  .featured {
    height: auto;
  }
}
.featured.featured-sm {
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.featured.featured-sm .featured-content {
  position: relative;
  bottom: 0;
  flex: 1 0 auto;
  padding: 40px 15px 15px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 40rem) {
  .featured.featured-sm .featured-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
}
.featured.featured-sm .featured-content .featured-title {
  margin-top: 0;
}
.featured.featured-sm a {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.featured.long {
  height: 575px;
}
@media (max-width: 64rem) {
  .featured.long {
    height: 530px;
  }
}
@media (max-width: 40rem) {
  .featured.long {
    height: auto;
  }
}
.featured.long img {
  width: 100%;
}
.featured .featured-img {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  height: auto;
  width: 100%;
  display: block;
}
@media (max-width: 40rem) {
  .featured .featured-img {
    width: 100%;
    height: auto;
  }
}
.featured .featured-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 60%, rgba(0, 0, 0, 0) 100%);
  text-align: left;
}
@media (max-width: 40rem) {
  .featured .featured-content {
    background-color: #000000;
    position: relative;
  }
}
.featured .featured-content .featured-title {
  margin: 40px 0 5px 0;
  font-size: 1.6rem;
  line-height: 140%;
  font-family: "JosefinSans-Bold", sans-serif;
}
@media (max-width: 40rem) {
  .featured .featured-content .featured-title {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.featured .featured-content .featured-text {
  margin-top: 0;
}
.featured .featured-content .featured-text p {
  margin-top: 0;
}
.featured .featured-content .featured-text .btn {
  margin: 45px 0 5px 0;
  display: flex;
}
.featured .featured-content .featured-text .btn .icon-right img {
  height: 20px;
}

.online-home {
  height: 45vh;
}

@media (max-width: 40rem) {
  .online-home {
    height: auto;
  }
}
.featured-top {
  margin-top: 6.5rem;
}
.featured-top .video-player {
  margin-top: 0.5rem;
}
.featured-top h2 {
  font-size: 0.9rem;
}
.featured-top .title-section {
  margin-top: 0px;
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 0;
  align-items: center;
}
.section-title .btn.right {
  margin-top: 0;
}
.section-title.section-title-logo {
  gap: 20px;
}
@media (max-width: 64rem) {
  .section-title.section-title-logo {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}

.full-carousel {
  max-width: 1500px;
  margin: 0 auto;
}

body:not(.chv-noticias) .ver {
  border-radius: 10px;
  background: #123549;
}
body:not(.chv-noticias) .ver a {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 19px;
  text-decoration: none;
}
@media (max-width: 64rem) {
  body:not(.chv-noticias) .ver a {
    flex-direction: column;
  }
}
body:not(.chv-noticias) .ver a .img-wrap {
  margin: 0;
  flex: 0 0 300px;
}
@media (max-width: 64rem) {
  body:not(.chv-noticias) .ver a .img-wrap {
    flex: 0 0 auto;
  }
}
body:not(.chv-noticias) .ver a .img-wrap img {
  border-radius: 10px;
}
body:not(.chv-noticias) .ver a .cont .info_pill {
  color: #ffffff;
  font-family: "Poppins-Bold";
  text-decoration: none;
  font-size: 16px;
}
body:not(.chv-noticias) .ver a .cont .card-title {
  margin: 10px 0;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  line-height: 150%;
  font-family: "Poppins-SemiBold";
}
body:not(.chv-noticias) .ver a .cont .card-stamp {
  text-decoration: none;
  color: #999999;
  font-size: 13px;
}

.article .article-image img {
  border-radius: 12px;
  width: 100%;
}
.article .article-text {
  padding-left: 5px;
}
.article .article-text .article-title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
  margin-left: unset;
  line-height: 105% !important;
  font-family: "JosefinSans-Bold", sans-serif;
}
.article .article-text .article-description {
  font-size: 0.8rem;
}
.article.video .article-image {
  position: relative;
}
.article.video .article-image img {
  border-radius: 6px;
  width: 100%;
}
.article.video .article-image .reprod {
  position: absolute;
  /*top:100px;*/
  left: 10px;
  right: 10px;
  bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
}
.article.video .article-image .reprod .cont_play {
  background-image: url(../imags/icons/play.svg);
  background-repeat: no-repeat;
  background-position: 55%;
  background-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF1A6A;
}
.article.video .article-image .reprod .cont_play:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid #FF1A6A;
}
.article.video .article-image .reprod .cont_pill {
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 7px 15px;
}
.article.video.active {
  background-color: #FF1A6A;
}
@media (max-width: 64rem) {
  .article {
    margin-bottom: 20px;
  }
}

@media (max-width: 64rem) {
  .article-detail .col-md-8 {
    max-width: 95%;
    width: 100%;
    padding: 0 10px;
  }
}
.article-detail .col-sm-8 img {
  max-width: 100%;
}
.article-detail .title-section {
  margin-left: unset;
  margin-left: 0px !important;
  font-size: 25px;
}
.article-detail .swiper-thumbs {
  height: auto;
  min-height: auto;
  margin-top: 0;
  width: 100%;
}
.article-detail p {
  line-height: 140%;
  font-size: 0.95rem;
}
.article-detail .smaller {
  font-size: 0.8rem;
}
.article-detail .portada {
  max-width: 100%;
  margin: 0;
}
.article-detail figure.portada {
  display: table;
  margin: 0 0 20px;
  font-size: 12px;
  color: grey;
  font-style: normal;
  text-align: center;
  position: relative;
  line-height: 0;
}
.article-detail figure.portada.align-right {
  float: right;
}
.article-detail figure.portada.align-left {
  float: left;
}
.article-detail figure.portada figcaption {
  display: table-caption;
  caption-side: bottom;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.65);
  color: #333;
}
@media (max-width: 40rem) {
  .article-detail figure.portada figcaption {
    padding: 12px;
  }
}
@media (max-width: 40rem) {
  .article-detail figure.portada {
    margin: 0 0 20px;
    font-size: 11px;
  }
}

.video-cards-grid {
  align-items: stretch;
}
.video-cards-grid .card {
  min-height: 250px;
  flex: 1 0 auto;
}
.video-cards-grid .card .card-title {
  display: block;
  overflow: visible;
  text-overflow: unset;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
}
.video-cards-grid .card .card-title:after {
  content: none;
}
.video-cards-grid .col-md-4 {
  display: flex;
  flex-direction: column;
}

.pagination {
  text-align: center;
}
.pagination .page-link {
  display: inline-block;
  padding: 15px 5px;
  margin: 1rem;
  font-weight: bold;
}
@media (max-width: 40rem) {
  .pagination .page-link {
    padding: 3px;
    margin: 0.3rem;
  }
}
.pagination .page-link.active {
  border-bottom: 3px solid #E7DE74;
}
.pagination .page-link.active a {
  color: #E7DE74;
}

ol {
  margin: 45px 35px;
}
ol li {
  margin-bottom: 20px;
  line-height: 130%;
}
ol li strong {
  color: #E7DE74;
}
ol li img {
  margin: 15px auto;
  border: 1px solid #FF1A6A;
  padding: 10px;
  border-radius: 12px;
}

.round-container {
  background-color: #123549;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 20px;
}
.round-container img {
  max-width: 100%;
}
.round-container.error_container {
  height: 96%;
}
@media (max-width: 40rem) {
  .round-container.error_container {
    height: auto;
  }
}

.listado-noticias {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 70%;
  margin-left: 0;
  padding: 1rem;
}
@media (max-width: 40rem) {
  .listado-noticias {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 64rem) {
  .listado-noticias {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 40rem) {
  .listado-noticias .row.article .col-sm-5 {
    padding: 0;
  }
}

.box-señal {
  background-color: #123549;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.tit {
  border: none;
  text-align: center;
  color: #ffffff;
  text-transform: none;
  font-size: 20px;
  padding-left: 0;
  margin: 0;
  line-height: initial;
}

.btn.primary {
  margin: 0 auto;
  transition: 0.3s all ease;
}
.btn.primary:hover {
  background-color: #072034;
}

.banner-container {
  display: flex;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 849px) {
  .banner-container {
    height: auto;
  }
}
.banner-container .banner {
  flex: 1; /* Todos los banners ocupan el mismo espacio inicialmente */
  transition: flex 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}
.banner-container .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 849px) {
  .banner-container .banner img {
    transform: none;
    transition: none;
  }
}
.banner-container .banner:hover {
  flex: 100%;
}
.banner-container:hover .banner:not(:hover) {
  flex: 0.5; /* Los demás banners se reducen al mínimo */
}

.panamericanos {
  font-family: "Montserrat-Regular", sans-serif;
  background-color: #ffffff;
  background-position: center bottom 20%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 120rem) {
  .panamericanos {
    background-position: center bottom 12%;
  }
}
@media (max-width: 90rem) {
  .panamericanos {
    background-position: center bottom 14%;
  }
}
@media (max-width: 64rem) {
  .panamericanos {
    background-position: center bottom 19%;
  }
}
@media (max-width: 40rem) {
  .panamericanos {
    background-position: center bottom 34.5%;
  }
}
@media (min-width: 1530px) {
  .panamericanos {
    background-position: center bottom 9%;
  }
}
@media (min-width: 1780px) {
  .panamericanos {
    background-position: center bottom 7%;
  }
}
.panamericanos .header {
  background-color: #072034;
}
.panamericanos .featured-header > figure:before {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.2973564426) 0%, rgba(0, 0, 0, 0.1713060224) 14%, rgba(0, 0, 0, 0) 68%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.2973564426) 0%, rgba(0, 0, 0, 0.1713060224) 14%, rgba(0, 0, 0, 0) 68%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2973564426) 0%, rgba(0, 0, 0, 0.1713060224) 14%, rgba(0, 0, 0, 0) 68%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.panamericanos .banner_full {
  text-align: center;
  margin-bottom: 20px;
}
.panamericanos .pan-video h1.inner-title, .panamericanos .caption-title.inner-title, .panamericanos .pan-video p {
  color: #004176;
  margin-top: 16px;
  line-height: 1.2;
}
.panamericanos div:not(.banner_full) div div iframe, .panamericanos .iframe-container iframe {
  min-width: 100%;
  width: 100%;
}
.panamericanos .sticky-wrap.overflow-y {
  max-height: 100%;
}
.panamericanos .container {
  margin: 0 auto;
  max-width: 1400px;
}
.panamericanos .container-overlay {
  padding: 30px 70px 70px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 64rem) {
  .panamericanos .container-overlay {
    padding: 20px 20px 70px;
  }
}
@media (max-width: 40rem) {
  .panamericanos .container-overlay {
    padding: 20px 0 40px;
  }
}
.panamericanos .container-overlay .section-title h2, .panamericanos .container-overlay .section-title h3 {
  color: #ffffff;
}
.panamericanos .featured-cols {
  padding: 70px 0;
}
@media (max-width: 64rem) {
  .panamericanos .featured-cols {
    padding: 40px 0;
  }
}
.panamericanos .btn.secondary {
  margin: 50px auto 0;
  transition: 0.3s all ease;
  border-radius: 5px;
  padding: 20px 40px;
  display: block;
  font-size: 15px;
  font-family: "Montserrat-Bold", sans-serif;
}
.panamericanos .btn.secondary:hover {
  background-color: #072034;
}
.panamericanos .btn.secondary.btn-yellow {
  background-color: #FFF155;
  color: #004176;
}
.panamericanos .btn.secondary.btn-blue {
  background-color: #004176;
  color: #FFF155;
}
.panamericanos .col-md-3 {
  padding: 10px;
}
.panamericanos .card-title {
  overflow: visible;
  text-overflow: unset;
  display: block;
}
.panamericanos .card-title:after {
  content: none;
}
.panamericanos .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 0 0 30px;
}
.panamericanos .cont_video iframe {
  width: 100%;
}
.panamericanos .media iframe, .panamericanos .media object, .panamericanos .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 64rem) {
  .panamericanos .col-md-8, .panamericanos .col-md-4 {
    max-width: 95%;
    width: 100%;
    padding: 0 10px;
  }
}
.panamericanos .video-section {
  text-align: left;
  justify-content: flex-start;
  color: #004176;
  margin-bottom: 50px;
  padding: 0 1rem;
}
.panamericanos .video-section .title-section {
  color: #004176;
  font-size: 1.8rem;
  margin: 30px 0 10px;
}
.panamericanos .video-section p {
  font-size: 1.2rem;
  line-height: 150%;
}
.panamericanos .swiper {
  padding: 0 10px;
}
.panamericanos .swiper-button-prev {
  left: 6px;
}
.panamericanos .swiper-button-prev::after {
  box-shadow: none;
  font-size: 0.95rem;
}
@media (max-width: 64rem) {
  .panamericanos .swiper-button-prev {
    display: none;
  }
}
.panamericanos .swiper-button-next {
  right: 6px;
}
.panamericanos .swiper-button-next::after {
  box-shadow: none;
  font-size: 0.95rem;
}
@media (max-width: 64rem) {
  .panamericanos .swiper-button-next {
    display: none;
  }
}
.panamericanos .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 70px;
}
.panamericanos .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all ease;
  border-radius: 3rem;
  opacity: 1;
}
.panamericanos .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E42313;
  width: 34px;
}
.panamericanos .section-title {
  text-align: center;
  justify-content: center;
  margin-bottom: 50px;
}
.panamericanos .section-title.section-title-l {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 28px;
}
@media (max-width: 40rem) {
  .panamericanos .section-title.section-title-l {
    justify-content: center;
  }
}
.panamericanos .section-title h1, .panamericanos .section-title h2, .panamericanos .section-title h3 {
  color: #004176;
  font-family: "Montserrat-ExtraBold", sans-serif;
  text-transform: uppercase;
  border-left: none;
  padding-left: 0;
}
.panamericanos .section-title .title-lg {
  font-size: 50px;
  margin: 0;
}
@media (max-width: 64rem) {
  .panamericanos .section-title .title-lg {
    font-size: 36px;
    padding: 0 20px;
  }
}
@media (max-width: 40rem) {
  .panamericanos .section-title .title-lg {
    font-size: 30px;
  }
}
.panamericanos .section-title .title-sm {
  font-size: 30px;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
}
.panamericanos .inner-nav-container {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto 70px;
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container {
    margin-bottom: 60px;
    flex-direction: column;
    border-radius: 15px;
    background-color: #ededed;
  }
}
.panamericanos .inner-nav-container .inner-menu-trigger {
  border: none;
  padding: 20px;
  text-align: left;
  color: #004176;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 18px;
}
.panamericanos .inner-nav-container .inner-menu-trigger:after {
  background-image: url(../imags/panamericanos/chevron-down-b.svg);
  width: 22px;
  height: 22px;
  top: 18px;
  right: 20px;
}
.panamericanos .inner-nav-container .inner-nav {
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 20px;
  background: #ededed;
  max-width: fit-content;
  position: relative;
}
.panamericanos .inner-nav-container .inner-nav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: -9px;
  right: 0;
  top: -9px;
  border-radius: 30px;
  border: 9px solid rgba(255, 255, 255, 0.29);
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav {
    max-width: 100%;
    box-sizing: border-box;
    background: none;
    padding: 0 10px;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill {
  margin: 0 5px;
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav .pill {
    margin: 5px 0;
    width: 100%;
    text-align: left;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.active a, .panamericanos .inner-nav-container .inner-nav .pill:hover a {
  background-color: #fff;
  color: #E42313;
}
.panamericanos .inner-nav-container .inner-nav .pill a {
  padding: 15px;
  display: block;
  border-radius: 10px;
  color: #207cf7;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 15px;
  transition: 0.3s all ease;
}
.panamericanos .inner-nav-container .inner-nav .pill a:hover {
  padding: 15px;
  background-color: #fff;
  color: #E42313;
}
.panamericanos .inner-nav-container .inner-nav .pill.menu > a {
  background-image: url(../imags/icons/down-blue.svg);
  padding-right: 20px;
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu > a {
    background-image: none;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .submenu {
  list-style: none;
  position: absolute;
  top: 55px;
  display: none;
  padding: 15px;
  margin: 0;
  width: 240px;
  background-color: #fff;
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .submenu {
    width: 100%;
    position: relative;
    top: unset;
    margin: 0 auto;
    padding-top: 0px;
    display: block;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: none;
  color: #207cf7;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu:hover a {
  background-image: url(../imags/icons/up-blue.svg);
}
@media (max-width: 64rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu:hover a {
    background-image: none;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu:hover .submenu {
  display: block;
}
.panamericanos .inner-nav-container .inner-nav .pill.menu:hover .submenu a {
  background-image: none;
  padding: 5px;
  display: block;
  border-radius: 0;
}
.panamericanos .inner-nav-container .inner-nav .pill.menu:hover .submenu a:hover {
  border-bottom: 1px solid #61CDB8;
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .cyan {
  right: -25px;
  background-color: #123549;
  border-radius: 12px;
  text-align: left;
  padding: 10px;
}
@media (max-width: 40rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .cyan {
    left: 0;
    background-color: transparent;
    border-radius: none;
    text-align: left;
    padding: 0;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link {
  color: #fff;
  padding: 5px 10px;
  border-radius: 20.23px;
  display: block;
  width: fit-content;
}
@media (max-width: 40rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link {
    color: #207cf7;
    padding: 5px 0;
    border-radius: 0;
    display: block;
    width: fit-content;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link a {
  color: #fff;
  background-color: transparent;
  background-image: none !important;
  border-radius: 20.23px;
  padding: 8px 15px;
}
@media (max-width: 40rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link a {
    color: #207cf7;
    padding: 5px 30px;
    border-radius: 0;
    display: block;
    width: fit-content;
    font-weight: 100;
    font-family: "Montserrat-Regular", sans-serif;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link:hover a {
  background-color: #61CDB8;
  color: #123549;
  background-image: none;
  border: none;
  border-radius: 20.23px;
}
@media (max-width: 40rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .cyan .link:hover a {
    background-color: transparent;
    color: #207cf7;
    background-image: none;
    border: none;
    border-radius: 0;
    font-weight: normal;
  }
}
.panamericanos .inner-nav-container .inner-nav .pill.menu .cyan:before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  display: block;
  border-bottom: 25px solid #123549;
  margin-top: -25px;
  margin-left: 185px;
}
@media (max-width: 40rem) {
  .panamericanos .inner-nav-container .inner-nav .pill.menu .cyan:before {
    display: none;
  }
}
.panamericanos .card-bg {
  padding: 0;
  background: none;
}
.panamericanos .card-bg .card-img {
  overflow: hidden;
  border-radius: 20px;
}
.panamericanos .card-bg .card-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.8) 90%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.8) 90%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.8) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.panamericanos .card-bg .card-img img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.panamericanos .card-bg .card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 40px 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  font-family: "Montserrat-ExtraBold", sans-serif;
  line-height: 1.4;
}
@media (max-width: 64rem) {
  .panamericanos .card-bg .card-title {
    font-size: 20px;
  }
}
@media (max-width: 40rem) {
  .panamericanos .card-bg .card-title {
    font-size: 20px;
  }
}
.panamericanos .card-bg .box-ship {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 40px;
  display: flex;
  justify-content: center;
}
.panamericanos .card-bg .box-ship .ship {
  border: 2px solid #FFF155;
  color: #FFF155;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 3rem;
  background-color: #000000;
  text-transform: uppercase;
  font-family: "Montserrat-Bold", sans-serif;
}
.panamericanos .card-bg .reprod {
  justify-content: center;
  top: calc(50% - 46px);
  bottom: auto;
}
.panamericanos .card-bg .reprod .cont_play {
  width: 64px;
  height: 64px;
  background-color: #fff;
  z-index: 1;
  position: relative;
}
.panamericanos .card-bg .reprod .cont_play:hover {
  border: none;
  background-color: #fff;
}
.panamericanos .card-bg .reprod .cont_play:hover:after {
  width: 100px;
  height: 100px;
  left: -18px;
  top: -18px;
}
.panamericanos .card-bg .reprod .cont_play:before {
  content: "";
  width: 24px;
  height: 24px;
  z-index: 2;
  background-image: url(../imags/panamericanos/play-red.svg);
  background-position: 50%;
  background-size: 24px;
  position: absolute;
  left: calc(50% - 12px);
  top: calc(50% - 12px);
}
.panamericanos .card-bg .reprod .cont_play:after {
  content: "";
  top: -15px;
  left: -15px;
  width: 94px;
  height: 94px;
  z-index: 0;
  transition: 0.2s all ease;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  border-radius: 50%;
}
.panamericanos .embeds {
  padding: 70px 0;
}
@media (max-width: 64rem) {
  .panamericanos .embeds {
    padding: 40px 0;
  }
}
@media (max-width: 64rem) {
  .panamericanos .embeds .row {
    justify-content: center;
  }
}
.panamericanos .embeds .section-title {
  padding: 13px 20px;
  background-color: #0c4373;
}
@media (max-width: 40rem) {
  .panamericanos .embeds .section-title {
    padding: 10px 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.panamericanos .embeds .section-title .title-sm {
  color: #ffffff;
}
.panamericanos .card-news {
  margin: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.panamericanos .card-news .card-img {
  width: 100%;
  margin: 0;
}
.panamericanos .card-news .card-img img {
  width: 100%;
  display: block;
  max-width: 100%;
}
.panamericanos .card-news .reprod {
  justify-content: flex-start;
  bottom: 10px;
  left: 10px;
  padding: 0;
}
.panamericanos .card-news .reprod .cont_play {
  width: 45px;
  height: 45px;
  background-color: #E42313;
  z-index: 1;
  position: relative;
  border: 6px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s all ease;
  background-image: none;
}
.panamericanos .card-news .reprod .cont_play:hover {
  border: 6px solid #E42313;
  background-color: #E42313;
}
.panamericanos .card-news .reprod .cont_play:hover:after {
  width: 60px;
  height: 60px;
  left: -18px;
  top: -18px;
}
.panamericanos .card-news .reprod .cont_play:before {
  content: "";
  width: 24px;
  height: 24px;
  z-index: 2;
  background-image: url(../imags/panamericanos/play-yellow.svg);
  background-position: 50%;
  background-size: 24px;
  position: absolute;
  left: calc(50% - 12px);
  top: calc(50% - 12px);
}
.panamericanos .card-news .card-content {
  padding: 20px;
}
.panamericanos .card-news .card-content .card-date {
  color: #cccccc;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Montserrat-Bold", sans-serif;
}
.panamericanos .card-news .card-content .card-title {
  color: #000;
  font-family: "Montserrat-ExtraBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0;
}
.panamericanos .card-news .card-content .card-description {
  font-family: "Montserrat-Regular", sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 161.9%;
}
.panamericanos .card-icon .card-title {
  color: #004176;
  text-align: center;
  font-family: "Montserrat-ExtraBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.panamericanos .logos {
  padding: 140px 0;
}
@media (max-width: 64rem) {
  .panamericanos .logos {
    padding: 40px 0;
  }
}
.panamericanos .logos .row {
  justify-content: center;
  gap: 100px;
}
.panamericanos .logos .section-title .title-lg {
  padding: 13px 20px;
  background-color: #0c4373;
  color: #ffffff;
}
@media (max-width: 40rem) {
  .panamericanos .logos .section-title .title-lg {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.panamericanos .wrap-carousel {
  position: relative;
}
.panamericanos .carousel-icons {
  padding: 70px 0;
  position: relative;
}
@media (max-width: 64rem) {
  .panamericanos .carousel-icons {
    padding: 40px 0;
  }
}
.panamericanos .carousel-icons:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgb(255, 255, 255) 16%, rgba(255, 255, 255, 0.7567401961) 56%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgb(255, 255, 255) 16%, rgba(255, 255, 255, 0.7567401961) 56%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgb(255, 255, 255) 16%, rgba(255, 255, 255, 0.7567401961) 56%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.panamericanos .carousel-icons .swiper {
  margin-top: 50px;
  max-width: 88%;
  position: static !important;
}
@media (max-width: 40rem) {
  .panamericanos .carousel-icons .swiper {
    max-width: 100%;
  }
}
.panamericanos .carousel-icons .swiper .swiper-slide img {
  width: 120px;
  margin: 0 auto;
  display: block;
}
.panamericanos .carousel-icons .swiper .swiper-slide .card-title {
  font-size: 14px;
}
.panamericanos .carousel-icons .swiper-button-next, .panamericanos .carousel-icons .swiper-button-prev {
  width: 50px;
  height: 50px;
}
@media (max-width: 40rem) {
  .panamericanos .carousel-icons .swiper-button-next, .panamericanos .carousel-icons .swiper-button-prev {
    display: none;
  }
}
.panamericanos .carousel-icons .swiper-button-next:after, .panamericanos .carousel-icons .swiper-button-prev:after {
  background-color: transparent;
  box-shadow: none;
  background-size: 40px;
}
.panamericanos .carousel-icons .swiper-button-next {
  right: 20px;
}
.panamericanos .carousel-icons .swiper-button-next:after {
  background-image: url(../imags/panamericanos/chevron-right-b.svg);
}
.panamericanos .carousel-icons .swiper-button-prev {
  left: 20px;
}
.panamericanos .carousel-icons .swiper-button-prev:after {
  background-image: url(../imags/panamericanos/chevron-left-b.svg);
}
.panamericanos .carousel-icons .swiper-button-disabled {
  opacity: 1;
}
.panamericanos .ad-single .legend {
  display: block;
}
.panamericanos.pan-port {
  background-position: center bottom !important;
}
.panamericanos.pan-port .no-gutters {
  padding: 8px;
}
.panamericanos.pan-port .inner-nav-container {
  margin: 30px auto 60px;
}
@media (max-width: 64rem) {
  .panamericanos.pan-port .inner-nav-container {
    background-color: rgba(166, 166, 166, 0.2);
  }
}
.panamericanos.pan-port .inner-nav-container .inner-nav {
  background-color: rgba(166, 166, 166, 0.2);
}
@media (max-width: 64rem) {
  .panamericanos.pan-port .inner-nav-container .inner-nav {
    background: none;
  }
}
.panamericanos.pan-port .container > .row > .col-md-8, .panamericanos.pan-port .container > .row > .col-md-4 {
  margin: 0;
}
.panamericanos.pan-port .title-sm {
  padding-left: 30px;
}
@media (max-width: 40rem) {
  .panamericanos.pan-port .title-sm {
    padding-left: 0;
  }
}
@media (max-width: 64rem) {
  .panamericanos.pan-port .title-sm {
    padding-left: 10px;
  }
}
.panamericanos.pan-port .pagination .page-link {
  color: #004176;
  font-family: "Montserrat-Bold", sans-serif;
}
.panamericanos.pan-port .pagination .page-link.active {
  border-color: #E42313;
}
.panamericanos.pan-port .pagination .page-link.active a {
  color: #E42313;
}
.panamericanos.pan-video .inner-nav-container {
  margin: 20px auto;
}
.panamericanos.pan-disciplinas .card-icon {
  text-align: center;
}
.panamericanos.pan-disciplinas .container-disciplinas {
  padding-bottom: 60px;
}
.panamericanos.pan-art .section-title {
  text-align: left;
  justify-content: flex-start;
}
.panamericanos.pan-art .article-detail {
  max-width: 1300px;
}
.panamericanos.pan-art .article-detail strong {
  font-family: "Montserrat-Bold", sans-serif;
}
.panamericanos.pan-art .article-detail p, .panamericanos.pan-art .article-detail ul li, .panamericanos.pan-art .article-detail ol li, .panamericanos.pan-art .article-detail h2, .panamericanos.pan-art .article-detail h3, .panamericanos.pan-art .article-detail h4, .panamericanos.pan-art .article-detail h5, .panamericanos.pan-art .article-detail h6, .panamericanos.pan-art .article-detail blockquote, .panamericanos.pan-art .article-detail .titsubtit, .panamericanos.pan-art .article-detail .subtit-sinlink, .panamericanos.pan-art .article-detail .subtit, .panamericanos.pan-art .article-detail .titulos, .panamericanos.pan-art .article-detail td, .panamericanos.pan-art .article-detail th {
  color: #004176;
}
.panamericanos.pan-art .article-detail a {
  color: #E42313;
}
.panamericanos.pan-art .article-detail ol, .panamericanos.pan-art .article-detail ul {
  margin: 45px 0;
}
.panamericanos.pan-art .article-detail blockquote {
  color: #004176;
  font-size: 20px;
  line-height: 1.7;
  padding-bottom: 10px;
  margin: 20px auto;
  max-width: 90%;
  font-family: "Montserrat-Bold", sans-serif;
  font-style: italic;
}
.panamericanos.pan-art .article-detail blockquote:after {
  content: "";
  left: 0;
  height: 6px;
  width: 70px;
  margin-top: 10px;
  position: relative;
  display: block;
  background-color: #0090D4;
}
.panamericanos.pan-art .mySwiper2 .swiper-button-next {
  right: 20px;
}
.panamericanos.pan-art .mySwiper2 .swiper-button-prev {
  left: 20px;
}
.panamericanos.pan-art .swiper-thumbs .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}
.panamericanos.pan-art .swiper-thumbs .swiper-slide-thumb-active {
  border: 2px solid #66D7BD;
}
.panamericanos.pan-art .swiper-thumbs .swiper-slide img {
  border-radius: 0;
  overflow: visible;
}
.panamericanos.pan-art .related-posts-block {
  padding: 40px 0;
}
.panamericanos.pan-art .related-posts-block .section-title {
  margin-bottom: 20px;
}
.panamericanos.pan-art .related-posts-block .slider-03 {
  padding: 12px;
}
.panamericanos.pan-art .related-posts-block .slider-03 .card-news {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.panamericanos.pan-art .related-posts-block .slider-03 .swiper-button-next:after {
  box-shadow: none !important;
}
@media (max-width: 40rem) {
  .panamericanos.pan-art .related-posts-block .slider-03 .swiper-button-next {
    display: none;
  }
}
.panamericanos.pan-art .related-posts-block .slider-03 .swiper-button-prev:after {
  box-shadow: none !important;
}
@media (max-width: 40rem) {
  .panamericanos.pan-art .related-posts-block .slider-03 .swiper-button-prev {
    display: none;
  }
}
.panamericanos.pan-art .related-posts-block .slider-03 .swiper-button-disabled {
  opacity: 1;
}
.panamericanos.pan-art .downloads ul {
  background-color: #ebebeb;
}
.panamericanos.pan-art .downloads .downloads__item a h3 {
  color: #004176;
}

.auxi {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: block;
  border-radius: 12px;
}

.downloads {
  margin: 20px 0;
}
.downloads .section-title {
  margin-bottom: 20px;
}
.downloads .section-title h2 {
  margin: 0;
}
.downloads ul {
  list-style: none;
  background-color: #123549;
  border-radius: 16px;
  padding: 20px;
  margin: 0 !important;
}
.downloads__item + .downloads__item {
  margin-top: 20px;
}
.downloads__item a {
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: start;
  transition: 0.3s all ease;
  color: #f4f7e9;
}
.downloads__item a h3 {
  font-size: 14px;
  padding: 0;
  margin: 0;
  text-decoration: none;
  text-transform: none;
  color: #f4f7e9;
  line-height: 1.4;
  border: none;
  display: inline-block;
  font-family: "Montserrat-Regular", sans-serif !important;
}
@media (max-width: 40rem) {
  .downloads__item a h3 {
    font-size: 12px;
    line-height: 1.3;
  }
}
.downloads__item a:hover {
  color: #FF1A6A;
}
.downloads__item a p {
  font-size: 0.9rem;
  color: #ffffff;
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 40rem) {
  .downloads__item a p {
    font-size: 0.59rem;
  }
}
.downloads__item a img {
  width: 24px;
}

.banner-btn {
  position: fixed;
  border-radius: 5px;
  overflow: hidden;
  opacity: 1;
  transition: 0.7s all ease-in-out;
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.3));
  z-index: 2000;
}
@media (max-width: 64rem) {
  .banner-btn {
    bottom: 10px;
    right: 0;
    left: 0;
    top: auto;
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
}
.banner-btn.container {
  position: fixed;
  top: 55px;
  right: 0;
  width: 245px;
  height: 168px;
  margin: 0;
  max-width: 245px;
  z-index: 10000;
}
.banner-btn img {
  max-width: 345px;
}
@media (max-width: 64rem) {
  .banner-btn img {
    max-width: 320px;
    margin: 0 auto;
  }
}
.banner-btn .btn-close {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.69);
  border-radius: 3px;
  top: 6px;
  right: 6px;
  z-index: 1;
  cursor: pointer;
  border: none;
  padding: 0;
  line-height: 0;
}
.banner-btn .btn-close img {
  width: 20px;
}
@media (max-width: 64rem) {
  .banner-btn.banner-show {
    display: block;
  }
}
.banner-btn.banner-show.banner-btn__top {
  top: 95px;
}
@media (max-width: 64rem) {
  .banner-btn.banner-show.banner-btn__top {
    top: auto;
  }
}
.banner-btn.banner-show.banner-btn__mid {
  right: 8px;
  display: none;
}
@media (max-width: 64rem) {
  .banner-btn.banner-show.banner-btn__mid {
    right: 0;
    display: block;
  }
}
@media (max-width: 64rem) {
  .banner-btn.banner-hide-m {
    opacity: 0;
    visibility: hidden;
  }
}
.banner-btn.banner-hide-m.banner-btn__top {
  top: -100% !important;
}
@media (max-width: 64rem) {
  .banner-btn.banner-hide-m.banner-btn__top {
    top: auto !important;
  }
}
.banner-btn.banner-hide-m.banner-btn__mid {
  right: -100% !important;
}
@media (max-width: 64rem) {
  .banner-btn.banner-hide-m.banner-btn__mid {
    right: 0 !important;
  }
}
.banner-btn__top {
  right: 8px;
  top: -100%;
}
@media (max-width: 64rem) {
  .banner-btn__top {
    top: auto;
    right: 0;
    display: none !important;
  }
}
.banner-btn__mid {
  top: calc(50% - 80px);
  right: -100%;
}
@media (max-width: 64rem) {
  .banner-btn__mid {
    top: auto;
    right: 0;
  }
}

.noticias {
  background: none;
}

.vivo {
  background: #0E3A81;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 100%;
  padding: 30px 0 0;
}
.vivo .btn.tertiary {
  background-color: #FF1A6A;
  color: #fff;
}
.vivo .row.padding-0-15 .col {
  padding: 1rem 0.2rem;
}
.vivo .container {
  margin: 0 auto 20px;
}
@media (max-width: 64rem) {
  .vivo .port-inicio {
    display: none;
  }
}
.vivo .row {
  padding: 0;
}
@media (max-width: 64rem) {
  .vivo .row .col-sm-8.col-xs-12 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }
}
.vivo .section-title h2.col-md-10.col-sm-9 {
  color: #fff !important;
  border-left: 8px solid #FF1A6A !important;
  margin: 0 1rem;
}
.vivo .section-title h2.col-md-10.col-sm-9.rot-vivo {
  border-left: 0px solid #FF1A6A !important;
  padding-left: 0;
}
.vivo .col-md-4.col-xs-12.col .section-title.row h2.col-md-10.col-sm-9 {
  margin: 0;
}
.vivo .section-title h2 {
  color: #fff !important;
  border-left: 8px solid #FF1A6A !important;
}
.vivo .ultimo-minuto--noticias li span {
  color: #fff !important;
}
.vivo .ultimo-minuto--noticias li h4 a {
  color: #fff !important;
}

.full-carousel--cars {
  padding: 0.875rem 0 0.875rem 0.938rem !important;
}
@media (max-width: 64rem) {
  .full-carousel--cars {
    padding: 0.875rem 0 0.875rem 0 !important;
  }
}
.full-carousel .container .section-title.row {
  justify-content: space-between;
}
.full-carousel .container .section-title.row h2 {
  margin: 0;
}

.swiper-button-prev--noticias:after, .swiper-button-next--noticias:after {
  background-color: #FF1A6A;
}

.swiper-button-prev--noticias:after {
  background-image: url(../imags/icons/prev-w.png);
}

.swiper-button-next--noticias:after {
  background-image: url(../imags/icons/next-w.png);
}

.container--noticias-banner {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 40px 0;
}
.container--noticias {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
}
.container--noticias h2 {
  color: #333;
  background-color: #ffffff;
  font-family: "Poppins-Bold";
  border-left: 8px solid #0E3A81;
}
.container--noticias .btn.tertiary {
  background-color: #FF1A6A;
  color: #ffffff;
  font-family: "Poppins";
  font-weight: normal;
}
@media (max-width: 64rem) {
  .container--noticias .btn.tertiary {
    display: none !important;
  }
}
.container--noticias .container {
  margin: 0 auto !important;
}
.container--noticias .container h2 {
  color: #333;
}
.container--noticias .section-title h3 {
  color: #333;
}
@media (max-width: 40rem) {
  .container--noticias .rot__logo {
    margin: 0 auto;
  }
  .container--noticias .rot__logo img {
    margin: 0 auto;
  }
}
.container--noticias .row .col .inner-title {
  color: #333;
  font-family: "Poppins-Bold";
}
.container--noticias .row .col p {
  color: #333;
  font-family: "Poppins";
  line-height: normal;
}
.container--marque {
  background: #0E3A81;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
.container--marque .row {
  max-width: 1350px;
}
.container--marque .row .ico-clock {
  display: none;
}
@media (max-width: 64rem) {
  .container--marque .row .ico-clock {
    display: block;
    flex: 0 0 auto;
    padding: 4px 0 4px 1rem;
  }
}
.container--marque .row .col-md-3 {
  padding: 0;
}
.container--marque .row .col-md-3 .card-section {
  margin: 8px 0;
  padding: 4px 0 4px 1rem;
}
@media (max-width: 64rem) {
  .container--marque .row .col-md-3 {
    display: none;
  }
}

.card-container--marque .card {
  min-height: auto;
  background: none;
}
.card-container--marque .card .card-title {
  margin: 0;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.banner-link--noticias {
  position: relative !important;
  top: 0 !important;
  width: 100% !important;
  display: block !important;
}
@media (max-width: 64rem) {
  .banner-link--noticias {
    display: none !important;
  }
}

.section-title--noticias {
  padding: 0;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
.section-title--noticias h2 {
  display: flex;
  flex-flow: flex nowrap;
  align-items: center;
  gap: 10px;
  border-left: 0 solid #61CDB8;
  margin-bottom: 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.punto-rojo {
  background-color: #FF1A6A;
  border-radius: 50%;
  width: 20px; /* especifica el ancho */
  height: 20px; /* especifica la altura */
  animation-name: pulse;
  animation-duration: 2s; /* especifica la duración */
  animation-iteration-count: infinite;
}

.full-carousel--noticias {
  background-color: #ffffff;
  padding: 0.875rem 0;
}
.full-carousel--noticias .featured-cols .row .col .border-card {
  margin: 0 0 10px;
}
.full-carousel--noticias .featured-cols .row .col .border-card:hover {
  background-color: rgba(255, 26, 106, 0) !important;
}
.full-carousel--noticias .featured-cols .row .col .section-title {
  margin: 0 0 10px;
}
.full-carousel--noticias .featured-cols .row .col .section-title h2 {
  margin: 0;
  border-left: 0px;
  padding-left: 1rem;
}

.long.featured--noticias {
  height: 100% !important;
}

.featured--noticias {
  padding: 0;
  position: relative;
}
.featured--noticias::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(14, 58, 129, 0) 57.77%, #0E3A81 80.2%, #0E3A81 100%);
}
@media (max-width: 64rem) {
  .featured--noticias::before {
    background: none;
  }
}
.featured--noticias .featured-content {
  background: none;
  padding: 20px;
  max-width: 845px;
}
@media (max-width: 64rem) {
  .featured--noticias .featured-content {
    max-width: 100%;
    background: #0E3A81;
  }
}
.featured--noticias .featured-content .info_pill {
  border-radius: 100px;
  background: #FFF;
  color: #0E3A81;
  font-family: Poppins;
  font-size: 0.75rem;
  line-height: normal;
  padding: 4px 11px;
  display: inline-block;
  text-align: center;
}
.featured--noticias .featured-content .featured-title {
  font-family: "Poppins-Bold";
  font-size: 1.5rem;
  margin: 10px 0 5px 0;
}
.featured--noticias .featured-content .featured-excerpt {
  font-family: "Poppins";
  line-height: normal !important;
}

.card--chv, .card-container--chv {
  background-color: #123549 !important;
}
.card--noticias, .card--chv, .card-container--noticias, .card-container--chv {
  background-color: #F3F3F3;
  padding: 0;
}
.card--noticias .card-img, .card--chv .card-img, .card-container--noticias .card-img, .card-container--chv .card-img {
  margin: 0 auto 20px !important;
  width: 100% !important;
  display: table !important;
}
.card--noticias .card-img img, .card--chv .card-img img, .card-container--noticias .card-img img, .card-container--chv .card-img img {
  display: table;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 12px;
  width: 100%;
}
.card--noticias .card-img .ico-chv, .card--chv .card-img .ico-chv, .card-container--noticias .card-img .ico-chv, .card-container--chv .card-img .ico-chv {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 35px !important;
  height: auto;
  border-radius: 0;
}
.card--noticias .card-img .reprod .cont_pill, .card--chv .card-img .reprod .cont_pill, .card-container--noticias .card-img .reprod .cont_pill, .card-container--chv .card-img .reprod .cont_pill {
  background: #0E3A81;
  padding: 4px 11px;
  display: inline-block;
  text-align: center;
}
.card--noticias .card-img .reprod .cont_pill .info_pill, .card--chv .card-img .reprod .cont_pill .info_pill, .card-container--noticias .card-img .reprod .cont_pill .info_pill, .card-container--chv .card-img .reprod .cont_pill .info_pill {
  font-family: "Poppins";
}
.card--noticias .card-img .reprod .cont_play, .card--chv .card-img .reprod .cont_play, .card-container--noticias .card-img .reprod .cont_play, .card-container--chv .card-img .reprod .cont_play {
  background: #FFF;
  background-repeat: no-repeat;
  background-image: url(../imags/icons/play-noticia.svg);
  background-position: center;
}
.card--noticias .card-title, .card--chv .card-title, .card-container--noticias .card-title, .card-container--chv .card-title {
  font-family: "Poppins-Bold";
}
.card--noticias .card-title--medium, .card--chv .card-title--medium, .card-container--noticias .card-title--medium, .card-container--chv .card-title--medium {
  font-size: 1.25rem !important;
}
.card--noticias .card-text, .card--chv .card-text, .card-container--noticias .card-text, .card-container--chv .card-text {
  font-family: "Poppins-Medium";
}
.card--noticias .card-stamp, .card--chv .card-stamp, .card-container--noticias .card-stamp, .card-container--chv .card-stamp {
  font-family: "Poppins-Bold";
  color: #999 !important;
}
.card--noticias .card-title, .card--noticias .card-text, .card--noticias .card-stamp, .card--chv .card-title, .card--chv .card-text, .card--chv .card-stamp, .card-container--noticias .card-title, .card-container--noticias .card-text, .card-container--noticias .card-stamp, .card-container--chv .card-title, .card-container--chv .card-text, .card-container--chv .card-stamp {
  color: #333;
}
.card--noticias .card-title:after, .card--noticias .card-text:after, .card--noticias .card-stamp:after, .card--chv .card-title:after, .card--chv .card-text:after, .card--chv .card-stamp:after, .card-container--noticias .card-title:after, .card-container--noticias .card-text:after, .card-container--noticias .card-stamp:after, .card-container--chv .card-title:after, .card-container--chv .card-text:after, .card-container--chv .card-stamp:after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
  font-size: 0 !important;
}
.card--noticias:hover .card-title, .card--noticias:hover .card-text, .card--noticias:hover .card-stamp, .card--noticias:hover .card-description, .card--chv:hover .card-title, .card--chv:hover .card-text, .card--chv:hover .card-stamp, .card--chv:hover .card-description, .card-container--noticias:hover .card-title, .card-container--noticias:hover .card-text, .card-container--noticias:hover .card-stamp, .card-container--noticias:hover .card-description, .card-container--chv:hover .card-title, .card-container--chv:hover .card-text, .card-container--chv:hover .card-stamp, .card-container--chv:hover .card-description {
  color: #ffffff !important;
}
.card--noticias .card-description, .card--chv .card-description, .card-container--noticias .card-description, .card-container--chv .card-description {
  font-family: "Poppins";
  color: #333;
  font-size: 16px;
  padding: 0;
  line-height: 150%;
}

.overflow-hidden {
  overflow: hidden;
  margin-bottom: 18px;
}

.bg-uno {
  background-color: #FF1A6A !important;
}
.bg-uno .card-title, .bg-uno .card-description {
  color: #fff !important;
}

.bg-dos {
  background-color: #0E3A81 !important;
}
.bg-dos .card-title, .bg-dos .card-description {
  color: #fff !important;
}

.card--height-full {
  height: 100% !important;
}
.card--temas {
  padding: 10px;
}
.card--temas .card-title {
  font-size: 1.25rem !important;
  color: #0E3A81;
  font-family: "Poppins-Bold";
  margin-bottom: 20px;
  -webkit-line-clamp: 3 !important;
  -webkit-line-clamp: none !important;
}
.card--temas .card-description {
  font-size: 16px;
  padding: 0px 10px;
  font-family: "Poppins";
}
.card--chv {
  background-color: #123549 !important;
}
.card--chv .card-title {
  color: #fff !important;
  border-left: 0 solid #61CDB8;
  -webkit-line-clamp: none !important;
  padding: 0;
  line-height: normal;
}
.card--chv .card-description {
  font-family: "Poppins";
  color: #fff;
  font-size: 16px;
  padding: 0;
  line-height: 150%;
}
.card--noticias {
  background-color: #F3F3F3 !important;
}
.card--noticias .card-title {
  color: #333 !important;
  border-left: 0 solid #61CDB8;
  -webkit-line-clamp: none !important;
  padding: 0;
  line-height: normal !important;
  font-size: 1rem;
}
@media (max-width: 64rem) {
  .card--noticias .card-title {
    margin: 0;
  }
}
.card--noticias .card-title--temas {
  font-size: 1.25rem !important;
  color: #0E3A81 !important;
}
.card--noticias .card-text {
  padding: 0 0 10px !important;
  max-height: 5ch;
  line-height: normal !important;
}
.card--noticias .card-stamp {
  padding: 0 !important;
}
.card--noticias:hover {
  background-color: #FF1A6A !important;
}
.card--noticias:hover .card-title {
  color: #fff;
}
.card__small {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background-color: #123549;
  padding: 10px;
}
.card__small .card-img--small {
  flex: 0 0 100px !important;
  margin: 0 !important;
}
.card__small .card-img {
  padding: 0;
  flex: 0 0 140px;
  margin: 0 !important;
}
.card__small .card-img img {
  border-radius: 10px;
}
.card__small .card-title {
  color: #fff;
  font-size: 1rem;
  font-family: "Poppins-Bold";
}
.card__small:hover {
  background-color: #FF1A6A !important;
}
.card__small:hover .card-title {
  color: #fff !important;
}
.card__small.card--noticias .card-title--medium {
  color: #0E3A81 !important;
  font-size: 1.25rem;
}
.card__small.card--noticias:hover {
  background-color: #FF1A6A !important;
}
.card__small.card--noticias:hover .card-title {
  color: #fff !important;
}

.container--padding-bottom40 {
  padding-bottom: 40px;
}

.col--noticias {
  padding: 0 1rem;
}

.ad-single--noticias {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 300px;
}
.ad-single--noticias .legend {
  color: #333;
  padding: 0 5px 17px;
  display: table;
  text-align: center;
  margin: 0 auto;
}
.ad-single--noticias.white {
  background: rgba(255, 255, 255, 0.1);
}
.ad-single--noticias.white .legend {
  color: rgba(255, 255, 255, 0.4);
}

.ad-single--noticias + .ad-single--noticias {
  margin-top: 10px;
}

.article--noticias .article-image {
  max-width: 272px;
}
@media (max-width: 64rem) {
  .article--noticias .article-image {
    max-width: 100%;
  }
}
.article--noticias .article-text .card-stamp {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 0.813rem;
  color: #999999;
}
.article--noticias .article-text .article-title {
  font-family: "Poppins-Bold", sans-serif;
  line-height: normal !important;
  margin: 20px 0;
}
.article--noticias .article-text .article-description {
  font-family: "Poppins";
  line-height: normal !important;
}
.article--noticias .article-text .article-title, .article--noticias .article-text .article-description {
  color: #333;
}

.inner-title--noticias {
  font-family: "Poppins-Bold";
}

.description--noticias {
  font-family: "Poppins";
  line-height: 1.5;
  float: left;
  clear: both;
}
.description--noticias a {
  font-family: "Poppins-Bold";
  text-decoration: underline;
}

.list {
  list-style: none;
  position: relative;
}
.list__notas {
  position: relative;
}
.list__notas--noticias li {
  color: #333;
  font-size: 1rem;
  font-family: "Poppins";
  list-style: none;
  position: relative;
}
.list__notas--noticias li:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -18px;
  height: calc(100% + 20px);
  width: 2px;
  border-radius: 2px;
  background: #FF1A6A;
  margin: 28px 0 0 0;
  overflow: hidden;
}
.list__notas--noticias li:last-child:before {
  content: none;
}
.list__notas--noticias li a {
  color: #333;
  line-height: normal !important;
}
.list__notas--noticias li:after {
  content: "";
  position: absolute;
  top: 12px;
  left: -25px;
  width: 15px;
  height: 14px;
  background-image: url("/chilevision/imag/v2/imags/icons/ellipse.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.list__notas li + li {
  margin-top: 20px;
}

.list {
  list-style: none;
  position: relative;
}
.list__notas {
  position: relative;
}
.list__notas--chv li {
  color: #fff;
  font-size: 1rem;
  font-family: "Poppins";
  list-style: none;
  position: relative;
}
.list__notas--chv li:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -18px;
  height: calc(100% + 0px);
  width: 2px;
  border-radius: 2px;
  background: #FF1A6A;
  margin: 28px 0 0 0;
  overflow: hidden;
}
.list__notas--chv li:last-child:before {
  content: none;
}
.list__notas--chv li a {
  color: #fff;
  line-height: normal !important;
}
.list__notas--chv li:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -25px;
  width: 15px;
  height: 14px;
  background-image: url("/chilevision/imag/v2/imags/icons/ellipse.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.list__notas li + li {
  margin-top: 20px;
}

.ultimo-minuto, .ultimo-minuto-chv {
  padding: 0;
  list-style: none;
}
.ultimo-minuto--noticias li span, .ultimo-minuto--chv li span, .ultimo-minuto-chv--noticias li span, .ultimo-minuto-chv--chv li span {
  color: #FF1A6A;
  font-family: "Poppins-Bold";
  font-size: 1.125rem;
}
.ultimo-minuto--noticias li h4, .ultimo-minuto--chv li h4, .ultimo-minuto-chv--noticias li h4, .ultimo-minuto-chv--chv li h4 {
  color: #333;
  font-size: 16px;
  font-family: "Poppins";
  margin-top: 5px;
  margin-bottom: 20px;
}
.ultimo-minuto--noticias li h4 a, .ultimo-minuto--chv li h4 a, .ultimo-minuto-chv--noticias li h4 a, .ultimo-minuto-chv--chv li h4 a {
  font-family: "Poppins";
  color: #333;
  font-weight: normal;
  line-height: normal !important;
}

.ultimo-minuto-chv--noticias li span {
  color: #FF1A6A;
}
.ultimo-minuto-chv--noticias li h4 {
  color: #fff;
}
.ultimo-minuto-chv--noticias li h4 a {
  color: #fff;
}

.section-title--temas {
  justify-content: space-between;
}
.section-title--temas .border-card {
  background-color: #fff;
}
.section-title--temas h2 {
  border-left: 0 solid #61CDB8;
  padding-left: 0;
}
.section-title--temas .btn {
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid #FF1A6A;
  background-color: #FFf !important;
  color: #FF1A6A !important;
  max-width: 85px;
  width: 85px;
  min-width: 85px;
}

.rot__logo img {
  max-width: 100%;
  width: auto;
}
@media (max-width: 64rem) {
  .rot__logo img {
    margin-left: 1rem;
  }
}

.color-bg-none {
  background: none !important;
}

.section-bg {
  padding: 30px 0;
}

.chv-noticias {
  background: #fff;
}
.chv-noticias .contsubtit .linksubtit {
  margin-top: -30px;
  padding: 0;
}
.chv-noticias .contsubtit .linksubtit i {
  background-image: url(../imags/icons/next.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  color: transparent;
  display: block;
  width: 19px;
  height: 31px;
  rotate: 270deg;
}
@media (max-width: 64rem) {
  .chv-noticias .anclas {
    margin: 0;
  }
}
.chv-noticias .rot-vivo {
  border-left: 0px solid #FF1A6A !important;
  padding-left: 0;
}
.chv-noticias .container--noticias .full-carousel--noticias .featured-cols .row .col .border-card {
  background-color: #fff !important;
}
.chv-noticias .container--noticias .full-carousel--noticias .featured-cols .row .col .border-card .card.smaller {
  margin: 0;
}
.chv-noticias .container--noticias .full-carousel--noticias .featured-cols .row .col .border-card .card.smaller .card-img {
  margin: 0 auto 0;
  width: 100%;
}
.chv-noticias .container--noticias .full-carousel--noticias .featured-cols .row .col .border-card .card.smaller .card-img img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 20px;
}
.chv-noticias .header .search-container .search-box .search {
  background-color: #EBEBEB;
}
.chv-noticias .header .pill-link {
  color: #fff;
  font-family: "Poppins-SemiBold";
  border: 1px solid #FF1A6A;
  background-color: #FF1A6A;
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 12px;
  transition: 0.3s all ease;
  text-wrap: nowrap;
}
.chv-noticias .header .pill-link:hover {
  background-color: #0E3A81;
  border: 1px solid #0E3A81;
}
@media (max-width: 64rem) {
  .chv-noticias .header .pill-link {
    display: none;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .header .pill-link {
    display: none;
  }
}
.chv-noticias .header .pill-link--mobile {
  display: none;
}
@media (max-width: 64rem) {
  .chv-noticias .header .pill-link--mobile {
    display: block;
    color: #FF1A6A;
    font-family: "Poppins-SemiBold";
    border: 1px solid #FF1A6A;
    background-color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 12px;
    transition: 0.3s all ease;
    text-wrap: nowrap;
    margin-left: 20px;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .header .pill-link--mobile {
    display: block;
    color: #FF1A6A;
    font-family: "Poppins-SemiBold";
    border: 1px solid #FF1A6A;
    background-color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 12px;
    transition: 0.3s all ease;
    text-wrap: nowrap;
    margin-left: 20px;
  }
}
.chv-noticias .header .nav-container, .chv-noticias .header .logo-container, .chv-noticias .header .search-container, .chv-noticias .header .social {
  padding: 1rem 0.5rem 0;
}
.chv-noticias .header .search-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 64rem) {
  .chv-noticias .header .search-container {
    display: none;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .header .search-container {
    display: none;
  }
}
.chv-noticias .card, .chv-noticias .card-container {
  padding: 0;
}
@media (max-width: 64rem) {
  .chv-noticias .container.single-video {
    margin: 0;
  }
}
.chv-noticias .container.single-video img {
  border-radius: 0;
}
.chv-noticias .footer {
  background-color: #0E3A81;
}
.chv-noticias .anclas .subtitulos a {
  color: #2E2E2E;
}
.chv-noticias .CUERPO, .chv-noticias .CUERPO.CUERPO, .chv-noticias .CUERPO p, .chv-noticias .titsubtit {
  line-height: 160%;
  font-size: 1.125rem !important;
  margin-bottom: 30px;
  color: #2E2E2E;
}
.chv-noticias .CUERPO ul li, .chv-noticias .CUERPO ol li, .chv-noticias .CUERPO.CUERPO ul li, .chv-noticias .CUERPO.CUERPO ol li, .chv-noticias .CUERPO p ul li, .chv-noticias .CUERPO p ol li, .chv-noticias .titsubtit ul li, .chv-noticias .titsubtit ol li {
  line-height: 160%;
  font-size: 1.125rem !important;
  color: #2E2E2E;
}
.chv-noticias .CUERPO .txt-highlight, .chv-noticias .CUERPO.CUERPO .txt-highlight, .chv-noticias .CUERPO p .txt-highlight, .chv-noticias .titsubtit .txt-highlight {
  color: #ffffff !important;
}
.chv-noticias .CUERPO a, .chv-noticias .CUERPO.CUERPO a, .chv-noticias .CUERPO p a, .chv-noticias .titsubtit a {
  font-weight: normal;
}
.chv-noticias .CUERPO .siguenos, .chv-noticias .CUERPO.CUERPO .siguenos, .chv-noticias .CUERPO p .siguenos, .chv-noticias .titsubtit .siguenos {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}
.chv-noticias .CUERPO .siguenos li, .chv-noticias .CUERPO.CUERPO .siguenos li, .chv-noticias .CUERPO p .siguenos li, .chv-noticias .titsubtit .siguenos li {
  margin-bottom: 0;
  list-style: none;
  border-radius: 12px;
  height: 56px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.chv-noticias .CUERPO .siguenos li a, .chv-noticias .CUERPO.CUERPO .siguenos li a, .chv-noticias .CUERPO p .siguenos li a, .chv-noticias .titsubtit .siguenos li a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-family: "Poppins-Bold";
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}
.chv-noticias .CUERPO .siguenos li a figure, .chv-noticias .CUERPO.CUERPO .siguenos li a figure, .chv-noticias .CUERPO p .siguenos li a figure, .chv-noticias .titsubtit .siguenos li a figure {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.chv-noticias .CUERPO .siguenos li a figure img, .chv-noticias .CUERPO.CUERPO .siguenos li a figure img, .chv-noticias .CUERPO p .siguenos li a figure img, .chv-noticias .titsubtit .siguenos li a figure img {
  max-width: 100%;
  width: auto;
}
.chv-noticias .CUERPO .siguenos .google, .chv-noticias .CUERPO.CUERPO .siguenos .google, .chv-noticias .CUERPO p .siguenos .google, .chv-noticias .titsubtit .siguenos .google {
  background-color: #4E8DF5;
}
.chv-noticias .CUERPO .siguenos .whatsapp, .chv-noticias .CUERPO.CUERPO .siguenos .whatsapp, .chv-noticias .CUERPO p .siguenos .whatsapp, .chv-noticias .titsubtit .siguenos .whatsapp {
  background-color: #4EBC71;
}
.chv-noticias .CUERPO .btn, .chv-noticias .CUERPO.CUERPO .btn, .chv-noticias .CUERPO p .btn, .chv-noticias .titsubtit .btn {
  margin: 20px auto !important;
  display: inline-block;
  font-size: 1.125rem;
  color: #ffffff;
  padding: 10px 30px;
  background-color: #FF1A6A;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Poppins-Bold";
  display: table;
  text-decoration: none;
}
.chv-noticias .CUERPO ul, .chv-noticias .CUERPO ol, .chv-noticias .CUERPO.CUERPO ul, .chv-noticias .CUERPO.CUERPO ol, .chv-noticias .CUERPO p ul, .chv-noticias .CUERPO p ol, .chv-noticias .titsubtit ul, .chv-noticias .titsubtit ol {
  color: #2E2E2E;
}
.chv-noticias .CUERPO th, .chv-noticias .CUERPO table, .chv-noticias .CUERPO table td, .chv-noticias .CUERPO.CUERPO th, .chv-noticias .CUERPO.CUERPO table, .chv-noticias .CUERPO.CUERPO table td, .chv-noticias .CUERPO p th, .chv-noticias .CUERPO p table, .chv-noticias .CUERPO p table td, .chv-noticias .titsubtit th, .chv-noticias .titsubtit table, .chv-noticias .titsubtit table td {
  color: #2E2E2E;
}
.chv-noticias .CUERPO blockquote, .chv-noticias .CUERPO.CUERPO blockquote, .chv-noticias .CUERPO p blockquote, .chv-noticias .titsubtit blockquote {
  color: #2E2E2E;
}
.chv-noticias .CUERPO blockquote:after, .chv-noticias .CUERPO.CUERPO blockquote:after, .chv-noticias .CUERPO p blockquote:after, .chv-noticias .titsubtit blockquote:after {
  display: none;
}
.chv-noticias .CUERPO thead, .chv-noticias .CUERPO.CUERPO thead, .chv-noticias .CUERPO p thead, .chv-noticias .titsubtit thead {
  border-top: 1px solid #2E2E2E;
}
.chv-noticias .CUERPO td, .chv-noticias .CUERPO.CUERPO td, .chv-noticias .CUERPO p td, .chv-noticias .titsubtit td {
  border-right: 1px solid #2E2E2E;
  border-bottom: 1px solid #2E2E2E;
}
.chv-noticias .CUERPO td:first-child, .chv-noticias .CUERPO.CUERPO td:first-child, .chv-noticias .CUERPO p td:first-child, .chv-noticias .titsubtit td:first-child {
  border-left: 1px solid #2E2E2E;
}
.chv-noticias .CUERPO th, .chv-noticias .CUERPO.CUERPO th, .chv-noticias .CUERPO p th, .chv-noticias .titsubtit th {
  border-right: 1px solid #2E2E2E;
  border-bottom: 1px solid #2E2E2E;
  border-left: 1px solid #2E2E2E;
}
.chv-noticias .CUERPO h1, .chv-noticias .CUERPO h2, .chv-noticias .CUERPO h3, .chv-noticias .CUERPO.CUERPO h1, .chv-noticias .CUERPO.CUERPO h2, .chv-noticias .CUERPO.CUERPO h3, .chv-noticias .CUERPO p h1, .chv-noticias .CUERPO p h2, .chv-noticias .CUERPO p h3, .chv-noticias .titsubtit h1, .chv-noticias .titsubtit h2, .chv-noticias .titsubtit h3 {
  border-left: 8px solid #0E3A81;
}
.chv-noticias .CUERPO h2, .chv-noticias .CUERPO h3, .chv-noticias .CUERPO.CUERPO h2, .chv-noticias .CUERPO.CUERPO h3, .chv-noticias .CUERPO p h2, .chv-noticias .CUERPO p h3, .chv-noticias .titsubtit h2, .chv-noticias .titsubtit h3 {
  border-left: 0 solid #0E3A81;
  padding-left: 0;
  margin: 20px 0;
  padding-top: 5px;
}
.chv-noticias .CUERPO h1, .chv-noticias .CUERPO h2, .chv-noticias .CUERPO h3, .chv-noticias .CUERPO h4, .chv-noticias .CUERPO h5, .chv-noticias .CUERPO h6, .chv-noticias .CUERPO.CUERPO h1, .chv-noticias .CUERPO.CUERPO h2, .chv-noticias .CUERPO.CUERPO h3, .chv-noticias .CUERPO.CUERPO h4, .chv-noticias .CUERPO.CUERPO h5, .chv-noticias .CUERPO.CUERPO h6, .chv-noticias .CUERPO p h1, .chv-noticias .CUERPO p h2, .chv-noticias .CUERPO p h3, .chv-noticias .CUERPO p h4, .chv-noticias .CUERPO p h5, .chv-noticias .CUERPO p h6, .chv-noticias .titsubtit h1, .chv-noticias .titsubtit h2, .chv-noticias .titsubtit h3, .chv-noticias .titsubtit h4, .chv-noticias .titsubtit h5, .chv-noticias .titsubtit h6 {
  color: #333;
  font-family: "Poppins-Bold";
}
.chv-noticias .section-title h1 {
  border-left: 0 solid #61CDB8;
  color: #333;
  padding-left: 0;
  font-size: 36px;
  font-family: Poppins-Bold;
}
.chv-noticias .article-detail p {
  color: #333;
  font-size: 20px;
  font-family: Poppins;
}
.chv-noticias .footer .nav .link-item .link {
  font-size: 0.875rem;
  font-family: Poppins-SemiBold;
}
.chv-noticias .inner-nav-container.movil, .chv-noticias .inner-nav-container.art-video {
  display: flex;
}
@media (max-width: 64rem) {
  .chv-noticias .inner-nav-container.movil, .chv-noticias .inner-nav-container.art-video {
    display: block;
    clear: both;
    float: left;
    width: 100%;
  }
}
@media (max-width: 64rem) {
  .chv-noticias .inner-nav-container.movil .inner-nav, .chv-noticias .inner-nav-container.art-video .inner-nav {
    overflow: visible;
  }
}
.chv-noticias .inner-nav-container.movil .inner-nav .pill, .chv-noticias .inner-nav-container.art-video .inner-nav .pill {
  float: left;
  margin-right: 5px;
}
.chv-noticias .inner-nav-container.movil {
  display: none;
}
@media (max-width: 64rem) {
  .chv-noticias .inner-nav-container.movil {
    display: block;
  }
}
.chv-noticias.noticias .error {
  max-width: 1300px;
  margin: 0 auto;
}
.chv-noticias.noticias .error h1 {
  color: #0E3A81;
  line-height: 1.2;
  font-size: 2.5rem;
}
.chv-noticias.noticias .error .subtit, .chv-noticias.noticias .error .baj {
  color: #333;
}
.chv-noticias.noticias .error .subtit {
  margin-left: 0;
  margin-top: 0;
  line-height: 1.3;
  font-size: 1.875rem;
}
.chv-noticias .box-info {
  border: none;
  border-radius: 10px;
  margin: 30px 0;
}
.chv-noticias .box-info__top {
  display: flex;
  gap: 20px;
  background: #14455B;
  padding: 10px;
  border-radius: 7px 7px 0 0;
  align-items: center;
}
.chv-noticias .box-info__top--rounded {
  border-radius: 10px;
}
.chv-noticias .box-info__title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.chv-noticias .box-info__bottom {
  padding: 20px;
  background: #F3F3F3;
  border-radius: 0 0 7px 7px;
}
.chv-noticias .box-info__bottom .CUERPO {
  padding: 0;
  margin-bottom: 0 !important;
}
.chv-noticias .box-info__bottom .CUERPO p {
  font-size: 0.8rem !important;
  margin-bottom: 0;
  color: #333333;
}
.chv-noticias .box-info__bottom .CUERPO ul li {
  font-size: 0.8rem !important;
  color: #333333;
}
.chv-noticias .box-info__text p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 100;
  margin-top: 0;
}
.chv-noticias .elecciones {
  background-color: #003781;
  padding: 40px 0;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones {
    background-position: 40% top;
  }
}
.chv-noticias .elecciones .auxi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.chv-noticias .elecciones .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.chv-noticias .elecciones .section-head__title {
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Poppins";
  font-weight: 700;
  margin: 2px 0;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .section-head__title {
    font-size: 32px;
  }
}
.chv-noticias .elecciones .section-head__title img {
  max-width: 400px;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .section-head__title img {
    max-width: 300px;
  }
}
.chv-noticias .elecciones .section-head__description {
  color: #ffffff;
  font-size: 20px;
  font-family: "Poppins-SemiBold", sans-serif;
  margin: 3px 0 0;
  text-transform: uppercase;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .section-head__description {
    font-size: 16px;
  }
}
.chv-noticias .elecciones .section-head__img {
  padding: 20px;
  border-radius: 20px;
  background-color: #E6EEFA;
  margin-bottom: 20px;
}
.chv-noticias .elecciones .section-head__icon {
  width: 48px;
}
.chv-noticias .elecciones .section-head__default .section-head__subtitle {
  font-size: 20px !important;
}
.chv-noticias .elecciones .section-head__default .section-head__description {
  font-size: 15px !important;
  max-width: 480px;
  margin-top: 12px !important;
  line-height: 1.5;
  text-transform: none;
}
.chv-noticias .elecciones .filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 880px;
  width: 100%;
}
@media (max-width: 64rem) {
  .chv-noticias .elecciones .filter {
    max-width: 95%;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .filter {
    flex-direction: column;
    max-width: 320px;
    align-items: stretch;
  }
}
.chv-noticias .elecciones .filter__select {
  padding: 14px 40px 14px 20px;
  border-radius: 12px;
  background-color: #ffffff;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../imags/icons/ic-chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 30px;
  box-shadow: none;
  flex: 1 0 auto;
}
.chv-noticias .elecciones .filter__select:focus {
  outline: none;
}
.chv-noticias .elecciones .filter .btn__primary {
  background-color: #FF1A6A;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  flex: 0 1 170px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .filter .btn__primary {
    flex: none;
  }
}
.chv-noticias .elecciones .filter .btn__primary:hover {
  opacity: 0.9;
}
.chv-noticias .elecciones .results {
  background-color: #fff;
  padding: 20px 60px 40px;
  border-radius: 16px;
  max-width: 768px;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 64rem) {
  .chv-noticias .elecciones .results {
    padding: 20px 40px 40px;
    width: 85%;
    min-height: 600px;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .results {
    padding: 20px 0 40px;
    width: 92%;
  }
}
.chv-noticias .elecciones .results__wrapper {
  width: 100%;
  max-width: 600px;
  position: relative;
  margin: 30px auto 0;
  position: relative;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .results__wrapper {
    padding: 0 15px;
    max-width: 91%;
  }
}
.chv-noticias .elecciones .results .section-head__epig {
  color: #072034;
  font-size: 16px;
  font-family: "Poppins-SemiBold", sans-serif;
  margin: 0;
}
.chv-noticias .elecciones .results .section-head__title {
  color: #FF126E;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Poppins-Bold", sans-serif;
  margin: 4px 0;
}
.chv-noticias .elecciones .results .section-head__subtitle {
  color: #000000;
  font-size: 18px;
  font-family: "Poppins-Bold", sans-serif;
  margin: 0;
}
.chv-noticias .elecciones .results .section-head__description {
  color: #003880;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  margin: 3px 0 0;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .results .section-head__description {
    font-size: 12px;
  }
}
.chv-noticias .elecciones .charts {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.chv-noticias .elecciones .chart {
  padding-left: 0;
  list-style: none;
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  overflow-y: auto;
  height: 537px;
  width: 100%;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 64rem) {
  .chv-noticias .elecciones .chart {
    padding-right: 50px;
  }
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .chart {
    width: 92%;
    padding-right: 37px;
  }
}
.chv-noticias .elecciones .chart::-webkit-scrollbar {
  width: 8px;
}
.chv-noticias .elecciones .chart::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.chv-noticias .elecciones .chart::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 8px;
}
.chv-noticias .elecciones .chart::-webkit-scrollbar-thumb:hover {
  background: #d1d1d1;
}
.chv-noticias .elecciones .chart:not(:first-child) {
  margin-top: 10px;
}
.chv-noticias .elecciones .chart__item--winner .chart__bar {
  background-color: #FF1A6A;
}
.chv-noticias .elecciones .chart__item--winner .chart__group {
  margin-bottom: 4px;
}
.chv-noticias .elecciones .chart__group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chv-noticias .elecciones .chart .chart__badge {
  background-color: #FF1A6A;
  color: #ffffff;
  padding: 2px 6px 3px 6px;
  border-radius: 6px;
  display: block;
  font-size: 10px;
  line-height: 1.5;
  font-family: "Poppins-Bold", sans-serif;
}
.chv-noticias .elecciones .chart__name {
  margin: 0;
  color: #333333;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Poppins-Bold", sans-serif;
}
.chv-noticias .elecciones .chart__description {
  margin: 0;
  font-size: 13px;
  color: #666666;
  font-family: "Poppins-Medium", sans-serif;
}
.chv-noticias .elecciones .chart__description.bold {
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .chart__description {
    font-size: 12px;
  }
}
.chv-noticias .elecciones .chart__bar {
  height: 20px;
  background: #003880;
  border-radius: 6px;
  opacity: 0;
  animation: 1s anim-lightspeed-in ease forwards;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 7px;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(11) {
  animation-delay: 2.7s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(10) {
  animation-delay: 2.5s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(9) {
  animation-delay: 2.3s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(8) {
  animation-delay: 2.1s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(7) {
  animation-delay: 1.9s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(6) {
  animation-delay: 1.7s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(5) {
  animation-delay: 1.5s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(4) {
  animation-delay: 1.3s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(3) {
  animation-delay: 1.1s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(2) {
  animation-delay: 0.9s;
}
.chart--dev .chv-noticias .elecciones .chart__bar:nth-of-type(1) {
  animation-delay: 0.7s;
}
.chv-noticias .elecciones .chart__label {
  padding-right: 15px;
  color: white;
  font-size: 11px;
  padding-bottom: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  display: flex;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .chart__label {
    font-size: 11px;
    padding-right: 8px;
    padding-bottom: 0;
  }
}
.chv-noticias .elecciones .chart__pref {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.chv-noticias .elecciones .chart__percentage {
  font-size: 12px;
  position: absolute;
  right: -81px;
  color: #555555;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  max-width: 78px;
  line-height: 0.9;
}
.chv-noticias .elecciones .chart__candidato {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .chart__candidato {
    gap: 6px;
  }
}
.chv-noticias .elecciones .chart__candidato .chart__avatar {
  border-radius: 14px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .chv-noticias .elecciones .chart__candidato .chart__avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: 0 0 34px;
  }
}
.chv-noticias .elecciones .chart__candidato .chart__img {
  width: 100%;
}
@keyframes anim-lightspeed-in {
  0% {
    transform: translateX(-200%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bg-blue {
  background: #0E3A81;
}

.swiper-slide a.chv {
  margin-right: 10px;
}

a.chv {
  background-color: #123549 !important;
}
a.chv .card-title, a.chv .card-text, a.chv .card-stamp {
  color: #fff;
}

.border-card {
  padding: 0;
}
.border-card .card {
  padding: 10px;
  padding-bottom: 20px !important;
}

.chv {
  padding: 10px;
  padding-bottom: 20px !important;
}

.border-card, .chv {
  margin: 0 5px 5px 5px;
  overflow: hidden;
  background-color: #F3F3F3 !important;
  border-radius: 12px;
  display: block;
}
.border-card .card--noticias, .border-card .card--chv, .chv .card--noticias, .chv .card--chv {
  margin: 0;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.border-card:hover, .chv:hover {
  background-color: #FF1A6A !important;
}
.border-card:hover .card--noticias, .border-card:hover .card--chv, .chv:hover .card--noticias, .chv:hover .card--chv {
  background-color: #FF1A6A !important;
}
.border-card:hover .card--noticias .card-title, .border-card:hover .card--noticias .card-description, .border-card:hover .card--noticias .card-text, .border-card:hover .card--noticias .card-stamp, .border-card:hover .card--chv .card-title, .border-card:hover .card--chv .card-description, .border-card:hover .card--chv .card-text, .border-card:hover .card--chv .card-stamp, .chv:hover .card--noticias .card-title, .chv:hover .card--noticias .card-description, .chv:hover .card--noticias .card-text, .chv:hover .card--noticias .card-stamp, .chv:hover .card--chv .card-title, .chv:hover .card--chv .card-description, .chv:hover .card--chv .card-text, .chv:hover .card--chv .card-stamp {
  color: #fff !important;
}

.not-single {
  height: 100%;
}

.ad-single--noticias-full {
  width: 100%;
  padding: 0;
  margin: 20px auto;
  border-radius: 0;
  background-color: #ffffff;
  text-align: center;
}
.ad-single--noticias-full picture a img {
  max-width: 100%;
  width: auto;
}

.ad-single--noticias-full + .ad-single--noticias-full {
  margin: 40px auto 0;
}
@media (max-width: 64rem) {
  .ad-single--noticias-full + .ad-single--noticias-full {
    display: none !important;
  }
}

.gap-100 {
  gap: 100px;
}

.ad-single.hide-xs-only.article {
  width: 100%;
}

.padding-0-15 {
  padding: 0 15px;
}

.row.article.article--noticias {
  margin-left: -1rem;
}
@media (max-width: 64rem) {
  .row.article.article--noticias {
    margin-left: 0rem;
  }
}

.row.article.article--chv .card-stamp, .row.article.article--chv .article-title, .row.article.article--chv .article-description {
  color: #f4f7e9;
}

.space-between {
  justify-content: space-between;
}

.chv-noticias .featured-cols .col--noticias {
  padding: 0;
}
@media (max-width: 64rem) {
  .chv-noticias .featured-cols .ultimo-minuto--noticias {
    padding: 0 1rem;
  }
}
.chv-noticias .featured-cols .section-title h2 {
  margin: 0;
}
.chv-noticias .col--noticias {
  padding: 1.5rem;
  margin-bottom: 20px;
}
.chv-noticias .int-video .date {
  margin-top: 20px;
}
.chv-noticias .int-video .date span {
  color: #fff;
}
.chv-noticias .int-video .info-art span {
  color: #fff;
}
.chv-noticias .int-video .info-art span strong {
  color: #fff;
}
.chv-noticias .inner-title {
  margin-top: 1rem;
  font-size: 1.875rem;
}
.chv-noticias .date {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.chv-noticias .date span {
  color: #999999;
  font-size: 16px;
  font-family: "Poppins-Bold";
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  line-height: 120%;
}
.chv-noticias .section-title h2 {
  color: #333;
  font-family: "Poppins-SemiBold";
  border-left: 8px solid #0E3A81;
  margin: 0 1rem;
}
.chv-noticias .related-posts-block {
  padding: 0 1rem;
}
.chv-noticias .margin-left {
  margin-left: -1rem;
}
.chv-noticias .inner-nav-container .inner-nav {
  margin: 0 auto 20px;
}
.chv-noticias .inner-nav-container .inner-nav .pill a {
  color: #333333;
  font-family: "Poppins-SemiBold";
  border: 1px solid #FF1A6A;
  background-color: #FFf;
  border-radius: 100px;
  padding: 8px 15px;
}
.chv-noticias .inner-nav-container .inner-nav .pill:hover a {
  border: 1px solid #FF1A6A;
  background-color: #FF1A6A;
  color: #fff;
}
.chv-noticias .inner-nav-container .inner-nav .active a {
  color: #fff;
  font-family: "Poppins-Bold";
  border: 1px solid #FF1A6A;
  background-color: #FF1A6A;
  border-radius: 100px;
}
.chv-noticias .inner-nav-container {
  max-width: 1350px;
}
.chv-noticias .inner-nav-container .inner-nav {
  max-width: 1350px;
  padding: 0;
}
.chv-noticias .herramientas.video {
  float: left;
  clear: both;
}
@media (max-width: 64rem) {
  .chv-noticias .herramientas.video {
    margin: 15px auto;
  }
}
.chv-noticias .herramientas.video .tool {
  list-style: none;
}
.chv-noticias .herramientas.video .tool li a {
  background: #fff;
}
.chv-noticias .herramientas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px auto 20px;
  margin-left: auto;
  width: 100%;
}
@media (max-width: 64rem) {
  .chv-noticias .herramientas {
    gap: 20px;
  }
}
.chv-noticias .info-art span {
  font-family: "Poppins";
  color: #333;
  float: left;
  clear: both;
  font-size: 1rem;
  line-height: 150%;
}
.chv-noticias .info-art span strong {
  font-family: "Poppins-SemiBold";
  color: #0E3A81;
}
.chv-noticias .tool {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chv-noticias .tool li a {
  background: #0E3A81;
  padding: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chv-noticias .tool li:hover a {
  background-color: #FF1A6A !important;
}
.chv-noticias .downloads ul {
  background: #F3F3F3;
}
.chv-noticias .downloads .downloads__item a h3 {
  color: #333;
}
.chv-noticias .ver {
  border-radius: 10px;
  background: #F3F3F3;
}
.chv-noticias .ver a {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 19px;
  text-decoration: none;
}
@media (max-width: 64rem) {
  .chv-noticias .ver a {
    flex-direction: column;
  }
}
.chv-noticias .ver a .img-wrap {
  margin: 0;
  flex: 0 0 300px;
}
@media (max-width: 64rem) {
  .chv-noticias .ver a .img-wrap {
    flex: 0 0 auto;
  }
}
.chv-noticias .ver a .img-wrap img {
  border-radius: 10px;
}
.chv-noticias .ver a .cont .info_pill {
  color: #333333;
  font-family: "Poppins-Bold";
  text-decoration: none;
  font-size: 16px;
}
.chv-noticias .ver a .cont .card-title {
  margin: 10px 0;
  text-decoration: none;
  color: #0E3A81;
  font-size: 20px;
  line-height: 150%;
  font-family: Poppins-SemiBold;
}
.chv-noticias .ver a .cont .card-stamp {
  text-decoration: none;
  color: #999999;
  font-size: 13px;
}
.chv-noticias .int-video {
  background: #0E3A81;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1020px) {
  .chv-noticias .int-video .auxi .row .col {
    flex-basis: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }
}
.chv-noticias .int-video .auxi .row .col.col-sm-8, .chv-noticias .int-video .auxi .row .col.col-sm-7 {
  padding: 1rem 0 !important;
}
.chv-noticias .cont__autor {
  padding: 0;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.chv-noticias .cont__autor--img img {
  max-width: 100%;
  width: auto;
  border-radius: 100%;
}
.chv-noticias .cont__text .card-title {
  color: #0E3A81;
  font-size: 2.25rem;
  font-family: "Poppins-Bold";
  margin-top: 0;
}
.chv-noticias .cont__text .card-text {
  color: #333333;
  font-size: 1rem;
  font-family: "Poppins";
}
.chv-noticias .cont__text .rss {
  padding: 0;
  display: flex;
  list-style: none;
  gap: 20px;
}
.chv-noticias .pagination .page-link a {
  color: #333;
}
.chv-noticias .pagination .active a {
  color: #FF1A6A;
  border-bottom: 3px solid #FF1A6A;
}

@media (max-width: 64rem) {
  body.video .section-title h2 {
    margin: 0;
  }
}
body.video .container.related-posts-block .row.margin-left {
  margin-left: 0;
}
body.video .container.related-posts-block .row.margin-left .col {
  padding: 1rem 0;
}
body.video .article-detail.container {
  margin: 0 auto 20px;
}
body.video .inner-nav-container .inner-nav {
  margin: 0 auto 20px;
}

.header--noticias.fixed {
  background-color: #fff !important;
}
.header--noticias.fixed .nav-container .nav {
  margin-top: 0;
}
.header--noticias.fixed .logo-container {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 64rem) {
  .header--noticias.fixed .logo-container {
    padding: 0.5rem 0;
  }
}
.header--noticias {
  background: #fff;
}
@media (max-width: 64rem) {
  .header--noticias {
    padding: 0 !important;
  }
}
.header--noticias.active {
  background-color: #ffffff !important;
}
.header--noticias .row {
  position: relative;
}
.header--noticias .mobile-menu-trigger {
  background-image: url(../imags/ico-noticias/trigger-menu_noti.svg);
}
.header--noticias .mobile-menu-trigger:hover {
  background-image: url(../imags/ico-noticias/trigger-menu_noti-hover.svg);
  fill: #FF1A6A;
  background-size: 32px;
}
.header--noticias .mobile-menu-trigger.active {
  background-image: url(../imags/ico-noticias/trigger-menu_noti-hover.svg);
}
.header--noticias .mobile-menu-trigger.close {
  z-index: 1000;
  background-image: url(../imags/ico-noticias/close.svg);
  background-size: 18px;
}
.header--noticias .row {
  justify-content: space-between;
}
@media (max-width: 64rem) {
  .header--noticias .row {
    flex-wrap: nowrap;
  }
}
@media (max-width: 64rem) {
  .header--noticias #inner-nav-top {
    padding: 0 !important;
  }
}
.header--noticias .nav-container {
  padding: 0 0.5rem;
}
@media (max-width: 64rem) {
  .header--noticias .nav-container {
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 15px 0;
    z-index: 1;
  }
}
@media (max-width: 64rem) {
  .header--noticias #nav-container {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 64rem) {
  .header--noticias #nav-container.show {
    height: 100vh;
    opacity: 1;
    overflow-y: auto;
  }
}
.header--noticias #nav-container .search-box {
  display: none;
}
@media (max-width: 64rem) {
  .header--noticias #nav-container .search-box {
    display: block;
  }
}
@media (max-width: 64rem) {
  .header--noticias #nav-container .nav {
    height: auto;
    opacity: 1;
    overflow: visible;
  }
}
@media (max-width: 64rem) {
  .header--noticias #nav-container .nav li {
    padding: 0 6px;
  }
}
.header--noticias #nav-container .social--movil {
  display: none;
}
@media (max-width: 64rem) {
  .header--noticias #nav-container .social--movil {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem 1.875rem;
  }
}
.header--noticias .search-container .search-box {
  margin-top: 0;
}
.header--noticias .logo-container .logo-header {
  justify-content: center;
}
.header--noticias .nav-container .nav {
  text-align: center;
  padding: 0;
  margin-top: 0;
}
@media (max-width: 64rem) {
  .header--noticias .nav-container .nav {
    margin-top: 0 !important;
  }
}
.header--noticias .nav-container .nav .link:hover a, .header--noticias .nav-container .nav .link.selected a {
  color: #FF1A6A !important;
}
.header--noticias .nav-container .nav .link a {
  color: #333333;
  font-size: 0.875rem;
  font-family: Poppins-SemiBold;
}
@media (max-width: 64rem) {
  .header--noticias .nav-container .nav .link a {
    text-align: center;
  }
}
.header--noticias .nav-container .nav .link a:hover {
  color: #FF1A6A !important;
}
@media (max-width: 64rem) {
  .header--noticias .row .col-xs-2.col-md-2.search-container {
    display: none !important;
  }
}
.header--noticias .row .col-xs-2.col-md-2.en-vivo {
  display: none;
  padding: 0;
}
@media (max-width: 64rem) {
  .header--noticias .row .col-xs-2.col-md-2.en-vivo {
    display: flex;
    align-items: center;
    flex-basis: 28%;
    max-width: 28%;
    justify-content: flex-end;
    margin: 0 0.5rem 0 0;
  }
}
.header--noticias .row .col-xs-2.col-md-2.en-vivo .vivo-mobile {
  border-radius: 12px;
  padding: 4px 10px;
  background-color: #FF1A6A;
  font-family: "Poppins-Bold";
  font-size: 0.875rem;
}
.header--noticias .row .col-xs-2.col-md-2.en-vivo:hover {
  transform: scale(1.07);
  transition: all 0.3s;
}
.header--noticias .nav-container--movil {
  display: none !important;
}
@media (max-width: 64rem) {
  .header--noticias .nav-container--movil {
    width: 100%;
    display: block !important;
    position: relative;
    background-color: #ffffff;
    min-height: auto;
    padding: 0 0 5px !important;
  }
}
.header--noticias .nav-container--movil .nav {
  margin-top: 0;
  overflow-x: scroll;
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 5px;
  height: auto;
  overflow-x: scroll;
  opacity: 1;
}
.header--noticias .nav-container--movil .nav .link {
  flex: 1 0 auto;
}
.header--noticias .nav-container--movil .nav .link + .link {
  margin-top: 0;
}
.header--noticias .nav-container--movil .nav .link a {
  color: #333333;
}
.header--noticias .social--movil {
  display: block;
}
.header .header--noticias.fixed {
  top: 0;
  height: auto;
}

body.noticias .header.fixed, body.chv-noticias .header.fixed {
  top: 0;
  height: auto;
  background-color: #0E3A81;
}
body.noticias .social, body.chv-noticias .social {
  padding: 0;
}

.ad-full {
  background-color: #E5E5E5;
  border-radius: 12px;
  padding: 15px;
  max-width: 1069px;
  margin: 40px auto 40px;
  display: flex;
  gap: 30px;
}
.ad-full .legend {
  color: #333333;
  font-family: "Poppins";
  font-size: 0.813rem;
  transform: rotate(-90deg);
  display: flex;
  justify-content: center;
  align-items: end;
  width: 30px;
  padding: 0 0 15px 0;
}

.single-ad-responsive--noticias .ad-container {
  background-color: #E5E5E5;
}
.single-ad-responsive--noticias .ad-container .rotate {
  color: #333333;
}
.single-ad-responsive--noticias .ad-container .ad {
  width: auto;
  max-width: 100%;
}

.marquee-cont {
  padding: 0;
}
@media (max-width: 64rem) {
  .marquee-cont {
    overflow: hidden;
  }
}

.marquee {
  overflow: hidden;
  display: flex;
  padding: 4px 1rem 4px 0;
  margin: 8px 1rem 8px 0;
}
@media (max-width: 64rem) {
  .marquee {
    margin: 0 0 0 1rem;
  }
}
.marquee .tit {
  margin: 0;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
.marquee .tit a:hover {
  text-decoration: underline;
}
.marquee .tit span {
  padding: 0 10px;
}

.ver-mas {
  width: 148px;
  height: 37px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #FF1A6A;
  border: 1px solid #FF1A6A;
  color: #fff;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  border-radius: 100px;
  margin: 40px auto 0;
}
.ver-mas:hover {
  background-color: #fff;
  color: #FF1A6A;
  border: 1px solid #FF1A6A;
}
.ver-mas--movil {
  display: none;
}
@media (max-width: 64rem) {
  .ver-mas--movil {
    display: flex !important;
    margin: 10px auto;
  }
}

.search-container--movil {
  display: none;
}
@media (max-width: 64rem) {
  .search-container--movil {
    display: block !important;
    position: relative !important;
    top: 0;
    padding-top: 0 !important;
    margin-bottom: 20px;
  }
}
@media (max-width: 64rem) {
  .search-container--movil .search-box .search {
    width: 280px !important;
    padding: 18px 10px !important;
    background-position: 93% 48% !important;
  }
}

.banner__small .card-img .card-img {
  max-width: 100%;
  width: auto;
}

.featured--noticias.heightAuto {
  height: auto !important;
}

.chv-noticias.port-taxt .container.related-posts-block .col-md-3.col-xs-12.col {
  padding: 0;
}
.chv-noticias.port-taxt .container.related-posts-block .col-md-3.col-xs-12.col .card-img img {
  width: 100%;
}
@media (max-width: 64rem) {
  .chv-noticias.port-taxt .container.related-posts-block .row.margin-left {
    margin-left: 0;
  }
}

@media (max-width: 920px) {
  .banner__small {
    margin: 0 auto;
    display: table;
  }
}

.margin-0 {
  margin: 0;
}

.separa {
  width: 100%;
  clear: both;
  height: 0;
  display: block;
  margin: 0;
  padding: 0;
}
.separa--movil {
  display: none;
}
@media (max-width: 64rem) {
  .separa--movil {
    display: block !important;
  }
}

.cont__autor {
  padding: 0;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.cont__autor--img img {
  max-width: 100%;
  width: auto;
  border-radius: 100%;
}
.cont__text .card-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-family: "Poppins-Bold";
  margin-top: 0;
}
.cont__text .card-text {
  color: #ffffff;
  font-size: 1rem;
  font-family: "Poppins";
}
.cont__text .rss {
  padding: 0;
  display: flex;
  list-style: none;
  gap: 20px;
}

body:not(.chv-noticias) .cont__autor li a {
  background-color: #61CDB8;
  display: block;
  border-radius: 50%;
  padding: 6px;
}
body:not(.chv-noticias) .cont__autor li a img {
  display: block;
  width: 20px;
}

#mam_container .col-md-12 {
  display: flex;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
@media (max-width: 40rem) {
  #mam_container .col-md-12 {
    flex-direction: column;
  }
}
#mam_container span.aleft {
  font-size: 15px;
  color: #FF1A6A;
  flex: 1 0 auto;
  margin-right: 20px;
  margin-top: 3px;
  font-family: "Poppins-Bold";
  flex: 0 0 170px;
}
@media (max-width: 40rem) {
  #mam_container span.aleft {
    flex: 0 0 auto;
  }
}
#mam_container h2 {
  margin: 0;
  color: #153e7d;
}
#mam_container p {
  margin: 10px 0 30px;
  font-size: 16px !important;
}
#mam_container .noticia-horizontal {
  padding: 0;
}
#mam_container img {
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: "Corona Headline";
  src: url("../fonts/corona-headline/CoronaHeadline-SemiBold.woff2") format("woff2"), url("../fonts/corona-headline/CoronaHeadline-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.contador {
  position: relative;
}
.contador__logos, .contador__gif, .contador__textos, .contador__disclaimer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.contador__disclaimer {
  z-index: 1;
}
@media (max-width: 40rem) {
  .contador__textos--1 {
    top: 10px;
    bottom: auto;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  .contador__textos--1 {
    top: 60px;
    bottom: auto;
  }
}
@media (max-width: 40rem) {
  .contador__textos--2 {
    bottom: 18px;
    top: auto;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  .contador__textos--2 {
    bottom: 40px;
    top: auto;
  }
}
@media (max-width: 40rem) {
  .contador__logos {
    bottom: 10px;
    top: auto;
  }
}
@media (max-width: 40rem) {
  .contador__gif {
    bottom: -9px;
    top: auto;
  }
}
.contador__img {
  position: relative;
  overflow: hidden;
}
.contador__img img {
  display: block;
}
.contador__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 15px;
  transform: scale(0.9);
}
@media (max-width: 40rem) {
  .contador__content {
    padding-bottom: 68px;
    transform: none;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  .contador__content {
    transform: scale(1.2);
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .contador__content {
    transform: scale(0.61);
    padding-bottom: 18px;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .contador__content {
    transform: scale(0.8);
    padding-bottom: 18px;
  }
}
.contador__title {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  font-family: "Corona Headline", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (min-width: 600px) and (max-width: 1100px) {
  .contador__title {
    font-size: 20px;
  }
}
.contador__txt {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 22px;
  color: #ffffff;
  font-family: "Corona Headline", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 29px;
}
.contador__txt .txt-dest {
  color: #073f56;
}
@media (min-width: 600px) and (max-width: 1100px) {
  .contador__txt {
    font-size: 24px;
  }
}
.contador .flipclock {
  display: flex;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}
.contador .flipclock * {
  box-sizing: inherit;
}
.contador .leaf {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  perspective: 300px;
  padding-left: 6px;
  position: relative;
}
.contador .leaf:before {
  content: ":";
  font-size: 40px;
  color: #dbebf2;
  display: inline-block;
  position: absolute;
  z-index: 1000;
  left: -5px;
  top: 19px;
}
.contador .leaf:first-child {
  padding-left: 0;
}
.contador .leaf:first-child:before {
  content: none;
}
.contador .leaf::after {
  content: attr(data-label);
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0 !important;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 11px !important;
  font-weight: 600;
  opacity: 1;
}
.contador .top,
.contador .bottom,
.contador .leaf-front,
.contador .leaf-back {
  position: relative;
  display: block;
  height: 30px;
  width: 60px;
  background-color: #dbebf2;
  color: #073f56;
  overflow: hidden;
  border-color: #d8f3ff;
}
.contador .top span,
.contador .bottom span,
.contador .leaf-front span,
.contador .leaf-back span {
  position: absolute;
  left: 50%;
  width: 100%;
  letter-spacing: 0.5px;
  height: 60px;
  text-align: center;
  font-family: "Corona Headline", sans-serif;
  font-size: 46px;
  line-height: 60px;
  transform: translateX(-50%);
}
.contador .leaf._3-digits .top,
.contador .leaf._3-digits .bottom,
.contador .leaf._3-digits .leaf-front,
.contador .leaf._3-digits .leaf-back {
  width: 60px;
}
.contador .top,
.contador .leaf-front {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-bottom: 0;
  border-bottom-style: solid;
  border-bottom-width: 0;
}
.contador .top span,
.contador .leaf-front span {
  top: 0;
}
.contador .leaf-front {
  position: absolute;
  z-index: 10;
}
.contador .bottom,
.contador .leaf-back {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-style: solid;
  border-top-width: 0.5px;
}
.contador .bottom span,
.contador .leaf-back span {
  bottom: 0;
}
.contador .leaf-back {
  position: absolute;
  top: 30px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .contador .flipclock {
    padding: 0.6666666667vw;
  }
  .contador .leaf {
    margin: 0 0.6666666667vw;
  }
  .contador .leaf::after {
    margin-top: 1.3333333333vw;
    font-size: 2.3333333333vw;
  }
  .contador .top,
  .contador .bottom,
  .contador .leaf-front,
  .contador .leaf-back {
    height: 7.5vw;
    width: 15vw;
  }
  .contador .top span,
  .contador .bottom span,
  .contador .leaf-front span,
  .contador .leaf-back span {
    height: 15vw;
    font-size: 11.5vw;
    line-height: 15vw;
  }
  .contador .leaf._3-digits .top,
  .contador .leaf._3-digits .bottom,
  .contador .leaf._3-digits .leaf-front,
  .contador .leaf._3-digits .leaf-back {
    width: 15vw;
  }
  .contador .top,
  .contador .leaf-front {
    border-top-left-radius: 1.5vw;
    border-top-right-radius: 1.5vw;
  }
  .contador .bottom,
  .contador .leaf-back {
    border-bottom-left-radius: 1.5vw;
    border-bottom-right-radius: 1.5vw;
  }
  .contador .leaf-back {
    top: 7.5vw;
  }
  .contador .contador__title {
    font-size: 20px;
  }
  .contador .contador__txt {
    font-size: 26px;
    padding-top: 22px;
  }
}
.contador .leaf-front {
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transform-style: preserve-3d;
  transition-delay: 0.3s;
}
.contador .leaf-back {
  transform-origin: top center;
  transform: rotateX(90deg);
  transform-style: preserve-3d;
  transition-delay: 0s;
}
.contador .bottom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  filter: blur(10px);
}
.contador .flip .leaf-front {
  transform: rotateX(-90deg);
  transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
  transition-delay: 0s;
  color: black;
  background-color: #377a97;
}
.contador .flip .leaf-back {
  transform: rotateX(0deg);
  transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
  transition-delay: 0.3s;
}
.contador .flip .bottom::before {
  transition: height 0.3s ease-in-out;
  transition-delay: 0.15s;
  height: 100%;
}

.box-info {
  border: 1px solid #14455B;
  border-radius: 10px;
  margin: 30px 0;
}
@media (max-width: 40rem) {
  .box-info {
    margin: 30px 15px;
  }
}
.box-info__top {
  display: flex;
  gap: 20px;
  background: #14455B;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  align-items: center;
}
.box-info__top--rounded {
  border-radius: 10px;
}
.box-info__title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.box-info__bottom {
  padding: 20px;
}
.box-info__bottom .CUERPO {
  padding: 0;
  margin-bottom: 0 !important;
}
.box-info__bottom .CUERPO p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.box-info__bottom .CUERPO ul li {
  font-size: 0.8rem;
}
.box-info__text p {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 100;
  margin-top: 0;
}

@media (max-width: 40rem) {
  .CUERPO .box-info {
    margin-left: 0;
    margin-right: 0;
  }
}

.player-chv {
  max-width: 1000px;
  margin: 30px auto;
}
@media (max-width: 64rem) {
  .player-chv {
    margin: 30px 15px;
  }
}
.player-chv .tabs {
  overflow: hidden;
}
@media (max-width: 40rem) {
  .player-chv .tabs {
    max-width: 93%;
    margin: 0 auto;
  }
}
.player-chv .tabs .tab-btns {
  margin-bottom: 6px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 64rem) {
  .player-chv .tabs .tab-btns {
    overflow: auto;
  }
}
@media (max-width: 40rem) {
  .player-chv .tabs .tab-btns {
    overflow: auto;
  }
}
.player-chv .tabs .tab-btns a {
  font-size: 22px;
  color: #17120F;
  background-color: #ffffff;
  position: relative;
  padding: 10px;
  transition: 0.3s all ease;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Rubik-Bold";
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 64rem) {
  .player-chv .tabs .tab-btns a {
    flex: 0 0 auto;
    font-size: 18px;
  }
}
@media (max-width: 40rem) {
  .player-chv .tabs .tab-btns a {
    flex: 0 0 auto;
  }
}
.player-chv .tabs .tab-btns a img {
  max-width: 170px;
}
@media (max-width: 40rem) {
  .player-chv .tabs .tab-btns a img {
    max-width: 120px;
  }
}
.player-chv .tabs .tab-btns a + a {
  margin-left: 3px;
}
.player-chv .tabs .tab-btns a.active {
  background-color: #32C3E2;
}
.player-chv .tabs .tab-btns a:not(.active):hover {
  background-color: #D7DF17;
}
.player-chv .tabs .tab-content {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 600ms, visibility 600ms;
}
@media (max-width: 64rem) {
  .player-chv .tabs .tab-content {
    padding: 0;
  }
}
.player-chv .tabs .tab-content .iframe-container {
  display: none;
}
.player-chv .tabs .tab-content.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.player-chv .tabs .tab-content.active .iframe-container {
  display: flex;
}

.fucsia {
  background-color: #FF1A6A;
  color: #f4f7e9 !important;
  /*PROGRAMACIÓN*/
}
.fucsia h1.title-programas, .fucsia h1.title-personajes, .fucsia h1.title-section {
  color: #f4f7e9;
}
.fucsia h2, .fucsia h3, .fucsia h4 {
  color: #f4f7e9;
}
.fucsia .section-title h2, .fucsia .section-title h1, .fucsia .section-title h3 {
  border-left: 8px solid #E7DE74;
}
.fucsia.inner-nav-container {
  padding: 5px !important;
}
.fucsia.inner-nav-container .inner-menu-trigger {
  background-color: #123549;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.fucsia.inner-nav-container .inner-nav {
  background-color: #FF1A6A;
}
.fucsia.inner-nav-container .inner-nav.show {
  background-color: #FF1A6A;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.fucsia.inner-nav-container .inner-nav .pill {
  color: #f4f7e9;
}
.fucsia.inner-nav-container .inner-nav .pill.active a, .fucsia.inner-nav-container .inner-nav .pill:hover a {
  background-color: #123549;
  color: #f4f7e9;
  border-radius: 12px;
  padding: 5px 10px;
}
.fucsia.inner-nav-container .inner-nav .pill.menu .submenu {
  background-color: #123549;
  padding-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 12px;
}
.fucsia.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #072034;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .fucsia.inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.fucsia .card {
  background: rgb(255, 26, 106);
  background: linear-gradient(180deg, rgb(255, 26, 106) 50%, rgb(223, 20, 91) 100%);
  border: 1px solid #f4f7e9;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.fucsia .card .card-title {
  color: #f4f7e9;
}
.fucsia .card .card-text {
  color: #000000;
}
.fucsia .card .card-stamp {
  color: #f4f7e9;
}
.fucsia .card:hover {
  background: #f4f7e9 !important;
}
.fucsia .card:hover .card-title {
  color: #123549;
}
.fucsia .card:hover .card-stamp {
  color: #666666;
}
.fucsia .article.video.active {
  background-color: #123549;
}
.fucsia .featured .featured-content .featured-title {
  color: #f4f7e9;
}
.fucsia.header .fixed-banner .banner-title {
  color: #f4f7e9;
}
.fucsia.single-ad-responsive {
  background-color: unset;
}
.fucsia.single-ad-responsive .rotate {
  color: #f4f7e9;
}
.fucsia.single-ad-responsive .ad-container {
  background-color: #FF1A6A !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.fucsia .ad-single {
  background-color: #f4f7e9 !important;
}
.fucsia.container {
  border-radius: 12px;
  padding: 15px;
}
.fucsia.footer {
  border-radius: 0;
  background: rgb(18, 53, 73);
  background: linear-gradient(180deg, rgb(18, 53, 73) 32%, rgb(223, 20, 91) 100%);
  border-top: 8px solid #123549;
  margin-top: 45px;
}
.fucsia .tabs-container .tab {
  background-color: transparent;
  color: #f4f7e9;
  border-bottom: 6px solid #db165b;
}
.fucsia .tabs-container .tab.active, .fucsia .tabs-container .tab:hover {
  color: #f4f7e9;
  border-bottom: 6px solid #123549 !important;
}
.fucsia .programacion .row {
  border-bottom: 1px solid #E7DE74;
}
.fucsia .programacion .row:hover, .fucsia .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.fucsia .programacion .row:hover h4, .fucsia .programacion .row.active h4 {
  color: #FF1A6A;
}
.fucsia .programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
}

.claro {
  background-color: #f4f7e9;
  color: #123549 !important;
  /*PROGRAMACIÓN*/
}
.claro h1.title-programas, .claro h1.title-personajes, .claro h1.title-section {
  color: #123549;
}
.claro h2, .claro h3, .claro h4 {
  color: #123549;
}
.claro .section-title h2, .claro .section-title h1, .claro .section-title h3 {
  border-left: 8px solid #E7DE74;
}
.claro .section-title h2.highlight, .claro .section-title h1.highlight, .claro .section-title h3.highlight {
  border-left: none;
}
.claro.inner-nav-container {
  padding: 5px !important;
}
.claro.inner-nav-container .inner-menu-trigger {
  background-color: #f4f7e9;
  color: #123549;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.claro.inner-nav-container .inner-nav {
  background-color: #f4f7e9;
}
.claro.inner-nav-container .inner-nav.show {
  background-color: #f4f7e9;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.claro.inner-nav-container .inner-nav .pill {
  color: #123549;
}
.claro.inner-nav-container .inner-nav .pill.active a, .claro.inner-nav-container .inner-nav .pill:hover a {
  background-color: #123549;
  color: #f4f7e9;
  border-radius: 12px;
  padding: 5px 10px;
}
.claro.inner-nav-container .inner-nav .pill.menu a {
  background-image: url(../imags/icons/down-blue.svg);
}
.claro.inner-nav-container .inner-nav .pill.menu .submenu {
  background-color: #123549;
  padding-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 12px;
}
.claro.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #f4f7e9;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .claro.inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.claro.inner-nav-container .inner-menu-trigger:after {
  background-image: url(../imags/icons/down-blue.svg);
}
.claro .card {
  background: #f4f7e9;
  background: linear-gradient(180deg, #f4f7e9 50%, #dde0d3 100%);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.claro .card .card-title {
  color: #123549;
}
.claro .card .card-stamp {
  color: #123549;
}
.claro .card .card-text {
  color: #123549;
}
.claro .card:hover {
  background: rgb(255, 26, 106);
  background: linear-gradient(180deg, rgb(255, 26, 106) 50%, rgb(223, 20, 91) 100%);
  border: 1px solid #FF1A6A;
}
.claro .card:hover .card-title {
  color: #f4f7e9;
}
.claro .card:hover .card-text {
  color: #f4f7e9;
}
.claro .card:hover .card-stamp {
  color: #f4f7e9;
}
.claro .article.video.active {
  background-color: #123549;
}
.claro .featured .featured-content .featured-title {
  color: #f4f7e9;
}
.claro.header .fixed-banner .banner-title {
  color: #f4f7e9;
}
.claro.single-ad-responsive {
  background-color: unset;
}
.claro.single-ad-responsive .rotate {
  color: #f4f7e9;
}
.claro.single-ad-responsive .ad-container {
  background-color: #f4f7e9 !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.claro .ad-single {
  background-color: #f4f7e9 !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
  margin-bottom: 10px;
}
.claro.container {
  border-radius: 12px;
  padding: 15px;
}
.claro.footer {
  border-radius: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, #123549 40%, #f4f7e9 100%);
  border-top: 8px solid #123549;
  margin-top: 45px;
}
.claro .tabs-container .tab {
  background-color: transparent;
  color: #123549;
  border-bottom: 6px solid #f4f7e9;
}
.claro .tabs-container .tab.active, .claro .tabs-container .tab:hover {
  color: #123549;
  border-bottom: 6px solid #123549 !important;
}
.claro .programacion .row {
  border-bottom: 1px solid #E7DE74;
}
.claro .programacion .row:hover, .claro .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.claro .programacion .row:hover h4, .claro .programacion .row.active h4 {
  color: #FF1A6A;
}
.claro .programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
}

.dark {
  background-color: #0e0e0e;
  color: #f4f7e9 !important;
  /*PROGRAMACIÓN*/
}
.dark h1.title-programas, .dark h1.title-personajes, .dark h1.title-section {
  color: #f4f7e9;
}
.dark h2, .dark h3, .dark h4 {
  color: #f4f7e9;
}
.dark .section-title h2, .dark .section-title h1, .dark .section-title h3 {
  border-left: 8px solid #61CDB8;
}
.dark .section-title h2.highlight, .dark .section-title h1.highlight, .dark .section-title h3.highlight {
  border-left: none !important;
}
.dark.inner-nav-container {
  padding: 5px !important;
}
.dark.inner-nav-container .inner-menu-trigger {
  background-color: #0e0e0e;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.dark.inner-nav-container .inner-nav {
  background-color: #0e0e0e;
}
.dark.inner-nav-container .inner-nav.show {
  background-color: #0e0e0e;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.dark.inner-nav-container .inner-nav .pill {
  color: #f4f7e9;
}
.dark.inner-nav-container .inner-nav .pill.active a, .dark.inner-nav-container .inner-nav .pill:hover a {
  background-color: #E8E062;
  color: #0e0e0e;
  border-radius: 12px;
  padding: 5px 10px;
}
.dark.inner-nav-container .inner-nav .pill.menu .submenu {
  background-color: #0e0e0e;
  padding-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 12px;
}
.dark.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #E8E062;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .dark.inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.dark .card {
  background: #0e0e0e;
  background: linear-gradient(180deg, #123549 50%, rgb(14, 14, 14) 100%);
  border: 1px solid rgb(102, 102, 102);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.dark .card .card-title {
  color: #f4f7e9;
}
.dark .card .card-text {
  color: #f4f7e9;
}
.dark .card .card-stamp {
  color: #f4f7e9;
}
.dark .card:hover {
  background: #f4f7e9 !important;
}
.dark .card:hover .card-title {
  color: #123549;
}
.dark .card:hover .card-stamp {
  color: #123549;
}
.dark .article.video.active {
  background-color: #123549;
}
.dark .featured .featured-content .featured-title {
  color: #f4f7e9;
}
.dark.header .fixed-banner .banner-title {
  color: #f4f7e9;
}
.dark.single-ad-responsive {
  background-color: unset;
}
.dark.single-ad-responsive .rotate {
  color: #f4f7e9;
}
.dark.single-ad-responsive .ad-container {
  background-color: #0e0e0e !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.dark .ad-single {
  background-color: #123549 !important;
}
.dark.container {
  border-radius: 12px;
  padding: 15px;
}
.dark.footer {
  border-radius: 0;
  background: rgb(14, 14, 14);
  background: linear-gradient(180deg, rgb(18, 53, 73) 32%, rgb(14, 14, 14) 100%);
  border-top: 8px solid #123549;
  margin-top: 45px;
}
.dark .tabs-container .tab {
  background-color: transparent;
  color: #f4f7e9;
  border-bottom: 6px solid #072034;
}
.dark .tabs-container .tab.active, .dark .tabs-container .tab:hover {
  color: #f4f7e9;
  border-bottom: 6px solid #FF1A6A !important;
}
.dark .programacion .row {
  border-bottom: 1px solid #E7DE74;
}
.dark .programacion .row:hover, .dark .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.dark .programacion .row:hover h4, .dark .programacion .row.active h4 {
  color: #FF1A6A;
}
.dark .programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
}

.negro {
  background-color: #000000;
  color: #f4f7e9 !important;
  /*PROGRAMACIÓN*/
}
.negro h1.title-programas, .negro h1.title-personajes, .negro h1.title-section {
  color: #f4f7e9;
}
.negro h2, .negro h3, .negro h4 {
  color: #f4f7e9;
}
.negro .section-title h2, .negro .section-title h1, .negro .section-title h3 {
  border-left: 8px solid #E7DE74;
}
.negro.inner-nav-container {
  padding: 5px !important;
}
.negro.inner-nav-container .inner-menu-trigger {
  background-color: #123549;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.negro.inner-nav-container .inner-nav {
  background-color: #000000;
}
.negro.inner-nav-container .inner-nav.show {
  background-color: #000000;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.negro.inner-nav-container .inner-nav .pill {
  color: #f4f7e9;
}
.negro.inner-nav-container .inner-nav .pill.active a, .negro.inner-nav-container .inner-nav .pill:hover a {
  background-color: #123549;
  color: #f4f7e9;
  border-radius: 12px;
  padding: 5px 10px;
}
.negro.inner-nav-container .inner-nav .pill.menu .submenu {
  background-color: #123549;
  padding-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 12px;
}
.negro.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #072034;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .negro.inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.negro .card {
  background: rgb(255, 26, 106);
  background: linear-gradient(180deg, rgb(255, 26, 106) 50%, rgb(223, 20, 91) 100%);
  border: 1px solid #f4f7e9;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.negro .card .card-title {
  color: #f4f7e9;
}
.negro .card .card-text {
  color: #000000;
}
.negro .card .card-stamp {
  color: #f4f7e9;
}
.negro .card:hover {
  background: #f4f7e9 !important;
}
.negro .card:hover .card-title {
  color: #123549;
}
.negro .card:hover .card-stamp {
  color: #666666;
}
.negro .article.video.active {
  background-color: #123549;
}
.negro .featured .featured-content .featured-title {
  color: #f4f7e9;
}
.negro.header .fixed-banner .banner-title {
  color: #f4f7e9;
}
.negro.single-ad-responsive {
  background-color: unset;
}
.negro.single-ad-responsive .rotate {
  color: #f4f7e9;
}
.negro.single-ad-responsive .ad-container {
  background-color: #000000 !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.negro .ad-single {
  background-color: #f4f7e9 !important;
}
.negro.container {
  border-radius: 12px;
  padding: 15px;
}
.negro.footer {
  border-radius: 0;
  background: rgb(18, 53, 73);
  background: linear-gradient(180deg, rgb(18, 53, 73) 32%, rgb(223, 20, 91) 100%);
  border-top: 8px solid #123549;
  margin-top: 45px;
}
.negro .tabs-container .tab {
  background-color: transparent;
  color: #f4f7e9;
  border-bottom: 6px solid #0e0e0e;
}
.negro .tabs-container .tab.active, .negro .tabs-container .tab:hover {
  color: #f4f7e9;
  border-bottom: 6px solid #123549 !important;
}
.negro .programacion .row {
  border-bottom: 1px solid #E7DE74;
}
.negro .programacion .row:hover, .negro .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.negro .programacion .row:hover h4, .negro .programacion .row.active h4 {
  color: #FF1A6A;
}
.negro .programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
}

.amarillo {
  background-color: #E8E062;
  color: #123549 !important;
  /*PROGRAMACIÓN*/
}
.amarillo h1.title-programas, .amarillo h1.title-personajes, .amarillo h1.title-section {
  color: #123549;
}
.amarillo h2, .amarillo h3, .amarillo h4 {
  color: #123549;
}
.amarillo .btn.secondary {
  background-color: #d1c94d;
}
.amarillo .btn.secondary:hover {
  background-color: #FF1A6A;
}
.amarillo .section-title h2, .amarillo .section-title h1, .amarillo .section-title h3 {
  border-left: 8px solid #FF1A6A;
}
.amarillo .section-title h2.highlight, .amarillo .section-title h1.highlight, .amarillo .section-title h3.highlight {
  border-left: none;
}
.amarillo.inner-nav-container {
  padding: 5px !important;
}
.amarillo.inner-nav-container .inner-menu-trigger {
  background-color: #E8E062;
  color: #123549;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.amarillo.inner-nav-container .inner-nav {
  background-color: #E8E062;
}
.amarillo.inner-nav-container .inner-nav.show {
  background-color: #E8E062;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.amarillo.inner-nav-container .inner-nav .pill {
  color: #123549;
}
.amarillo.inner-nav-container .inner-nav .pill.active a, .amarillo.inner-nav-container .inner-nav .pill:hover a {
  background-color: #123549;
  color: #E8E062;
  border-radius: 12px;
  padding: 5px 10px;
}
.amarillo.inner-nav-container .inner-nav .pill.menu a {
  background-image: url(../imags/icons/down-blue.svg);
}
.amarillo.inner-nav-container .inner-nav .pill.menu .submenu {
  background-color: #123549;
  padding-bottom: 35px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 12px;
}
.amarillo.inner-nav-container .inner-nav .pill.menu .submenu a {
  border-bottom: 1px solid #f4f7e9;
  color: #f4f7e9;
  background-color: transparent;
  width: fit-content;
  margin: 2px auto;
}
@media (max-width: 64rem) {
  .amarillo.inner-nav-container .inner-nav .pill.menu .submenu a {
    width: fit-content;
    background-color: transparent;
    margin: 2px auto;
  }
}
.amarillo.inner-nav-container .inner-menu-trigger:after {
  background-image: url(../imags/icons/down-blue.svg);
}
.amarillo .card {
  background: #E8E062;
  background: linear-gradient(180deg, #E8E062 50%, #d1c94d 100%);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.amarillo .card .card-title {
  color: #123549;
}
.amarillo .card .card-stamp {
  color: #123549;
}
.amarillo .card .card-text {
  color: #123549;
}
.amarillo .card:hover {
  background: rgb(255, 26, 106);
  background: linear-gradient(180deg, #123549 50%, #072034 100%);
  border: 1px solid #123549;
}
.amarillo .card:hover .card-title {
  color: #f4f7e9;
}
.amarillo .card:hover .card-text {
  color: #f4f7e9;
}
.amarillo .card:hover .card-stamp {
  color: #f4f7e9;
}
.amarillo .article.video.active {
  background-color: #123549;
}
.amarillo .featured .featured-content .featured-title {
  color: #f4f7e9;
}
.amarillo.header .fixed-banner .banner-title {
  color: #f4f7e9;
}
.amarillo.single-ad-responsive {
  background-color: unset;
}
.amarillo.single-ad-responsive .rotate {
  color: #123549;
}
.amarillo.single-ad-responsive .ad-container {
  background-color: #E8E062 !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.amarillo .ad-single {
  background-color: #d1c94d !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.5) 0px 1px 2px;
  margin-bottom: 10px;
}
.amarillo .ad-single .legend {
  color: #123549;
}
.amarillo.container {
  border-radius: 12px;
  padding: 15px;
  color: #123549;
}
.amarillo.footer {
  border-radius: 0;
  background: #E8E062;
  background: linear-gradient(180deg, #123549 40%, #d1c94d 100%);
  border-top: 8px solid #123549;
  margin-top: 45px;
}
.amarillo .tabs-container .tab {
  background-color: transparent;
  color: #123549;
  border-bottom: 6px solid #d1c94d;
}
.amarillo .tabs-container .tab.active, .amarillo .tabs-container .tab:hover {
  color: #123549;
  border-bottom: 6px solid #123549 !important;
}
.amarillo .programacion .row {
  border-bottom: 1px solid #123549;
}
.amarillo .programacion .row:hover, .amarillo .programacion .row.active {
  background-color: #123549;
  color: #FF1A6A;
}
.amarillo .programacion .row:hover h4, .amarillo .programacion .row.active h4 {
  color: #FF1A6A;
}
.amarillo .programacion-footer {
  background-color: #000000;
  color: #f4f7e9;
}

.show {
  display: block;
}

.row.show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hide {
  display: none;
}

.show-xs {
  display: block;
}

.row.show-xs {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hide-xs {
  display: none;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block;
  }
  .row.show-xs-only {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-xs-only {
    display: none;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block;
  }
  .row.show-sm {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-sm {
    display: none;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block;
  }
  .row.show-sm-only {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-sm-only {
    display: none;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block;
  }
  .row.show-md {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-md {
    display: none;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block;
  }
  .row.show-md-only {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-md-only {
    display: none;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block;
  }
  .row.show-lg {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-lg {
    display: none;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block;
  }
  .row.show-lg-only {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-lg-only {
    display: none;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block;
  }
  .row.show-xl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-xl {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */