.errorlist {
    list-style: none;
    padding-inline-start: 0px;
    color: #bd2130;
}

.error {
    color: #bd2130;
}

.loader-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.loader {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
  margin-bottom: 10px;
  margin-left: 55px;

}

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

.progress-bar {
  width: 0%;
  height: 10px;
  background-color: #007bff;
}

@keyframes blink {
    50% {
        color: transparent
    }
}

.skeleton-loader {
  opacity: 0.2;
  overflow: hidden;
  /* Clip the image to prevent gradient overflow */
  height: 20px;
  /* Adjust height as needed */
  width: 100%;
  /* Adjust width as needed */
  background-image: url("../images/landing-bg.png");
  /* Set the background image */
  background-size: cover;
  /* Ensure the image covers the container */
  animation: shimmer 2s infinite ease-in-out;
  margin-bottom: 5px;
}

.skeleton-loader:first-child {
  animation: shimmer 1.25s infinite ease-in-out;
}

.skeleton-loader:last-child {
  animation: shimmer 2.75s infinite ease-in-out;
}

@keyframes shimmer {
  0% {
    background-position: -800px 0;
    /* Start with gradient far off-screen */
  }

  100% {
    background-position: 0 0;
    /* Animate to move gradient across the image */
  }
}

.loading-icon {
  width: 100%;
  height: auto;
}
.copy, .downloadPDF{
  cursor: pointer;
}
#notification {
  z-index: 9;
  display: none;
  position: fixed;
  top: 100px;
  right: 0px;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.col-md-9 {
  display: inline-flex;
}

.cv-source {
  cursor: pointer;
}

.cv-source img {
  width: 125px;
}

.status-text {
  color: green;
}

.status-text.disconnect {
  color: red;
}

.status-cvs {
  display: none;
  line-height: 23px;
  height: 32px;
  vertical-align: top;
}

.indeed-status-csv {
  line-height: 14px;
}

.show {
  display: block;
}

.cv-source .col-md-12 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}

.cv-list-div {
  max-height: 295px;
}

.cv-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.cv-item {
  margin: 7px;
  display: flex;
  align-items: center;
}

.cv-list input[type="checkbox"] {
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

.cv-list input[type="checkbox"]:checked {
  background-image: url("../images/tick.svg");
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.cv-list input[type="checkbox"]:focus{
  box-shadow: none;
}
.cvs-from-source{
  display: none;
}