.abau-desplegable {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 5px;
    border-radius: 0px;
    background-color: #1d6996;
    box-shadow: 0 0 0 1px rgb(255 255 255);
    opacity: 1;
    transition: box-shadow .2s, opacity .4s;
}
.abau-desplegable:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
  }
.abau-input {
  display: none;
}
.abau-input:checked ~ .boton-abau + .abau-desplegable-content {
  max-height: 3000px;
}
.abau-input:checked ~ .boton-abau:after {
    transform: rotate(0);
}
.abau-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: 80px;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  cursor: pointer;
}

.boton-abau {
    position: relative;
    display: block;
    height: 60px;
    margin: 0;
    padding: 0 87px 0 20px;
    white-space: nowrap;
    cursor: pointer;
}
.boton-abau:before {
    height: 100%;
  }
.abau-nombre {
    display: inline-block;
    width: 75%;
    margin-left: 16px;
    color: #ffffff;
    white-space: normal;
    text-align: left;
    vertical-align: middle;
    font-size: 18px;
    line-height: 22px;
    padding-top: 18px;
    font-weight: 600;
}
.boton-abau + .abau-desplegable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.boton-abau > div,
.boton-abau > div {
  vertical-align: middle;
}
.abau-info {
  width: 90%;
  white-space: nowrap;
}
.abau-info:after {
    position: absolute;
    width: 24px;
    height: 100%;
    right: 30px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiNBOUFDQUYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    content: '';
    display: inline-block;
    vertical-align: middle;
  }
.abau-desplegable-content {
  background-color: #ffffff;
  text-align: justify;
}
@media screen and (max-width: 800px) {
  .abau-label {
    max-height: 102px;
  }
  .boton-abau {
    height: auto;
    padding: 10px 87px 10px 30px;
  }
  .boton-abau:before {
    display: none;
  }
  .boton-abau:after {
    top: 0;
  }
  .boton-abau > div {
    display: block;
    width: 100%;
  }
  .abau-nombre {
    padding-top: 0px;
    width: 90%;
  }
  .abau-info:after {
    height: 60%;
  }
}
@media screen and (max-width: 500px) {
  .abau-label {
    max-height: 140px;
  }
}