<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Generals*/
header .inner, footer .inner {
  max-width: 1176px;
  width: 93%;
  margin: 0px auto;
  height: auto;
}
.inner {
  max-width: 960px;
  width: 93%;
  margin: 0px auto;
  height: auto;
}

/**/
header {
  width: 100%;
  margin: 0px;
  height: 88px;
  background: var(--navy-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.relative-header{
  position: relative;
}
.fixed-header{
  position: fixed !important;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
.logo{
  max-width: 133px;
  height: auto;
  display: inline-block;
  position: relative;
}

/*Mobile*/
.featuredMobileImg {
  display: none;
}
.pdfQuiz {
  color: #f7c55d;
  position: relative;
  right: 0px;
  font-family: 'BentonSansBBVA-Medium';
  float: right;
  top: 7px;
  animation: escalatxt 1.5s infinite;
  font-size: 18px;
}
@keyframes escalatxt {
  0%   {transform: scale(1);}
  50%  {transform: scale(1.1);}
  100%  {transform: scale(1);}
}
.pdfQuiz .downloadIcn{
  -webkit-mask-image: url(../images/icn_descargar.svg);
  mask-image: url(../images/icn_descargar.svg);
}
.icnYellow{
    -webkit-mask-size: cover;
    mask-size: cover;
    margin: 0px 5px 0px 0px;
    background: #f7c55d;
    top: 3px;
    position: relative;
    width: 18px;
    height: 18px;
    padding: 0px;
    display: inline-block;
}
.pdfQuiz:hover{
  color: #fff;
  text-decoration: none;
}
.pdfQuiz:hover .icnYellow{
  background: #fff;
}
@media screen and (max-width: 1024px) {
  header {
    height: 48px;
    text-align: left;
  }

  header img {
    max-width: 197px;
  }

  header .inner img {
    width: 90px;
    height: auto;
    margin: 0px 0px;
  }

  .pdfQuiz {
    top: 0px;
  }
}

@media screen and (max-width: 414px) {
  header {
    height: 48px;
    text-align: left;
  }

  header img {
    max-width: 165px;
  }
  .pdfQuiz {
    font-size: 16spx;
  }
}

</pre></body></html>