.bis-loading-state {
  width: 100%;
}

.bis-divider,
.bis-post-divider {
  display: block;
  width: 100%;
  margin: 26px 0;
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

.bis-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 140px;
  padding: 2rem 1rem;
  text-align: center;
}

.bis-loader__spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: bis-spin 0.75s linear infinite;
  opacity: 0.7;
}

.bis-loader__text {
  font-size: 16px;
  color: rgb(54, 54, 54);
  font-weight: 500;
}

.bis-end-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 26px 0 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid currentColor;
  opacity: 0.85;
}

.bis-end-message__text {
  margin: 0;
  font-size: 16px;
  color: rgb(54, 54, 54);
  line-height: 1.6;
  font-weight: 500;
}

.bis-end-message__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 16px;
  color: var(--green-dark);
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}

.bis-end-message__link:hover,
.bis-end-message__link:focus {
  opacity: 0.75;
  text-decoration: none;
}

#bis-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}

@keyframes bis-spin {
  to {
    transform: rotate(360deg);
  }
}
