/* SBP Emissor de Recibos – CSS v1.0.4 */

/* ── Container ── */
.emissor-recibos {
  padding-bottom: 30px;
  min-height: 100px;
  position: relative;
}

/* ── Dados do sócio ── */
.emissor-recibos__socio {
  margin: 0 0 12px 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.35;
  color: #4D4D4D;
}
.emissor-recibos__socio strong {
  display: block;
  font-size: 16px;
  color: #0B4DA2;
}

/* ── Spinner ── */
.emissor-recibos__lds-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  margin-top: -32px;
  left: 50%;
  margin-left: -32px;
}
.emissor-recibos.loaded .emissor-recibos__lds-ring {
  display: none;
  height: 0;
  width: 0;
  position: relative;
}
.emissor-recibos__lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #004672;
  border-radius: 50%;
  animation: sbp-er-lds-ring 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
  border-color: #004672 transparent transparent transparent;
}
.emissor-recibos__lds-ring div:nth-child(1) { animation-delay: -.45s; }
.emissor-recibos__lds-ring div:nth-child(2) { animation-delay: -.3s; }
.emissor-recibos__lds-ring div:nth-child(3) { animation-delay: -.15s; }
@keyframes sbp-er-lds-ring {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* ── Lista de recibos (botões dos anos) ── */
.emissor-recibos__lista-recibos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .emissor-recibos__lista-recibos {
    justify-content: flex-start;
  }
}

/* ── Cada recibo (wrapper do botão de ano) ── */
.emissor-recibos__recibo {
  display: flex;
  justify-content: center;
}

/* ── Botão base ── */
.emissor-recibos__btn {
  width: 90px;
  height: 41px;
  border-radius: 5px;
  box-shadow: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background: #004672;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.emissor-recibos__btn:hover {
  filter: brightness(1.1);
}
.emissor-recibos__btn__text {
  color: #fff;
}

/* ── Botão principal "Emitir Recibos" ── */
.emissor-recibos__btn__loader {
  width: 220px;
  height: 50px;
  margin: 0 auto 20px auto;
  display: flex;
}
.emissor-recibos__btn__loader--disabled {
  display: none;
}

/* ── Área de login / CTA ── */
.emissor-recibos__login {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.emissor-recibos__login.error-login {
  display: none;
}
.emissor-recibos__login .emissor-recibos__btn {
  margin-bottom: 20px;
}

/* ── Mensagens ── */
.emissor-recibos__mensagem {
  font-size: 22px;
  margin-top: 10px;
  text-align: center;
}

/* ── Esconde o div de data-attributes de mensagens ── */
.emissor-recibos__messages {
  display: none;
}