@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: var(--text-clr);
  font-size: 18px;
  line-height: 1.2;
  background-color: rgba(239, 246, 255, 1);
  /* scroll-behavior: smooth; */
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: #eee;
}

body::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border: none;
  border-radius: 10px;
}

:root {
  scroll-behavior: inherit;
  --primary-clr: rgba(59, 130, 246, 1);
  --white: #fff;
  --black: rgba(5, 5, 5, 1);
  --secondary-clr: rgba(31, 41, 55, 1);
}

b,
strong {
  font-weight: 700;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 15px 0;
  color: var(--text-clr);
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--white);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  margin: 0 0 25px 0;
}

h1 .scnd-txt,
.h1-title .scnd-txt,
.scnd-txt {
  color: var(--secondary-clr);
}

.inr-bnr-sec h1,
.inr-bnr-sec .h1-title {
  color: var(--secondary-clr);
}

h2,
.h2-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  text-align: center;
  color: var(--primary-clr);
}

h3,
.h3-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
}

h4,
.h4-title {
  font-size: 18px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--primary-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--secondary-clr);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: #EBEBEB;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  color: var(--primary-clr);
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  height: 60px;
  padding: 0 20px;
  outline: none !important;
  font-size: 18px;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  border: none;
  background: #EBEBEB;
}

textarea {
  background-color: #EBEBEB;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  padding: 12px 20px;
  width: 100%;
  color: var(--primary-clr);
  height: 128px;
  resize: none;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  outline: none !important;
  border: none;
}

select {
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  width: 100%;
  padding: 0 20px;
  background: url(../images/sort-down.svg) no-repeat calc(100% - 34px) center #EBEBEB;
  background-size: 10px;
  padding-right: 50px;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  color: #B5B5B5;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type="submit"],
input[type="button"] {
  background: var(--primary-clr);
  color: var(--white);
  height: 50px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 11px;
  padding-left: 34px;
  padding-right: 34px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  outline: none !important;
  -webkit-transition: all 0.3sease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3sease-in-out;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  background: var(--primary-clr);
  color: var(--white);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

select:disabled,
select option:disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #B5B5B5 !important;
  opacity: 1 !important;
}

::-moz-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

:-moz-placeholder {
  opacity: 1;
  color: #B5B5B5;
}


/* === SC SCAN USER CSS === */


.sc-scan-main-inner {
  padding: 25px;
  background: rgba(239, 246, 255, 1);
  position: relative;
}

.ellipse-shade {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    gap: 0px;
    justify-content: flex-end;
 
    .border-line
{
    backdrop-filter: blur(50px) saturate(100%);
    filter: blur(0);
    background-color: rgba(255, 255, 255, 0.32);
    border-left: 1px solid #d5d5d5;
    width: 45px;
    height: 100%;
}

  img {
    width: 100%;
    height: 100%;
  }
}


/* --- LOGIN CSS SC SCAN --- */

.navbar-Sc-scan-login {
    background: transparent;
    padding: 15px 15px;
    margin-bottom: 22px;
    border-radius: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}
 
.logo-sec {
    width: 200px;
    img{
    width: 100%;
   }

}
.navbar-Sc-scan-inner {
  background: rgba(255, 255, 255, 0.3);
  padding: 15px 15px;
  margin-bottom: 22px;
  border-radius: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--primary-clr);
}

section.Sc-scan-login-wrap {
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 20px;
}

.Sc-scan-right {
  width: 50%;

  .Sc-scan-image
{
    width: 80%;
    height: 100%;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* animation: scrollLeft 2s linear infinite; */
    animation: scrollLeft 2s linear infinite alternate;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


  }

}



@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-10%);
  }
}



.Sc-scan-left {
  width: 50%;

  & form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0px 90px;
    gap: 20px;
    flex-direction: column;
    margin: auto 0;

    h1 {
      font-size: 30px;
      color: var(--primary-clr);
      text-align: start;
      margin-bottom: 0px;
    }

    h2 {
      font-size: 18px;
      font-weight: 400;
      color: var(--secondary-clr);
      text-align: start;
      margin-bottom: 0px;
      width: 100%;
    }

  }

  /* forgot password css */

  .forgotpass-wrap {
    display: flex;
    justify-content: end;

    a {
      color: var(--primary-clr);
      font-size: 16px;
      font-weight: 400;
    }
  }

  /* forgot password css */


  /* resent code css */

  .resent-verification-wp {

    p {
      font-size: 16px;
      font-weight: 400;
      color: var(--secondary-clr);
      text-align: start;
      margin-bottom: 13px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    a {
      color: var(--primary-clr);
    }

    span {
      color: var(--primary-clr);
    }

  }

  /* resent code css */


  /* otp input filed css */

  .otp-verification-input {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .otp-verification-input .inputs {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid rgba(31, 41, 55, 0.7);
    background: transparent;
    color: var(--primary-clr);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  .otp-verification-input .inputs::-webkit-outer-spin-button,
  .otp-verification-input .inputs::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* otp input filed css */


  .Sc-scan-left-field {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
    flex-wrap: wrap;

    img {
      font-size: 51px;
      font-weight: 600;
      color: #fff;
      width: 39px;
      position: absolute;
      padding: 0px;
      border-radius: 6px 6px 6px 6px;
      left: 4px;
      top: auto;
    }

  }

  .Sc-scan-left-field input[type="text"],
  .Sc-scan-left-field input[type="email"],
  .Sc-scan-left-field input[type="password"] {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(31, 41, 55, 0.7);
    outline: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(31, 41, 55, 0.7);
    padding: 0px 20px 0 44px;

    &::placeholder {
      color: rgba(31, 41, 55, 0.7);
    }

  }



  .password-eye {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    top: auto;
    right: 15px;
    border: none;
    align-items: center;
    background: none;
    justify-content: center;
    cursor: pointer;
    transition: .5s;
  }

  .password-eye .eye-close {
    background-image: url(../images/Sc-scan-images/login-page-imgs/eye-close.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
  }

  .password-eye .eye-open {
    background-image: url(../images/Sc-scan-images/login-page-imgs/eye-open.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
  }


}

/* --- LOGIN CSS SC SCAN --- */

/* ------ ALL POPUPS CSS ------- */

.passwordchanged-popup .modal-dialog {
  max-width: 455px;
}

.logout-popup .modal-dialog {
  max-width: 455px;
}

.ai-action-popup .modal-dialog {
  max-width: 700px;
}

.ai-action-popup h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  margin-bottom: 0px;
  background-color: var(--primary-clr);
  padding: 13px 14px;
  border-radius: 7px 7px 0 0;
}

.passwordchanged-popup .modal-content {
  background: rgb(255 255 255 / 43%);
  /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); */
  backdrop-filter: blur(38.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border: 1px solid var(--primary-clr);
}

.logout-popup .modal-content {
  background: var(--white);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}


.password-sucess-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  padding: 19px 10px;

  p {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-clr);
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
  }

  .align-password-btns {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .create-password-bns {
    display: flex;
    gap: 30px;
    justify-content: center;

    a {
      background: var(--primary-clr);
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 40px;
      display: flex;
      align-items: center;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease -in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease -in-out;
    }

  }

}

.common-inner-popup-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;

  h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-clr);
    text-align: left;
    margin-bottom: 0px;
  }



  p {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-clr);
    text-align: left;
    margin-bottom: 0px;
    line-height: 24px;
  }

  .Sc-scan-left-field {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;

    h3 {
      color: var(--black);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 0;
    }

    input[type="file"] {
      padding: 10px;
      border: 1px solid #8E8E8E;
      border-radius: 8px;
      font-weight: 400;
      font-size: 14px;
      color: #808080CC;
      cursor: pointer;
      width: 100%;

      &::file-selector-button {
        background-color: var(--primary-clr);
        padding: 8px 15px;
        margin-right: 10px;
        color: var(--white);
        border: none;
        border-radius: 5px;
        position: relative;
      }
    }

  }

  .upload-document-show {
    position: relative;

    img {
      width: 100%;
      height: 270px;
    }

    .delete-doc-tem {
      position: absolute;
      top: -21px;
      right: -17px;
      left: inherit;

      a {
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 30px;
        padding: 6px 2px;

        img {
          width: 33px;
          height: 24px;
        }

      }

    }

  }


  .align-password-btns {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .create-password-bns {
    display: flex;
    gap: 20px;
    justify-content: center;

    a:nth-child(1) {
      background: transparent;
      color: var(--primary-clr);
      font-weight: 500;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease -in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease -in-out
    }

    a:nth-child(2) {
      background: var(--primary-clr);
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 40px;
      display: flex;
      align-items: center;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease -in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease -in-out;
    }

  }

}

.close-btn-front:hover {
  color: var(--primary-clr);
  background: var(--white);
  opacity: 1 !important;
}

button.close {
  padding: 0;
  border: 0;
}

.close-btn-front {
  position: absolute;
  top: -30px;
  right: 2px;
  /* border: 2px solid #6A286B !important; */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  box-shadow: none;
  color: var(--primary-clr);
  background: var(--white);
  margin-left: auto;
  text-shadow: none;
  font-size: 26px;
  font-weight: 400;
  opacity: 1;
  line-height: 20px;
  z-index: 9;
}


/* ====== AI POPUP START ======== */

.AI-inner-popup-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;

  .Sc-scan-left-field {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--primary-clr);

    h3 {
      color: var(--black);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 0;
    }
  }

  select {
    width: 100%;
    height: 45px;
    border: 1px solid rgba(158, 158, 158, 1);
    outline: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
    padding: 0px 20px 0 20px;
    appearance: none;
    background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
    background-position: center right 14px;
    background-size: 15px;
    background-repeat: no-repeat;

    &::placeholder {
      color: rgba(158, 158, 158, 1);
    }
  }

  .Sc-scan-left-field input[type="text"],
  .Sc-scan-left-field input[type="email"],
  .Sc-scan-left-field input[type="password"] {
    width: 100%;
    height: 45px;
    border: 1px solid rgba(158, 158, 158, 1);
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
    padding: 0px 20px 0 20px;
    margin-bottom: 17px;

    &::placeholder {
      color: rgba(158, 158, 158, 1);
    }

  }



}

/* AI BOX FRAME SET */

.AI-form-wrap-main {


  .align-password-btns {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 20px;
  }

  .create-password-bns {
    display: flex;
    gap: 20px;
    justify-content: center;

    a {
      background: var(--primary-clr);
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 20px;
      display: flex;
      gap: 15px;
      align-items: center;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease -in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease -in-out;
    }

  }

}

.AI-box-frame-set {
  height: 600px;
  overflow-x: auto;
  padding-right: 10px;

  .data-fill-form-nap {
    display: flex;
    gap: 14px;
    border-bottom: 2px solid rgba(174, 205, 255, 0.4);
    position: relative;
    padding: 50px 0px 10px 0px;
    margin-top: 20px;
    justify-content: space-between;

    &::before {
      width: 65%;
      height: 20px;
      position: absolute;
      content: '';
      background-color: #fff;
      top: 20px;
      left: 0;
      right: 0;
      margin: auto;
      border: 1px solid #3b82f6;
      border-bottom: 0;
    }

    &::after {
      width: 13px;
      height: 13px;
      background-color: #3b82f6;
      position: absolute;
      content: '';
      top: 13px;
      left: 0;
      right: 0;
      margin: auto;
      transform: rotate(45deg);
      border-radius: 2px;
    }

    .Sc-scan-left-field {
      width: 100%;
      height: auto;
      position: relative;
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      flex-wrap: wrap;

      h3 {
        color: var(--black);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 0;
      }
    }

    select {
      width: 100%;
      height: 45px;
      border: 1px solid rgba(158, 158, 158, 1);
      outline: none;
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 0px 20px 0 20px;
      appearance: none;
      background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
      background-position: center right 14px;
      background-size: 15px;
      background-repeat: no-repeat;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }
    }

    .Sc-scan-left-field input[type="text"],
    .Sc-scan-left-field input[type="email"],
    .Sc-scan-left-field input[type="password"] {
      width: 100%;
      height: 38px;
      border: 1px solid rgba(158, 158, 158, 1);
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 0px 20px 0 20px;
      margin-bottom: 5px;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }

    }

    /* CHECKBOX AI CSS */

    .checkbox-AI-form {
      position: absolute;
      top: 0;
      left: 0;
    }

    .checkbox-AI-form input[type="checkbox"] {
      width: 20px;
      height: 18px;
      margin-right: 4px;
      cursor: pointer;
      appearance: none;
      border: 2px solid rgba(158, 158, 158, 1);
      /* background-color: #CE2127; */
      border-radius: 3px;
      outline: none;
      position: absolute;
      top: 0px;
      right: inherit;
      left: 0;
    }

    .checkbox-AI-form input[type="checkbox"]:checked {
      background-image: url(../images/Sc-scan-images/dashboard-imgs/QCR-images/blue-checked.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 20px;
      border: none;
    }

    /* CHECKBOX AI CSS */

  }


}

.AI-box-frame-set::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

.AI-box-frame-set::-webkit-scrollbar-track {
  background: rgba(243, 243, 243, 1);
}

.AI-box-frame-set::-webkit-scrollbar-thumb {
  background-color: var(--primary-clr);
  border-radius: 20px;
}


/* AI BOX FRAME SET */


/* ====== AI POPUP START ======== */

/* ------ ALL POPUPS CSS ------- */

/* ===== DASHBOARD CSS ======== */

/* SWITCH DROPDOWN */

.switch-dropdown {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 95px;
  padding-top: 5px;

  h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-clr);
    text-align: left;
    margin-bottom: 0px;
    cursor: pointer;
  }

}

.profile-dropdown-list {
  position: absolute;
  bottom: 0;
  top: 56px;
  width: 100%;
  height: 50px;
  right: 0px;
  background: #fff;
  box-shadow: 0px 4px 6px -2px #10182808;
  box-shadow: 0px 12px 16px -4px #10182814;
  padding: 10px 15px 10px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.view-profile {

  a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }

}

.rotate-up {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.switch-dropdown img {
  transition: transform 0.3s ease;
}


/* SWITCH DROPDOWN */

.logout-wrap-nav {
  display: flex;
  align-items: center;
  gap: 20px;

  h3 {
    font-size: 18px;
    color: var(--primary-clr);
    text-align: start;
    margin-bottom: 0px;
  }

}

section.Sc-scan-dashboardinner-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 20px 20px;
  gap: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 1);
  flex-direction: column;
}


.top-filters-left {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 22px;

  a:nth-child(1) {
    background: transparent;
    color: var(--primary-clr);
    font-weight: 500;
    /* border: 2px solid #4A6782; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 12px 18px;
    gap: 8px;
    display: flex;
    border: 1px solid var(--primary-clr);
    align-items: center;
    font-size: 16px;
    outline: none !important;
    -webkit-transition: all 0.3sease -in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease -in-out
  }

  a:nth-child(2) {
    background: transparent;
    color: var(--primary-clr);
    font-weight: 600;
    /* border: 2px solid #4A6782; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 12px 18px;
    gap: 8px;
    display: flex;
    border: 1px solid var(--primary-clr);
    align-items: center;
    font-size: 16px;
    outline: none !important;
    -webkit-transition: all 0.3sease -in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease -in-out;
  }

  a.active {
    background-color: var(--primary-clr);
    color: var(--white);

    img {
      filter: brightness(0) invert(46);
    }
  }


}

.batch-management-wrap {
  border: 2px dashed var(--primary-clr);
  width: 100%;
  padding: 20px 20px;
  border-radius: 8px;

  .batch-management-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    h2 {
      font-size: 28px;
      color: var(--black);
      text-align: center;
      margin-bottom: 0px;
      font-weight: 500;
    }

    img {
      margin: 0 auto;
      display: block;
    }

    p {
      font-size: 18px;
      font-weight: 400;
      color: var(--secondary-clr);
      text-align: center;
      margin-bottom: 0px;
      width: 100%;
    }

  }

}

.select-clients-btns {
  display: flex;
  justify-content: center;

  a {
    background: var(--primary-clr);
    color: var(--white);
    font-weight: 500;
    /* border: 2px solid #4A6782; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 12px 18px;
    gap: 8px;
    display: flex;
    border: 1px solid var(--primary-clr);
    align-items: center;
    font-size: 16px;
    outline: none !important;
    -webkit-transition: all 0.3sease -in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease -in-out
  }

}


/* breadcrumbs back btn */

.align-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 15px;
}

.batch-back-btns {
  display: flex;
  justify-content: flex-start;

  a {
    background: transparent;
    color: #000;
    font-weight: 400;
    padding: 12px 18px;
    font-size: 16px;
    border: 1px solid var(--primary-clr);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

}

/* breadcrumbs back btn */

/* breadcrumb */

.breadcrumb-wrap {
  border: 1px solid var(--primary-clr);
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
  width: max-content;

  ol {
    display: flex;
    align-items: center;
    gap: 5px;

    i {
      font-size: 14px;
      color: rgba(102, 112, 133, 1);
    }

    a {
      background: transparent;
      color: rgba(102, 112, 133, 1);
      font-weight: 400;
      padding: 12px 18px;
      font-size: 16px;
    }

    a.active {
      color: var(--primary-clr);
    }

    a:hover {
      color: var(--primary-clr);
    }

  }

}

/* breadcrumb */

/* client magager form */

.client-manager-main-wrap {
  display: flex;
  gap: 20px;


  .client-manager-form {
    width: 50%;

    .client-form {
      padding: 10px 10px;
    }

    /* LINE STEP CSS FORM */

    .linewap {
      position: relative;
      padding-left: 0;
      /* thoda zyada space line aur number ke liye */
    }

    .track-section-one {
      position: relative;
      margin-bottom: 0px;
      padding-left: 40px;
      padding-top: 4px;
      padding-bottom: 4px;
    }

        .track-section-one::before {
            content: '';
            position: absolute;
            left: 13px;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: #ccc;
            z-index: 0;
        }
        .track-section-one.complete::before {
            background: #007bff;
        }
        .track-section-one.active::before {
            background: linear-gradient( to bottom, #007bff 0%, #007bff 50%, #ccc 50%, #ccc 100% );
        }

    .track-section-one.active:last-child:before {
      background-color: #007bff;
      height: 0;
    }

    .track-section-one:last-child {
      padding-bottom: 0px;
      height: auto;
    }

    .imgae-track {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
    }

    .content-track {
      padding-bottom: 11px;
      padding-top: 6px;

      .document-data-shown {
        display: flex;
        align-items: center;
        justify-content: space-between
      }

      .datain-client {
        display: flex;
        flex-direction: column;
        gap: 13px;
        border: 1px solid #FAFAFA;
        padding: 8px 16px;
        border-radius: 6px;

        h4 {
          color: var(--black);
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }

        span {
          color: rgba(139, 141, 151, 1);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
        }

      }

    }

    .imgae-track span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background-color: #fff;
      color: rgba(134, 134, 134, 1);
      border-radius: 25%;
      border: 1px solid rgba(134, 134, 134, 1);
      font-weight: bold;
      font-size: 14px;
    }

.track-section-one.active .imgae-track span, .track-section-one.complete .imgae-track span {
    background-color: #007bff;
    border: none;
    color: var(--white);
}



    .track-section-one .content-track h3 {
      color: var(--secondary-clr);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: -4px;
      padding-bottom: 0px;
    }

    /* LINE STEP CSS FORM */


    /* CLIENT ADD FORM CSS */

    .create-new-client-form {
      border: 1px solid rgba(235, 235, 235, 1);
      padding: 18px 18px;
      margin-top: 14px;
      border-radius: 8px;

      .form-row-document {
        display: flex;
        align-items: center;
        gap: 10px;

        .type-here-wp {
          display: flex;
          align-items: baseline;
          gap: 10px;
          width: 100%;
        }


      }

      .Sc-scan-left-field {
        width: 100%;
        height: auto;
        position: relative;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 12px;
        flex-wrap: wrap;

        h3 {
          color: var(--black);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
        }
      }

.Sc-scan-left-field input[type="text"],
.Sc-scan-left-field input[type="number"],
.Sc-scan-left-field input[type="email"],
.Sc-scan-left-field input[type="password"] {
    width: 100%;
    height: 45px;
    border: 1px solid rgba(158, 158, 158, 1);
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
    padding: 0px 20px 0 20px;
    &::placeholder {
          color: rgba(158, 158, 158, 1);
        }

      }

      .Sc-scan-left-field textarea {
        width: 100%;
        height: 73px;
        resize: none;
        border: 1px solid rgba(158, 158, 158, 1);
        background: transparent;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 400;
        color: rgba(158, 158, 158, 1);
        padding: 8px 20px 0 20px;

        &::placeholder {
          color: rgba(158, 158, 158, 1);
        }

      }


      .remove-charcater-checked {
        display: flex;
        align-items: center;
        margin-top: 33px;
        gap: 15px;
      }

      input[type="checkbox"] {
        width: 22px;
        height: 22px;
        cursor: pointer;
        appearance: none;
        outline: 1px solid var(--primary-clr);
        border-radius: 7px;
        outline-offset: -2px;
        background-color: transparent;
      }


      input[type="checkbox"]:checked {
        accent-color: var(--primary-clr);
        appearance: auto;
        outline: none;
        border-radius: 10px;
      }

      .Sc-scan-left-field select {
        width: 100%;
        height: 45px;
        border: 1px solid rgba(158, 158, 158, 1);
        outline: none;
        background: transparent;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 400;
        color: rgba(158, 158, 158, 1);
        padding: 0px 20px 0 20px;
        appearance: none;
        background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
        background-position: center right 14px;
        background-size: 15px;
        background-repeat: no-repeat;

        &::placeholder {
          color: rgba(158, 158, 158, 1);
        }

      }

      .proceed-clients-btns {
        display: flex;
        justify-content: flex-start;

        a {
          background: var(--primary-clr);
          color: var(--white);
          font-weight: 500;
          /* border: 2px solid #4A6782; */
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          border-radius: 10px;
          padding: 12px 18px;
          gap: 8px;
          display: flex;
          border: 1px solid var(--primary-clr);
          align-items: center;
          font-size: 16px;
          outline: none !important;
          -webkit-transition: all 0.3sease -in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3sease -in-out
        }

      }

      a.cancel-btn-client {
        background: transparent;
        color: var(--primary-clr);
        font-weight: 500;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 12px 24px;
        display: flex;
        align-items: center;
        font-size: 16px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out;
      }

    }

    /* CLIENT ADD FORM CSS */





  }



  .client-manager-list {
    width: 50%;

    .client-listing-form {
      border: 1px solid var(--primary-clr);
      padding: 0;
      border-radius: 10px;
    }

    .heading-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--primary-clr);
      margin-bottom: 5px;
      border-radius: 8px 8px 0 0px;


      h3 {
        font-size: 16px;
        color: var(--white);
        text-align: start;
        margin-bottom: 0px;
        padding: 20px 14px;
      }

      form {
        width: 50%;
        height: auto;
        padding-right: 12px;

        input[type="text"] {
          height: auto;
          padding: 10px 35px 10px 10px;
          border-radius: 6px;
          background-color: var(--white);
          border: 1px solid #B0B0B0;
          color: rgba(171, 175, 177, 1);
          font-size: 14px;
          font-weight: 400;
          background-image: url(../images/Sc-scan-images/dashboard-imgs/Search.svg);
          background-repeat: no-repeat;
          background-position: center right 7px;
          background-size: 20px;

          &::placeholder {
            color: rgba(171, 175, 177, 1);
          }

        }
      }


    }

    .client-content-data {
      padding: 14px 14px;


      img {
        margin: 0 auto;
        display: block;
      }


      /* CLIENT DATLIST */

      .scroll-datalist-wrap {
        height: 600px;
        overflow-x: auto;
        padding-right: 10px;
      }


      .scroll-datalist-wrap::-webkit-scrollbar {
        height: 4px;
        width: 6px;
      }

      .scroll-datalist-wrap::-webkit-scrollbar-track {
        background: rgba(243, 243, 243, 1);
      }

      .scroll-datalist-wrap::-webkit-scrollbar-thumb {
        background-color: var(--primary-clr);
        border-radius: 20px;
      }


      .client-datalist {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(249, 252, 255, 1);
        padding: 15px 15px;
        border-radius: 10px;
        margin-bottom: 15px;
        cursor:pointer;

        .image-client {
          background: rgba(174, 205, 255, 1);
          padding: 10px;
          border-radius: 10px;

          img {
            width: 28px;
            height: 28px;
            object-fit: cover;
          }
        }
        .client-datalist:hover {
            background: rgba(59, 130, 246, 1);
        }

.datain-client {
    h3 {
            color: rgba(139, 141, 151, 1);
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            margin-bottom: 0;
          }

          span {
            color: rgba(139, 141, 151, 1);
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
          }

        }


      }

      .client-datalist.active {
        background: var(--primary-clr);

        .image-client {
          background: var(--white);
        }

        h3 {
          color: var(--white);
        }

        span {
          color: var(--white);
        }

      }

      /* CLIENT DATLIST */

    }

  }


}

/* client magager form */

/* ===================== TABLE CSS =================== */

.page-table {
  width: 100%;
  padding: 15px;

  .table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .table-responsive::-webkit-scrollbar-track {
    background: #eee;
  }

  .table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
    border: none;
    border-radius: 10px;
  }

  table {
    width: 100%;
    min-width: max-content;
    border: none;
    border-collapse: separate;
    border-spacing: 0;

    th {
      font-weight: 500;
      font-size: 14px;
      background-color: var(--primary-clr);
      text-transform: capitalize;
      color: var(--white);
      text-align: center;
      padding: 12px 15px;
      /* border: 1px solid #888; */
    }

    td {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      text-align: center;
      padding: 10px 15px;
      border-bottom: 1px solid rgba(142, 142, 142, 0.4);
    }

    span.size-count {
      color: var(--primary-clr);
    }

    span.completed-batch {
      color: #29A603;
    }

    span.inprogress-batch {
      color: #FFAD29;
    }

    span.failed-batch {
      color: #F43636;
    }

    tr:nth-child(odd) {
      background-color: #fff;
    }

    tr:nth-child(even) {
      background-color: #fff;
    }

    tr:first-child th:first-child {
      border-radius: 6px 0 0 0;
    }

    tr:first-child th:last-child {
      border-radius: 0px 6px 0px 0px;
    }

    tr th:first-child {

      input[type="checkbox"] {
        width: 22px;
        height: 22px;
        cursor: pointer;
        appearance: none;
        outline: 1px solid var(--white);
        border-radius: 7px;
        outline-offset: -2px;
        background-color: transparent;
      }


      input[type="checkbox"]:checked {
        accent-color: var(--primary-clr);
        appearance: auto;
        outline: none;
        border-radius: 7px;
      }

    }

    input[type="checkbox"] {
      width: 22px;
      height: 22px;
      cursor: pointer;
      appearance: none;
      outline: 1px solid var(--primary-clr);
      border-radius: 7px;
      outline-offset: -2px;
      background-color: transparent;
    }


    input[type="checkbox"]:checked {
      accent-color: var(--primary-clr);
      appearance: auto;
      outline: none;
      border-radius: 10px;
    }


  }

  select {
    width: 100%;
    height: 34px;
    /* border: 1px solid rgba(158, 158, 158, 1); */
    outline: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-clr);
    padding: 0px 20px 0 20px;
    appearance: none;
    background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
    background-position: center right 0px;
    background-size: 15px;
    background-repeat: no-repeat;

    &::placeholder {
      color: var(--secondary-clr);
    }

  }

  /* PAGINATION CSS */

  .batch-pagination {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .batch-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .batch-pagination ul li {
    list-style: none;
  }

  .batch-pagination ul li a {
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary-clr);
    border: 1px solid rgba(241, 241, 241, 1);
    border-radius: 4px;
    width: 30px;
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
  }

  .batch-pagination ul li a.active {
    color: #fff;
    background: var(--primary-clr);
    border: none;
  }

  .batch-pagination ul li a:hover {
    color: #fff;
    background: var(--primary-clr);
    border: none;
  }

  .batch-pagination ul li:first-child a {
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary-clr);
    border: none;
    border-radius: 0;
    background: none;
  }

  .batch-pagination ul li:last-child a {
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary-clr);
    border: none;
    border-radius: 0;
    background: none;
  }

  /* PAGINATION CSS */



}

/* ===================== TABLE CSS =================== */




/* ========= BTACH MANAGEMENT CSS ============== */


.batch-management-wrap-second {
  border: 2px dashed var(--primary-clr);
  width: 100%;
  padding: 20px 20px;
  border-radius: 8px;

  .create-batch-innerform {
    padding: 10px 100px;
  }

  .create-new-client-form {
    border: 1px solid rgba(235, 235, 235, 1);
    padding: 18px 18px;
    margin-top: 14px;
    border-radius: 8px;

    .form-row-document {
      display: flex;
      align-items: center;
      gap: 10px;

      .type-here-wp {
        display: flex;
        align-items: baseline;
        gap: 10px;
        width: 100%;
      }


    }

    .Sc-scan-left-field {
      width: 100%;
      height: auto;
      position: relative;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      justify-content: flex-start;
      margin-bottom: 12px;
      flex-wrap: wrap;
      flex-direction: column;

      h3 {
        color: var(--black);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 0;
      }
    }

    .Sc-scan-left-field input[type="text"],
    .Sc-scan-left-field input[type="email"],
    .Sc-scan-left-field input[type="password"] {
      width: 100%;
      height: 45px;
      border: 1px solid rgba(158, 158, 158, 1);
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 0px 20px 0 20px;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }

    }

    .Sc-scan-left-field textarea {
      width: 100%;
      height: 73px;
      resize: none;
      border: 1px solid rgba(158, 158, 158, 1);
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 8px 20px 0 20px;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }

    }


    .remove-charcater-checked {
      display: flex;
      align-items: center;
      margin-top: 33px;
      gap: 15px;
    }

    input[type="checkbox"] {
      width: 22px;
      height: 22px;
      cursor: pointer;
      appearance: none;
      outline: 1px solid var(--primary-clr);
      border-radius: 7px;
      outline-offset: -2px;
      background-color: transparent;
    }


    input[type="checkbox"]:checked {
      accent-color: var(--primary-clr);
      appearance: auto;
      outline: none;
      border-radius: 10px;
    }

    .Sc-scan-left-field select {
      width: 100%;
      height: 45px;
      border: 1px solid rgba(158, 158, 158, 1);
      outline: none;
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 0px 20px 0 20px;
      appearance: none;
      background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
      background-position: center right 14px;
      background-size: 15px;
      background-repeat: no-repeat;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }

    }

    .create-batch-btns {
      display: flex;
      justify-content: end;
    }

    .proceed-clients-btns {
      display: flex;
      justify-content: flex-start;

      a {
        background: var(--primary-clr);
        color: var(--white);
        font-weight: 500;
        /* border: 2px solid #4A6782; */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 12px 18px;
        gap: 8px;
        display: flex;
        border: 1px solid var(--primary-clr);
        align-items: center;
        font-size: 16px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out
      }

    }

    a.cancel-btn-client {
      background: transparent;
      color: var(--primary-clr);
      font-weight: 500;
      border: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease -in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease -in-out;
    }

    /* TOTAL COUNT CSS */

    .total-count-wrap {
      display: flex;
      gap: 20px;
      margin-top: 16px;

      .total-docs-wp {
        display: flex;
        align-items: center;
        gap: 10px;
        border-right: 1px solid rgba(142, 142, 142, 0.4);
        padding: 10px;
        padding-right: 20px;

        p {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }

        span {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
        }

      }

      .total-pages-wp {
        display: flex;
        align-items: center;
        gap: 10px;
        border-right: 1px solid rgba(142, 142, 142, 0.4);
        padding: 10px;
        padding-right: 20px;

        p {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }

        span {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
        }

      }

      .total-sizes-wp {
        display: flex;
        align-items: center;
        gap: 10px;
        border-right: 1px solid rgba(142, 142, 142, 0.4);
        padding: 10px;
        padding-right: 20px;

        p {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }

        span {
          color: var(--primary-clr);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
        }

      }


    }

    /* TOTAL COUNT CSS */


    /* UPLOADED DOCS */

    .uploaded-documents-list {
      padding-top: 23px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;

      .card-uploded-doc {
        border: 2px dashed var(--primary-clr);
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        background: rgba(249, 252, 255, 1);
        position: relative;
        width: 22%;

        p {
          color: var(--black);
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }

        .cross-icon {
          position: absolute;
          right: -8px;
          top: -11px;
        }

      }

    }

    /* UPLOADED DOCS */


  }

  .uploadfile-doc {
    border: 1px solid rgba(158, 158, 158, 1);
    padding: 14px 14px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;

    input[type="file"] {
      padding: 0px;
      border: none;
      border-radius: 8px;
      font-weight: 400;
      font-size: 14px;
      color: #808080CC;
      cursor: pointer;
      width: 22%;

      &::file-selector-button {
        background-color: var(--primary-clr);
        padding: 8px 15px;
        margin-right: 10px;
        color: var(--white);
        border: none;
        border-radius: 5px;
        position: relative;
      }
    }

  }


}

/* ========= BTACH MANAGEMENT CSS ============== */

/* ============ CUSTOM DROPDOWN CSS ============== */

.select-menu {
  margin-bottom: 24px;
  margin-top: 0;
  height: 0;
}

.select-menu .select-btn {
  width: 100%;
  height: 45px;
  border: 1px solid rgba(158, 158, 158, 1);
  outline: none;
  cursor: pointer;
  background: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(158, 158, 158, 1);
  display: flex;
  align-items: center;
  padding: 0px 15px;
  appearance: none;
  background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
  background-position: center right 14px;
  background-size: 16px;
  background-repeat: no-repeat;
}

.select-menu .options {
  position: relative;
  width: 100%;
  overflow-y: auto;
  z-index: -9;
  max-height: 170px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  align-items: center;
  background: #fff;
  margin-bottom: 5px;
  overflow-x: auto;
}

.select-menu .options {
  height: 160px;
  overflow-x: auto;
}


.select-menu .options::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

.select-menu .options::-webkit-scrollbar-track {
  background: rgba(243, 243, 243, 1);
}

.select-menu .options::-webkit-scrollbar-thumb {
  background-color: var(--primary-clr);
  border-radius: 20px;
}




.select-menu .options .option:hover {}

.select-menu .options .option .option-text:hover {
  color: #fff;
}


.select-menu .options .option .option-text {
  font-size: 16px;
  color: #3C3C3C;
  background: #fff;
  padding: 11px 14px;
  width: 100%;
  border-radius: 10px;
}

.select-menu .options .option .option-text:hover {
  font-size: 16px;
  color: #fff;
  background: var(--primary-clr);
  padding: 11px 14px;
  width: 100%;
  border-radius: 10px;
}



.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

/* ============ CUSTOM DROPDOWN CSS ============== */


/* =============== FILTERS BAND =============== */

.manual-project-fromband {
  padding: 2px 5px;

  & .filter-band-inn {
    padding: 8px 0px;
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .left-sec {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 25%;

      form {
        width: 95%;
        height: auto;
      }

      input[type="text"] {
        height: auto;
        padding: 10px 35px 10px 10px;
        border-radius: 6px;
        background-color: var(--white);
        border: 1px solid #B0B0B0;
        color: rgba(171, 175, 177, 1);
        font-size: 14px;
        font-weight: 400;
        background-image: url(../images/Sc-scan-images/dashboard-imgs/Search.svg);
        background-repeat: no-repeat;
        background-position: center right 7px;
        background-size: 20px;

        &::placeholder {
          color: #B0B0B0;
        }
      }

    }

    .right-sec {
      width: auto;
      display: flex;
      align-items: center;
      gap: 10px;

      a {
        background: var(--primary-clr);
        color: var(--white);
        font-weight: 500;
        /* border: 2px solid #4A6782; */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 12px 18px;
        gap: 8px;
        display: flex;
        border: 1px solid var(--primary-clr);
        align-items: center;
        font-size: 16px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out;
      }


    }



  }


  /* DATERANGE */

  .daterange-btn {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-clr);
    gap: 5px;
    position: relative;
  }

  .daterange-btn img {
    width: 20px;
    height: auto;
    position: absolute;
    left: 15px;
  }

  .daterange-btn input[type="text"] {
    padding: 0px 10px 0px 50px;
    font-size: 16px;
    height: 40px;
    font-weight: 600;
    outline: none;
    color: var(--primary-clr);
    border: none;
    border-radius: 30px;
    background-color: transparent;
    width: 152px;
    cursor: pointer;
  }

  .daterange-btn input[type="text"]::placeholder {
    color: var(--primary-clr);
  }



  .daterangepicker td.active,
  .daterangepicker td.active:hover {
    background-color: var(--primary-clr) !important;
  }

  .daterangepicker .drp-buttons .btn .btn-primary {
    background-color: var(--primary-clr) !important;
  }

  button.applyBtn.btn-primary {
    background-color: var(--primary-clr) !important;

  }


  /* DATERANGE */


  /* DATEPIKER CSS */

  .daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding-right: 8px;
    border: 1px solid #4A6782;
    padding: 12px;
    border-radius: 26px;
  }

  .daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
  }

  button.applyBtn.btn-primary {
    background-color: var(--primary-clr) !important;
  }

  /* DATEPIKER CSS */





}

/* =============== FILTERS BAND =============== */


/* ========== BTCH QCR PROCESS ============== */

.batch-QCR-process-wrap {
  border: 2px dashed var(--primary-clr);
  width: 100%;
  padding: 20px 20px;
  border-radius: 8px;
}

/* <!-- batch QCR process inner --> */

.batch-QCR-process-inner {
  display: flex;
  /* align-items: flex-start; */
  gap: 10px;


  /* heading QCR */
  .heading-qcr-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-clr);
    border-radius: 7px 7px 0 0px;
    padding: 12px 11px;

    h3 {
      color: var(--black);
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 0;
      color: var(--white);
    }

    i {
      color: var(--white);
      font-weight: 300;
      font-size: 14px;
    }

  }

  /* heading QCR */

  /* heading document crousel */

  .heading-doccrousel-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-clr);
    border-radius: 8px;
    padding: 12px 11px;
    margin-bottom: 0px;

    h3 {
      color: var(--black);
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 0;
      color: var(--white);
    }

  }

  .align-document-crousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .image-document-wrap {
    box-shadow: 0px 8.58px 8.58px 0px rgba(0, 0, 0, 0.1);
  }

  #document-slider .owl-nav {
    width: 100%;
    height: auto;
    padding-left: 20px;
    transition: .5s;
  }

  #document-slider2 .owl-nav {
    width: 100%;
    height: auto;
    padding-left: 20px;
    transition: .5s;
  }

  #document-slider3 .owl-nav {
    width: 100%;
    height: auto;
    padding-left: 20px;
    transition: .5s;
  }

  #document-slider .owl-nav button {
    width: 21px;
    height: 19px;
    box-shadow: none;
    position: absolute;
    top: -50px;
    left: inherit;
    right: 38px;
    z-index: 0;
    opacity: 0.8;
    background: transparent;
    outline: none;
    border-radius: 50%;
  }

  #document-slider2 .owl-nav button {
    width: 21px;
    height: 19px;
    box-shadow: none;
    position: absolute;
    top: -50px;
    left: inherit;
    right: 38px;
    z-index: 0;
    opacity: 0.8;
    background: transparent;
    outline: none;
    border-radius: 50%;
  }

  #document-slider3 .owl-nav button {
    width: 21px;
    height: 19px;
    box-shadow: none;
    position: absolute;
    top: -50px;
    left: inherit;
    right: 38px;
    z-index: 0;
    opacity: 0.8;
    background: transparent;
    outline: none;
    border-radius: 50%;
  }

  #document-slider .owl-nav button i {
    font-size: 14px;
    text-align: center;
    display: flex;
    font-weight: 500;
    justify-content: center;
    height: 100%;
    color: #fff;
    place-items: flex-end;
    align-items: center;
  }

  #document-slider2 .owl-nav button i {
    font-size: 14px;
    text-align: center;
    display: flex;
    font-weight: 500;
    justify-content: center;
    height: 100%;
    color: #fff;
    place-items: flex-end;
    align-items: center;
  }

  #document-slider3 .owl-nav button i {
    font-size: 14px;
    text-align: center;
    display: flex;
    font-weight: 500;
    justify-content: center;
    height: 100%;
    color: #fff;
    place-items: flex-end;
    align-items: center;
  }

  #document-slider .owl-nav button:last-child {
    right: 17px;
    left: inherit;
  }

  #document-slider2 .owl-nav button:last-child {
    right: 17px;
    left: inherit;
  }

  #document-slider3 .owl-nav button:last-child {
    right: 17px;
    left: inherit;
  }


  /* heading document crousel */


  /* big image QCR image sec css with componets */

  .big-image-document-QCR-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    .image-big-QCR {

      img {
        width: 100%;
        height: auto;
      }

    }

    .QCR-components-wrap {
      display: flex;
      flex-direction: column;
      gap: 10px;

      button {
        border: none;
        background: transparent;
        padding: 0;

        img {
          width: 59px;
          height: 44px;
        }

      }

    }


  }

  .percentage-complte-QRC-wrap {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    position: absolute;
    bottom: 83px;

    h4 {
      color: var(--black);
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 0;
    }

    span {
      color: var(--primary-clr);
    }

  }



  /* big image QCR image sec css with componets */



  /* content QCR */

  .content-qcr-process {
    padding: 10px 10px;



    .Sc-scan-left-field {
      width: 100%;
      height: auto;
      position: relative;
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 12px;
      flex-wrap: wrap;

      h3 {
        color: var(--black);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 0;
      }
    }



    .border-line {
      border: 1px solid #B0B0B0;
      width: 100%;
    }


    select {
      width: 100%;
      height: 45px;
      border: 1px solid rgba(158, 158, 158, 1);
      outline: none;
      background: transparent;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: rgba(158, 158, 158, 1);
      padding: 0px 20px 0 20px;
      appearance: none;
      background: url(../images/Sc-scan-images/dashboard-imgs/dropdown-gray.svg);
      background-position: center right 14px;
      background-size: 15px;
      background-repeat: no-repeat;

      &::placeholder {
        color: rgba(158, 158, 158, 1);
      }
    }

.Sc-scan-left-field input[type="text"],
.Sc-scan-left-field input[type="email"],
.Sc-scan-left-field input[type="date"],
.Sc-scan-left-field input[type="password"],
.Sc-scan-left-field input[type="number"] {
    width: 95%;
    height: 45px;
    border: 1px solid rgba(158, 158, 158, 1);
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
    padding: 0px 20px 0 20px;
    &::placeholder {
        color: rgba(158, 158, 158, 1);
      }

    }

    .index-form-btns {
      display: flex;
      justify-content: end;

      a {
        background: var(--primary-clr);
        color: var(--white);
        font-weight: 500;
        /* border: 2px solid #4A6782; */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 12px 18px;
        gap: 8px;
        display: flex;
        border: 1px solid var(--primary-clr);
        align-items: center;
        font-size: 16px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out;
      }

    }

    .start-indexscan-btns {
      display: flex;
      justify-content: space-between;
      margin-top: 45px;

      a {
        background: var(--primary-clr);
        color: var(--white);
        font-weight: 500;
        /* border: 2px solid #4A6782; */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 12px 18px;
        gap: 8px;
        display: flex;
        border: 1px solid var(--primary-clr);
        align-items: center;
        font-size: 16px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out;
      }

      a.active {
        background: var(--black);
      }

    }

    span.student-id {
      padding: 4px;
      background: rgba(0, 255, 29, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.first-name {
      padding: 4px;
      background: rgba(255, 216, 0, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.last-name {
      padding: 4px;
      background: rgba(255, 119, 0, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.date-birth {
      padding: 4px;
      background: rgba(0, 255, 255, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.addresss {
      padding: 4px;
      background: rgba(178, 0, 255, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.amount {
      padding: 4px;
      background: rgba(86, 185, 255, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.issue-date {
      padding: 4px;
      background: rgba(242, 0, 255, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }

    span.type {
      padding: 4px;
      background: rgba(0, 43, 255, 1);
      height: 45px;
      position: absolute;
      right: 10px;
      top: 27px;
      border-radius: 8px;
    }


    .alig-qcr-inner-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;

      .image-folder-qcr {

        img {
          width: 20px;
        }

        span {
          background: rgba(244, 54, 54, 1);
          padding: 5px;
          border-radius: 45px;
          position: absolute;
          bottom: 8px;
          left: 9px;
        }

        span.active {
          background: rgba(98, 255, 50, 1);
        }

      }


      .image-folderdelete-qcr {

        img {
          width: 25px;
        }

      }


      .heding-doc-qcr {
        margin-left: -54px;

        h3 {
          color: var(--primary-clr);
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          margin-bottom: 0;
        }
      }

    }


    /* CHECKBOX QCR CSS */

    .checkbox-green input[type="checkbox"] {
      width: 20px;
      height: 18px;
      margin-right: 4px;
      cursor: pointer;
      appearance: none;
      border: 2px solid #54B9A7;
      /* background-color: #CE2127; */
      border-radius: 3px;
      outline: none;
      position: absolute;
      top: 13px;
      right: -5px;
    }

    .checkbox-green input[type="checkbox"]:checked {
      background-image: url(../images/Sc-scan-images/dashboard-imgs/QCR-images/green-checked.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 17px;
    }

    .checkbox-yellow input[type="checkbox"] {
      width: 20px;
      height: 18px;
      margin-right: 4px;
      cursor: pointer;
      appearance: none;
      border: 2px solid #FFAD29;
      /* background-color: #CE2127; */
      border-radius: 3px;
      outline: none;
      position: absolute;
      top: 13px;
      right: -5px;
    }

    .checkbox-yellow input[type="checkbox"]:checked {
      background-image: url(../images/Sc-scan-images/dashboard-imgs/QCR-images/yellow-checked.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 17px;
    }

    .checkbox-red input[type="checkbox"] {
      width: 20px;
      height: 18px;
      margin-right: 4px;
      cursor: pointer;
      appearance: none;
      border: 2px solid #FF4B4B;
      /* background-color: #CE2127; */
      border-radius: 3px;
      outline: none;
      position: absolute;
      top: 13px;
      right: -5px;
    }

    .checkbox-red input[type="checkbox"]:checked {
      background-image: url(../images/Sc-scan-images/dashboard-imgs/QCR-images/red-checked.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 17px;
    }

    .page-list {
      display: flex;
      gap: 0px;
      flex-direction: column;
      justify-content: flex-start;
      padding-left: 0;

      a {
        color: var(--primary-clr);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        margin-bottom: 0;
        padding: 10px 10px;
        padding-left: 50px;
        width: 90%;
      }

      a.active {
        text-decoration: underline !important;
        background-color: rgba(244, 251, 255, 1);
      }

      a:hover {
        background-color: rgba(244, 251, 255, 1);
      }

    }

    /* CHECKBOX QCR CSS */


    /* accordian css */

    .accordion-button::after {
      display: none;
    }

    button.accordion-button {
      border-color: transparent !important;
      outline: 0 !important;
      box-shadow: none;
      padding: 9px 13px 10px 13px;
      border-radius: 8px;
    }

    button.accordion-button.collapsed {
      padding: 9px 13px 10px 13px;
      border-radius: 8px;
      width: 90%;
    }

    .accordion-body {
      padding: 9px 4px;
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--primary-clr);
      width: 90%;

      h3 {
        color: var(--white);
      }

      & .image-folder-qcr {
        img {
          filter: brightness(0) invert(4);
        }

        span {
          background: rgba(244, 54, 54, 1);
          padding: 5px;
          border-radius: 45px;
          position: absolute;
          bottom: 8px;
          left: 9px;
        }

        span.active {
          background: rgba(98, 255, 50, 1);
        }

      }

      & .image-folderdelete-qcr {
        img {
          filter: brightness(0) invert(4);
        }
      }

    }

    .accordion-item {
      border: none;
      position: relative;
    }


    /* accordian css */


  }

  /* content QCR */





  .work-item-panel-wrap {
    border: 1px solid var(--primary-clr);
    border-radius: 8px;
    padding: 0;
    width: 25%;
  }


  /* NEW CSS FOR COLLAPSE  */

  .work-item-panel-wrap {
    width: 25%;
    /* default full width */
    transition: width 0.3s ease;
    height: auto;
  }

  .work-item-panel-wrap.collapsed {
    width: 6%;
  }

  i.fas.fa-chevron-double-left.toggle-panel {
    margin-left: 15px;
  }

  /* NEW CSS FOR COLLAPSE  */

  .work-index-wrap {
    border: 1px solid var(--primary-clr);
    border-radius: 8px;
    padding: 0;
    width: 25%;
  }

  .document-process-wrap {
    width: 50%;
    position: relative;
  }

}

/* <!-- batch QCR process inner --> */



/* ========== WAVE ANIMATION CIRCLE PERCENTAGE =========== */

.water-round-container {
  /* margin: 0 auto; */
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--primary-clr);
  text-align: center;
  line-height: 50px;
  animation: water-waves linear infinite;
}

.water-wave1 {
  position: absolute;
  top: 40%;
  left: -25%;
  background: rgba(166, 200, 255, 1);
  opacity: 0.7;
  width: 200%;
  height: 200%;
  border-radius: 40%;
  animation: inherit;
  animation-duration: 5s;
}

.water-wave2 {
  position: absolute;
  top: 45%;
  left: -35%;
  background: var(--primary-clr);
  ;
  opacity: 0.5;
  width: 200%;
  height: 200%;
  border-radius: 35%;
  animation: inherit;
  animation-duration: 7s;
}

.water-wave3 {
  position: absolute;
  top: 50%;
  left: -35%;
  background: #0f7ae4;
  opacity: 0.3;
  width: 200%;
  height: 200%;
  border-radius: 33%;
  animation: inherit;
  animation-duration: 11s;
}

.water-round-container h3 {
  color: #195fd3;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  margin: 28px auto;
  justify-content: center;
  /* align-items: flex-start; */
  z-index: 9;
  position: relative;
}

@keyframes water-waves {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ========== WAVE ANIMATION CIRCLE PERCENTAGE =========== */


/* ========== BTCH QCR PROCESS ============== */




/* === SC SCAN USER CSS === */

.create-new-client-form input, .create-new-client-form select {
    color: #000 !important;
}
.page-table td{
    vertical-align:middle;
}