input[type=checkbox]{
  width:18px;
  height:18px;
   
}

:root {
  --success-color: #28a745;
  --info-color: #0c5460;
  --warning-color: #ff9a00;
  --danger-color: #dc3545;
  --success-bg: #d4edda;
  --info-bg: #ccf0f7;
  --warning-bg: #fff8ee;
  --danger-bg: #f8d7da;
}


.qc_plugin .wrapper,
.qc_plugin .container,
.qc_plugin .content {
  min-width: none !important;
  max-width: none !important;
  width: auto !important;
  margin: 0;
}
.qc_plugin .card {
  padding: 0 !important;
  width: 100% !important;
  min-width: none;
  max-width: none;
}

.qc_plugin .qc_custom_form_wrapper .qc_custom_form_row_wrapper {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
}
.qc_plugin .qc_custom_form_wrapper .qc_custom_form_row_wrapper .row {
  border: dashed 1px #d9f5ed;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  padding: 2px;
  padding-right: 4px;
}

.qc_plugin .qc_custom_form_wrapper .qc_custom_form_row_wrapper .col {
  border: dashed 1px #aeaeae;
  margin: 2px;
  padding: 5px;
}
.qc_plugin .form-group {
  margin-top: 10px;
}
.qc_plugin .form-group:last-child {
  margin-bottom: 10px;
}
.qc_plugin .card {
  margin-top: 10px;
}
.qc_plugin .card:last-child {
  margin-bottom: 10px;
}

.qc_plugin .card-title {
  font-weight: bold !important;
}

.qc_plugin .form-control.disabled {
  background: #dedede;
}

.qc_plugin .form-control.disabled {
  background: #dedede;
}


.form-control:required {
  border-left: 3px solid rgb(255, 87, 16) !important;
}
.form-control:required:valid {
  border-left: 3px solid rgb(20, 200, 16) !important;
}
.form-control :invalid {
  border-left: 3px solid rgb(200, 20, 16) !important;
}

.qc_plugin .application-step {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: height 0.5s, opacity 0.5s ease, visibility 0.5s ease;
  height: 0;
  /* display:none; */

  /* visibility: hidden; */
  /* opacity: 0; */
  /* height:0; */
  /* transition: opacity 0.5s ease, visibility 0.5s ease; */
}
.qc_plugin .application-step.active {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}


/* Media query breakpoints */

/* qc-fluid-table styles  start  */
@media only screen and (max-width: 1069px ) {
  .bar,
  .qc-fluid-table thead {
    display: none;
  }

  .qc-fluid-table {
    table, tbody, tr, td {
      display: block;
      width: 100% !important;
      text-align: center !important;
    }

    tr {
      margin-top: 2rem;
      padding-top: 0;
    }

    td {
      width: 100%;
      font-weight: bold;

      &:before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
      }

      &:first-child {
        color: black;
      }

      .d-block {
        font-weight: normal;
      }
    }
  }

  .qc-fluid-card {
    width: 95%;
    margin: auto;
  }

  .resultArea {
    flex-direction: column;
  }
}


@media only screen and (max-width: 768px) {
  .td-one-hide td {
    &:first-child {
      display: none;
    }

    &:nth-child(2) {
      background-color: #fadd86;
      color: black;
    }
  }
}

/* qc-fluid-table styles  end  */



.btn-preview:hover .input-group-text {

  background-color: #f8f9fa; /* Light gray background on hover */

  color: #007bff; /* Blue text on hover */

  transition: all 0.3s ease; /* Smooth transition effect */

}


.btn-preview:focus-within .input-group-text {

  outline: 2px solid #007bff; /* Blue outline on focus */

  box-shadow: 0 0 5px rgba(0,123,255,0.5); /* Soft blue shadow */

}


.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";  /* Default state */
}

.custom-file-input:lang(en) ~ .custom-file-label.uploading::after {
  content: "Uploading...";
}

.custom-file-input:lang(en) ~ .custom-file-label.uploaded::after {
  content: "Change"; /* Text shows when file is uploaded */
}


/* Upload Loader */
.lds-spinner {
  color: #007bff;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #007bff;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.preview-form-label {
  font-weight: 500;
}
.info-box {
  /* background-color: #f8f9fa; */
  /* border: 1px solid #dee2e6; */
  border-radius: 0.375rem;
  /* padding: 0.5rem; */
}
.card {
  margin-bottom: 1.5rem;
}
.qualification-card {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.inner-info-box {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem;
}

.info-box {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px !important;
  border-radius: .25rem;
  background-color: #fff;
  display: flex;
  /* margin-bottom: 1rem; */
  min-height: 50px !important;
  padding: .5rem;
  position: relative;
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

.application-header {
  background-color: #f8f9fa;
  border-left: 4px solid #0d6efd;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.transaction-card {
  transition: box-shadow 0.3s ease-in-out;
}
.transaction-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.status-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}
.status-success {
  background-color: #d1e7dd;
  color: #0f5132;
}
.status-failed {
  background-color: #f8d7da;
  color: #842029;
}
.status-attempted {
  background-color: #fff3cd;
  color: #664d03;
}
.label {
  font-size: 0.875rem;
  color: #6c757d;
}
.value {
  font-weight: 500;
}


.new-card {
  max-width: 600px;
  width: 100%;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  background:  #01a02a;;
  color: white;
  border: none;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}
.card-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
}
.card-header h4 {
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.info-row {
  margin-bottom: 1.2rem;
}
.info-label {
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0.3rem;
}
.info-value {
  font-weight: 600;
  color: #333;
}
.badge {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-success {
  background: linear-gradient(135deg, var(--success-color), #1e7e34);
}
.badge-info {
  background: linear-gradient(135deg, var(--info-color), #117a8b);
}
.badge-warning {
  background: linear-gradient(135deg, var(--warning-color), #ff6a00);
}
.badge-danger {
  background: linear-gradient(135deg, var(--danger-color), #c82333);
}

/* Alert Styling */
.alert {
  border-radius: 10px;
  /* border-left: 4px solid; */
  padding: 1rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.alert::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -15px;
  bottom: -15px;
  font-size: 5rem;
  opacity: 0.1;
}

.alert-success {
  /* border-left-color: var(--success-color); */
  background-color: var(--success-bg);
  color: var(--success-color);
}

.alert-info {
  /* border-left-color: var(--info-color); */
  background-color: var(--info-bg);
  color: var(--info-color);
}

.alert-warning {
  /* border-left-color: var(--warning-color); */
  background-color: var(--warning-bg);
  color: var(--warning-color);
}

.alert-danger {
  /* border-left-color: var(--danger-color); */
  background-color: var(--danger-bg);
  color: var(--danger-color);
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}


/* .card-completed {
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-completed:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border-radius: 10px 10px 0 0 !important;
  padding: 1rem 1.5rem;
} */

.completed {
  background-color: #f8f9fa;
  padding: 1rem;
  margin: 0;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  border-left: 5px solid #28a745;
  border-radius: 5px;
  padding: 1rem;
}

.custom-card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: white;
}

.custom-card-body > div {
  flex: 1 1 40%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.custom-card-body span {
  display: block;
  margin-top: 0.25rem;
  font-weight: bold;
  color: #343a40;
}


.kadence-column590_2962fa-91 > .kt-inside-inner-col {
  background-color: transparent !important
}


.payment-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header-payment {
  background-color: #00964d !important;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.card-header-payment h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 2rem;
}

.card-header-payment p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.9;
}



.form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 150, 77, 0.15);
  /* border-color: #00964d !important; */

}



.btn-verify {
  background-color: #00964d;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 100%;
}

.btn-verify:hover {
  background-color:  #007a3e;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 150, 77, 0.3);
}

.btn-verify:active {
  transform: translateY(0);
}

.btn-verify i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.progress-circle {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: conic-gradient(
      #4caf50 0%, 
      #4caf50 var(--progress, 0%), 
      #e0e0e0 var(--progress, 0%)
  );
  position: relative;
}

.progress-inner {
  position: absolute;
  top: 41%;
  left: 41%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 64%;
  height: 64%;
  display: flex;
  align-items: center;
  justify-content: center;
}