verdocs-sign-footer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  color: #616161;
  position: fixed;
  font-size: 12px;
  padding: 0 24px;
  align-items: center;
  flex-direction: row;
  background: #ffffff;
  container-type: inline-size;
  border-top: 1px solid #e0e0e0;
  justify-content: space-between;
  font-family: var(--verdocs-primary-font, "Inter", "Barlow", sans-serif);
  transition: 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
verdocs-sign-footer a {
  color: #616161;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dotted #616161;
}
verdocs-sign-footer.loading {
  display: none;
}
verdocs-sign-footer .powered-by {
  white-space: nowrap;
}
verdocs-sign-footer .buttons {
  flex: 0;
  gap: 16px;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  align-items: center;
}
verdocs-sign-footer .buttons button {
  gap: 4px;
  border: none;
  display: flex;
  outline: none;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  background: transparent;
}
verdocs-sign-footer .buttons div {
  gap: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
verdocs-sign-footer .links {
  flex: 0;
  gap: 8px;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}
verdocs-sign-footer.just-buttons .buttons {
  flex: 1;
  justify-content: center;
}
@container (max-width: 720px) {
  verdocs-sign-footer.has-buttons .powered-by {
    display: none;
  }
}
@container (max-width: 540px) {
  verdocs-sign-footer.no-buttons .powered-by {
    display: none;
  }
  verdocs-sign-footer.has-buttons .links {
    display: none;
  }
  verdocs-sign-footer .buttons {
    flex: 1;
    justify-content: center;
  }
}