body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto;
}

.container {
  padding: 0 15px;
}

.partner-item {
  margin: 20px 0;
}

.photo-item,
.video-item {
  margin: 20px 0;
  position: relative;
  text-align: left;
  border: #CCC 1px solid;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.photo-item__image {
  max-width: 100%;
  width: 100%;
}

.photo-item__category,
.video-item__category {
  background-color: #224486;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  border-radius: 20px;
  font-size: 11px;
  width: fit-content;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  display: inline-block;
  margin: 0 3px;
}

.photo-item__title,
.video-item__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  margin: 10px;
  left: 16px;
  color: #777;
  width: 100%;

}

.photo-item a {
  text-decoration: none;
}

.photo-item__title p,
.video-item__title p {
  margin: 5px 0px 0px 0px;
  width: 90%;
}

.ad-item {
  background-color: #eee;
  text-align: center;
  padding: 15px 15px 30px 15px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.ad-item::after {
  content: "PUBLICIDAD";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: #ccc;
  color: #333;
  font-size: 10px;
}

.ad-item.adsmovil.article {
  margin: 0 20px 20px 20px;
}

.ad-ribbon {
  width: 100%;
  background-color: #ddd;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px;
  font-family: inherit;
  font-size: 12px;
  color: #999;
}

.article-title-container {
  background-color: #224486;
  color: #fff;
  padding: 10px 20px;
  text-align: right;
  font-weight: bold;
  text-shadow: none;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: -webkit-fill-available;
  z-index: 1;
}

.article-title-container a,
.article-title-container a:visited {
  color: #fff !important;
  text-decoration: none;
  text-shadow: none;
}

.widget-news-image {
  width: -webkit-fill-available;
}

.widget-news-container {
  background-color: #fff;
  padding-top: 74px;
}

.widget-news-content-container {
  padding: 0 20px 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
}

.page-load-status {
  display: none;
  /* hidden by default */
  padding-top: 20px;
  /*border-top: 1px solid #DDD;*/
  text-align: center;
  color: #777;
}

/* loader ellips in separate pen CSS */
.loader-ellips {
  font-size: 20px;
  /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}

.loader-ellips__dot:nth-child(3) {
  left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
  left: 3em;
}

@keyframes reveal {
  from {
    transform: scale(0.001);
  }

  to {
    transform: scale(1);
  }
}

@keyframes slide {
  to {
    transform: translateX(1.5em)
  }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}

#topBtn {
  display: none;
  width: 3em;
  height: 3em;
  border: 0.3em solid #ccc;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  /* Add a mouse pointer on hover */
}

#topBtn:after {
  content: '';
  display: inline-block;
  margin: 1em 0 0 .6em;
  width: 1.3em;
  height: 1.3em;
  border-top: 0.4em solid #224486;
  border-right: 0.4em solid #224486;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 3px;
}

.progress {
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: #224486;
  width: 0%;
}