@charset "UTF-8";
/* Structure */
html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem;
  color: #121212;
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body, blockquote, ul, ol, .kicker, .header, .normal {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  
  a {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid transparent;
  color: #1973b8;
  padding-bottom: 1.5px;
  -webkit-transition: all 100ms linear 0s;
  transition: all 100ms linear 0s;
  -webkit-backface-visibility: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto; }
  a:hover, a:active, a:focus {
    border-bottom: 1px solid transparent !important;
    color: #104975;
    text-decoration: none; }
  a.img-link, a.img-link:hover, a.img-link:active, a.img-link:focus, a.img-link:hover img, a.img-link:active img, a.img-link:focus img, a.icon-link, a.icon-link:hover, a.icon-link:active, a.icon-link:focus, a a img, a a img:hover, a a img:active, a a img:focus {
    border: none;
    padding-bottom: 0; }
    a.img-link .icon, a.img-link:hover .icon, a.img-link:active .icon, a.img-link:focus .icon, a.img-link:hover img .icon, a.img-link:active img .icon, a.img-link:focus img .icon, a.icon-link .icon, a.icon-link:hover .icon, a.icon-link:active .icon, a.icon-link:focus .icon, a a img .icon, a a img:hover .icon, a a img:active .icon, a a img:focus .icon {
      font-size: 0.95em;
      padding-right: 7px; }
      a.img-link .icon:hover, a.img-link:hover .icon:hover, a.img-link:active .icon:hover, a.img-link:focus .icon:hover, a.img-link:hover img .icon:hover, a.img-link:active img .icon:hover, a.img-link:focus img .icon:hover, a.icon-link .icon:hover, a.icon-link:hover .icon:hover, a.icon-link:active .icon:hover, a.icon-link:focus .icon:hover, a a img .icon:hover, a a img:hover .icon:hover, a a img:active .icon:hover, a a img:focus .icon:hover {
        border: none; }

.bg-grey100 a, .bg-grey100 a.icon-link .icon {
  color: #1973b8; }
  .bg-grey100 a:hover, .bg-grey100 a:active, .bg-grey100 a:focus, .bg-grey100 a.icon-link .icon:hover, .bg-grey100 a.icon-link .icon:active, .bg-grey100 a.icon-link .icon:focus {
    border-bottom: 1px solid #bdbdbd;
    color: #104975;
    text-decoration: none;
    -webkit-transition: color 100ms linear 0s;
    transition: color 100ms linear 0s; }
    .bg-grey100 a:hover .icon, .bg-grey100 a:active .icon, .bg-grey100 a:focus .icon, .bg-grey100 a.icon-link .icon:hover .icon, .bg-grey100 a.icon-link .icon:active .icon, .bg-grey100 a.icon-link .icon:focus .icon {
      color: #072146;
      -webkit-transition: color 100ms linear 0s;
      transition: color 100ms linear 0s; }
      .bg-grey100 a:hover .icon:hover, .bg-grey100 a:active .icon:hover, .bg-grey100 a:focus .icon:hover, .bg-grey100 a.icon-link .icon:hover .icon:hover, .bg-grey100 a.icon-link .icon:active .icon:hover, .bg-grey100 a.icon-link .icon:focus .icon:hover {
        border: none; }
  .bg-grey100 a.icon-link, .bg-grey100 a.icon-link:hover, .bg-grey100 a.icon-link:active, .bg-grey100 a.icon-link:focus, .bg-grey100 a.icon-link .icon.icon-link, .bg-grey100 a.icon-link .icon.icon-link:hover, .bg-grey100 a.icon-link .icon.icon-link:active, .bg-grey100 a.icon-link .icon.icon-link:focus {
    border: none;
    padding-bottom: 0; }

p {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  margin: 0 0 1.5em;
  color: #121212; }

hr {
  border-color: #f4f4f4;
  border-width: 2px;
  margin: 2em auto;
  width: 100%; }

.bg-grey100 hr, .prefooter hr {
  border-color: #e9e9e9; }

ul, ol {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  /*margin: 0 0 1.25em 0;
  padding-left: 1em;*/ }
  ul li, ol li {
    line-height: 1.4;
    padding-bottom: 1em;
    padding-left: 0.75em; }
  ul ul, ul ol, ol ul, ol ol {
    margin-top: 1.25em;
    margin-bottom: 0; }
    ul ul li:last-child, ul ol li:last-child, ol ul li:last-child, ol ol li:last-child {
      padding-bottom: 0.5em; }

ol {
  counter-reset: li;
  /* Initiate a counter */
  margin-left: 0;
  padding-left: 0; }
  ol li {
    margin: 0 0 0 1em;
    position: relative;
    padding: 0 !important;
    /*&:before {
      content:counter(li); // Use the counter as content 
      counter-increment:li; // Increment the counter by 1 
      // Position and style the number 
      position:absolute;
      top:-2px;
      left:-3em;
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      width:2.5em;
      // Some space between the number and the content in browsers that support
      //   generated content but not positioning it (Camino 2 is one example) 
      margin-right:8px;
      padding:4px;
      font-size: 1.6rem;
      text-align: center;
      color: $grey500;
    }
      &:after {
      color: $grey100;
      content: $bbva-secondary-bullet;
      display: block;
      font-family: 'coronita';
      font-size: 2.2em;
      left: -1.3em;
      top: -0.4em;
      position: absolute;
      z-index: -1;

      -webkit-transform: rotate(-90deg);
      -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg);
    }*/ }

ul {
  list-style: none;
  /*padding-left: 0;*/ }
  ul li {
    padding-left: 1.5em;
    position: relative; }

ul li:before, ul li li li:before, ul li li li li li:before {
  color: #d3d3d3;
  content: "";
  display: block;
  font-family: 'coronita';
  font-size: 1em;
  line-height: 1em;
  margin-left: -1.5em;
  position: absolute; }

ul li li:before, ul li li li li:before {
  content: "";
  font-size: 0.5em;
  margin-left: -2.8em;
  margin-top: 0.5em; }

strong, .strong, b, .bold {
  font-family: "BentonSansBBVA-Medium Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 500; }

/* Icon List */
/* Unordered list with icons (instead of bullets) */
ul.icon-list li {
  display: table;
  padding-left: 0; }
  ul.icon-list li:before {
    content: "";
    display: none;
    margin: 0; }
  ul.icon-list li .icon {
    display: table-cell;
    padding-right: 0.75em;
    padding-top: 3px;
    vertical-align: top; }

blockquote {
  border-bottom: 1px solid #e9e9e9;
  border-left: none;
  border-top: 1px solid #e9e9e9;
  color: #004481;
  margin: 4em 20%;
  padding: 3em; }
  blockquote.blockquote-aside {
    display: block;
    float: right;
    margin: 3em 1em;
    padding: 3em 1.75em;
    position: relative;
    width: 32%; }
  blockquote p {
    font-family: "Tiempos Headline Regular", Georgia, Times, serif;
    font-size: 1.3125em; }
    blockquote p.attribution {
      color: #121212;
      font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-size: 1em;
      margin-top: -1em; }

/*  Testimonials
    - a subset of blockquotes for testimonials 
*/
.testimonial {
  background: #f4f4f4;
  border: none;
  color: #121212;
  margin: 8rem 0 6rem 0;
  position: relative;
  padding: 6rem 15%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .testimonial p {
    font-size: 3.6rem;
    font-family: "Tiempos Headline Medium", Georgia, Times, serif;
    line-height: 1.4; }
    .testimonial p.attribution {
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-size: 2.2rem;
      margin-top: -1em;
      text-align: left;
      -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
      align-self: flex-start;
      max-width: 100%; }
  .testimonial:before {
    content: "";
    font-family: 'coronita';
    font-size: 7.2rem;
    position: absolute;
    top: -4.5rem;
    color: #1973b8; }

/* Typography */
.hero-h1, .hero h1, h1.hero, h1 .hero, .hero-h1 a, .hero h1 a, h1.hero a, .hero h1 a {
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 6.5rem;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 0 0 0.3em; }

h1, .h1, h1 a, .h1 a {
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 4.2rem;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin: 0 0 0.3em; }

h1.thin, h1 .thin, .h1.thin, h1.thin a, .h1.thin a, h1 .thin a {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif; }

h2, .h2, h2 a, .h2 a {
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  letter-spacing: -0.2px;
  line-height: 1.1;
  margin: 0 0 0.45em; }

h2.thin, h2 .thin, .h2.thin, h2.thin a, .h2.thin a {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif;
  letter-spacing: -1.6px; }

h2.serif, h2 .serif, .h2.serif, h2.serif a, .h2.serif a, h2 .serif a {
  font-family: "Tiempos Headline Regular", Georgia, Times, serif;
  letter-spacing: -0.2px; }

h3, .h3, h3 a, .h3 a {
  color: #121212;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
/*  font-size: 3.0rem;*/
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 0.75em; }

h3.thin, h3 .thin, .h3.thin, h3.thin a, .h3.thin a, h3 .thin a {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif;
  letter-spacing: -1px; }

h3.serif, h3 .serif, .h3.serif, h3.serif a, .h3.serif a, h3 .serif a {
  font-family: "Tiempos Headline Regular", Georgia, Times, serif;
  letter-spacing: -1px; }

h4, .h4, h4 a, .h4 a {
  color: #121212;
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin: 0 0 0.5em; }

h4.thin, h4 .thin, .h4.thin, h4.thin a, .h4.thin a, h4 .thin a {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif; }

h4.serif, .h4.serif, h4.serif a, .h4.serif a {
  font-family: "Tiempos Headline Regular", Georgia, Times, serif; }

h5, .h5, h5 a, .h5 a {
  color: #121212;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 .8em; }

h5.thin, h5 .thin, .h5.thin, h5.thin a, .h5.thin a, h5 .thin a {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif; }

h6, .h6, h6 a, .h6 a {
  color: #121212;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 1.5em; }

h6.bullet, h6 .bullet, .h6.bullet, h6.bullet a, .h6.bullet a, h6 .bullet a {
  color: #121212;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2.5em;
  text-transform: uppercase; }

h6.bullet:before, .h6.bullet:before {
  font-family: 'coronita';
  font-size: 1.4rem;
  content: "";
  color: #5bbeff;
  margin-right: 1em;
  margin-left: .5em;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.remoteofficerindex .h5 a, .mortofficerresultpage .h5 a {
  color: #1973b8; }
  .remoteofficerindex .h5 a:hover, .remoteofficerindex .h5 a:active, .remoteofficerindex .h5 a:focus, .mortofficerresultpage .h5 a:hover, .mortofficerresultpage .h5 a:active, .mortofficerresultpage .h5 a:focus {
    color: #104975; }

.lead {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.3px;
  line-height: 1.4; }

.disclosure {
  font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #666666;
  line-height: 1.55; }

.btn-block + .btn-block {
  margin-top: 0; }

/* Full-Width */
.container-fluid {
  padding-top: 3em;
  padding-bottom: 3em; }

.container-fluid.nopadding {
  padding-top: 0;
  padding-bottom: 0; }

.container-fluid.smallpadding {
  padding-bottom: 1em;
  padding-top: 1em; }

.container-fluid.mediumpadding {
  padding-bottom: 1.875em;
  padding-top: 1.875em; }

.container-fluid.largepadding {
  padding-bottom: 2.5em;
  padding-top: 2.5em; }

.sign-in-form .username-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.sign-in-form input[type="text"] {
  -webkit-box-flex: 2;
  -webkit-flex: 2 1 auto;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto; }

.sign-in-form input[type="text"] + .btn {
  margin: 0; }

.sign-in-form .remember-me input[type="checkbox"] {
  display: none; }
  .sign-in-form .remember-me input[type="checkbox"]:checked + label .faux-box:before {
    color: #121212;
    content: "";
    font-family: 'coronita';
    font-size: 1.3em;
    line-height: 1.2;
    padding: 0.2em; }

.sign-in-form .remember-me label {
  color: #666666;
  cursor: pointer;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }
  .sign-in-form .remember-me label .faux-box {
    background-color: #f4f4f4;
    border-radius: 2px;
    box-shadow: inset 0 1px 0 0 #ececec;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    height: 26px;
    width: 26px; }

/* Hiding S&P Default Text - "Search is currently not available." */
h3.cq-texthint-placeholder {
  display: none; }

/*  Profile Img 
    - intended for use on remote/mortgage office pages and blog
*/
.profile-img {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 50%; }
  .profile-img img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%; }

/*Removes Empty P Tags in AEM*/
.container p:empty {
  display: none; }

@font-face {
  font-family: 'Tiempos Headline Regular';
  src: url("fonts/tiempos-headline-regular.eot");
  /* IE9 Compat Modes */
  src: url("fonts/tiempos-headline-regular.eot?#iefix") format("embedded-opentype"), url("fonts/tiempos-headline-regular.woff") format("woff"), url("fonts/tiempos-headline-regular.ttf") format("truetype"), url("fonts/tiempos-headline-regular.svg#32a5c18fbd7f2e5bfaa36a702c99a245") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Tiempos Headline Medium';
  src: url("fonts/tiempos-headline-medium-italic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/tiempos-headline-medium-italic.eot?#iefix") format("embedded-opentype"), url("fonts/tiempos-headline-medium-italic.woff") format("woff"), url("fonts/tiempos-headline-medium-italic.ttf") format("truetype"), url("fonts/tiempos-headline-medium-italic.svg#46e3b136ca8d9efef8ca6a17668f3763") format("svg");
  /* Legacy iOS */
  font-style: italic;
  font-weight: 400; }

/*@font-face {
  font-family: 'Benton Sans Black';
  src: url('fonts/BentonSans-Black.eot');
  src: url('fonts/BentonSans-Black.eot?#iefix') format('embedded-opentype'),
       url('fonts/BentonSans-Black.woff') format('woff'),
       url('fonts/BentonSans-Black.ttf')  format('truetype'),
       url('fonts/BentonSans-Black.svg#7d25ed65329d1331bf4549a4ec3951b2') format('svg');
       
  font-style:   normal;
  font-weight:  400;
}*/
@font-face {
  font-family: 'BentonSansBBVA Bold';
  src: url("fonts/BentonSansBBVA-Bold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSansBBVA-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSansBBVA-Bold.woff") format("woff"), url("fonts/BentonSansBBVA-Bold.ttf") format("truetype"), url("fonts/BentonSansBBVA-Bold.svg#ed8435d366a4ac4bee8ecd80fc76b4b5") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 700; }

@font-face {
  font-family: 'BentonSansBBVA Book';
  src: url("fonts/BentonSansBBVA-Book.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSansBBVA-Book.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSansBBVA-Book.woff") format("woff"), url("fonts/BentonSansBBVA-Book.ttf") format("truetype"), url("fonts/BentonSansBBVA-Book.svg#ace0ed135dbc9c8610ca3f0bf5ce3b98") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'BentonSansBBVA Light';
  src: url("fonts/BentonSansBBVA-Light.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSansBBVA-Light.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSansBBVA-Light.woff") format("woff"), url("fonts/BentonSansBBVA-Light.ttf") format("truetype"), url("fonts/BentonSansBBVA-Light.svg#f78597f6497138650c310eebac22df9c") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 200; }

@font-face {
  font-family: 'BentonSansBBVA Medium';
  src: url("fonts/BentonSansBBVA-Medium.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSansBBVA-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSansBBVA-Medium.woff") format("woff"), url("fonts/BentonSansBBVA-Medium.ttf") format("truetype"), url("fonts/BentonSansBBVA-Medium.svg#a8060284b02b2442ada7a339eccbdbe3") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Benton Sans Regular';
  src: url("fonts/BentonSans-Regular.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSans-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSans-Regular.woff") format("woff"), url("fonts/BentonSans-Regular.ttf") format("truetype"), url("fonts/BentonSans-Regular.svg#f50175ba80b800aed21afcc63f3304ef") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Benton Sans Thin';
  src: url("fonts/BentonSans-Thin.eot");
  /* IE9 Compat Modes */
  src: url("fonts/BentonSans-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/BentonSans-Thin.woff") format("woff"), url("fonts/BentonSans-Thin.ttf") format("truetype"), url("fonts/BentonSans-Thin.svg#68f7b38655a077d00ecf5d03d0d23165") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 200; }

[class^="bbva-"], [class*=" bbva-"], .fa {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'coronita' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.bbva-coronita_chev-down:before,
.bbva-coronita_chev-left:before,
.bbva-coronita_chev-up:before,
.bbva-coronita_upload:before {
  display: inline-block; }

.bbva-coronita_chev-down:before,
.bbva-coronita_chev-left:before,
.bbva-coronita_chev-up:before,
.bbva-coronita_chev-right:before {
  content: ""; }

.bbva-coronita_chev-down:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

.bbva-coronita_chev-left:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.bbva-coronita_chev-up:before {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/* Accordions */
.accordion {
  padding: 4em 0; }
  .accordion .panel + .panel {
    margin-top: 0; }
  .accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none; }
    .accordion .panel .collapsing {
      -webkit-transition: height 0.6s;
      transition: height 0.6s; }
    .accordion .panel:first-child .panel-heading a {
      border-top: 1px solid #e9e9e9; }
    .accordion .panel .panel-heading {
      padding: 0; }
      .accordion .panel .panel-heading a {
        border-bottom: 1px solid #e9e9e9;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        font-size: 1.6rem;
        letter-spacing: -0.2px;
        line-height: 1.45;
        margin-bottom: 0;
        padding: 1.875em 6em 1.875em 1.875em;
        position: relative;
        width: 100%;
        -webkit-transition: all 100ms linear 0s;
        transition: all 100ms linear 0s;
        color: #121212; }
        .accordion .panel .panel-heading a:hover, .accordion .panel .panel-heading a:active {
          color: #1973b8;
          border-bottom: 1px solid #e9e9e9; }
        .accordion .panel .panel-heading a:focus {
          color: #121212; }
        .accordion .panel .panel-heading a:not(.collapsed) {
          border-bottom: none;
          padding-bottom: 0; }
        .accordion .panel .panel-heading a:not(.collapsed) .bbva-coronita_chev-down:before {
          top: 66%;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg); }
      .accordion .panel .panel-heading .icon {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
      .accordion .panel .panel-heading .icon:before {
        text-align: center;
        width: 60px;
        color: #1973b8; }
      .accordion .panel .panel-heading .bbva-coronita_minus-stag,
      .accordion .panel .panel-heading .bbva-coronita_plus-stag {
        color: #1973b8;
        font-size: 1em;
        left: auto;
        margin-right: 1em;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
      .accordion .panel .panel-heading .bbva-coronita_plus-stag {
        display: none; }
    .accordion .panel .panel-collapse {
      border-bottom: 1px solid #e9e9e9; }
      .accordion .panel .panel-collapse.in {
        border-bottom: 1px solid #e9e9e9; }
      .accordion .panel .panel-collapse .panel-body {
        border-top: none;
        padding: 1.25em 6em 2.5em 1.875em; }
        .accordion .panel .panel-collapse .panel-body > *:last-child {
          margin-bottom: 0; }
    .accordion .panel .collapsed .bbva-coronita_minus-stag {
      display: none; }
    .accordion .panel .collapsed .bbva-coronita_plus-stag {
      display: inline-block; }

/* Base Alert Message */
.alert-msg {
  background-color: #fdf0ca;
  height: auto; }
  .alert-msg .alert-msg-body {
    display: table;
    padding: 0.75em 0 1.375em; }
    .alert-msg .alert-msg-body > * {
      display: table-cell;
      vertical-align: top; }
  .alert-msg .icon {
    color: #a32a3d;
    padding-top: 0.2em;
    -webkit-transition: color 100ms linear 0s;
    transition: color 100ms linear 0s; }
  .alert-msg h2, .alert-msg h3, .alert-msg h4, .alert-msg p {
    padding: 0 1.5em; }
  .alert-msg p {
    font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .alert-msg a {
    color: #a32a3d; }
    .alert-msg a:hover {
      color: #121212; }
  .alert-msg a, .alert-msg a:hover, .alert-msg a:active, .alert-msg a:focus {
    border-bottom: none; }
  .alert-msg .bbva-coronita_close {
    display: block;
    margin-top: 0.2em; }
    .alert-msg .bbva-coronita_close:hover, .alert-msg .bbva-coronita_close:active, .alert-msg .bbva-coronita_close:focus {
      color: #a32a3d; }

/* Outdated Browser Alert */
#browser-alert {
  background-color: #f4c3ca;
  padding: 0; }
  #browser-alert h2 {
    padding-right: 0;
    width: 27%; }
  #browser-alert p {
    vertical-align: middle; }
  #browser-alert .alert-msg-body {
    padding: 2em 0; }

/* OLB Maintenance Message - Link */
body > header.container-fluid .maintenance-notice-toggle {
  color: #1973b8;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  display: table;
  margin-top: 0.9em;
  margin-bottom: -2em; }
  body > header.container-fluid .maintenance-notice-toggle:hover {
    color: #004481; }
  body > header.container-fluid .maintenance-notice-toggle span {
    font-size: 1.1em;
    padding-right: 0.7em; }
    body > header.container-fluid .maintenance-notice-toggle span:before {
      display: inline-block;
      margin-top: -5px;
      vertical-align: middle; }

/* Badges */
.badge-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 1.6rem;
  padding-bottom: 2rem; }

.badge.coronita {
  background-color: transparent;
  color: #666666;
  padding: .5rem 0;
  position: relative;
  font-family: "Benton Sans Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 100;
  min-height: 3.2rem;
  min-width: 3.2rem;
  margin: 0 0 1.6rem 0; }
  .badge.coronita:after {
    color: #f4f4f4;
    content: "";
    display: block;
    font-family: 'coronita';
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 2.2em;
    left: 0;
    top: -0.8rem;
    position: absolute;
    z-index: -1; }

.badge.coronita ~ * {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%; }

.badge-container p:last-child,
.badge-container.horizontal p:last-child {
  margin-bottom: 0; }

/*Badge Helper Classes*/
.badge.coronita.lg {
  font-size: 4rem;
  padding: .25rem 1.4rem;
  min-width: 2.4rem;
  min-height: 2.4rem; }
  .badge.coronita.lg:after {
    top: -.8rem;
    font-size: 1.25em; }

.badge.coronita.sm {
  font-size: 1.2rem;
  padding: .75rem;
  min-width: 1.6rem;
  min-height: 1.6rem; }
  .badge.coronita.sm:after {
    top: -0.2rem; }

/*Horizontal Badges (experimental)*/
.badge-container.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }

.badge-container.horizontal .badge {
  margin: 0 1.6rem 0 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

/* Blog Pages */
/* Blog Article Page */
.image-header.image-header-blog {
  margin-bottom: 0; }

.container-fluid.blog-article-block {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 1em;
  padding-top: 1em; }
  .container-fluid.blog-article-block .blog-author-block {
    display: table;
    width: 100%; }
    .container-fluid.blog-article-block .blog-author-block .img-round {
      height: 54px;
      width: 54px; }
    .container-fluid.blog-article-block .blog-author-block .byline {
      padding-left: 1em;
      width: auto; }
      .container-fluid.blog-article-block .blog-author-block .byline span a {
        color: #121212;
        font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
        font-size: 1.3rem;
        text-transform: uppercase; }
      .container-fluid.blog-article-block .blog-author-block .byline a {
        font-size: 1.5rem;
        padding: 0; }
  .container-fluid.blog-article-block .blog-author {
    display: table; }
  .container-fluid.blog-article-block .blog-author > * {
    display: table-cell;
    vertical-align: middle; }
  .container-fluid.blog-article-block .blog-social-share {
    display: table-cell;
    margin: 0;
    width: 25%;
    vertical-align: middle; }
    .container-fluid.blog-article-block .blog-social-share li {
      display: table-cell;
      padding-bottom: 0;
      padding-left: 0.5em;
      vertical-align: middle; }
      .container-fluid.blog-article-block .blog-social-share li:before {
        content: ''; }
      .container-fluid.blog-article-block .blog-social-share li a {
        background-color: #d3d3d3;
        border-radius: 50%;
        border-bottom: none;
        color: #fff;
        display: table;
        height: 38px;
        padding-bottom: 0;
        position: relative;
        -webkit-transition: background-color 100ms linear 0s;
        transition: background-color 100ms linear 0s;
        width: 38px; }
        .container-fluid.blog-article-block .blog-social-share li a:hover, .container-fluid.blog-article-block .blog-social-share li a:focus, .container-fluid.blog-article-block .blog-social-share li a:active {
          border-bottom: none; }
          .container-fluid.blog-article-block .blog-social-share li a:hover[data-type="twitter"], .container-fluid.blog-article-block .blog-social-share li a:focus[data-type="twitter"], .container-fluid.blog-article-block .blog-social-share li a:active[data-type="twitter"] {
            background-color: #00aced; }
          .container-fluid.blog-article-block .blog-social-share li a:hover[data-type="facebook"], .container-fluid.blog-article-block .blog-social-share li a:focus[data-type="facebook"], .container-fluid.blog-article-block .blog-social-share li a:active[data-type="facebook"] {
            background-color: #3b5998; }
          .container-fluid.blog-article-block .blog-social-share li a:hover[data-type="googleplus"], .container-fluid.blog-article-block .blog-social-share li a:focus[data-type="googleplus"], .container-fluid.blog-article-block .blog-social-share li a:active[data-type="googleplus"] {
            background-color: #dd4b39; }
          .container-fluid.blog-article-block .blog-social-share li a:hover[data-type="pinterest"], .container-fluid.blog-article-block .blog-social-share li a:focus[data-type="pinterest"], .container-fluid.blog-article-block .blog-social-share li a:active[data-type="pinterest"] {
            background-color: #f15a5f; }
          .container-fluid.blog-article-block .blog-social-share li a:hover[data-type="linkedin"], .container-fluid.blog-article-block .blog-social-share li a:focus[data-type="linkedin"], .container-fluid.blog-article-block .blog-social-share li a:active[data-type="linkedin"] {
            background-color: #517fa4; }
        .container-fluid.blog-article-block .blog-social-share li a span {
          display: block;
          position: relative;
          text-indent: -9999px; }
          .container-fluid.blog-article-block .blog-social-share li a span.icon {
            display: table-cell;
            text-align: center;
            text-indent: 0;
            vertical-align: middle; }

.blog-date {
  color: #666666;
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.3rem; }

/* Blog Author Page */
.image-header-blog h2 {
  color: #fff;
  font-family: "Tiempos Headline Medium", Georgia, Times, serif;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 0 15%;
  text-align: center; }

.blog-author-page {
  margin-top: -95px;
  padding-top: 0;
  position: relative; }
  .blog-author-page .img-round {
    display: block;
    height: 144px;
    margin-bottom: 1em;
    position: relative;
    width: 144px; }
  .blog-author-page h1 {
    margin-bottom: 1em; }
  .blog-author-page .blog-author-social {
    display: table; }
    .blog-author-page .blog-author-social li {
      display: table-cell; }
      .blog-author-page .blog-author-social li:first-child {
        padding-left: 0; }
      .blog-author-page .blog-author-social li:before {
        content: ''; }
      .blog-author-page .blog-author-social li a {
        font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif !important; }
        .blog-author-page .blog-author-social li a span {
          display: block;
          max-width: 200px;
          overflow: hidden;
          position: relative;
          text-overflow: ellipsis;
          white-space: nowrap;
          width: 100%; }
        .blog-author-page .blog-author-social li a:before {
          display: block;
          font-family: 'coronita' !important;
          font-size: 2.2rem;
          padding-bottom: 0.25em;
          position: relative;
          width: 100%; }
        .blog-author-page .blog-author-social li a.bbva-twitter {
          color: #00aced; }
          .blog-author-page .blog-author-social li a.bbva-twitter:hover, .blog-author-page .blog-author-social li a.bbva-twitter:focus, .blog-author-page .blog-author-social li a.bbva-twitter:active {
            border-color: #121212; }
        .blog-author-page .blog-author-social li a.bbva-facebook {
          color: #3b5998; }
          .blog-author-page .blog-author-social li a.bbva-facebook:hover, .blog-author-page .blog-author-social li a.bbva-facebook:focus, .blog-author-page .blog-author-social li a.bbva-facebook:active {
            border-color: #3b5998; }
        .blog-author-page .blog-author-social li a.bbva-googleplus {
          color: #dd4b39; }
          .blog-author-page .blog-author-social li a.bbva-googleplus:hover, .blog-author-page .blog-author-social li a.bbva-googleplus:focus, .blog-author-page .blog-author-social li a.bbva-googleplus:active {
            border-color: #dd4b39; }
        .blog-author-page .blog-author-social li a.bbva-pinterest {
          color: #f15a5f; }
          .blog-author-page .blog-author-social li a.bbva-pinterest:hover, .blog-author-page .blog-author-social li a.bbva-pinterest:focus, .blog-author-page .blog-author-social li a.bbva-pinterest:active {
            border-color: #f15a5f; }
        .blog-author-page .blog-author-social li a.bbva-linkedin {
          color: #517fa4; }
          .blog-author-page .blog-author-social li a.bbva-linkedin:hover, .blog-author-page .blog-author-social li a.bbva-linkedin:focus, .blog-author-page .blog-author-social li a.bbva-linkedin:active {
            border-color: #517fa4; }
        .blog-author-page .blog-author-social li a.bbva-youtube {
          color: #bb0000; }
          .blog-author-page .blog-author-social li a.bbva-youtube:hover, .blog-author-page .blog-author-social li a.bbva-youtube:focus, .blog-author-page .blog-author-social li a.bbva-youtube:active {
            border-color: #bb0000; }
  .blog-author-page .blog-author-info {
    padding-right: 10%; }

.blog-counter {
  color: #666666;
  font-size: 1.2rem;
  text-transform: uppercase; }

.large-numbers {
  display: block;
  font-size: 4.3rem;
  line-height: 1;
  position: relative;
  width: 100%; }

/* Buttons */
.btn {
  border: none;
  border-radius: 1px;
  color: #fff !important;
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  /* margin: 0.5em 0; */
/*  padding: 2rem 3rem;*/
  -webkit-transition: background-color 100ms linear 0s;
  transition: background-color 100ms linear 0s;
  white-space: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #1973b8; }
  .btn:hover, .btn:focus, .btn:active, .btn.active {
    background-color: #1973b8 !important;
    border-bottom: none !important;
    color: #fff !important; }
  .btn:last-of-type {
    margin-right: 0; }

.btn-lg {
  font-size: 2.2rem;
  padding: 2rem 6.7rem; }

.btn-sm {
  font-size: 1.425rem;
  padding: 1.3rem 3.7rem; }

.btn-xs {
  font-size: 1.2rem;
  /* padding: 1rem 2.9rem;  */
  padding: 0.8rem 2.9rem; 
}

/* Secondary Button */
.btn-secondary {
  background-color: #666666; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: #121212; }

/* Icon Button */
.btn .icon {
  display: inline-block;
  padding: 0.1em 0.4em 0 0; }

/* Button Colors */
.btn-blue {
  background-color: #1973b8; }
  .btn-blue:hover, .btn-blue:focus, .btn-blue:active {
    background-color: #004481 !important;
    color: #fff !important; 
  }

.btn-navy {
  background-color: #072146; }
  .btn-navy:hover, .btn-navy:focus, .btn-navy:active {
    background-color: #004481; }

.btn-blue-core {
  background-color: #004481; }
  .btn-blue-core:hover, .btn-blue-core:focus, .btn-blue-core:active {
    background-color: #072146; }

.btn-aqua {
  background-color: #02a5a5; }
  .btn-aqua:hover, .btn-aqua:focus, .btn-aqua:active {
    background-color: #0b8585; }

.btn-salmon {
  background-color: #f15a5f; }
  .btn-salmon:hover, .btn-salmon:focus, .btn-salmon:active {
    background-color: #a32a3d; }

.btn-red {
  background-color: #da3851; }
  .btn-red:hover, .btn-red:focus, .btn-red:active {
    background-color: #a32a3d; }

.btn-orange {
  background-color: #f7893b; }
  .btn-orange:hover, .btn-orange:focus, .btn-orange:active {
    background-color: #c4580a; }

.btn-green {
  background-color: #48ae64; }
  .btn-green:hover, .btn-green:focus, .btn-green:active {
    background-color: #36824b; }

.btn-yellow {
  background-color: #e5b52a; }
  .btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active {
    background-color: #b68c11; }

/* Multiple Buttons, Side by Side */
.btn + .btn, .btn + .icon-link, .btn + a, .icon-link + a {
  margin-left: 1em; }

/* Call Outs */
.call-out {
  padding: 3rem;
  background: #f4f4f4;
  margin-top: 0;
  margin-bottom: 2rem; }

.call-out .call-out-icon {
  font-size: 2.5rem;
  color: #bdbdbd;
  top: 0.25rem;
  position: relative;
  padding-right: 1.8rem; }

.call-out .media-body .call-out-icon {
  font-size: 2.5rem;
  top: 0;
  padding-right: 0; }

.call-out .media-body h5 {
  font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.call-out.danger .call-out-icon {
  color: #f35e61; }

.call-out.danger {
  background: #fcdfdf; }

.call-out.success .call-out-icon {
  color: #48ae64; }

.call-out.success {
  background: #daefe0; }

.call-out.info .call-out-icon {
  color: #5bbeff; }

.call-out.info {
  background: #DEF2FF; }

.call-out.warning .call-out-icon {
  color: #d8be75; }

.call-out.warning {
  background: #f3ebd5; }

.call-out.white .call-out-icon {
  color: #bdbdbd; }

.call-out.white {
  background: #fff; }

.call-out .media-body p:last-of-type {
  margin-bottom: 0; }

/* Cards */
.bbva-cards {
  padding-bottom: 3rem; }
  .bbva-cards h2, .bbva-cards .view-more {
    text-align: center; }
  .bbva-cards .col-xs-12 > p, .bbva-cards .col-xs-12 > div > p {
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 24%; }
  .bbva-cards .view-more {
    padding-top: 5em; }
    .bbva-cards .view-more a {
      cursor: pointer; }
  .bbva-cards .card-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    margin-top: 3rem; }
    .bbva-cards .card-block [class*="col"] {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    .bbva-cards .card-block .card-wrap {
      background: #fff;
      border-bottom: none;
      box-shadow: 0 1px 1px 0 #d3d3d3;
      display: block;
      padding: 0;
      position: relative;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      max-width: 100%; }
      .bbva-cards .card-block .card-wrap .card-img {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 235px;
        margin-bottom: 1.375em;
        position: relative;
        text-indent: -9999px;
        width: 100%; }
      .bbva-cards .card-block .card-wrap .card-text {
        position: relative; }
      .bbva-cards .card-block .card-wrap > * {
        color: #121212;
        padding: 0 30px;
        -webkit-transition: color 100ms linear 0s;
        transition: color 100ms linear 0s; }
      .bbva-cards .card-block .card-wrap p:not(.faux-link) {
        line-height: 1.6;
        margin-bottom: 0;
        padding-bottom: 7.5rem; }
      .bbva-cards .card-block .card-wrap .faux-link {
        bottom: 30px;
        color: #1973b8;
        display: block;
        margin-bottom: 0;
        position: absolute; }
      .bbva-cards .card-block .card-wrap:hover, .bbva-cards .card-block .card-wrap:active, .bbva-cards .card-block .card-wrap:focus {
        border-bottom: none; }
        .bbva-cards .card-block .card-wrap:hover .faux-link, .bbva-cards .card-block .card-wrap:active .faux-link, .bbva-cards .card-block .card-wrap:focus .faux-link {
          color: #072146; }

/* Stacking cards don't need extra margin and padding */
.bbva-cards + .bbva-cards .card-block {
  margin-top: 0; }

/* Cards - Editorial Layout (Featured Articles) */
.bbva-cards .article-category {
  color: #bdbdbd;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.65em; }
  .bbva-cards .article-category.h6.bullet:before {
    font-size: 1.2rem; }
  .bbva-cards .article-category.brand-ambassadors.h6.bullet:before, .bbva-cards .article-category.family-career.h6.bullet:before {
    color: #da3851; }
  .bbva-cards .article-category.savings-budgeting.h6.bullet:before {
    color: #f7893b; }
  .bbva-cards .article-category.communities.h6.bullet:before, .bbva-cards .article-category.retirement.h6.bullet:before {
    color: #f8cd51; }
  .bbva-cards .article-category.home-ownership.h6.bullet:before {
    color: #48ae64; }
  .bbva-cards .article-category.bright-principles.h6.bullet:before, .bbva-cards .article-category.travel-adventure.h6.bullet:before {
    color: #5bbeff; }
  .bbva-cards .article-category.credit.h6.bullet:before {
    color: #8f7ae5; }

.bbva-cards-editorial {
  margin-top: 1rem; }
  .bbva-cards-editorial .card-block .card-wrap p:not(.faux-link) {
    margin-bottom: 6rem;
    padding-bottom: 0;
    min-height: 9rem;
    max-height: 15rem;
    overflow: hidden; }
  .bbva-cards-editorial .card-block [class*="col"]:first-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-height: inherit; }
    .bbva-cards-editorial .card-block [class*="col"]:first-child .card-wrap {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      width: 100%; }
      .bbva-cards-editorial .card-block [class*="col"]:first-child .card-wrap .card-img {
        height: 380px; }
      .bbva-cards-editorial .card-block [class*="col"]:first-child .card-wrap .card-text {
        margin-top: -170px; }
      .bbva-cards-editorial .card-block [class*="col"]:first-child .card-wrap .article-category {
        color: #fff; }
      .bbva-cards-editorial .card-block [class*="col"]:first-child .card-wrap h3 {
        color: #fff;
        font-size: 4.0rem;
        height: 100px;
        margin-bottom: 55px;
        overflow: hidden;
        font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .bbva-cards-editorial .card-block [class*="col"]:last-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: inherit; }
    .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      max-height: 355px;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
      .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap:first-child {
        margin-bottom: 30px; }
      .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap .card-img {
        height: inherit;
        width: 45%;
        margin-bottom: 0; }
      .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap .card-text {
        margin-bottom: 2rem;
        max-height: 337px;
        overflow: hidden;
        padding: 30px;
        width: 55%; }
        .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap .card-text h3 {
          margin-bottom: 0.4em; }
      .bbva-cards-editorial .card-block [class*="col"]:last-child .card-wrap .faux-link {
        left: 45%; }

/* Cards - Editorial Layout, Flipped (Alternate) */
.bbva-cards-editorial-alternate .card-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

/* Cards - Image "Break" Layout */
.bbva-cards .card-block .card-img-break {
  margin-top: 90px; }
  .bbva-cards .card-block .card-img-break .card-img {
    height: auto;
    margin-bottom: 0; }
  .bbva-cards .card-block .card-img-break img {
    display: block;
    position: relative;
    margin: -60px auto 1.75em;
    max-width: 66%; }

/* Cards - Video Cards */
.bbva-cards .card-block .card-video .bbva-coronita_video-play {
  color: #fff;
  display: block;
  font-size: 7rem;
  left: 52%;
  margin-left: -4.5rem;
  opacity: 0.8;
  padding: 0;
  position: absolute;
  -webkit-transition: opacity 100ms linear 0s;
  transition: opacity 100ms linear 0s;
  top: 66px;
  z-index: 2; }

.bbva-cards .card-block .card-video:hover .bbva-coronita_video-play {
  opacity: 1; }

.bbva-cards .card-block .card-video .card-img, .bbva-cards .card-block .card-video .image-header-overlay {
  height: 195px; }

.bbva-cards .card-block .card-video .card-text {
  min-height: 125px; }
  .bbva-cards .card-block .card-video .card-text h3 {
    padding-bottom: 3.5em; }

/* Cards - Single Card Layout */
.bbva-cards .card-single {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .bbva-cards .card-single [class*="col"] {
    margin-bottom: 30px; }
  .bbva-cards .card-single .card-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .bbva-cards .card-single .card-wrap .card-img {
      height: auto;
      width: 50%;
      margin: 0 15px 0 0; }
    .bbva-cards .card-single .card-wrap .card-text {
      padding: 30px;
      width: 50%; }
    .bbva-cards .card-single .card-wrap .faux-link {
      left: 50.5%; }
    .bbva-cards .card-single .card-wrap p:not(.faux-link) {
      padding-bottom: 5.5rem; }

/* Cards - Single Card, Image Break */
.bbva-cards .card-single .card-img-break {
  margin-top: 0; }
  .bbva-cards .card-single .card-img-break img {
    margin: 2em auto; }

/* CTA Aside */
.cta-aside {
  margin-bottom: 2.5em;
  padding: 3.125em 3.125em 2em; }
  .cta-aside h4 {
    margin-bottom: 0.25em; }
  .cta-aside .btn {
    margin-bottom: 1.5em;
    width: 100%; }
  .cta-aside .btn + .btn {
    margin-left: 0; }
  .cta-aside p {
    color: #666666;
    font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1em; }
  .cta-aside a:not(.btn, .modal-close) {
    display: inline-block;
    margin: 0 auto 1rem; }
  .cta-aside div > a:not(.btn),
  .cta-aside .btn + .icon-link {
    display: table;
    margin: 0 auto;
    margin-top: .5rem; 
    background: #333;
  }

.ctaaside:only-of-type .cta-aside {
  margin-bottom: 0; }

/* Dropdown Navigation / Jump Nav */
.dropdown-nav {
  display: table;
  margin: 0;
  width: auto; }
  .dropdown-nav li {
    display: table-cell;
    margin: 0;
    padding: 1em 0; }
    .dropdown-nav li:before {
      content: ''; }
    .dropdown-nav li.active a {
      color: #121212; }
    .dropdown-nav li.lastTab a {
      color: #1973b8; }
      .dropdown-nav li.lastTab a:hover, .dropdown-nav li.lastTab a:focus, .dropdown-nav li.lastTab a:active {
        color: #072146; }
    .dropdown-nav li a {
      display: block;
      font-size: 1.3rem;
      margin: 0 2rem;
      position: relative;
      text-transform: uppercase; }
    .dropdown-nav li:first-child a {
      margin-left: 0; }
    .dropdown-nav li:last-child a {
      margin-right: 0; }
  .dropdown-nav .lastTab {
    padding-right: 15px; }
  .dropdown-nav .dropdown-menu {
    border-color: #d3d3d3;
    border-radius: 0;
    left: auto;
    padding: 0;
    right: 0;
    top: auto; }
    .dropdown-nav .dropdown-menu li {
      display: block !important;
      padding: 0; }
      .dropdown-nav .dropdown-menu li a {
        border-bottom: none;
        margin: 0;
        padding: 1em;
        width: 100%; }
        .dropdown-nav .dropdown-menu li a:hover, .dropdown-nav .dropdown-menu li a:focus, .dropdown-nav .dropdown-menu li a:active {
          border-bottom: none; }
      .dropdown-nav .dropdown-menu li.active a {
        background-color: #f4f4f4; }
        .dropdown-nav .dropdown-menu li.active a:hover {
          color: #1973b8; }
  .dropdown-nav.dropdown-only {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 1.65em;
    width: 100%; }
    .dropdown-nav.dropdown-only .lastTab {
      width: 100%;
      text-align: center; }
      .dropdown-nav.dropdown-only .lastTab a {
        border-bottom: none;
        display: table;
        margin: 0 auto; }
    .dropdown-nav.dropdown-only .dropdown-menu {
      padding: 0;
      top: 49px;
      width: 100%; }
      .dropdown-nav.dropdown-only .dropdown-menu li {
        padding: 0; }
        .dropdown-nav.dropdown-only .dropdown-menu li a {
          margin: 0;
          padding: 1em 0;
          width: 100%;
          text-align: center; }

.lastTab .dropdown-menu {
  max-height: 350px;
  overflow: scroll; }

/* Features & Benefits */
.features-benefits {
  background-color: #1973b8;
  color: #fff;
  padding: 0;
  /* Andy Changes */
  /* end Andy */ }
  .features-benefits .xscroll {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap; }
  .features-benefits .carousel {
    margin-bottom: 0; }
  .features-benefits h2 {
    color: #fff;
    padding: 1.45em 0 0.3em; }
  .features-benefits p {
    color: #fff;
    font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
    line-height: 1.1;
    margin: 0 0 1.6rem; }
  .features-benefits .carousel-arrows {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    height: 90%;
    margin-bottom: 0;
    width: 93%;
    z-index: 2; }
    .features-benefits .carousel-arrows li {
      padding: 0;
      width: 50%; }
      .features-benefits .carousel-arrows li:before {
        content: ''; }
      .features-benefits .carousel-arrows li a {
        background: transparent;
        color: #b7e2ff;
        display: block;
        font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
        font-size: 1.6rem;
        opacity: 1;
        position: relative;
        text-shadow: none;
        white-space: nowrap;
        width: 100%; }
        .features-benefits .carousel-arrows li a:hover {
          color: #fff; }
        .features-benefits .carousel-arrows li a .icon:before {
          display: inline-block;
          position: relative;
          top: 2px; }
      .features-benefits .carousel-arrows li.carousel-previous {
        padding: 0 22% 0 10%; }
        .features-benefits .carousel-arrows li.carousel-previous a {
          text-align: left; }
      .features-benefits .carousel-arrows li.carousel-next {
        padding: 0 10% 0 22%; }
        .features-benefits .carousel-arrows li.carousel-next a {
          text-align: right; }
          .features-benefits .carousel-arrows li.carousel-next a .icon {
            padding: 0 0 0 7px; }
  .features-benefits .carousel-indicators {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: auto;
    margin-left: 0;
    margin-bottom: 2em;
    position: relative;
    bottom: auto;
    z-index: 1; }
    .features-benefits .carousel-indicators li {
      border: none;
      color: #b7e2ff;
      font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
      display: table;
      height: auto;
      width: auto;
      text-indent: 0;
      margin: 0;
      padding: 0 6% 0 0;
      -webkit-transition: color 100ms linear 0s;
      transition: color 100ms linear 0s; }
      .features-benefits .carousel-indicators li:before, .features-benefits .carousel-indicators li:after {
        content: ''; }
      .features-benefits .carousel-indicators li:hover {
        color: #fff; }
      .features-benefits .carousel-indicators li:last-child {
        padding-right: 0; }
      .features-benefits .carousel-indicators li.active {
        background-color: transparent;
        border: none;
        color: #fff;
        height: auto;
        width: auto; }
      .features-benefits .carousel-indicators li span {
        display: block;
        position: relative;
        text-align: center; }
      .features-benefits .carousel-indicators li .icon {
        padding-bottom: 0.5em; }

/* Individual "Slides" */
.features-benefits-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 550px;
  padding: 5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .features-benefits-slide .container {
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
    .features-benefits-slide .container > div {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .features-benefits-slide .container > div > div {
        max-width: 70%;
        margin: 0 auto; }
    .features-benefits-slide .container h3 {
      font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
      color: #fff;
      width: 100%; }
    .features-benefits-slide .container .btn {
      margin-top: 2em; }

/* Footer */
/* Basic Footer */
footer {
  background-color: #072146;
  color: #bdbdbd;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  padding: 4.8125em 0; }
  footer ul li:before {
    content: '';
    margin: 0;
    padding: 0; }
  footer a {
    color: #5bbeff;
    border-bottom: none;
    /* font-size: 0.9em; */
    font-size: 0.75em;
    hyphens: unset;
   }
    footer a:hover, footer a:active, footer a:focus {
      color: #fff;
      border-bottom: none; }
  footer #logo img {
    height: 40px;
  }
  footer .logo img {
    display: block;
    position: relative;
    width: 156px;
    height: 21px; }
  footer .tagline-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* margin: 0 0 2.3125em;  */
    margin: 0 0 1rem 0;  
  }
  footer .tagline {
    color: #bdbdbd;
    border-left: 1px solid #004481;
    font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 0 0 0.9375em;
    padding: 0 0 0 0.9375em; }
  footer .social-media ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    /* margin: 0 0 2.3125em; */
    padding-left: 0; }
    footer .social-media ul li {
      margin-left: 0;
      padding: 0; }
    footer .social-media ul li:first-child a {
      margin-left: 0; }
    footer .social-media ul a {
      background-color: #5bbeff;
      border-radius: 50%;
      color: #072146;
      display: table;
      height: 25px;
      margin-left: 0.625em;
      text-align: center;
      -webkit-transition: background-color 100ms linear 0s;
      transition: background-color 100ms linear 0s;
      width: 25px;
      font-size: 1em; }
      footer .social-media ul a:hover {
        background-color: #fff;
        color: #072146; }
      footer .social-media ul a .fa {
        display: table-cell;
        font-size: 1.5rem;
        vertical-align: middle; }
      footer .social-media ul a .fa-facebook:before {
        content: ""; }
      footer .social-media ul a .fa-twitter:before {
        content: ""; }
      footer .social-media ul a .fa-instagram:before {
        content: ""; }
      footer .social-media ul a .fa-linkedin:before {
        content: ""; }
      footer .social-media ul a .fa-google-plus:before {
        content: ""; }
      footer .social-media ul a .fa-pinterest:before {
        content: ""; }
      footer .social-media ul a .fa-youtube:before {
        content: ""; }
  footer nav > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    /* margin: 0 0 1.875em; */
    margin: 0;
    padding: 0; }
    footer nav > ul li {
      line-height: 1;
      margin-left: 0;
      /* padding: 0 1em;  */
      padding: 0 1.5em; }
      footer nav > ul li:first-child {
        border-left: none;
        padding-left: 0; 
        min-width: 60px; }
  footer .disclosure {
    color: #bdbdbd;
    font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.2rem; 
    
  }

/* Pre-Footer */
.bg-white .container-fluid.pre-footer {
  background-color: #fff; }

.bg-grey100 .container-fluid.pre-footer, .container-fluid.bg-primary .pre-footer,
.bg-primary .container-fluid.pre-footer, .bg-primary .container-fluid.bg-primary .pre-footer {
  background-color: #f4f4f4; }

.container-fluid.pre-footer-alt {
  background-color: #fff; }

.pre-footer {
  background-color: #f4f4f4;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  padding: 4.375em 0; }
  .pre-footer h2 {
    font-size: 1.6rem;
    padding-bottom: 0.5em; }
  .pre-footer .col-md-3 ul, .pre-footer .col-md-4 ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .pre-footer .col-md-3 ul li, .pre-footer .col-md-4 ul li {
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-left: 0;
      padding: 0 0 0.5em 0; }
      .pre-footer .col-md-3 ul li:before, .pre-footer .col-md-4 ul li:before {
        content: '';
        margin: 0;
        padding: 0; }
      .pre-footer .col-md-3 ul li a, .pre-footer .col-md-4 ul li a {
        color: #1973b8;
        display: inline-block;
        padding-right: 0.3em; }
        .pre-footer .col-md-3 ul li a:hover, .pre-footer .col-md-3 ul li a:active, .pre-footer .col-md-3 ul li a:focus, .pre-footer .col-md-4 ul li a:hover, .pre-footer .col-md-4 ul li a:active, .pre-footer .col-md-4 ul li a:focus {
          border-bottom: 1px solid #bdbdbd;
          color: #104975; }
      .pre-footer .col-md-3 ul li .bbva-coronita_chev-right, .pre-footer .col-md-4 ul li .bbva-coronita_chev-right {
        color: #d3d3d3;
        font-size: 0.8em; }
  .pre-footer .promo {
    margin-top: -25px; }
    .pre-footer .promo img {
      margin-top: -90px;
      padding-right: 3em; }
    .pre-footer .promo .hero-h1 {
      font-size: 2.375em; }
    .pre-footer .promo h3 {
      color: #666666;
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-size: 1em;
      margin-bottom: 1em; }

/* Full Footer */
.footer-full nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5em 0 0; }
  .footer-full nav h3 {
    color: #fff;
    font-size: 1em;
    padding-bottom: 0.5em; }
  .footer-full nav ul {
    padding-bottom: 1.3em; }
    .footer-full nav ul li {
      padding-left: 0; }

/* Forms */
input[type="text"], textarea {
  border-radius: 0; }

/* Select Fields */
.select2 {
  box-shadow: 0;
  width: 100%; }
  .select2.select2-container--focus .select2-selection {
    border-color: #5bbeff; }
  .select2 .selection {
    display: block;
    position: relative; }
  .select2 .select2-selection {
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    color: #121212;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1em;
    letter-spacing: 0.025em;
    height: auto;
    padding: 1em; }
  .select2.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #666666; }

.select2-container--open .select2-dropdown {
  border-color: #d3d3d3;
  border-radius: 0; }

.select2-results ul li {
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1em;
  letter-spacing: 0.025em;
  color: #121212;
  padding: 1.75rem 2rem; }
  .select2-results ul li:before {
    content: ''; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #def2ff;
  color: #121212; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #121212; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 1em; }
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
      color: #666666;
      font-size: 1.1rem;
      margin-left: 4px;
      margin-top: -9px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      font-family: 'coronita';
      content: "";
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg); }

.bootstrap-select {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  height: auto; }
  .bootstrap-select .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #bdbdbd;
    color: #666666;
    font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin: 0 0 2em;
    padding: 1em;
    white-space: pre; }
    .bootstrap-select .dropdown-toggle:focus {
      border-color: #5bbeff; }
    .bootstrap-select .dropdown-toggle .filter-option:before {
      color: #bdbdbd;
      display: inline-block;
      position: relative;
      font-family: 'coronita';
      content: "";
      padding-right: 8px; }

.select2-container--open .select2-results__option:first-child {
  display: none; }

/* General Form Fields */
.form-group-bbva {
  margin-bottom: 3rem; }
  .form-group-bbva .form-control-bbva {
    display: block;
    width: 100%; }

form input,
form textarea,
.form-group-bbva input[type="text"],
.form-group-bbva input[type="email"],
.form-group-bbva input[type="tel"],
.form-group-bbva input[type="url"],
.form-group-bbva textarea,
.form-group-bbva select,
.form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 2rem;
  background: #f4f4f4;
  color: #121212;
  outline: none;
  border: none;
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  letter-spacing: 0.015em; }

.form-group-bbva .select2 {
  box-shadow: 0;
  width: 100%; }
  .form-group-bbva .select2.select2-container--focus .select2-selection {
    border-color: transparent; }
  .form-group-bbva .select2 .selection {
    display: block;
    position: relative; }
  .form-group-bbva .select2 .select2-selection {
    background-color: #f4f4f4;
    border: none;
    color: #121212;
    padding: 2rem;
    outline: none; }

.form-group-bbva .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0; }

.form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #121212; }

.form-group-bbva .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 1em; }
  .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none; }
    .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
      color: #2a86ca;
      font-size: 1.1rem;
      margin-left: 4px;
      margin-top: -9px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      font-family: 'coronita';
      content: "";
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg); }

input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-group-bbva input[type="text"]::-webkit-input-placeholder,
.form-group-bbva input[type="email"]::-webkit-input-placeholder,
.form-group-bbva input[type="tel"]::-webkit-input-placeholder,
.form-group-bbva input[type="url"]::-webkit-input-placeholder,
.form-group-bbva textarea::-webkit-input-placeholder {
  color: #666666;
  opacity: 1; }

input[type="text"]:-moz-placeholder,
textarea:-moz-placeholder,
.form-group-bbva input[type="text"]:-moz-placeholder,
.form-group-bbva input[type="email"]:-moz-placeholder,
.form-group-bbva input[type="tel"]:-moz-placeholder,
.form-group-bbva input[type="url"]:-moz-placeholder,
.form-group-bbva textarea:-moz-placeholder {
  color: #666666;
  opacity: 1; }

input[type="text"]::-moz-placeholder,
textarea::-moz-placeholder,
.form-group-bbva input[type="text"]::-moz-placeholder,
.form-group-bbva input[type="email"]::-moz-placeholder,
.form-group-bbva input[type="tel"]::-moz-placeholder,
.form-group-bbva input[type="url"]::-moz-placeholder,
.form-group-bbva textarea::-moz-placeholder {
  color: #666666;
  opacity: 1; }

input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-group-bbva input[type="text"]:-ms-input-placeholder,
.form-group-bbva input[type="email"]:-ms-input-placeholder,
.form-group-bbva input[type="tel"]:-ms-input-placeholder,
.form-group-bbva input[type="url"]:-ms-input-placeholder,
.form-group-bbva textarea:-ms-input-placeholder {
  color: #666666;
  opacity: 1; }

input[type="text"]:placeholder-shown,
textarea:placeholder-shown,
.form-group-bbva input[type="text"]:placeholder-shown,
.form-group-bbva input[type="email"]:placeholder-shown,
.form-group-bbva input[type="tel"]:placeholder-shown,
.form-group-bbva input[type="url"]:placeholder-shown,
.form-group-bbva textarea:placeholder-shown {
  color: #666666;
  opacity: 1; }

/* Fees Calculator */
.fees-calculator ul li {
  display: table;
  padding-left: 0;
  width: 100%; }
  .fees-calculator ul li:before {
    content: ''; }
  .fees-calculator ul li > * {
    display: table-cell;
    vertical-align: top; }
    .fees-calculator ul li > * .faux-box {
      margin-right: 1.6rem; }
  .fees-calculator ul li > label {
    display: table;
    font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin-right: 5%; }
    .fees-calculator ul li > label > * {
      display: table-cell;
      vertical-align: top; }
  .fees-calculator ul li > .fee-amount, .fees-calculator ul li > .fees-total {
    width: 10%; }
  .fees-calculator ul li > .fee-amount {
    color: #666666;
    font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .fees-calculator ul li.selected .fee-amount {
    color: #121212;
    font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .fees-calculator ul li .fees-label {
    font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
    padding-right: 5%;
    text-align: right; }
  .fees-calculator ul li .fees-total {
    font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif; }

/* "Faux Box" - Used to style checkboxes */
.remember-me input[type="checkbox"],
.form-group-bbva input[type="checkbox"] {
  display: none; }
  .remember-me input[type="checkbox"]:checked + label .faux-box:before,
  .form-group-bbva input[type="checkbox"]:checked + label .faux-box:before {
    color: #121212;
    content: "";
    font-family: 'coronita';
    font-size: 1.3em;
    line-height: 1.2;
    padding: 0.2em; }

.remember-me label,
.form-group-bbva label {
  color: #121212;
  cursor: pointer;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .remember-me label .faux-box,
  .form-group-bbva label .faux-box {
    background-color: #f4f4f4;
    border-radius: 2px;
    box-shadow: inset 0 1px 0 0 #ececec;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    height: 26px;
    width: 26px;
    min-height: 26px;
    min-width: 26px;
    border: 1px solid #e9e9e9;
    border-top: none;
    border-left: none;
    box-shadow: none;
    box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.15); }

/* "Faux Radio" - Used to style radio buttons */
.form-group-bbva .radio-button {
  margin-bottom: 1rem; }
  .form-group-bbva .radio-button:last-child {
    margin-bottom: 0; }
  .form-group-bbva .radio-button input[type="radio"] {
    display: none; }
    .form-group-bbva .radio-button input[type="radio"]:checked + label .faux-radio:after {
      content: ' ';
      width: 12px;
      height: 12px;
      border-radius: 50%;
      position: absolute;
      top: 4px;
      background: #004481;
      left: 4px; }
  .form-group-bbva .radio-button label {
    font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .form-group-bbva .radio-button .faux-radio {
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 1rem;
    height: 22px;
    width: 22px; }

/* Wufoo Form Snippet Padding Fix */
#main-form-container {
  padding-top: 0.6em; }

.bg-primary .fees-calculator .faux-box {
  background-color: #fff; }

/*Forms on Primary Backgrounds (bg-grey100) */
.bg-grey100 form textarea,
.bg-grey100 form .select2 .select2-selection,
.bg-grey100 form .select2-container--default .select2-selection--single .select2-selection__rendered,
.bg-grey100 .form-group-bbva input[type="text"],
.bg-grey100 .form-group-bbva input[type="email"],
.bg-grey100 .form-group-bbva input[type="tel"],
.bg-grey100 .form-group-bbva input[type="url"],
.bg-grey100 .form-group-bbva textarea,
.bg-grey100 .form-group-bbva select,
.bg-grey100 .remember-me label .faux-box,
.bg-grey100 .form-group-bbva label .faux-box,
.bg-grey100 input[type="text"]::-webkit-input-placeholder,
.bg-grey100 textarea::-webkit-input-placeholder,
.bg-grey100 .form-group-bbva input[type="text"]::-webkit-input-placeholder,
.bg-grey100 .form-group-bbva input[type="email"]::-webkit-input-placeholder,
.bg-grey100 .form-group-bbva input[type="tel"]::-webkit-input-placeholder,
.bg-grey100 .form-group-bbva input[type="url"]::-webkit-input-placeholder,
.bg-grey100 .form-group-bbva textarea::-webkit-input-placeholder {
  background: #fff;
  color: #121212; }

.bg-primary form textarea,
.bg-primary form .select2 .select2-selection,
.bg-primary form .select2-container--default .select2-selection--single .select2-selection__rendered,
.bg-primary .form-group-bbva input[type="text"],
.bg-primary .form-group-bbva input[type="email"],
.bg-primary .form-group-bbva input[type="tel"],
.bg-primary .form-group-bbva input[type="url"],
.bg-primary .form-group-bbva textarea,
.bg-primary .form-group-bbva select,
.bg-primary .remember-me label .faux-box,
.bg-primary .form-group-bbva label .faux-box,
.bg-primary input[type="text"]::-webkit-input-placeholder,
.bg-primary textarea::-webkit-input-placeholder,
.bg-primary .form-group-bbva input[type="text"]::-webkit-input-placeholder,
.bg-primary .form-group-bbva input[type="email"]::-webkit-input-placeholder,
.bg-primary .form-group-bbva input[type="tel"]::-webkit-input-placeholder,
.bg-primary .form-group-bbva input[type="url"]::-webkit-input-placeholder,
.bg-primary .form-group-bbva textarea::-webkit-input-placeholder {
  background: #fff;
  color: #121212; }

/* Header */
body > header.container-fluid {
  background-color: #072146;
  color: #fff;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  padding: 0; }
  body > header.container-fluid nav.navbar {
    border-width: 0;
    margin-bottom: 0; }
    body > header.container-fluid nav.navbar .navbar-header {
      float: none;
      padding-top: 6em; }
  body > header.container-fluid .container {
    padding: 0 15px;
    position: relative; }
  body > header.container-fluid a {
    color: #fff;
    border-bottom: none; }
    body > header.container-fluid a:hover {
      color: #5bbeff;
      border-bottom: none; }
  body > header.container-fluid #logo, body > header.container-fluid #logo-mobile {
    display: inline-block; }
    body > header.container-fluid #logo img, body > header.container-fluid #logo-mobile img {
      /* height: 30px; */
      height: 40px;
      width: 223px; }
  body > header.container-fluid ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative; }
    body > header.container-fluid ul li {
      /* padding-left: 2.5em; */
      padding-left: 2em;
      position: relative; }
      body > header.container-fluid ul li:before {
        content: '';
        margin: 0;
        padding: 0; }
      body > header.container-fluid ul li:first-child {
        margin-left: 0;
        padding-left: 0; }
      body > header.container-fluid ul li.active a {
        color: #fff; }
  body > header.container-fluid .top-nav {
    font-size: 1.15rem; }
    body > header.container-fluid .top-nav ul {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      position: absolute;
      right: 15%;
      /* top: -5.75em; */
      z-index: 1000;
      /* width: 70%;  */
      width: 35%; 
    }
      body > header.container-fluid .top-nav ul li {
        padding-left: 1em; }
        body > header.container-fluid .top-nav ul li a {
          color: #bdbdbd;
          /* font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif; */
          font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
          -webkit-transition: color 100ms linear 0s;
          transition: color 100ms linear 0s; }
          body > header.container-fluid .top-nav ul li a:hover {
            color: #fff; }
  body > header.container-fluid .main-nav ul {
    /* font-size: 1.4rem; */
    font-size: 1rem;
    display: table;
    /* margin: -26px 0 0 295px; */
    /* padding-bottom: 1.875em; */
    padding: 1.875em 0;
  }
    body > header.container-fluid .main-nav ul li {
      display: table-cell;
      padding-bottom: 0;
      text-transform: uppercase; }
      body > header.container-fluid .main-nav ul li.active a {
        color: #fff; }
        body > header.container-fluid .main-nav ul li.active a:hover, body > header.container-fluid .main-nav ul li.active a:active, body > header.container-fluid .main-nav ul li.active a:focus {
          color: #fff; }
      body > header.container-fluid .main-nav ul li a {
        color: #bdbdbd; font-weight: bold;}
        body > header.container-fluid .main-nav ul li a:hover, body > header.container-fluid .main-nav ul li a:active, body > header.container-fluid .main-nav ul li a:focus {
          color: #5bbeff; }
  body > header.container-fluid .main-nav ul:last-child {
    margin: 0;
    padding: 0;
    /*
    position: absolute;
    right: 15px;
    top: 3px; */}
    body > header.container-fluid .main-nav ul:last-child li {
      text-transform: none; }
      body > header.container-fluid .main-nav ul:last-child li.sign-in {
        padding-right: 0.75em; }
        body > header.container-fluid .main-nav ul:last-child li.sign-in a {
          /* color: #f8cd51; */
          color: #2DCCCD;
         }
          body > header.container-fluid .main-nav ul:last-child li.sign-in a:hover {
            color: #fff; }
      body > header.container-fluid .main-nav ul:last-child li.apply {
        padding-left: 0.75em; }
        body > header.container-fluid .main-nav ul:last-child li.apply a {
          color: #fff; }
          body > header.container-fluid .main-nav ul:last-child li.apply a:hover, body > header.container-fluid .main-nav ul:last-child li.apply a:active, body > header.container-fluid .main-nav ul:last-child li.apply a:focus {
            color: #5bbeff; }
  body > header.container-fluid .secondary-nav {
    background-color: #004481;
    /* height: 72px; */
    height: 45px;
   }
    body > header.container-fluid .secondary-nav ul {
      font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-size: 1.4rem;
      padding: 1.85em 0;
      z-index: 1; }
      body > header.container-fluid .secondary-nav ul li {
        padding-bottom: 0; }
        body > header.container-fluid .secondary-nav ul li a {
          color: #fff; }
          body > header.container-fluid .secondary-nav ul li a .bbva-coronita_return {
            color: #5bbeff; }
          body > header.container-fluid .secondary-nav ul li a:hover {
            color: #5bbeff; }
        body > header.container-fluid .secondary-nav ul li.active a {
          color: #bdbdbd; }
        body > header.container-fluid .secondary-nav ul li.search-wrapper {
          display: block;
          padding-left: 0;
          position: absolute;
          right: 0; }
          body > header.container-fluid .secondary-nav ul li.search-wrapper .search-trigger {
            color: #fff;
            cursor: pointer;
            font-size: 1.15em;
            padding: 1em 0 1em 1em;
            -webkit-transition: color 100ms linear 0s;
            transition: color 100ms linear 0s; }
            body > header.container-fluid .secondary-nav ul li.search-wrapper .search-trigger:hover {
              color: #5bbeff; }
    body > header.container-fluid .secondary-nav .form-wrapper {
      background-color: #004481;
      display: none;
      margin: 0 15px;
      position: absolute;
      right: 0;
      top: 0;
      width: 0;
      z-index: 2; }
      body > header.container-fluid .secondary-nav .form-wrapper form {
        height: 71px;
        margin: 0 15px 0 0;
        width: 100%;
        display: table; }
        body > header.container-fluid .secondary-nav .form-wrapper form input[type="text"] {
          background-color: #004481;
          border: none;
          color: #fff;
          outline: none;
          padding: 0.25em 0.75em;
          width: 95%;
          letter-spacing: 0; }
          body > header.container-fluid .secondary-nav .form-wrapper form input[type="text"]::-webkit-input-placeholder {
            color: #bdbdbd;
            opacity: 1; }
          body > header.container-fluid .secondary-nav .form-wrapper form input[type="text"]:-moz-placeholder {
            color: #bdbdbd;
            opacity: 1; }
          body > header.container-fluid .secondary-nav .form-wrapper form input[type="text"]::-moz-placeholder {
            color: #bdbdbd;
            opacity: 1; }
          body > header.container-fluid .secondary-nav .form-wrapper form input[type="text"]:-ms-input-placeholder {
            color: #bdbdbd;
            opacity: 1; }
        body > header.container-fluid .secondary-nav .form-wrapper form input[type="submit"] {
          border: none;
          outline: none;
          background-color: #004481;
          background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe2ZpbGw6I0ZGRkZGRjt9PC9zdHlsZT48Zz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC42LDQuMUM3LjgsMy40LDYuNywzLjUsNi43LDMuNVYxLjloMC4yQzkuMiwyLDExLDMuOCwxMS4xLDYuMUg5LjRDOS40LDYuMSw5LjQsNC45LDguNiw0LjFMOC42LDQuMXogTTExLjksMTAuN2MwLjgtMS4xLDEuMy0yLjUsMS4zLTRjMC0zLjctMy02LjYtNi42LTYuNlMwLDMsMCw2LjZjMCwzLjcsMyw2LjYsNi42LDYuNmMxLjUsMCwyLjktMC41LDQtMS40bDEuMiwxLjJsMi43LDIuN2wwLjIsMC4ybDEuMy0xLjNsLTAuMi0wLjJMMTEuOSwxMC43eiIvPjwvZz48L3N2Zz4=);
          background-repeat: no-repeat;
          -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
          margin: 2.6rem 0;
          padding: 0;
          text-indent: -9999px;
          width: 18px;
          height: 18px;
          position: relative;
          z-index: 2; }

/* Search Autocomplete (Search&Promote Functionality) */
.yui-ac-container {
  background-color: #fff;
  box-shadow: 0 2px 3px 0 #d3d3d3;
  display: block;
  margin: 0;
  position: relative;
  top: 2px; }

body > header.container-fluid .yui-ac-bd ul {
  display: block;
  padding: 1.7rem 0; }
  body > header.container-fluid .yui-ac-bd ul li {
    color: #1973b8;
    cursor: pointer;
    display: block;
    padding: 1.05rem 3.6rem;
    width: 100%; }
    body > header.container-fluid .yui-ac-bd ul li:hover {
      color: #072146; }

.search-close {
  background-color: #004481;
  cursor: pointer;
  display: block;
  height: 24px;
  margin: 0;
  overflow: hidden;
  padding: 3.55rem 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: color 100ms linear 0s;
  transition: color 100ms linear 0s;
  width: 24px; }
  .search-close:hover > * {
    background-color: #fff; }

.search-close-left, .search-close-right {
  content: '';
  position: absolute;
  height: 0.275rem;
  width: 100%;
  top: 50%;
  right: 0;
  margin-top: -1px;
  background: #000;
  background-color: #5bbeff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.search-close-left {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.search-close-right {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.search-close-left-outro {
  -webkit-transform: rotate(90deg) scale(0);
  -moz-transform: rotate(90deg) scale(0);
  -ms-transform: rotate(90deg) scale(0);
  -o-transform: rotate(90deg) scale(0);
  transform: rotate(90deg) scale(0); }

.search-close-right-outro {
  -webkit-transform: rotate(-90deg) scale(0);
  -moz-transform: rotate(-90deg) scale(0);
  -ms-transform: rotate(-90deg) scale(0);
  -o-transform: rotate(-90deg) scale(0);
  transform: rotate(-90deg) scale(0); }

.search-close-left-intro {
  -webkit-transform: rotate(45deg) scale(1);
  -moz-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  -o-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1); }

.search-close-right-intro {
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  -o-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1); }

/* Sign-In */
#header-sign-in, #header-sign-in-mobile, #register-mobile {
  background-color: #f4f4f4;
  color: #121212;
  overflow: hidden;
  position: relative; }
  #header-sign-in .bbva-coronita_close, 
  #header-sign-in-mobile .bbva-coronita_close 
  #register-mobile .bbva-coronita_close 
  {
    font-size: 1.7rem; }
  #header-sign-in .btn, 
  #header-sign-in-mobile .btn,
  #register-mobile .btn {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 2em;
    white-space: nowrap; }
  #header-sign-in .sign-in-bg, 
  #header-sign-in-mobile .sign-in-bg,
  #register-mobile .sign-in-bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    position: absolute;
    width: 70%; }
  #header-sign-in .container .row,
  #header-sign-in-mobile .container .row,
  #register-mobile .container .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  #header-sign-in .sign-in-form,
  #header-sign-in-mobile .sign-in-form,
  #register-mobile .sign-in-form {
    background-color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 2em;
    width: 100%; }
  #header-sign-in .sign-in-form h2,
  #header-sign-in-mobile .sign-in-form h2, 
  #register-mobile .sign-in-form h2 {
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
      padding-right: 2.3em;
      white-space: nowrap; }
  #header-sign-in .sign-in-form form,
  #header-sign-in-mobile .sign-in-form form,
  #register-mobile .sign-in-form form{
      -webkit-box-flex: 2;
      -webkit-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      flex: 2 1 auto; }
  #header-sign-in .sign-in-form input[type="text"],
  #header-sign-in .sign-in-form .btn, 
  #header-sign-in-mobile .sign-in-form input[type="text"], 
  #header-sign-in-mobile .sign-in-form .btn,
  #register-mobile .sign-in-form input[type="text"], 
  #register-mobile .sign-in-form .btn {
      height: 45px; }
  #header-sign-in .sign-in-form .username-input,
  #header-sign-in-mobile .sign-in-form .username-input,
  #register-mobile .sign-in-form .username-input {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-top: 1.4em;
      position: relative;
      width: 100%; }
  #header-sign-in .sign-in-form .username-input:before,
  #header-sign-in-mobile .sign-in-form .username-input:before 
  #register-mobile .sign-in-form .username-input:before {
        color: #bdbdbd;
        content: "";
        font-family: 'coronita';
        margin-left: 1.1em;
        margin-top: 0.6em;
        position: absolute; }
  #header-sign-in .sign-in-form input[type="text"],
  #header-sign-in-mobile .sign-in-form input[type="text"]
  #register-mobile .sign-in-form input[type="text"]{
      background-color: #f4f4f4;
      border: none;
      box-shadow: inset 0 1px 0 0 #ececec;
      color: #121212;
      font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
      outline: none;
      padding: 0.75em 1em 0.75em 3em;
      width: auto;
      -webkit-box-flex: 2;
      -webkit-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      flex: 2 1 auto; }
  #header-sign-in .sign-in-form input[type="text"]::-webkit-input-placeholder,
  #header-sign-in-mobile .sign-in-form input[type="text"]::-webkit-input-placeholder, 
  #register-mobile .sign-in-form input[type="text"]::-webkit-input-placeholder {
        color: #121212;
        opacity: 1; }
  #header-sign-in .sign-in-form input[type="text"]:-moz-placeholder,
  #header-sign-in-mobile .sign-in-form input[type="text"]:-moz-placeholder,
  #register-mobile .sign-in-form input[type="text"]:-moz-placeholder
  {
        color: #121212;
        opacity: 1; }
  #header-sign-in .sign-in-form input[type="text"]::-moz-placeholder,
  #header-sign-in-mobile .sign-in-form input[type="text"]::-moz-placeholder, 
  #register-mobile .sign-in-form input[type="text"]::-moz-placeholder {
        color: #121212;
        opacity: 1; }
  #header-sign-in .sign-in-form input[type="text"]:-ms-input-placeholder,
  #register-mobile .sign-in-form input[type="text"]:-ms-input-placeholder{
        color: #121212;
        opacity: 1; }
  #header-sign-in ul,
  #header-sign-in-mobile ul,
  #register-mobile ul {
    display: block;
    position: relative; }
  #header-sign-in ul li,
  #header-sign-in-mobile ul li,
  #register-mobile ul li {
      display: block;
      margin-left: 0;
      position: relative;
      padding-left: 0; }
  #header-sign-in .sign-in-links .sign-in-close,
  #header-sign-in .sign-in-close, 
  #header-sign-in-mobile .sign-in-links .sign-in-close,
  #header-sign-in-mobile .sign-in-close,
  #register-mobile .sign-in-links .sign-in-close,
  #register-mobile .sign-in-close {
    color: #bdbdbd;
    display: block;
    position: absolute;
    /* right: 15px;
    top: 2em; */
    right: 20px;
    top: -20px;
    z-index: 3; }
  #header-sign-in .sign-in-links .sign-in-close:hover,
  #header-sign-in .sign-in-close:hover,
  #header-sign-in-mobile .sign-in-links .sign-in-close:hover,
  #header-sign-in-mobile .sign-in-close:hover,
  #register-mobile .sign-in-links .sign-in-close:hover,
  #register-mobile .sign-in-close:hover,
   {
      color: #666666; }
  #header-sign-in .sign-in-links, 
  #header-sign-in-mobile .sign-in-links,
  #register-mobile .sign-in-links, 
  #register-mobile .sign-in-links {
    background-color: #f4f4f4;
    font-size: 1.4rem;
    padding: 4.5em 3em; }
  #header-sign-in .sign-in-links a,
  #header-sign-in-mobile .sign-in-links a,
    #register-mobile .sign-in-links a {
      color: #2a86ca;
      -webkit-transition: color 100ms linear 0s;
      transition: color 100ms linear 0s; }
  #header-sign-in .sign-in-links a:hover,
  #header-sign-in-mobile .sign-in-links a:hover,
  #register-mobile .sign-in-links a:hover
  {
        color: #004481; }

.checkbox input[type="checkbox"] {
  display: none; }
  .checkbox input[type="checkbox"]:checked .faux-box:before {
    color: #121212;
    content: "";
    font-family: 'coronita';
    font-size: 1.3em;
    line-height: 1.2;
    padding: 0.2em; }

.checkbox label {
  color: #121212;
  cursor: pointer;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 0; }
  .checkbox label .faux-box {
    background-color: #f4f4f4;
    border-radius: 2px;
    box-shadow: inset 0 1px 0 0 #ececec;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    height: 26px;
    width: 26px; }

body > header.container-fluid a.sign-in {
  /* color: #f8cd51; */
  color: #2DCCCD;
  display: inline-block;
  /* float: right; */
  font-size: 1.3rem;
  /* padding: 0.1em 1em 0 1em;  */
}
body > header.container-fluid a.sign-in:first-child{
  margin-right: 2rem;
}
  body > header.container-fluid a.sign-in:hover {
    color: #fff; }

#header-sign-in-mobile {
  border-bottom: 1px solid #f4f4f4; }
  #header-sign-in-mobile .container .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  #header-sign-in-mobile .sign-in-close {
    right: 0;
    top: 1em; }
  #header-sign-in-mobile .sign-in-form {
    padding: 2em 0; }

/* Commercial Sign-In */
#header-sign-in .sign-in-commercial .sign-in-form,
#header-sign-in-mobile .sign-in-commercial .sign-in-form {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -1em; }
  #header-sign-in .sign-in-commercial .sign-in-form h2,
  #header-sign-in-mobile .sign-in-commercial .sign-in-form h2 {
    padding-bottom: 0.5em; }
  #header-sign-in .sign-in-commercial .sign-in-form .btn,
  #header-sign-in-mobile .sign-in-commercial .sign-in-form .btn {
    height: auto;
    padding: 1.9rem 6rem; }
    #header-sign-in .sign-in-commercial .sign-in-form .btn + .btn,
    #header-sign-in-mobile .sign-in-commercial .sign-in-form .btn + .btn {
      margin-left: 0; }
    #header-sign-in .sign-in-commercial .sign-in-form .btn:first-child,
    #header-sign-in-mobile .sign-in-commercial .sign-in-form .btn:first-child {
      margin-right: 1em; }

/* Simplified Header */
header nav.simplified-header {
  padding-bottom: 1.825em;
  padding-top: 1.825em; }

/* Hero - Default */
.hero-main {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
  min-height: 60vh;
  overflow-x: hidden;
  overflow-y: visible; }
  .hero-main .hero-text {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 10.65vh 0;
    padding-top: 4.25rem;
    padding-bottom: 0;
    width: 50%; }
    .hero-main .hero-text > * {
      padding-left: 4rem;
      padding-right: 4rem; }
    .hero-main .hero-text .clipping-triangle {
      margin-top: -15px;
      width: 100%;
      height: 0;
      padding-top: 30px;
      padding-left: 0;
      padding-right: 0;
      overflow: hidden; }
      .hero-main .hero-text .clipping-triangle div {
        content: '\0000a0';
        display: block;
        width: 0;
        height: 0;
        margin-top: -30px;
        border-top: 30px solid transparent;
        border-right: 600px solid rgba(255, 255, 255, 0.8);
        -moz-transform: scale(0.9999); }
    .hero-main .hero-text h1 {
      margin-bottom: 2rem; }
    .hero-main .hero-text p {
      color: #121212;
      font-size: 1.6rem;
      margin: 0.7em 0 0; }
      .hero-main .hero-text p.hero-cta {
        background-color: white;
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
        padding-top: 2.5rem;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between; }
    .hero-main .hero-text .btn {
      display: block;
      margin-bottom: 4rem;
      margin-right: 1.75em;
      margin-top: 0;
      white-space: nowrap; }
    .hero-main .hero-text .icon-link, .hero-main .hero-text a:not(.btn) {
      border-bottom: none;
      display: table;
      font-size: 1.6rem;
      margin-left: 0;
      margin-bottom: 1.75em;
      -webkit-transition: color 100ms linear 0s;
      transition: color 100ms linear 0s; }
      .hero-main .hero-text .icon-link:hover, .hero-main .hero-text a:not(.btn):hover {
        color: #004481; }
      .hero-main .hero-text .icon-link .icon, .hero-main .hero-text a:not(.btn) .icon {
        display: table-cell;
        font-size: 1.5em;
        padding-right: 0.35em;
        vertical-align: top; }

/* Secondary Hero - Default */
.hero-secondary {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 33rem;
  margin-bottom: 0;
  padding: 4em 0; }
  .hero-secondary .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .hero-secondary .hero-text {
    color: #fff;
    width: 100%; }
    .hero-secondary .hero-text .hero-h1 {
      color: #fff;
      font-size: 4.2rem; }
    .hero-secondary .hero-text p {
      color: #fff;
      width: 100%; }
  .hero-secondary .img-responsive {
    max-height: 35rem;
    margin: 0 auto;
    padding-right: 7%; }

/* Secondary Hero - Text on Left, Image on Right */
.hero-secondary.hero-text-left .img-responsive {
  padding: 0 0 0 7%; }

/* Secondary Hero - Showcase */
.hero-showcase {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5em;
  min-height: 700px;
  padding: 1em 0;
  position: relative;
  overflow: visible; }
  .hero-showcase .hero-text {
    background: transparent;
    margin: 0;
    padding: 1.75em 1.75em 0;
    width: 45%; }
  .hero-showcase .hero-img-wrapper {
    height: auto;
    left: 50%;
    margin-left: -570px;
    overflow-y: visible;
    position: absolute;
    top: 0;
    width: 1140px; }
    .hero-showcase .hero-img-wrapper .hero-img {
      width: 67%;
      overflow-x: hidden;
      position: absolute;
      right: -9%;
      top: 6em;
      max-width: 750px; }
      .hero-showcase .hero-img-wrapper .hero-img img {
        display: block;
        max-height: none;
        padding-right: 0;
        position: relative; }

/* Promo Hero - Default */
.hero-promo {
  background-size: cover;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(42, 134, 202, 0.8); }
  .hero-promo.hero-core {
    box-shadow: inset 0 0 0 1000px rgba(0, 68, 129, 0.8); }
  .hero-promo.hero-aqua {
    box-shadow: inset 0 0 0 1000px rgba(15, 177, 178, 0.8); }

.slant {
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  padding-top: 10rem;
  padding-bottom: 5rem; }

/* Image Header */
.image-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  min-height: 450px;
  margin-bottom: 5.5em;
  padding: 1em;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .image-header h1 {
    color: #fff;
    text-align: center; }
  .image-header .container {
    width: 66.66666667%; }
  .image-header.image-header-short {
    min-height: 280px; }

.image-header-overlay {
  background-color: rgba(6, 32, 69, 0.25);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none; }

/* Full-Width Video Image Header */
.video-full-width {
  display: table; }
  .video-full-width a {
    width: 100%;
    height: 100%;
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    opacity: 0.8;
    border-bottom: none;
    padding: 0; }
    .video-full-width a:hover {
      opacity: 1;
      border-bottom: 0; }
    .video-full-width a .bbva-coronita_video-play {
      font-size: 7.5rem; }

/*Product Header*/
.image-header.product-header {
  min-height: 450px;
  margin-bottom: 15%; }
  .image-header.product-header .card-img {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 100%;
    bottom: 0;
    margin-top: -10rem;
    max-width: 21vw; }
    .image-header.product-header .card-img img {
      width: 100%; }

/* Inline Nav */
.inline-nav-item {
  border-bottom: none;
  display: table;
  margin: 0 auto;
  margin: 6em auto;
  position: relative;
  text-align: center; }
  .inline-nav-item img {
    display: block;
    height: auto;
    margin: 0 auto 1.825em;
    max-width: 50%;
    min-width: 150px;
    position: relative; }
  .inline-nav-item h2 {
    color: #121212;
    margin-bottom: 0.65em;
    -webkit-transition: color 100ms linear 0s;
    transition: color 100ms linear 0s;
    position: relative;
    z-index: 2; }
  .inline-nav-item p {
    display: inline;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    -webkit-transition: color 100ms linear 0s;
    transition: color 100ms linear 0s;
    position: relative;
    z-index: 2; }
    .inline-nav-item p:not(.faux-link) {
      color: #121212;
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  .inline-nav-item:hover, .inline-nav-item:focus, .inline-nav-item:active {
    border-bottom: none; }
    .inline-nav-item:hover p.faux-link, .inline-nav-item:focus p.faux-link, .inline-nav-item:active p.faux-link {
      border-bottom: 1px solid #bdbdbd;
      color: #104975; }

/* Modal - Default */
.modal-dialog {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  width: 90%; }

.modal-content {
  border-radius: 0; }
  .modal-content .modal-close {
    display: block;
    float: right;
    font-size: 2rem;
    position: relative;
    margin: 30px 30px 0 0;
    z-index: 2; }
    .modal-content .modal-close:hover, .modal-content .modal-close .icon:hover {
      border-bottom: none !important; }
  .modal-content .modal-header {
    border-bottom: none; }
  .modal-content .modal-body {
    color: #121212;
    padding: 4.5em 6em 3.5em; }
  .modal-content .modal-footer {
    border-top: none;
    padding: 0; }
    .modal-content .modal-footer .btn {
      font-size: 2rem;
      margin-bottom: 0;
      padding: 1.3em;
      width: 100%;
      text-align: center;
      text-transform: uppercase; }

/* Alert Modal */
.modal-alert .modal-dialog {
  margin: 85px auto;
  max-width: 500px; }

.modal-alert .modal-header .icon {
  border: 8px solid #fff;
  border-radius: 50%;
  display: table;
  font-size: 5rem;
  margin: -1.4em auto -0.4em;
  padding: 0.5em; }

.modal-alert .modal-content .modal-body {
  font-size: 1.1em;
  padding: 3.5em 6em; }
  .modal-alert .modal-content .modal-body a {
    color: #1973b8; }

/* Alert Modal - Disclosures */
#email-disclosure .modal-content .modal-body {
  padding: 2em; }
  #email-disclosure .modal-content .modal-body form {
    margin-bottom: 0; }
  #email-disclosure .modal-content .modal-body #ctaSpinner {
    display: block;
    margin: 1em auto; }

#email-disclosure .modal-dialog {
  max-width: 560px; }

/* Video Modal */
.modal-video .modal-close {
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.7rem;
  margin-top: -1em;
  padding: 0.5em;
  position: absolute;
  right: -0.9em;
  z-index: 1; }
  .modal-video .modal-close:hover {
    color: #5bbeff; }

.modal-video .modal-dialog {
  margin-top: 5em;
  width: 67%; }

.modal-video .modal-body {
  padding: 0; }

/* City - State Selector */
#choose-region-error {
  color: #a32a3d;
  padding-top: 2em;
  display: none; }

.chooseRegion .modal-dialog {
  max-width: 70%;
  width: 750px; }

.chooseRegion .modal-body {
  background-color: #f4f4f4; }

.chooseRegion .btn[type=submit] {
  margin-right: 10%; }

.chooseRegion fieldset {
  margin-bottom: 2em; }

.select2-results__option {
  padding: 6px 0 6px 24px; }

/* Modal within CTA Aside */
.text-center .modal-content {
  text-align: left; }

/* SIDR */
/* Base Sidr Theme */
.sidr {
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 280px;
  overflow-x: auto;
  overflow-y: auto;
  font-size: 15px;
  background: #434a58;
  color: #fff;
  -webkit-box-shadow: inset 12px 0 35px 0 #2e323d;
  -moz-box-shadow: inset 12px 0 35px 0 #2e323d;
  box-shadow: inset 12px 0 35px 0 #2e323d; }

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

.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px; }

.sidr.right {
  left: auto;
  right: -280px; }

.sidr.left {
  left: -280px;
  right: auto; }

.sidr h1, .sidr h2, .sidr h3, .sidr h4, .sidr h5, .sidr h6 {
  font-size: 11px;
  font-weight: normal;
  padding: 0 15px;
  margin: 0 0 5px;
  color: #fff;
  line-height: 24px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #1a1a1a));
  background-image: -webkit-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: -moz-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: -o-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: linear-gradient(#4d4d4d, #1a1a1a); }

.sidr p {
  font-size: 13px;
  margin: 0 0 12px; }

.sidr p a {
  color: rgba(255, 255, 255, 0.9); }

.sidr > p {
  margin-left: 15px;
  margin-right: 15px; }

.sidr ul {
  display: block;
  margin: 0;
  padding: 20px 0; }

.sidr ul li {
  display: block;
  margin: 0;
  line-height: 48px; }

.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: none;
  line-height: 48px; }

.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
  background: #1d6eb7;
  background: -moz-linear-gradient(top, #1d6eb7 0%, #0d51a1 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1d6eb7), color-stop(100%, #0d51a1));
  background: -webkit-linear-gradient(top, #1d6eb7 0%, #0d51a1 100%);
  background: -o-linear-gradient(top, #1d6eb7 0%, #0d51a1 100%);
  background: -ms-linear-gradient(top, #1d6eb7 0%, #0d51a1 100%);
  background: linear-gradient(to bottom, #1d6eb7 0%, #0d51a1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d6eb7', endColorstr='#0d51a1', GradientType=0 );
  border-top: 1px solid #269cd7;
  border-bottom: 1px solid #383d49;
  line-height: 46px; }

.sidr ul li a, .sidr ul li span {
  padding: 0 0 0 25px;
  display: block;
  text-decoration: none;
  color: #fff; }

.sidr ul li ul {
  border-bottom: none;
  margin: 0; }

.sidr ul li ul li {
  line-height: 40px;
  font-size: 13px; }

.sidr ul li ul li:last-child {
  border-bottom: none; }

.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: none;
  line-height: 41px; }

.sidr ul li ul li:hover > a, .sidr ul li ul li:hover > span, .sidr ul li ul li.active > a, .sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a, .sidr ul li ul li.sidr-class-active > span {
  border-top: 1px solid #269cd7;
  border-bottom: 1px solid #383d49;
  line-height: 46px; }

.sidr ul li ul li a, .sidr ul li ul li span {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 30px; }

.sidr form {
  margin: 0 15px; }

.sidr label {
  font-size: 13px; }

.sidr input[type="text"], .sidr input[type="password"], .sidr input[type="date"], .sidr input[type="datetime"], .sidr input[type="email"], .sidr input[type="number"], .sidr input[type="search"], .sidr input[type="tel"], .sidr input[type="time"], .sidr input[type="url"], .sidr textarea, .sidr select {
  width: 100%;
  font-size: 13px;
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: block;
  clear: both; }

.sidr input[type=checkbox] {
  width: auto;
  display: inline;
  clear: none; }

.sidr input[type=button], .sidr input[type=submit] {
  color: #333;
  background: #fff; }

.sidr input[type=button]:hover, .sidr input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.9); }

/* Sidr Customization */
body > header.container-fluid a.navbar-toggle {
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  -webkit-transition: color 100ms linear 0s;
  transition: color 100ms linear 0s; }
  body > header.container-fluid a.navbar-toggle:hover {
    color: #5bbeff; }
  body > header.container-fluid a.navbar-toggle.active:before {
    content: ""; }

.sidr-main-open > header.container-fluid a.navbar-toggle:before {
  content: "";
  -webkit-backface-visibility: hidden; }

#sidr-main {
  background: #072146;
  box-shadow: 2px 0 6px 0 #000; }
  #sidr-main .sidr-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  #sidr-main .sidr-class-main-nav {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  #sidr-main .sidr-class-secondary-nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  #sidr-main .sidr-class-top-nav {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
    #sidr-main .sidr-class-top-nav ul li a {
      color: #5bbeff;
      border: none;
      padding: .4em 0; }
    #sidr-main .sidr-class-top-nav ul li:first-child {
      padding-top: .7em; }
  #sidr-main ul {
    padding: 0 1.8em; }
    #sidr-main ul ul {
      padding: 0; }
      #sidr-main ul ul a {
        color: #5bbeff;
        border-color: #004481; }
  #sidr-main li {
    line-height: 1.45;
    padding: 0; }
    #sidr-main li:before {
      content: ""; }
  #sidr-main a {
    border-bottom: 1px solid rgba(211, 211, 211, 0.3);
    border-top: none;
    color: #fff;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    padding: 0.85em 0; }
    #sidr-main a#sidr-id-logo {
      border-bottom: none;
      padding: 0.5em 1em; }
      #sidr-main a#sidr-id-logo img {
        /* height: 21px; */
        margin: 1.4em 0 1em;
        width: 155px; }
  #sidr-main form {
    border-bottom: 1px solid #d3d3d3;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: table;
    margin: 0 1.8em;
    -webkit-transition: all 100ms linear 0s;
    transition: all 100ms linear 0s; }
    #sidr-main form.active {
      border-color: #fff; }
  #sidr-main .sidr-class-search-close {
    display: none; }
  #sidr-main input[type="text"] {
    background-color: #072146;
    border-radius: 0;
    color: #fff;
    display: table-cell;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    opacity: .5;
    margin: 0 0 0 0.5rem;
    padding: 1.2rem 0 1rem 0.2em;
    width: 207px; }
    #sidr-main input[type="text"]::-webkit-input-placeholder {
      color: #fff;
      opacity: 1; }
    #sidr-main input[type="text"]:-moz-placeholder {
      color: #fff;
      opacity: 1; }
    #sidr-main input[type="text"]::-moz-placeholder {
      color: #fff;
      opacity: 1; }
    #sidr-main input[type="text"]:-ms-input-placeholder {
      color: #fff;
      opacity: 1; }
  #sidr-main input[type=text]:focus, #sidr-main textarea:focus {
    outline: none;
    opacity: 1;
    border: none; }
  #sidr-main input[type="submit"] {
    display: table-cell;
    border: none;
    outline: none;
    background-color: #072146;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe2ZpbGw6I0ZGRkZGRjt9PC9zdHlsZT48Zz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC42LDQuMUM3LjgsMy40LDYuNywzLjUsNi43LDMuNVYxLjloMC4yQzkuMiwyLDExLDMuOCwxMS4xLDYuMUg5LjRDOS40LDYuMSw5LjQsNC45LDguNiw0LjFMOC42LDQuMXogTTExLjksMTAuN2MwLjgtMS4xLDEuMy0yLjUsMS4zLTRjMC0zLjctMy02LjYtNi42LTYuNlMwLDMsMCw2LjZjMCwzLjcsMyw2LjYsNi42LDYuNmMxLjUsMCwyLjktMC41LDQtMS40bDEuMiwxLjJsMi43LDIuN2wwLjIsMC4ybDEuMy0xLjNsLTAuMi0wLjJMMTEuOSwxMC43eiIvPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: -2px;
    padding: 0;
    text-indent: -9999px;
    width: 13px;
    height: 13px;
    vertical-align: middle; }

#sidr-main.sidr ul li:hover > a, #sidr-main.sidr ul li:hover > span, #sidr-main.sidr ul li.active > a, #sidr-main.sidr ul li.active > span, #sidr-main.sidr ul li.sidr-class-active > a, #sidr-main.sidr ul li.sidr-class-active > span {
  background: #072146;
  border-color: #d3d3d3;
  color: #fff;
  line-height: 1.45; }

.sidr ul li ul li span.sidr-class-bbva-coronita_return {
  color: #fff;
  display: inline;
  padding-left: 0;
  padding-right: 7px; }
  .sidr ul li ul li span.sidr-class-bbva-coronita_return:before {
    font-family: 'coronita';
    content: ""; }

#sidr-main.sidr .sidr-class-secondary-nav ul li.sidr-class-active > a,
#sidr-main.sidr .sidr-class-secondary-nav ul li.sidr-class-active > span {
  color: #d3d3d3;
  border-color: #004481; }

@media (min-width: 75em) {
  body {
    position: relative !important;
    right: 0 !important;
    width: 100% !important; }
  #sidr-main {
    display: none !important; } }

/* Most Popular */
.most-popular {
  padding: 4.5em 0 3em; }
  .most-popular .most-popular-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .most-popular .most-popular-wrapper > div {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
      -ms-flex-align: stretch;
      align-items: stretch; }
      .most-popular .most-popular-wrapper > div:nth-child(odd) .most-popular-product {
        background-color: #f4f4f4; }
    .most-popular .most-popular-wrapper .most-popular-product {
      border: 2px solid #f4f4f4;
      padding: 0 2em 2em 2em;
      -webkit-transition: all 100ms linear 0s;
      transition: all 100ms linear 0s;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .most-popular .most-popular-wrapper .most-popular-product:hover {
        border: 2px solid #48ae64; }
      .most-popular .most-popular-wrapper .most-popular-product > * {
        width: 100%; }
      .most-popular .most-popular-wrapper .most-popular-product .img-link {
        margin: -50px auto 1em; }
      .most-popular .most-popular-wrapper .most-popular-product a h3, .most-popular .most-popular-wrapper .most-popular-product a:hover h3, .most-popular .most-popular-wrapper .most-popular-product a:focus h3, .most-popular .most-popular-wrapper .most-popular-product a:active h3 {
        border: none;
        color: #121212;
        margin: 1.1em 0 0; }
      .most-popular .most-popular-wrapper .most-popular-product .btn {
        display: table;
        margin: 0 auto;
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
        width: auto; }
      .most-popular .most-popular-wrapper .most-popular-product .most-popular-marker {
        margin: 0.5em 0;
        position: relative; }
        .most-popular .most-popular-wrapper .most-popular-product .most-popular-marker span {
          display: block;
          margin-left: -1.4em;
          padding: 0.6em 0;
          width: 127%; }

/* Create the parallax scrolling effect */
.parallax-scroll {
  height: 45rem;
  background-repeat: no-repeat;
  background-size: cover; }

/* Product Block */
.product-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  position: relative; }
  .product-block h2 {
    margin-bottom: 0.45em; }
    .product-block h2:empty {
      display: none; }
  .product-block .media-body, .product-block .media-left, .product-block .media-right {
    display: block; }
  .product-block .media-left, .product-block .media-right {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-width: 33%;
    position: relative; }
    .product-block .media-left img, .product-block .media-right img {
      display: block;
      max-height: 300px;
      position: relative; }
  .product-block .media-left {
    padding-right: 4vw; }
    .product-block .media-left img {
      float: left; }
  .product-block .media-right {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 4vw; }
    .product-block .media-right img {
      float: right; }
  .product-block .media-body {
    width: 67%; }

.promo-banner {
  background-image: url(../../images/spotlight/hero-bg-medium-blue.svg);
  background-size: cover;
  background-position: center bottom;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 33rem;
  position: relative;
  overflow: hidden; }
  .promo-banner .promo-content {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 5rem;
    width: 50%; }
  .promo-banner .promo-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
    width: 50%;
    background-size: cover;
    background-position: center; }

html > body .promo-banner {
  height: auto; }

.promo-full-width,
.promo-full-width-slant {
  background-image: url(../../images/spotlight/hero-bg-medium-blue.svg);
  background-size: cover;
  background-position: center bottom;
  position: relative; }

.promo-full-width .promo-banner,
.promo-full-width-slant .promo-banner {
  background: none; }

/*Vertical Slant Full Witdth*/
.promo-full-width-slant .promo-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  background-size: cover;
  background-position: center center; }

.promo-full-width-slant .promo-banner .promo-content {
  padding: 5rem 0; }

.promo-full-width-slant .promo-content h1 {
  margin-bottom: 1.5rem; }

.promo-full-width-slant .promo-content p {
  margin-bottom: 4rem; }

/* Promo Video - Default */
.promo-video-wrapper {
  overflow: hidden;
  max-width: 100%; }

.video-embed.video-hidden {
  position: absolute;
  display: block; }

.video-embed.video-visible {
  position: relative;
  display: block; }

.video-embed.video-touchDevice {
  position: relative;
  opacity: 0;
  left: -15px; }

.promo-video.container-fluid {
  background-size: cover;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(15, 177, 178, 0.8);
  display: table;
  width: 100%;
  padding: 0;
  -webkit-transition: all 200ms linear 0s;
  transition: all 200ms linear 0s;
  overflow: hidden; }
  .promo-video.container-fluid:hover {
    box-shadow: inset 0 0 0 1000px rgba(15, 177, 178, 0.9);
    -webkit-transition: all 200ms linear 0s;
    transition: all 200ms linear 0s; }
  .promo-video.container-fluid.hero-blue-core {
    box-shadow: inset 0 0 0 1000px rgba(0, 68, 129, 0.8); }
    .promo-video.container-fluid.hero-blue-core:hover {
      box-shadow: inset 0 0 0 1000px rgba(0, 68, 129, 0.9);
      -webkit-transition: all 200ms linear 0s;
      transition: all 200ms linear 0s; }
  .promo-video.container-fluid.hero-blue-medium {
    box-shadow: inset 0 0 0 1000px rgba(42, 134, 202, 0.8); }
    .promo-video.container-fluid.hero-blue-medium:hover {
      box-shadow: inset 0 0 0 1000px rgba(42, 134, 202, 0.9);
      -webkit-transition: all 200ms linear 0s;
      transition: all 200ms linear 0s; }
  .promo-video.container-fluid a.icon-link {
    display: table-cell;
    padding: 9rem 0;
    height: 100%;
    vertical-align: middle;
    width: 100%; }
    .promo-video.container-fluid a.icon-link:hover, .promo-video.container-fluid a.icon-link:focus, .promo-video.container-fluid a.icon-link:active {
      padding: 9rem 0; }
    .promo-video.container-fluid a.icon-link .text-center {
      padding: 3rem; }
      .promo-video.container-fluid a.icon-link .text-center h2 {
        font-size: 6.0rem;
        margin-bottom: 14rem; }
      .promo-video.container-fluid a.icon-link .text-center .icon {
        font-size: 2.7rem;
        padding: 0 1rem;
        width: 6rem; }
    .promo-video.container-fluid a.icon-link p {
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      font-size: 0.9em;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: relative;
      width: 100%; }
      .promo-video.container-fluid a.icon-link p span:not(.icon) {
        width: 50%; }
        .promo-video.container-fluid a.icon-link p span:not(.icon):first-child {
          text-align: right; }
        .promo-video.container-fluid a.icon-link p span:not(.icon):last-child {
          text-align: left; }
  .promo-video.container-fluid .spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px; }
  .promo-video.container-fluid .spinner > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    margin-right: 2px;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out; }
    .promo-video.container-fluid .spinner > div:last-child {
      margin-right: 0; }
  .promo-video.container-fluid .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s; }
  .promo-video.container-fluid .spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }
  .promo-video.container-fluid .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }
  .promo-video.container-fluid .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }
  .promo-video.container-fluid.animate-shadow {
    -webkit-animation-name: promoVideoBoxShadow;
    animation-name: promoVideoBoxShadow;
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }
    .promo-video.container-fluid.animate-shadow.hero-blue-core {
      -webkit-animation-name: promoVideoBoxShadow-blueCore;
      animation-name: promoVideoBoxShadow-blueCore; }
    .promo-video.container-fluid.animate-shadow.hero-blue-medium {
      -webkit-animation-name: promoVideoBoxShadow-blueMedium;
      animation-name: promoVideoBoxShadow-blueMedium; }

@-webkit-keyframes promoVideoBoxShadow {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(15, 177, 178, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

@keyframes promoVideoBoxShadow {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(15, 177, 178, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

@-webkit-keyframes promoVideoBoxShadow-blueCore {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(0, 68, 129, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

@keyframes promoVideoBoxShadow-blueCore {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(0, 68, 129, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

@-webkit-keyframes promoVideoBoxShadow-blueMedium {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(42, 134, 202, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

@keyframes promoVideoBoxShadow-blueMedium {
  0% {
    box-shadow: inset 0 0 0 1000px rgba(42, 134, 202, 0.8); }
  100% {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.8); } }

/* Secondary Content AEM Spacing Fix */
.secondarycontent {
  padding-top: 1em; }

/* Secondary Content Block */
.secondary-content {
  padding-bottom: 2.5em;
  position: relative;
  margin-right: 4%; }
  .secondary-content:nth-child(even) {
    margin-right: 0; }
  .secondary-content .icon {
    color: #bdbdbd;
    display: block;
    padding-bottom: 0.5em; }
  .secondary-content > a {
    display: table;
    margin: 1em 0; }

/* 3 Column Layout */
.secondary-content-3-col {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }
  .secondary-content-3-col .secondary-content {
    width: 30%;
    margin-right: 4%; }
    .secondary-content-3-col .secondary-content:nth-child(3n) {
      margin-right: 0; }

/*  Sign off Ads 
    Katherine loves comments
*/
.sign-off {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .sign-off [class*="col"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 2 1 auto;
    -webkit-flex: 2 1 auto;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto; }
    .sign-off [class*="col"]:first-child div {
      padding: 7.3rem 4rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
    .sign-off [class*="col"]:first-child .lg-content,
    .sign-off [class*="col"]:first-child .lg-img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      -webkit-box-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
    .sign-off [class*="col"]:first-child .lg-content {
      margin-right: 3rem;
      -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
      flex-basis: 60%; }
    .sign-off [class*="col"]:first-child .lg-img {
      -webkit-flex-basis: 40%;
      -ms-flex-preferred-size: 40%;
      flex-basis: 40%; }
    .sign-off [class*="col"]:last-child {
      -webkit-flex-direction: column;
      -webkit-box-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    .sign-off [class*="col"]:last-child .sm-content {
      padding: 3rem;
      -webkit-box-flex: 2 1 auto;
      -webkit-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      flex: 2 1 auto;
      -webkit-flex-direction: column;
      -webkit-box-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .sign-off [class*="col"]:last-child .sm-content:first-child {
        background-color: rgba(91, 190, 255, 0.1);
        margin-bottom: 3rem; }
      .sign-off [class*="col"]:last-child .sm-content:last-child {
        background: #f4f4f4; }

/* Site Map */
.sitemap h2 {
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 0.85em;
  padding-bottom: 1em;
  padding-top: 1em; }

.sitemap .sitemap-section {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px; }
  .sitemap .sitemap-section .sitemap-col {
    display: inline-block;
    padding-bottom: 1.5em;
    width: 100%; }

/* Tables */
table {
  background-color: #fff;
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin: 1rem 0 0; }
  table thead tr th:empty {
    display: none; }
  table th, table td {
    vertical-align: top; }
  table th {
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1em 4rem; }
    table th:first-child {
      padding-left: 4rem; }
    table th:last-child {
      border-right: none; }
    table th:empty {
      display: none; }
  table tr {
    border-bottom: 1px solid #e9e9e9; }
    table tr:last-child {
      border-bottom: none; }
  table td {
    border-right: 1px solid #e9e9e9;
    padding: 4rem; }
    table td:last-child {
      border-right: none; }
    table td *:last-child {
      margin-bottom: 0; }
  table:not(.pew, .disclosure) td:first-child {
    padding-left: 4rem;
    max-width: 35rem; }
  table:not(.disclosure) {
    width: 100%; }

/*.container-fluid table {
  th:first-child, td:first-child {
    padding-left: 2em;
  }
}*/
.table-light-blue th {
  border-bottom: 1px solid #5bbeff; }

.table-core-blue th {
  border-bottom: 1px solid #004481; }

/* Pew Disclosure Tables */
table.pew {
  font-size: 1.5rem;
  margin: 0.5em 0 3em;
  /* Three Column Table */ }
  table.pew tr {
    border-right: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-top: 1px solid #e9e9e9; }
    table.pew tr:last-child {
      border-bottom: 1px solid #e9e9e9; }
  table.pew td, table.pew td:first-child {
    padding: 1.2rem 1.7rem;
    vertical-align: middle; }
  table.pew .pew-title, table.pew th {
    background-color: #072146;
    color: #fff;
    font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    text-align: right;
    text-transform: uppercase;
    vertical-align: middle;
    width: 14%; }
    table.pew .pew-title.visible-xs, table.pew th.visible-xs {
      text-align: left; }
  table.pew th {
    text-align: center;
    text-transform: none;
    width: 100%; }
  table.pew .pew-description {
    color: #666666;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    text-align: right;
    width: 33%; }
    table.pew .pew-description.text-left {
      text-align: left; }
    table.pew .pew-description.text-center {
      text-align: center; }
    table.pew .pew-description em {
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }
  table.pew .pew-fee {
    background-color: #f4f4f4;
    font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
    text-align: center; }
    table.pew .pew-fee.text-left {
      text-align: left; }
    table.pew .pew-fee.text-right {
      text-align: right; }
  table.pew.pew-three-col td:not(.pew-title) {
    width: 35%; }

/* Disclosure Tables */
table.disclosure {
  color: #121212;
  background-color: transparent;
  font-size: 1.2rem; }
  table.disclosure tbody {
    border: 1px solid #121212; }
  table.disclosure tr {
    padding: 0; }
  table.disclosure td {
    border-top: 1px solid #121212;
    padding: .35rem;
    text-transform: uppercase; }
    table.disclosure td:first-child {
      max-width: 40rem;
      border-right: 1px solid #121212; }
  table.disclosure .title {
    border: none; }
    table.disclosure .title td {
      border: 1px solid transparent;
      border-bottom: 1px solid #121212;
      text-transform: none;
      padding: 0 0 .8rem; }

/* Legal Tables */
table.legal,
table.legal.disclosure-table {
  border: 1px solid #121212;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin-bottom: 2rem; }
  table.legal th,
  table.legal.disclosure-table th {
    background: #121212;
    color: #fff; }
  table.legal th, table.legal tr, table.legal td,
  table.legal.disclosure-table th,
  table.legal.disclosure-table tr,
  table.legal.disclosure-table td {
    padding: .75rem; }
  table.legal tr,
  table.legal.disclosure-table tr {
    border: none; }
  table.legal td,
  table.legal.disclosure-table td {
    border-right: 1px solid #121212;
    border-bottom: 1px solid #121212; }
  table.legal .legal-rate,
  table.legal.disclosure-table .legal-rate {
    font-size: 2.2rem;
    position: relative;
    vertical-align: baseline;
    font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif; }

table.legal.disclosure-table {
  font-size: 1.3rem; }
  table.legal.disclosure-table th, table.legal.disclosure-table tr, table.legal.disclosure-table td {
    padding: .5rem; }
  table.legal.disclosure-table th {
    font-size: 1.3rem; }

/*FCRA PreScreen Notices*/
.prescreen {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  border: 1px solid #121212;
  padding: 1rem;
  font-style: italic;
  margin-bottom: 2rem; }
  .prescreen p {
    font-weight: 700; }
  .prescreen *:last-child {
    margin-bottom: 0; }

.prescreen-bottom {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif;
  border-top: 1px solid #121212;
  border-bottom: 1px solid #121212;
  padding: 2rem;
  margin-bottom: 2rem; }
  .prescreen-bottom .title {
    text-transform: uppercase;
    text-decoration: underline; }

/* Region Selection (City/State Selector) Table */
.customerRegionTableHeadline {
  display: none; }

/* Tabs */
.nav-tabs {
  /* border-bottom: 1px solid rgba(41, 134, 202, 0.1); */
  border-bottom: none;
  /* Tab Dropdown Styles */ }
  .nav-tabs li {
    margin-left: 0;
    padding: 0; }
    .nav-tabs li:before {
      content: ''; }
    .nav-tabs li.active > a, .nav-tabs li.active > a:hover, .nav-tabs li.active > a:focus, .nav-tabs li.active > a:active,
    .nav-tabs li > a:hover, .nav-tabs li > a:focus, .nav-tabs li > a:active {
      /*box-shadow: inset 0px -4px 0px -3px #5bbeff;*/
      box-shadow: inset 0px -4px 0px -3px #ffffff;
      /*border: none;*/
      border-bottom: none;
      color: #121212;
      background-color: transparent; }
    .nav-tabs li.active{
      background-color: #FFF;
    }
    .nav-tabs li a {
      border: none;
      border-radius: 0;
      /*color: #666666;*/
      color: #ffffff;
      background-color: #bdbdbd;
      font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
      font-size: 1.5rem;
      margin-right: 0;
      padding: 1.5rem 4rem;
      -webkit-transition: color 100ms linear 0s;
      transition: color 100ms linear 0s; }
      .nav-tabs li a:hover, .nav-tabs li a:focus, .nav-tabs li a:active {
        /*background-color: transparent;*/
        background-color: #eeeeee;
        border: none; }
  .nav-tabs .lastTab .dropdown-toggle {
    margin-bottom: 0; }
    .nav-tabs .lastTab .dropdown-toggle:hover, .nav-tabs .lastTab .dropdown-toggle:focus, .nav-tabs .lastTab .dropdown-toggle:active {
      border-color: #d3d3d3 !important; }
  .nav-tabs .lastTab.open > a:hover, .nav-tabs .lastTab.open > a:focus, .nav-tabs .lastTab.open > a:active {
    border-color: #d3d3d3 !important; }
  .nav-tabs .lastTab .collapsed {
    box-shadow: 0 1px 1px 0 #d3d3d3;
    font-size: 1em;
    padding: 0;
    min-width: auto; }
  .nav-tabs .lastTab .collapsed li {
    border-bottom: 1px solid #d3d3d3;
    padding: 0; }
    .nav-tabs .lastTab .collapsed li.active a, .nav-tabs .lastTab .collapsed li.active a:hover, .nav-tabs .lastTab .collapsed li.active a:focus, .nav-tabs .lastTab .collapsed li.active a:active {
      background-color: #f4f4f4;
      box-shadow: none; }
    .nav-tabs .lastTab .collapsed li a {
      border-top: none;
      padding: 0.5em 0.75em; }
      .nav-tabs .lastTab .collapsed li a:hover {
        background-color: #f4f4f4;
        border-left: none;
        border-right: none;
        box-shadow: none; }
  .nav-tabs .lastTab .collapsed li:last-child {
    border-bottom: none; }

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
  border-color: #d3d3d3; }

.tab-content {
  border: none;
  border-top: none;
  padding: 4rem 0;
/*  margin-bottom: 2.5em;*/
  /*.tab-pane > * {
		padding-top: 0;
		padding-bottom: 0;
	}*/ }

.lastTab .caret {
  border: none; }
  .lastTab .caret:before {
    font-size: 1.1rem;
    margin-left: 4px;
    margin-top: -9px;
    position: absolute;
    font-family: 'coronita';
    content: "";
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg); }

.responsive-tabs-container .tab-pane {
  margin-bottom: 15px; }

.responsive-tabs-container .accordion-link {
  display: none; }

.vertical-tabs {
  overflow: hidden;
  margin-bottom: 4rem; }
  .vertical-tabs ul.nav-tabs {
    float: left;
    width: 33.33333333%;
    border-right: 1px solid #e9e9e9;
    border-bottom: none; }
  .vertical-tabs .tab-content {
    float: left;
    width: 66.66666667%;
    padding: 0;
    padding-left: 3rem;
    opacity: 1; }
    .vertical-tabs .tab-content .tab-pane {
      margin-right: 4%; }

.vertical-tabs li a {
  padding: 0 2rem 2rem 0;
  box-shadow: none;
  background: none;
  display: table;
  color: #1973b8;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  width: 100%; }
  .vertical-tabs li a:hover {
    border: none;
    box-shadow: none; }

.vertical-tabs li.active > a,
.vertical-tabs .nav-pills > li.active > a {
  background: none;
  box-shadow: none;
  color: rgba(25, 115, 184, 0.7); }

.vertical-tabs ul li span {
  padding-right: 1rem;
  display: table-cell;
  width: 3rem; }

.vertical-tabs .fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear; }

.vertical-tabs .fade.active {
  opacity: 1; }

/*search results*/
.cq-searchpromote-results {
  padding-top: 4rem; }

.cq-searchpromote-results span:first-child {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 4rem; }

.cq-searchpromote-results .cq-searchpromote-result-item {
  margin: 0;
  padding: 4rem 0;
  border-top: 1px solid #ebebeb;
  border-bottom: none; }

.cq-searchpromote-results .cq-searchpromote-result-item:last-of-type {
  border-bottom: none; }

.cq-searchpromote-results .cq-searchpromote-result-item .description {
  width: 66.66666667%; }

.cq-searchpromote-results .cq-searchpromote-result-item .description a {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block; }

/*search results pagination*/
.pagination {
  display: block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  padding-top: 4rem; }

.pagination .cq-searchpromote-pagination {
  text-align: left;
  border-top: 1px solid #ebebeb;
  padding-top: 2rem; }

.pagination .cq-searchpromote-pagination > span {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid #cecece; }

.pagination .cq-searchpromote-pagination > span.viewall {
  display: none; }

.pagination .cq-searchpromote-pagination > span.next {
  border-right: none; }

.pagination .cq-searchpromote-pagination > span.search-active {
  font-weight: bold; }

.feedify .feedify-item {
  position: relative; }
  .feedify .feedify-item .feedify-item-header {
    z-index: 100;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: #fff;
    width: 100%; }
    .feedify .feedify-item .feedify-item-header .header-left {
      margin-top: 15px;
      /*margin-bottom: 10px;
        margin-left: 12px;*/ }
    .feedify .feedify-item .feedify-item-header .header-right .icon-container {
      margin-top: 10px;
      margin-right: 10px; }
      .feedify .feedify-item .feedify-item-header .header-right .icon-container a {
        line-height: 1.8; }
    .feedify .feedify-item .feedify-item-header .hidden-icons {
      display: none; }
  .feedify .feedify-item.fixed .feedify-item-header {
    position: fixed;
    top: 0;
    width: 100% !important; }
  .feedify .feedify-item.bottom .feedify-item-header {
    position: absolute;
    bottom: 0; }

.feedify .page-section {
  padding-top: 2em; }

#sticky-header {
  display: none; }

#card-drawer {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 3.6rem; }
  #card-drawer > * {
    padding-top: 5rem;
    padding-bottom: 5rem; }
  #card-drawer .tab-content {
    margin-bottom: 0;
    padding-bottom: 0; }
  #card-drawer .collapsing {
    -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* easeOutQuad */
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* easeOutQuad */ }

.form-group-bbva.shopping-cart {
  margin-top: 0; }

#card-drawer .responsive-tabs li a {
  background: none;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 4rem;
  padding-left: 0; }

#card-drawer .responsive-tabs li.active > a {
  color: #fff;
  box-shadow: none;
  border: none; }

#card-drawer .nav-tabs li.active > a,
#card-drawer .nav-tabs li.active > a:hover,
#card-drawer .nav-tabs li.active > a:focus,
#card-drawer .nav-tabs li.active > a:active,
#card-drawer .nav-tabs li > a:hover,
#card-drawer .nav-tabs li > a:focus,
#card-drawer.nav-tabs li > a:active {
  box-shadow: none;
  border: none; }

/*Hover Effect for Card*/
#card-drawer .tab-content .tab-pane img {
  border-radius: 10px;
  border: 1px solid transparent; }

#card-drawer .tab-content .tab-pane a img {
  display: block;
  border: 1px solid transparent;
  border-radius: 10px; }

#card-drawer .tab-content .tab-pane a:hover img,
#card-drawer .tab-content .tab-pane a:focus img,
#card-drawer .tab-content .tab-pane a:active img,
#card-drawer .tab-content .tab-pane img:hover,
#card-drawer .tab-content .tab-pane img:hover,
#card-drawer .tab-content .tab-pane img:hover {
  box-shadow: 0px 0px 19px 1px #79bef7;
  border: 1px solid rgba(255, 255, 255, 0.4); }

#card-drawer .tab-content .tab-pane img:hover {
  cursor: pointer; }

/*Active Tab*/
#card-drawer .responsive-tabs > li.active a {
  color: #fff; }

#card-drawer .collapsing {
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

.checkbox-content label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

.checkbox-content label ~ p {
  margin-left: 4rem; }

.form-group-bbva .checkbox-content label .faux-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1.4rem; }

/* AEM Bug fix - <p> wrapping issue was causing extra space */
.shoppingcartbutton .checkbox-content > p {
  margin-bottom: 0.25rem; }

.affinity-selector {
  margin-bottom: 4rem; }
  .affinity-selector .card-img-link {
    margin-bottom: 2rem;
    display: block; }
    .affinity-selector .card-img-link img {
      margin: 0 auto;
      width: 100%; }
    .affinity-selector .card-img-link:hover, .affinity-selector .card-img-link:active, .affinity-selector .card-img-linkvisited {
      box-shadow: 0px 0px 19px 1px #79bef7;
      border-bottom: 1px solid transparent;
      border-radius: 1.4rem; }
  .affinity-selector .card-img-link + a {
    display: table; }

.card-selected {
  max-width: 80%;
  margin: 1.6rem auto 3.2rem;
  display: block; }

.svg-nav-container {
  display: -webkit-box;
  margin: 10px auto;
  width: 215px; }

.svg-container {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 5px 5px; }

#cards {
  width: 60px;
  height: 60px;
  background-color: transparent; }

#cards:hover {
  cursor: pointer; }

#planes {
  width: 60px;
  height: 60px;
  background-color: transparent; }

#planes:hover {
  cursor: pointer; }

#branches {
  width: 70px;
  height: 70px;
  background-color: transparent;
  position: absolute;
  top: -5px;
  left: -5px; }

#branches:hover {
  cursor: pointer; }

#security {
  width: 80px;
  height: 80px;
  background-color: transparent; }

#security:hover {
  cursor: pointer; }

#alerts {
  width: 80px;
  height: 80px;
  background-color: transparent; }

#alerts:hover {
  cursor: pointer; }

#software {
  width: 80px;
  height: 80px;
  background-color: transparent; }

#software:hover {
  cursor: pointer; }

.desc {
  margin-top: 20px; }

/* CRM Disposition Buttons */
.crm-disposition-buttons {
  margin-bottom: 0; }
  .crm-disposition-buttons h4 {
    margin-bottom: 1em; }
  .crm-disposition-buttons .crm-reservation-code {
    margin-bottom: 1.4rem; }
  .crm-disposition-buttons .form-group-bbva .select2 .select2-selection {
    background-color: #1973b8;
    padding-right: 4.5rem; }
  .crm-disposition-buttons .crm-reservation-code-submit {
    margin-bottom: 1rem;
    height: 6.2rem; }
  .crm-disposition-buttons form input, .crm-disposition-buttons form textarea, .crm-disposition-buttons .form-group-bbva input[type="text"], .crm-disposition-buttons .form-group-bbva input[type="email"], .crm-disposition-buttons .form-group-bbva input[type="tel"], .crm-disposition-buttons .form-group-bbva input[type="url"], .crm-disposition-buttons .form-group-bbva textarea, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: transparent;
    text-align: left; }
    .crm-disposition-buttons form input::-webkit-input-placeholder, .crm-disposition-buttons form textarea::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="text"]::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="email"]::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="tel"]::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="url"]::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva textarea::-webkit-input-placeholder, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered::-webkit-input-placeholder {
      background-color: #fff;
      color: #666666; }
    .crm-disposition-buttons form input:-moz-placeholder, .crm-disposition-buttons form textarea:-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="text"]:-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="email"]:-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="tel"]:-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="url"]:-moz-placeholder, .crm-disposition-buttons .form-group-bbva textarea:-moz-placeholder, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered:-moz-placeholder {
      background-color: #fff;
      color: #666666; }
    .crm-disposition-buttons form input::-moz-placeholder, .crm-disposition-buttons form textarea::-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="text"]::-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="email"]::-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="tel"]::-moz-placeholder, .crm-disposition-buttons .form-group-bbva input[type="url"]::-moz-placeholder, .crm-disposition-buttons .form-group-bbva textarea::-moz-placeholder, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered::-moz-placeholder {
      background-color: #fff;
      color: #666666; }
    .crm-disposition-buttons form input:-ms-input-placeholder, .crm-disposition-buttons form textarea:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="text"]:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="email"]:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="tel"]:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva input[type="url"]:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva textarea:-ms-input-placeholder, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered:-ms-input-placeholder {
      background-color: #fff;
      color: #666666; }
    .crm-disposition-buttons form input:placeholder-shown, .crm-disposition-buttons form textarea:placeholder-shown, .crm-disposition-buttons .form-group-bbva input[type="text"]:placeholder-shown, .crm-disposition-buttons .form-group-bbva input[type="email"]:placeholder-shown, .crm-disposition-buttons .form-group-bbva input[type="tel"]:placeholder-shown, .crm-disposition-buttons .form-group-bbva input[type="url"]:placeholder-shown, .crm-disposition-buttons .form-group-bbva textarea:placeholder-shown, .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered:placeholder-shown {
      background-color: #fff;
      color: #666666; }
  .crm-disposition-buttons form .form-group-bbva .form-control-bbva.crm-reservation-code-input {
    background-color: #fff;
    font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin-bottom: -1.5rem;
    height: 6.2rem; }

.crm-image-button > img {
  margin-bottom: 1rem;
  max-width: 22rem;
  width: 100%; }

.crm-mobile-app-links {
  display: table;
  margin-bottom: 2.5em;
  padding: 2rem 3.125em;
  width: 100%; }
  .crm-mobile-app-links > span {
    display: table-cell; }
    .crm-mobile-app-links > span:first-child {
      text-align: left; }
    .crm-mobile-app-links > span:last-child {
      text-align: right; }
    .crm-mobile-app-links > span a {
      color: #fff;
      font-size: 1.5rem;
      width: 100%; }
      .crm-mobile-app-links > span a:hover {
        color: #def2ff; }
        .crm-mobile-app-links > span a:hover .icon {
          color: #def2ff; }
    .crm-mobile-app-links > span .crm-no-interest {
      text-align: right;
      border: none; }
      .crm-mobile-app-links > span .crm-no-interest:hover, .crm-mobile-app-links > span .crm-no-interest:active, .crm-mobile-app-links > span .crm-no-interest:focus {
        border: none; }

html:not(.touchevents) .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif; }

html:not(.touchevents) .crm-disposition-buttons .form-group-bbva {
  margin-bottom: 2rem; }

html:not(.touchevents) .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 2.4rem;
  top: 0.4rem; }

html:not(.touchevents) .crm-disposition-buttons .form-group-bbva .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  color: #fff;
  font-size: 1.4rem; }

.crm-disposition-buttons {
  visibility: hidden; }

.crm-reservation-code-msg {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.35;
  color: #121212;
  font-size: 1.4rem;
  display: none; }

.crm-reservation-code-error {
  border: 1px solid #da3851; }

/* Inline Nav Hover Animation */
.circle-animation-wrapper {
  margin-bottom: 1.825em; }

.circle-animation {
  color: #d3d3d3;
  -webkit-transition: all 100ms linear 0s;
  transition: all 100ms linear 0s;
  display: inline-block;
  border-radius: 50%;
  position: relative; }

.inline-nav-animation .inline-nav-item:hover .circle-animation-wrapper .circle-animation {
  background: #f4f4f4;
  -webkit-transition: all 100ms linear 0s;
  transition: all 100ms linear 0s; }
  .inline-nav-animation .inline-nav-item:hover .circle-animation-wrapper .circle-animation img {
    -webkit-transform-origin: 75% 50%;
    transform-origin: 75% 50%;
    -webkit-animation: slightRotation 0.2s ease 1 forwards;
    animation: slightRotation 0.2s ease 1 forwards; }

@-webkit-keyframes slightRotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes slightRotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

/* Features & Benefits Animation CSS */
.fade-slide-right {
  position: relative; }

ol.carousel-indicators li.fade-slide-right:before {
  content: none; }

ol.carousel-indicators li.fade-slide-right:after {
  display: none; }

.left-bookend-control {
  width: 20px;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: 10px;
  text-align: center;
  height: 65px; }

.right-bookend-control {
  width: 20px;
  float: right;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  text-align: center;
  height: 65px; }

.fb-icon {
  position: relative;
  top: 23px;
  cursor: pointer; }

.controls-wrapper {
  white-space: nowrap;
  height: 85px; }

.controls-row {
  position: relative;
  top: -5px;
  height: 0px; }

/* Colors */
.white {
  color: #fff; }

.bg-white {
  background-color: #fff; }

.bg-primary {
  background-color: #f4f4f4;
  color: #121212; }

.bg-secondary {
  background-color: #def2ff;
  color: #121212; }

.navy {
  color: #072146; }

.bg-navy {
  background-color: #072146; }

.blue-core {
  color: #004481; }

.bg-blue-core {
  background-color: #004481; }

.blue-medium {
  color: #1973b8; }

.bg-blue-medium {
  background-color: #2a86ca; }

.blue-light {
  color: #5bbeff; }

.bg-blue-light {
  background-color: #5bbeff; }

.bg-blue-white {
  background-color: #b7e2ff; }

.bg-blue-white-light {
  background-color: #def2ff; }

/*---------------*/
.aqua {
  color: #0fb1b2; }

.bg-aqua {
  background-color: #0fb1b2; }

.aqua-white {
  color: #cfeff0; }

.bg-aqua-white {
  background-color: #cfeff0; }

.aqua-light {
  color: #63cccd; }

.bg-aqua-light {
  background-color: #63cccd; }

.aqua-dark {
  color: #0b8585; }

.bg-aqua-dark {
  background-color: #0b8585; }

.grey600 {
  color: #121212; }

.bg-grey600 {
  background-color: #121212; }

.grey500 {
  color: #666666; }

.bg-grey500 {
  background-color: #666666; }

.grey400 {
  color: #bdbdbd; }

.bg-grey400 {
  background-color: #bdbdbd; }

.grey300 {
  color: #d3d3d3; }

.bg-grey300 {
  background-color: #d3d3d3; }

.grey200 {
  color: #e9e9e9; }

.bg-grey200 {
  background-color: #e9e9e9; }

.grey100 {
  color: #f4f4f4; }

.bg-grey100 {
  background-color: #f4f4f4; }

.white {
  color: #fff; }

.bg-white {
  background-color: #fff; }

/*---------------*/
.red {
  color: #da3851; }

.bg-red {
  background-color: #da3851; }

.red-white {
  color: #f4c3ca; }

.bg-red-white {
  background-color: #f4c3ca; }

.red-light {
  color: #e77d8e; }

.bg-red-light {
  background-color: #e77d8e; }

.red-dark {
  color: #a32a3d; }

.bg-red-dark {
  background-color: #a32a3d; }

.orange {
  color: #f7893b; }

.bg-orange {
  background-color: #f7893b; }

.orange-white {
  color: #fddbc4; }

.bg-orange-white {
  background-color: #fddbc4; }

.orange-light {
  color: #fab27f; }

.bg-orange-light {
  background-color: #fab27f; }

.orange-dark {
  color: #b9672c; }

.bg-orange-dark {
  background-color: #b9672c; }

.yellow {
  color: #f8cd51; }

.bg-yellow {
  background-color: #f8cd51; }

.yellow-white {
  color: #fdf0ca; }

.bg-yellow-white {
  background-color: #fdf0ca; }

.yellow-light {
  color: #fade8e; }

.bg-yellow-light {
  background-color: #fade8e; }

.yellow-dark {
  color: #ba9a3d; }

.bg-yellow-dark {
  background-color: #ba9a3d; }

.gold {
  color: #d8be75; }

.bg-gold {
  background-color: #d8be75; }

.gold-white {
  color: #f3ebd5; }

.bg-gold-white {
  background-color: #f3ebd5; }

.gold-light {
  color: #e6d5a5; }

.bg-gold-light {
  background-color: #e6d5a5; }

.gold-dark {
  color: #a28e58; }

.bg-gold-dark {
  background-color: #a28e58; }

.green {
  color: #48ae64; }

.bg-green {
  background-color: #48ae64; }

.green-white {
  color: #c8e7d0; }

.bg-green-white {
  background-color: #c8e7d0; }

.green-light {
  color: #88ca9a; }

.bg-green-light {
  background-color: #88ca9a; }

.green-dark {
  color: #36824b; }

.bg-green-dark {
  background-color: #36824b; }

.pink {
  color: #f78be8; }

.bg-pink {
  background-color: #f78be8; }

.pink-white {
  color: #fddcf8; }

.bg-pink-white {
  background-color: #fddcf8; }

.pink-light {
  color: #fab3f0; }

.bg-pink-light {
  background-color: #fab3f0; }

.pink-dark {
  color: #b968ae; }

.bg-pink-dark {
  background-color: #b968ae; }

.purple {
  color: #8f7ae5; }

.bg-purple {
  background-color: #8f7ae5; }

.purple-white {
  color: #ddd7f7; }

.bg-purple-white {
  background-color: #ddd7f7; }

.purple-light {
  color: #b6a8ee; }

.bg-purple-light {
  background-color: #b6a8ee; }

.purple-dark {
  color: #6b5bac; }

.bg-purple-dark {
  background-color: #6b5bac; }

/* Margins */
span.nomargin, span.xsmargin, span.smallmargin, span.mediummargin, span.largemargin {
  display: block; }

.nomargin {
  margin-bottom: 0; }

.xsmargin {
  margin-bottom: 0.5em; }

.smallmargin {
  margin-bottom: 1em; }

.mediummargin {
  margin-bottom: 1.875em; }

.largemargin {
  margin-bottom: 2.5em; }

/* Padding */
span.nopadding, span.xspadding, span.smallpadding, span.mediumpadding, span.largepadding {
  display: block; }

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

.smallpadding {
  padding-bottom: 1em;
  padding-top: 1em; }

.mediumpadding {
  padding-bottom: 1.875em;
  padding-top: 1.875em; }

.largepadding {
  padding-bottom: 2.5em;
  padding-top: 2.5em; }

/* Typography */
.serif {
  font-family: "Tiempos Headline Regular", Georgia, Times, serif; }

.serif-italic, .serif-medium {
  font-family: "Tiempos Headline Medium", Georgia, Times, serif;
  font-style: italic; }

.sans-serif {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.sans-serif-light {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.sans-serif-regular {
  font-family: "Benton Sans Regular", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.sans-serif-medium {
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.sans-serif-bold {
  font-family: "BentonSansBBVA Bold", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.font-light {
  font-family: "BentonSansBBVA Light", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.font-book {
  font-family: "BentonSansBBVA Book", "Helvetica Neue", Arial, Helvetica, sans-serif; }

.text-indent {
  margin-left: 1.5em; }

.large {
  font-size: 1.25em;
  line-height: 1; }

.italic {
  font-style: italic; }

.caps {
  text-transform: uppercase; }

.faux-link {
  color: #1973b8;
  font-family: "BentonSansBBVA Medium", "Helvetica Neue", Arial, Helvetica, sans-serif;
  -webkit-transition: color 100ms linear 0s;
  transition: color 100ms linear 0s; }

.dark-bg *,
.medium-bg *,
.bg-navy *,
.bg-blue-core *,
.bg-blue-medium *,
.bg-aqua *,
.bg-aqua-dark *,
.bg-red *,
.bg-orange *,
.bg-green *,
.bg-purple * {
  color: #fff; }

.dark-bg a, a.dark-bg, .bg-navy a, .bg-grey600 a, .medium-bg a, a.medium-bg {
  color: #5bbeff; }
  .dark-bg a:hover, .dark-bg a:active, .dark-bg a:focus, a.dark-bg:hover, a.dark-bg:active, a.dark-bg:focus, .bg-navy a:hover, .bg-navy a:active, .bg-navy a:focus, .bg-grey600 a:hover, .bg-grey600 a:active, .bg-grey600 a:focus, .medium-bg a:hover, .medium-bg a:active, .medium-bg a:focus, a.medium-bg:hover, a.medium-bg:active, a.medium-bg:focus {
    border-bottom: 1px solid #fff;
    color: #fff;
    outline: none;
    text-decoration: none; }
  .dark-bg a.icon-link, .dark-bg a.icon-link:hover, .dark-bg a.icon-link:active, .dark-bg a.icon-link:focus, a.dark-bg.icon-link, a.dark-bg.icon-link:hover, a.dark-bg.icon-link:active, a.dark-bg.icon-link:focus, .bg-navy a.icon-link, .bg-navy a.icon-link:hover, .bg-navy a.icon-link:active, .bg-navy a.icon-link:focus, .bg-grey600 a.icon-link, .bg-grey600 a.icon-link:hover, .bg-grey600 a.icon-link:active, .bg-grey600 a.icon-link:focus, .medium-bg a.icon-link, .medium-bg a.icon-link:hover, .medium-bg a.icon-link:active, .medium-bg a.icon-link:focus, a.medium-bg.icon-link, a.medium-bg.icon-link:hover, a.medium-bg.icon-link:active, a.medium-bg.icon-link:focus {
    border: none;
    outline: none;
    padding-bottom: 0; }

.medium-bg a, a.medium-bg {
  color: #fff; }

/* Icon Sizes */
.icon-xs,
a.icon-link .icon-xs,
a.icon-link:hover .icon-xs {
  font-size: 1.1rem; }

.icon-sm,
a.icon-link .icon-sm,
a.icon-link:hover .icon-sm {
  font-size: 2.4rem; }

.icon-md,
a.icon-link .icon-md,
a.icon-link:hover .icon-md {
  font-size: 3rem; }

.icon-lg,
a.icon-link .icon-lg,
a.icon-link:hover .icon-lg {
  font-size: 4.5rem; }

.icon-xl,
a.icon-link .icon-xl,
a.icon-link:hover .icon-xl {
  font-size: 7rem; }

/* Icon Rotation */
.rotate90:before {
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

.rotateNeg90:before {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.rotate180:before {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

/* Buttons */
.btn-center {
  margin: 0 auto !important;
  display: table; }

/* Images */
.img-round {
  max-width: 265px;
  border-radius: 50%; }

img, .img-responsive {
  max-width: 100%; }

/* Shadow */
.elliptical-shadow {
  margin: 1em auto 3em;
  width: 80%;
  height: 1px;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  box-shadow: 0 0 1px transparent; }

.elliptical-shadow:after {
  content: '\0000a0';
  position: absolute;
  bottom: -1em;
  left: 20%;
  width: 60%;
  height: 16px;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 80%); }

/* White Background Elements */
.container-fluid .bg-white {
  margin-bottom: 2em;
  padding: 1.125em 2em;
  width: 100%; }

/* Page Headers - Text Heading only */
/* Bootstrap Override */
.page-header {
  padding-bottom: 1em;
  padding-top: 1em;
  border-bottom: none; }
