@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,700italic,400italic,600,600italic&subset=latin,latin-ext");
/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700,700i&subset=latin-ext'); */
/* COOKIES */
#overbox {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999999;
  display: block;
}

#infobox {
  margin: auto;
  position: relative;
  top: 0px;
  height: 58px;
  width: 100%;
  text-align: center;
  background-color: #eeeeee;
}

#infobox p {
  line-height: 58px;
  font-size: 12px;
  text-align: center;
}

#infobox p a {
  margin-right: 5px;
  text-decoration: underline;
}

/* VIEWPORT */
body.viewport::before {
  content: "xs";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #000;
  padding: 10px;
  color: white;
}

@media (min-width: 768px) {
  body.viewport::before {
    content: " sm ";
  }
}

@media (min-width: 992px) {
  body.viewport::before {
    content: " md ";
  }
}

@media (min-width: 1200px) {
  body.viewport::before {
    content: " lg ";
  }
}

/* ::selection, ::-moz-selection
{
	background: $primary;
	color: white;
} */
:root {
  --lx-bg-color: white;
}

/* html, body {
	overflow-x: hidden;
} */
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  /* font-family: 'Noto Sans', 'Source Sans Pro', sans-serif; */
  font-family: 'Libre Franklin',sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-display: swap;
  line-height: 1.6em;
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-ad-container {
  display: flex;
  position: fixed;
  background-color: #0052a0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  transition: top 0.3s;
  height: 110px;
}

@media (max-width: 600px) {
  .navbar-ad-container {
    height: 70px;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
  }
}

.main {
  /* margin-top: 190px; */
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .main {
    /* margin-top: 80px; */
    /* margin-top: 120px; */
    margin-top: 2rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #0052a0;
  font-weight: 700;
}

h1 .h2, h1 h2, h2 .h2, h2 h2, h3 .h2, h3 h2, h4 .h2, h4 h2, h5 .h2, h5 h2, h6 .h2, h6 h2 {
  font-size: 26px;
}

ul, li, ol {
  margin: 0;
  padding: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

img {
  border: none;
}

a {
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}

a:hover {
  color: #0052a0 !important;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

a.hoverImg img:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* SUMARIO */
.summary-box {
  margin: 10px auto 20px auto;
}

.summary-box a {
  color: #0052a0;
}

.summary-box a:hover {
  color: #666;
}

.pagination {
  justify-content: center !important;
}

.pagination li a, .pagination li span {
  color: #0052a0;
}

.pagination.active > a, .pagination .active > a:focus, .pagination .active > a:hover, .pagination .active > span, .pagination .active > span:focus, .pagination .active > span:hover {
  background-color: #0052a0;
  border-color: #0052a0;
}

.pagination .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0052a0;
  border-color: #0052a0;
}

.card {
  border: none !important;
}

.card .card-link {
  position: relative;
}

.card .card-img-overlay {
  top: 0.25em;
  padding: 0.5rem;
}

.card .btn {
  z-index: 3;
  position: relative;
}

.card img:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.card .card-img, .card .card-img-top {
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

/* CAPTCHA */
#imgCaptcha {
  height: 27px;
}

.captcha {
  max-width: 180px;
}

/* COLORES */
/* colorsitio */
.text-colorsitio, .colorsitio, a.colorsitio, .navbar-nav > li > a.colorsitio, .dropdown-menu > li > a.colorsitio {
  color: #0052a0;
}

a.text-colorsitio:hover, a.colorsitio:hover {
  color: #0052a0;
  text-decoration: underline;
}

.navbar-nav li.nav-item:hover {
  background-color: rgba(0, 0, 0, 0.15) !important;
}

.navbar-nav li.nav-item ul.dropdown-menu {
  border: 0px !important;
  border-radius: 0em;
  background-color: rgba(255, 255, 255, 0.85) !important;
  -webkit-box-shadow: 0 0 8px rgba(132, 132, 132, 0.75);
  -moz-box-shadow: 0 0 8px rgba(132, 132, 132, 0.75);
  box-shadow: 0 0 8px rgba(132, 132, 132, 0.75);
}

li.nav-item ul.dropdown-menu li a.dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  color: #0052a0;
}

a.nav-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

.navbar-nav > li > a.colorsitio:hover, .navbar-nav > .open > a.colorsitio:focus {
  color: white;
  background-color: #0052a0;
}

.navbar-dark .navbar-toggler {
  color: white !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-dark .navbar-nav .nav-link {
  font-family: 'Poppins';
  height: 70px;
  padding: 26px 15px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.dropdown-toggle::after {
  margin-left: 0.55em;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* ul.navbar-nav li.dropdown:hover ul.dropdown-menu {
	display: block;
	margin:0;
} */
.bg-colorsitio {
  color: white;
  background-color: #0052a0;
}

a.bg-colorsitio:hover {
  background-color: #0052a0;
}

.btn-colorsitio {
  color: white;
  background-color: #0052a0;
  border-color: #0052a0;
}

.btn-colorsitio:hover,
.btn-colorsitio:focus,
.btn-colorsitio:active,
.btn-colorsitio.active,
.open > .dropdown-toggle.btn-colorsitio {
  color: white;
  background-color: #B40B16;
  border-color: #B40B16;
}

.btn-colorsitio:active,
.btn-colorsitio.active,
.open > .dropdown-toggle.btn-colorsitio {
  background-image: none;
}

.btn-colorsitio.disabled,
.btn-colorsitio[disabled],
fieldset[disabled] .btn-colorsitio,
.btn-colorsitio.disabled:hover,
.btn-colorsitio[disabled]:hover,
fieldset[disabled] .btn-colorsitio:hover,
.btn-colorsitio.disabled:focus,
.btn-colorsitio[disabled]:focus,
fieldset[disabled] .btn-colorsitio:focus,
.btn-colorsitio.disabled:active,
.btn-colorsitio[disabled]:active,
fieldset[disabled] .btn-colorsitio:active,
.btn-colorsitio.disabled.active,
.btn-colorsitio[disabled].active,
fieldset[disabled] .btn-colorsitio.active {
  background-color: #0052a0;
  border-color: #0052a0;
}

.btn-colorsitio .badge {
  color: #0052a0;
  background-color: white;
}

.label-colorsitio {
  background-color: #0052a0;
}

.label-colorsitio[href]:hover,
.label-colorsitio[href]:focus {
  background-color: #0052a0;
}

.panel-colorsitio {
  border-color: #0052a0;
}

.panel-colorsitio > .panel-heading {
  color: white;
  background-color: #0052a0;
  border-color: #0052a0;
}

.panel-colorsitio > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #0052a0;
}

.panel-colorsitio > .panel-heading .badge {
  color: #0052a0;
  background-color: white;
}

.panel-colorsitio > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #0052a0;
}

.alert-colorsitio {
  color: white;
  background-color: #0052a0;
  border-color: #0052a0;
}

.alert-colorsitio hr {
  border-top-color: #0052a0;
}

.alert-colorsitio .alert-link {
  color: #0052a0;
}

.nav-tabs > li.active.colorsitio > a,
.nav-tabs > li.active.colorsitio > a:hover,
.nav-tabs > li.active.colorsitio > a:focus {
  color: white;
  cursor: default;
  background-color: #0052a0;
  border: 1px solid #0052a0;
  border-bottom-color: transparent;
}

.tab-content.colorsitio {
  border-top: 1px solid #0052a0;
}

@media only screen and (min-width: 800px) and (max-width: 3000px) {
  #topbanner {
    width: 640px;
    height: 90px;
  }
}

/* FOOTER */
.footer {
  border-top: 1px solid #0052a0;
  color: #0052a0;
  width: 100%;
  /* height: 80px; */
  bottom: 0;
  position: relative;
  padding: 20px;
}

.footer .footer-content, .footer a {
  color: #0052a0;
}

.footer .footer-content:hover, .footer a:hover {
  color: #333;
}

.footer .spacer-break {
  display: block;
  margin-bottom: 15px;
  height: 1px;
  border-bottom: 1px dotted white;
}

/* REGISTRO */
.datepicker-dropdown {
  top: 0;
  left: 0;
  font-size: .9rem !important;
  padding: 10px;
}

.datepicker td, .datepicker th {
  padding: 6px;
}

/* MODAL SOCIAL */
.modal {
  top: 100px;
}

.modal .btn-social-modal {
  width: 100%;
  padding: 7px;
  margin: 0 auto 15px auto;
  border: none;
}

.modal .close {
  color: white;
}

.modal .modal-header, .modal .modal-body, .modal .modal-footer {
  border: 0px;
}

.modal .modal-body {
  background-color: #043d72;
}

.modal .modal-dialog .modal-content {
  background-color: #0052a0;
  color: white;
}

.modal .social_modal_footer {
  color: white;
  border: none;
  margin-top: 5px;
  font-weight: 700;
}

.modal .social_modal_footer a {
  color: white;
  opacity: 0.6;
}

.modal .social_modal_header {
  color: white;
  border: none;
  margin-bottom: 5px;
}

/* SLIDER HOME */
.carousel-caption {
  text-align: left;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%) !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 70px;
  height: 70px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: white;
  text-align: center;
  opacity: .8;
  filter: alpha(opacity=80);
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: url(../images/control-right.png);
}

.carousel-control.left {
  left: 0;
  right: auto;
  background-image: url(../images/control-left.png);
}

.sliderColgado {
  /* background-color: rgba(0, 0, 0, 0.7); */
  font-size: 14px;
  padding: 8px 10px 0px 10px;
  margin: 0;
}

.sliderTitulo {
  font-size: 24px;
}

.sliderCopete {
  font-size: 16px;
}

.sliderTitulo, .sliderCopete {
  /* background-color: rgba(0, 0, 0, 0.7); */
  padding: 5px 10px;
  margin: 0;
  line-height: 130%;
  /* font-weight: bold; */
}

.sliderTitulo a, .sliderCopete a {
  color: #FAFAFA;
}

.sliderTitulo a:hover, .sliderCopete a:hover {
  color: #FAFAFA !important;
  text-decoration: underline;
}

.sliderCopete {
  /* background-color: rgba(0, 0, 0, 0.7); */
  font-size: 14px;
  padding: 2px 10px 8px 10px;
  line-height: inherit;
}

.list-article-share-top {
  -webkit-transition: all .4s ease-in-out 0s;
  border-left: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  color: #000;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  width: 40px;
  z-index: 2;
}

/* SOCIAL SUMARIOS */
.foto-sumarios {
  position: relative;
  width: 100%;
  clear: both;
}

.foto-sumarios span {
  position: absolute;
  left: 10px;
  bottom: 5px;
}

.foto-sumarios a.fb-share, .foto-sumarios a.tw-share {
  background-image: url("/images/social-sumarios.png");
  width: 30px;
  height: 30px;
  opacity: 0.8;
  display: block;
  top: 0;
  right: 0;
}

a.fb-share, a.tw-share {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  position: absolute;
  top: 10px;
  /* bottom: 10px; */
  right: 10px;
  background: url("/images/sociales-share.png") no-repeat -41px 0;
  z-index: 3;
  display: block;
  padding: 0;
  margin: 0;
}

a.tw-share {
  right: 60px;
  background: url("/images/sociales-share.png") no-repeat 0 0;
}

a.tw-share:hover {
  background-position: 0 -41px;
}

/* a.tw-share:hover {
		background-position: 0 -41px;
	} */
a.fb-share:hover {
  background-position: -41px -41px;
}

.foto-sumarios a.fb-share {
  background-position: 0 0;
}

.foto-sumarios a.tw-share {
  background-position: -30px 0;
  right: 30px;
}

.foto-sumarios a.fb-share:hover, .foto-sumarios a.tw-share:hover {
  opacity: 1;
}

/* POST */
.post-content {
  /* blockquote::before{
		font-family:Arial;
		content: "\201C";
		color:#0052a0;
		font-size:4em;
		position: absolute;
		left: 10px;
		top:-10px;
	} */
}

.post-content a {
  color: #0052a0;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content blockquote {
  padding: 10px 20px;
  margin: 20px auto;
  width: 90%;
  font-size: 17.5px;
  /* border-left: 5px solid $primary; */
  font-style: italic;
  color: #0052a0;
  font-weight: 700;
  /* background-color: #FAFAFA; */
}

.post-content blockquote p em, .post-content blockquote p i {
  color: #666;
  font-weight: 400;
}

.post-content .carousel {
  margin: 20px auto 0 auto;
}

.post-content .carousel .carousel-inner > .item {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.post-content .copete {
  line-height: 1.2em;
  font-weight: 500;
  padding-bottom: 10px;
  border: none;
}

.post-content .copete h2 {
  font-size: 1.2rem;
  color: #333;
}

.post-content .cuerpo p {
  font-size: 18px;
  line-height: 180%;
  padding: 5px 0;
}

.post-content .cuerpo p #sas_4111 {
  padding: 30px 0;
}

.post-content .cuerpo .autor {
  width: 160px;
  /* height: 190px; */
  padding-right: 5px;
  margin-top: 10px;
  margin-right: 20px;
  border-right: 0px solid #CCC;
  background-color: white;
  color: #0052a0;
  font-size: 0.75rem;
  line-height: 1.6em;
  font-weight: 400;
}

.post-content .firma {
  color: #333;
}

.post-content h2, .post-content h3 {
  color: #0052a0;
  border-left: 0px solid #0052a0;
  border-left: 0px solid #0052a0;
  border-bottom: 0px solid #0052a0;
  padding: 8px 0 12px 0;
  line-height: 1.3em;
}

.post-content h4 {
  margin: -21px auto 10px;
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
  color: #333;
  line-height: 1.5em;
  text-align: center;
  padding: 5px;
  /* background-color: $primary; */
  border-bottom: 1px solid #c1c1c1;
}

.post-content h6 {
  margin: 3px auto;
  font-size: 12px;
  font-style: italic;
  color: #666;
  line-height: 1.5em;
  padding-bottom: 5px;
  font-weight: 400;
}

.post-content .herramientas {
  margin: 10px auto;
}

.post-content .pie-foto, .post-content .herramientas, .post-content .firma, .post-content .cuerpo {
  width: 100%;
  margin: 0 auto;
}

.post-content .pie-foto {
  padding: 5px 10px 5px 1px;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.post-content .social {
  margin: 20px auto;
}

.post-content .social a {
  color: white;
}

.post-content .social a:hover {
  text-decoration: none;
}

.post-content .social button {
  margin: 5px 0;
}

.post-content .social .col-md-4 {
  padding: 4px;
}

.post-content ul, .post-content ol {
  margin-bottom: 18px;
}

.post-content ul li, .post-content ol li {
  margin-left: 18px;
  line-height: 1.8em;
  /* background: url(/images/li-bullet.png) no-repeat 0 8px !important; */
  /* margin-left: 0; */
  padding-left: 0;
  /* color: $primary; */
}

.post-content ul li {
  list-style: none;
}

.post-content ol li {
  margin-bottom: 10px;
}

.post-content ol li strong {
  margin-bottom: 5px;
}

.post-content ul li::before {
  content: "\25a0\00a0\00a0";
  color: #0052a0;
  display: inline-block;
  /* width: 1.25em; */
  margin-left: -0.9em;
  font-size: 1em;
}

.post-content .bb_iawr {
  width: auto !important;
  margin-bottom: 20px !important;
}

/* SIDEBAR */
.sidebar h4 {
  margin-top: 3px;
  font-size: 18px;
}

.sidebar li {
  padding-left: 0;
  /* background: url(/images/bullet.png) no-repeat left 0px; */
  list-style-type: none;
}

.sidebar .list-link {
  color: #0052a0;
  font-weight: 500;
}

/* SUMARIO */
.breadcrumb-sumario {
  text-transform: uppercase;
  color: 555;
}

.etiqueta-sumario {
  font-weight: 400;
  padding: 5px 0;
}

/* VIDEO CONTAINER */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 10px;
  margin: 10px 0;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed, .video-container .brid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brid {
  padding-bottom: 56.25%;
}

/* VARIOS */
.nopadding {
  padding: 0;
}

.backtopbutton {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: white;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  background: #000;
  line-height: 150%;
  text-align: center;
  font-size: 10px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  z-index: 15;
}

.backtopbutton:hover {
  color: white;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  text-decoration: none;
}

.mark, mark {
  background-color: #faea32;
}

.markGAS {
  background-color: #3b8be9;
  color: #FFF;
  padding: 5px;
}

/* OVERRIDE STICKY PML */
div#aniplayer_VP8_AV_P4_VidaPositiva_DSK_Notas_OV,
div#aniplayer_VP9_AV_P4_VidaPositiva_Mobile_Notas_OV_CornerSticky {
  bottom: 50px !important;
}

/* INSTAGRAM */
.ig-b- {
  display: inline-block;
}

.ig-b- img {
  visibility: hidden;
}

.ig-b-:hover {
  background-position: 0 -60px;
}

.ig-b-:active {
  background-position: 0 -120px;
}

.ig-b-24 {
  width: 24px;
  height: 24px;
  background: url(//badges.instagram.com/static/images/ig-badge-sprite-24.png) no-repeat 0 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ig-b-24 {
    background-image: url(//badges.instagram.com/static/images/ig-badge-sprite-24@2x.png);
    background-size: 60px 178px;
  }
}

.adresponsive {
  width: 320px;
  height: 100px;
}

@media (min-width: 500px) {
  .adresponsive {
    width: 468px;
    height: 60px;
  }
}

@media (min-width: 800px) {
  .adresponsive {
    width: 728px;
    height: 90px;
  }
}
