/* :root {
  --primary-color: #2f89b0;
  --primary-light-color: #135734;
  --secondary-color: #17977e;
  --secondary-light-color: #046955;
  --lime-color: #17977e1a;
  --text-primary-color: #8a8a8a;
  --text-secondary-color: #828282;
  --white-color: #ffffff;
} */

.step {
  display: none;
}

.step.step-active {
  display: block;
}

.step-header {
  background-color: #f4f4f4;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.circle {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #d9d9d9;
  padding: 10px;
  border-radius: 40px;
  color: #ababab;
}

.circle-active {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.dashed-border {
  border-top: 2px dashed #dfdfdf;
  position: relative;
  border-radius: 0px !important;
  top: 10px;
}

.dashed-border-active {
  border-color: var(--secondary-color) !important;
}

.step-header div {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  flex-grow: 1;
  margin: 0 5px;
}

.step-header div.step-active {
  color: var(--secondary-color);
}

.upload-profile-picture,
.upload-documents {
  background-color: #f3f3f3;
  border: 1px dashed #b9b9b9 !important;
  min-height: 150px;
}

/* Loader Styles */
.upload-profile-picture,
.upload-documents {
  position: relative;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid var(--secondary-color);
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  display: none;
}

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

/* Document Preview Styles */
.upload-documents {
  position: relative;
  background-color: #f3f3f3;
  border: 1px dashed #b9b9b9 !important;
  min-height: 150px;
}

.upload-documents iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.upload-documents.uploading .upload-overlay {
  display: block;
}

.upload-documents.uploading .loader {
  display: block;
}

.profile-pic-preview-img {
  max-width: 150px;
  display: none;
  margin: 0 auto;
}

.cv-preview-image {
  margin: 0 auto;
}

.terms-and-conditions-container {
  background-color: #f4f4f4;
}
