.pseudo-fullscreen-activity-indicator-svg {
  animation: rotate 2s linear infinite;
}

.pseudo-fullscreen-activity-indicator-svg .path {
  stroke: rgb(43, 43, 43);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  animation: stretch-stroke 1.5s ease-in-out infinite;
}

.pseudo-fullscreen-activity-indicator-svg__offwhite {
  animation: rotate 2s linear infinite;
}

.pseudo-fullscreen-activity-indicator-svg__offwhite .path {
  stroke: rgb(238, 246, 248);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  animation: stretch-stroke 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes stretch-stroke {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -135;
  }
}

/** Pseudo-Fullscreen Custom Result Animation Styles */

.pseudo-fullscreen-success-svg,
.pseudo-fullscreen-unsuccess-svg,
.pseudo-fullscreen-success-svg__offwhite,
.pseudo-fullscreen-unsuccess-svg__offwhite {
  border-radius: 50%;
  transform: translateZ(0);
}

.pseudo-fullscreen-success-svg .circlePath,
.pseudo-fullscreen-unsuccess-svg .circlePath,
.pseudo-fullscreen-success-svg__offwhite .circlePath,
.pseudo-fullscreen-unsuccess-svg__offwhite .circlePath {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: reveal-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards, pseudo-fullscreen-circle-fill .3s ease-in-out .3s forwards;
}

.pseudo-fullscreen-success-svg .circlePath,
.pseudo-fullscreen-unsuccess-svg .circlePath {
  stroke: rgb(43, 43, 43);
}

.pseudo-fullscreen-success-svg__offwhite .circlePath,
.pseudo-fullscreen-unsuccess-svg__offwhite .circlePath {
  stroke: rgb(238, 246, 248);
}

.pseudo-fullscreen-success-svg .checkmarkPath,
.pseudo-fullscreen-unsuccess-svg .crossPath1,
.pseudo-fullscreen-unsuccess-svg .crossPath2,
.pseudo-fullscreen-success-svg__offwhite .checkmarkPath,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath1,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath2 {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pseudo-fullscreen-success-svg .checkmarkPath,
.pseudo-fullscreen-success-svg__offwhite .checkmarkPath {
  stroke: rgb(59, 195, 113);
}

.pseudo-fullscreen-unsuccess-svg .crossPath1,
.pseudo-fullscreen-unsuccess-svg .crossPath2,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath1,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath2 {
  stroke: rgb(195, 72, 59);
}

.pseudo-fullscreen-success-svg .checkmarkPath,
.pseudo-fullscreen-success-svg__offwhite .checkmarkPath {
  animation: reveal-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.pseudo-fullscreen-unsuccess-svg .crossPath1,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath1 {
  animation: reveal-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.pseudo-fullscreen-unsuccess-svg .crossPath2,
.pseudo-fullscreen-unsuccess-svg__offwhite .crossPath2 {
  animation: reveal-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes reveal-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes pseudo-fullscreen-circle-fill {
  100% {
    stroke-width: 52;
  }
}

/* ekyc-sdk.css */
.ekyc-sdk-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.ekyc-sdk-content {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.ekyc-sdk-logo {
  width: 180px;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.ekyc-sdk-logo.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-welcome {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.ekyc-sdk-welcome.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-welcome-title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.ekyc-sdk-welcome-subtitle {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin: 0 auto 2rem auto;
  max-width: 100%;
  padding: 0 16px;
}

.ekyc-sdk-form {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  padding: 0 16px;
}

.ekyc-sdk-form.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-input-container {
  margin-bottom: 16px;
}

.ekyc-sdk-label {
  font-size: 0.875rem;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.ekyc-sdk-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.ekyc-sdk-error {
  font-size: 0.75rem;
  color: red;
  margin-top: 4px;
  display: none;
}

.ekyc-sdk-error.ekyc-sdk-error-visible {
  display: block;
}

.ekyc-sdk-terms {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.ekyc-sdk-terms.ekyc-sdk-visible {
  opacity: 1;
}

.ekyc-sdk-checkbox {
  margin-right: 8px;
}

.ekyc-sdk-terms-label {
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
}

.ekyc-sdk-terms-link {
  font-size: 0.75rem;
  color: blue;
  text-decoration: underline;
  margin-left: 4px;
}

/* Container general pentru cele două bife */
.ekyc-sdk-confirmations {
  margin-top: 8px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.ekyc-sdk-confirmations.ekyc-sdk-visible {
  opacity: 1;
}

/* Structura individuală a fiecărei bifări (checkbox + label) */
.ekyc-sdk-confirmation-item {
  display: flex;
  align-items: flex-start;
}

/* Eticheta pentru fiecare checkbox */
.ekyc-sdk-confirmation-label {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  display: inline-block;
}


.ekyc-sdk-button-container {
  padding: 0 16px 20px;
  margin-top: 32px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.ekyc-sdk-button-container.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-button {
  width: 100%;
  padding: 12px;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.ekyc-sdk-button-disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.ekyc-sdk-button-enabled {
  background-color: #007AFF;
  cursor: pointer;
}

/* Terms Content Styles */
.ekyc-sdk-terms-content {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  display: none;
}

.ekyc-sdk-terms-logo {
  width: 180px;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.ekyc-sdk-terms-logo.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-terms-title-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-terms-title-container.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-terms-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}

.ekyc-sdk-terms-date {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-terms-date.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-terms-sections {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-terms-sections.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-terms-section {
  margin-bottom: 20px;
}

.ekyc-sdk-terms-section-title {
  font-size: 1.125rem;
  color: #007AFF;
  margin-bottom: 8px;
}

.ekyc-sdk-terms-section-content {
  font-size: 1rem;
  line-height: 1.5;
}

.ekyc-sdk-terms-button-container {
  margin: 20px 0;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-terms-button-container.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-terms-button {
  background-color: #007AFF;
  padding: 12px;
  margin-bottom: 20px;
}
/* Home View Styles */
.ekyc-sdk-home-content {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  display: none;}

.ekyc-sdk-home-logo {
  width: 180px;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.ekyc-sdk-home-logo.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-home-text {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-home-text.ekyc-sdk-visible {
  opacity: 1;
  transform: translateY(0);
}

.ekyc-sdk-home-text p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.ekyc-sdk-home-button-container {
  margin: 20px 0;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.ekyc-sdk-home-button-container.ekyc-sdk-visible {
  opacity: 1;
  transform: scale(1);
}

.ekyc-sdk-home-button {
  background-color: #007AFF;
  padding: 12px;
  width: 100%;
}

.ekyc-sdk-home-terms-link {
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.ekyc-sdk-home-terms-link.ekyc-sdk-visible {
  opacity: 1;
}

.ekyc-sdk-home-terms-link a {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
}
/* ekyc-sdk.css */
.ekyc-sdk-loading-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.ekyc-sdk-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007AFF;
  border-radius: 50%;
  animation: ekyc-sdk-spin 1s linear infinite;
  margin-bottom: 20px;
}

.ekyc-sdk-loading-text {
  font-size: 1rem;
  color: #333;
  text-align: center;
}

@keyframes ekyc-sdk-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
