<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* TERMS */
.puntosDobles {
    font-family: 'BentonSansBBVA-Book';
    background-color: #e9e9e9;
    margin: 0px;
    padding: 30px 0;
    text-align: center;
  }
  .puntosD .accordion {
    background-color: #fff;
    color: var(--darkish-blue);
    cursor: pointer;
    padding: 24px;
    width: 90%;
    max-width: 960px;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 18px;
    font-family: 'BentonSansBBVA-Bold';
    position: relative;
    display: block;
    margin: 0px auto;
  }
  .puntosD .accordion:hover{
    color: #49A5E6;
    text-decoration: none;
  }
  .puntosD .accordion:after {
    content: '';
    background: url(../../images/icn_forward.svg) no-repeat center center;
    font-weight: bold;
    width: 20px;
    height: 20px;
    position: absolute;
    display: inline-block;
    top: 27px;
    right: 25px;
  }
  
  .puntosD .containerTerms {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .containerTerms p {
    color: var(--darkish-blue);
    font-size: 18px;
    line-height: 28px;
    overflow: auto;
    text-align: justify;
  }</pre></body></html>