@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: Montserrat;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 150px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}


body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #06C169 0%, #AEE6CB 100%);
  border: 1px solid #fff;
  border-radius: 5px;
}



.clr {
  clear: both;
}


/* ------- New login css ----- */


.login-wrap {
  width: 100%;
  height: auto;
  background: #fff;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  padding: 42px 85px;
  align-items: center;
}

.login-in {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: flex;
  /* gap: 41px; */
  justify-content: space-between;
}

.myka-logo {
  padding: 81px 32px;
  background: linear-gradient(180deg, #06C169 0%, #AEE6CB 100%);
  border-radius: 20px;
}

.myka-login-logo {
  width: 40%;
}

.myka-logo img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  margin: 0 auto;
  display: flex;
}

.myka-login-form-wrap {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}


.form-logo img {
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
}

.form-logo h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.myka-login-form-wrap form {
  width: 100%;
  height: auto;
  padding: 35px;
}


.myka-login-form-wrap label {
  border: none;
  outline: none;
  width: 100%;
  height: 48px;
  justify-content: flex-start;
  margin: 0;
  gap: 7px;
  background: #fff;
  border-radius: 0px 30px 30px 0px;
  position: relative;
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}


.myka-login-form-wrap label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  cursor: pointer;
  appearance: none;
  border: 2px solid #06C169;
  border-radius: 6px;
  outline: none;
}

.myka-login-form-wrap label input[type="checkbox"]:checked {
  background-image: url(../images/myka-imgs/checked-login.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-color: transparent;
  border: none;
}



.myka-login-form-wrap label img {
  font-size: 65px;
  font-weight: 600;
  color: #fff;
  width: 49px;
  /* height: fit-content; */
  /* background: #E50916; */
  position: absolute;
  padding: 0px;
  border-radius: 6px 6px 6px 6px;
  left: 0px;
  top: auto;
}

.myka-login-form-wrap label input[type="text"] {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 30px;
  padding-left: 60px;
  /* margin-bottom: 6px; */
  padding-right: 41px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  box-shadow: 0px 0px 3px 0px #00000040;
}

.myka-login-form-wrap label input[type="password"] {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;
  outline: none;
  padding-left: 60px;
  /* margin-bottom: 6px; */
  padding-right: 40px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  box-shadow: 0px 0px 3px 0px #00000040;
}

.myka-login-form-wrap label input[type="password"]::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.myka-login-form-wrap label input[type="text"]::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}


.myka-login-btn {
  width: 100%;
  height: 49.428px;
  border-radius: 35px;
  /* background: #626CFE; */
  background: #06C169;
  color: #fff !important;
  font-size: 17px;
  border: none;
  display: flex;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

label.login-labl {
  -webkit-text-fill-color: transparent;
  align-items: baseline;
  display: flex;
  font-size: 14px;
  align-items: center;
  margin-top: 0px;
  justify-content: end;
}

label.login-labl p.remeber-me-title {
  font-size: 15px;
  font-weight: 500;
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}





.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  top: 11px;
  right: 11px;
  border: none;
  align-items: center;
  background: none;
  justify-content: center;
  cursor: pointer;
  transition: .5s;
}

.eye-close {
  background-image: url(../images/myka-imgs/eye-close.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.eye-open {
  background-image: url(../images/myka-imgs/eye-open.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

/* ------- New login css ----- */


/* --------- COMMON MODAL CSS --------- */

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 23px;
  width: 100%;
  height: auto;
}

.modal-dialog {
  max-width: 420px;
  margin: 0.0rem auto;
  display: flex;
  height: 100%;
  align-items: center;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 15px;
  outline: 0;
}

.close-btn-front:hover {
  background: linear-gradient(180deg, #4CD293 0%, #06C169 105.56%);
  color: #fff;
  opacity: 1 !important;
}

.close-btn-front {
  position: absolute;
  top: 11px;
  right: 14px;
  /* border: 2px solid #6A286B !important; */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  box-shadow: none;
  color: #fff;
  background: linear-gradient(180deg, #4CD293 0%, #06C169 105.56%);
  margin-left: auto;
  text-shadow: none;
  font-size: 26px;
  font-weight: 400;
  opacity: 1;
  line-height: 27px;
  z-index: 9;
}

td.action-btns-wp a {
  margin-left: 4px;
}

/* --------- COMMON MODAL CSS --------- */


/* -------------------  INFLU DROPDOWN CHECKLIST CSS -------- */

.quotes-list {
  width: max-content;
}

.influ-btns-label {
  position: relative;
  color: #666666;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 500;
  gap: 19px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.influ-btns form label input[type=checkbox] {
  /* margin-left: auto; */
  color: #fff;
  accent-color: #06C169;
}


.influ-btns form input[type=date]::-webkit-datetime-edit-text {
  -webkit-appearance: none;
  display: none;
}

.influ-btns form input[type=date]::-webkit-datetime-edit-month-field {
  -webkit-appearance: none;
  display: none;
}

.influ-btns form input[type=date]::-webkit-datetime-edit-day-field {
  -webkit-appearance: none;
  display: none;
}

.influ-btns form input[type=date]::-webkit-datetime-edit-year-field {
  -webkit-appearance: none;
  display: none;
}

/* -------------------  INFLU DROPDOWN CHECKLIST CSS -------- */


/* ---------CONGRATULATION CSS ----- */

.Congratulations-form-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
}

.Congratulations-form-wrap {
  margin: 0;
  padding: 10px;
}

.Congratulations-form-wrap img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.Congratulations-form-wrap h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 8px 0 0px 0;
}

.Congratulations-form-wrap p {
  font-size: 14px;
  color: #6F6F6F;
  font-weight: 500;
  text-align: center;
}

.congratulation-btn {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.congratulation-btn a {
  width: 45%;
  height: 44.428px;
  border-radius: 30px;
  color: #fff !important;
  background: linear-gradient(90deg, #4CD293 0%, #06C169 100%);
  font-size: 16px;
  border: none;
  display: flex;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* ---------CONGRATULATION CSS ----- */

/* ---------DELETE / ACTIVE / SUSPEND  POPUP CSS ----- */

.delete-active-suspend-form-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
}

.delete-active-suspend-form-wrap {
  margin: 0;
  padding: 10px;
}

.delete-active-suspend-form-wrap img {
  width: 70px;
  height: 95px;
  object-fit: contain;
}

.delete-active-suspend-form-wrap h3 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin: 8px 0 0px 0;
}

.delete-active-suspend-form-wrap p {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  text-align: center;
}

.delete-active-suspend-btn {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.delete-active-suspend-btn a:nth-child(1) {
  width: auto;
  height: 44.428px;
  border-radius: 30px;
  color: #fff !important;
  background: linear-gradient(90deg, #4CD293 0%, #06C169 100%);
  font-size: 16px;
  padding: 14px 35px;
  border: none;
  display: flex;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.delete-active-suspend-btn input#update-btn {
  width: auto;
  height: 44.428px;
  border-radius: 30px;
  color: #fff !important;
  background: linear-gradient(90deg, #4CD293 0%, #06C169 100%);
  font-size: 16px;
  padding: 11px 35px;
  border: none;
  display: flex;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.delete-active-suspend-btn a:nth-child(2) {
  width: 34%;
  height: 44.428px;
  border-radius: 30px;
  color: #000 !important;
  border: 1px solid #06C169;
  background: transparent;
  font-size: 16px;
  display: flex;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.active-delete-suspend-dialog {
  max-width: 384px;
  margin: 0.0rem auto;
  display: flex;
  height: 100%;
  align-items: center;
}

/* ---------DELETE / ACTIVE / SUSPEND  POPUP CSS ----- */

/* ------------ PROFILE VIEW POPUP CSS -------------- */

.profie-view-wp {
  padding-top: 15px;
  padding-bottom: 15px;

  label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #333333;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    background: #F4F4F4;
    font-weight: 500;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
  }

  input[type="email"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #333333;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    background: #F4F4F4;
    font-weight: 500;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
  }

  ::placeholder {
    color: #333333;
    font-size: 14px;
  }

}

.profie-view-wp img {
  border-radius: 51px;
  border: 3px solid #06C169;
  padding: 3px 3px 3px 3px;
  width: 30% !important;
  object-fit: cover;
  margin-bottom: 15px;
}




/* ------------ PROFILE VIEW POPUP CSS -------------- */


/* -------------- EDIT CONATCT VIEW POPUP CSS -------------  */

#edit-contact-view-query .modal-dialog {
  max-width: 642px;
}

.edit-form-wrap-innner p {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  padding-top: 10px;
}

.edit-form-wrap-innner {
  padding-top: 15px;
  padding-bottom: 15px;

  h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-align: left;
  }

  label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #333333;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
  }

  input[type="password"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #333333;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
  }

  ::placeholder {
    color: #333333;
    font-size: 14px;
  }

  .edit-contact-btn {
    display: flex;
    justify-content: flex-start;
    gap: 13px;
    margin-bottom: 19px;

    a {
      width: auto;
      height: 44.428px;
      border-radius: 30px;
      color: #fff !important;
      background: linear-gradient(90deg, #4CD293 0%, #06C169 100%);
      font-size: 16px;
      padding: 22px;
      border: none;
      display: flex;
      font-weight: 500;
      text-align: center;
      align-items: center;
      justify-content: center;
    }

  }

}

/* -------------- EDIT CONATCT VIEW POPUP CSS -------------  */


/* ------------- MESSAGE AND NOTES POPUP CSS ------------ */

#message-query .modal-dialog {
  max-width: 550px;
}

#notes-query .modal-dialog {
  max-width: 550px;
}

.notes-message-formwrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  box-shadow: 0px 0px 7px 0px #93939340;
  padding: 5px 13px;
  margin-top: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.notes-message-formwrap textarea {
  width: 100%;
  height: 159px;
  padding: 7px 9px;
  /* border-radius: 18px; */
  text-align: left;
  color: #444444;
  resize: none;
  position: relative;
  /* padding-right: 84px; */
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #C0C0C0;
  margin-bottom: -5px;
  border-radius: 7px;
}

.notes-message-formwrap p {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  padding-top: 21px;
  color: #333333;
  margin-bottom: 0;
}

.notes-message-formwrap span {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}


.notes-message-formwrap ul {
  padding: 17px;
  margin-bottom: 0;
}

.notes-message-formwrap li {
  padding-left: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  padding-bottom: 10px;
  color: #333333;
}

/* ------------- MESSAGE AND NOTES POPUP CSS ------------ */


/* ----------- CREATE POSTION POPUP CSS ------------- */

#create-postion-query .modal-dialog {
  max-width: 534px;
}

.create-postion-form-wrap h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 23px;
}

.create-postion-form-wrap {
  margin: 0;
  padding: 10px;
  width: 100%;
  height: 100%;
  text-align: center;

  label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #444444;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #C0C0C0;
    border-radius: 7px;
  }

  input[type="email"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #444444;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #C0C0C0;
    border-radius: 7px;
  }

  input[type="password"] {
    width: 100%;
    height: 47px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #444444;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #C0C0C0;
    border-radius: 7px;
  }

  ::placeholder {
    color: #A8A8A8;
    font-size: 14px;
  }


  .border-warp {
    border: 1px solid #C0C0C0;
    border-radius: 10px;
    padding: 14px 14px 4px 14px;
    margin-bottom: 16px;
  }

  .select-credital {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 16px;

    input[type="radio"] {
      appearance: none;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #06C169;
      cursor: pointer;
      outline: 2px solid #06C169;
      outline-offset: 2px;
    }

    input[type="radio"]:checked {
      width: 10px;
      height: 10px;
      border: none;
      padding: 10px;
      outline: none;
      background: #06C169;
    }

    p {
      color: #444444;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 0;
    }


    .one-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
    }
  }

  .creditail-btns-popup {
    display: flex;
    justify-content: center;

    a {
      border-radius: 30px;
      background: transparent;
      color: #fff;
      text-align: center;
      padding: 10px 35px;
      background-color: #06C169;
      font-size: 15px;
      width: 30%;
      font-weight: 600;
    }

    button {
      border-radius: 30px;
      background: transparent;
      color: #fff;
      text-align: center;
      outline: none;
      border: none;
      padding: 10px 35px;
      background-color: #06C169;
      font-size: 15px;
      width: 30%;
      font-weight: 600;
    }
  }


}





/* ----------- CREATE POSTION POPUP CSS ------------- */


/* --------------- VALIDATION ALERT CSS --------------- */

span#position-error {
  color: red;
  text-align: left;
}

span#email-error {
  color: red;
  text-align: left;
}


span#password-error {
  color: red;
  text-align: left;
}


/* --------------- VALIDATION ALERT CSS --------------- */



/* --------- New css For Front Popup ----- */


/* ADMIN NAVBAR & SIDEBAR CSS */

.admin-icon {
  flex-basis: auto;
  height: 100%;
  width: auto;
  margin-left: auto;
  font-size: 13px;
  color: #fff;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.admin-icon img {
  width: 42px;
  margin: 0px 0 -1px 0;
  border-radius: 30px;
  border: 1px solid #fff;
}

.admin-icon svg {
  width: 30px;
  height: auto;
}

.admin-icon svg g path {
  fill: #fff;
}

.create-postion-btn {
  background: #fff;
  color: #06C169 !important;
  font-weight: 600;
  padding: 9px 19px 9px 17px;
  border-radius: 30px;
  font-size: 14px;
  height: 44px;
  margin-left: 8px;
  border: none;
  gap: 2px;
  outline: none;
  display: flex;
  position: absolute;
  right: 82px;
  align-items: center;
}

/* ADMIN NAVBAR & SIDEBAR CSS */


/* -------- INNER BAND PAGES CSS -------- */

.influ-strip-2 {
  width: 100%;
  height: auto;
  background: transparent;
  padding: 10px;
  border-left: 1px solid #E2E2E2;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  border-radius: 2px;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.influ-btns form {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.influ-btns {
  flex-basis: 100%;
}

.main-wrap-form {
  display: flex;
}

.influ-search {
  flex-basis: 37%;
}

.search-box {
  background-color: #fff;
  margin: 0;
  border-radius: 32px;
  width: 100%;
  border: 1px solid #E2E2E2;
}

.search-box .row {
  align-items: center;
  padding: 10px 20px;
}

.search-box .row input {
  flex: 1;
  height: 18px;
  background: #fff;
  border: 0;
  padding: 0 0 0 11px;
  outline: 0;
  font-weight: 500;
  font-size: 13px;
  color: #333;
}

.search-box .row button {
  border: 0;
  background: 0;
  margin: 0 6px 0 0;
}

/* -------- INNER BAND PAGES CSS -------- */

/* --------- ALL FILTER BTNS CSS --------- */

.location-btn {
  background: #fff;
  display: block;
  color: #fff !important;
  font-weight: 500;
  max-width: 126px;
  height: 44px;
  width: 100%;
  padding: 9px 12px;
  /* border-radius: 5px !important; */
  /* border-radius: 50px; */
  border-radius: 30px;
  background: linear-gradient(271.5deg, #ED8A00 1.16%, #9D0C0C 95.09%);
  font-size: 14px;
  outline: none;
  border: none;
  margin-left: 10px;
  gap: 5px;
  display: flex;
  cursor: pointer;
  align-items: center;
}

.addguard-btn {
  background: #fff;
  display: block;
  color: #fff !important;
  font-weight: 500;
  /* max-width: 140px; */
  height: 44px;
  width: max-content;
  padding: 10px 17px;
  /* border-radius: 5px !important; */
  /* border-radius: 50px; */
  border-radius: 30px;
  background: linear-gradient(271.5deg, #ED8A00 1.16%, #9D0C0C 95.09%);
  font-size: 14px;
  outline: none;
  border: none;
  margin-left: 10px;
  gap: 8px;
  display: flex;
  cursor: pointer;
  align-items: center;
}

.influ-btn {
  background: #06C169;
  display: block;
  color: #fff !important;
  font-weight: 600;
  border: 2px solid #059A54;
  padding: 9px 19px 10px 17px;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  height: 44px;
  margin-left: 8px;
  gap: 8px;
  display: flex;
  cursor: pointer;
  align-items: center;
}

/* --------- ALL FILTER BTNS CSS --------- */

/* --------- NEW STRIP CSS ------------ */

.select-alldata {
  display: flex;
  gap: 23px;
  justify-content: end;
  padding-right: 14px;
}

.select-alldata a {
  color: #06C169;
  font-weight: 600;
  font-size: 14px;
}

/* --------- NEW STRIP CSS ------------ */





/* =========== TABLE CSS --------------- */


/* -- TABLE CSS --- */

.influ-table {
  width: 100%;
  height: auto;

  table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0 9px;
    height: auto;
    text-align: center;

    tr th:nth-child(1) {
      /* border-radius: 14px 0px 0px 14px; */
    }

    tr th:last-child {
      /* border-radius: 0px 14px 14px 0px; */
    }

    tr td:nth-child(1) {
      border-radius: 14px 0px 0px 14px;
    }

    tr td:last-child {
      border-radius: 0px 14px 14px 0px;
    }

    tr {
      background: #fff;
    }

    /* tr th:nth-child(1) {
      background: #fff;
      border-radius: 14px 0px 13px 17px;
    } */

    tr th {
      font-size: 14px;
      border-bottom: 1px solid #E2E2E2;
      border-top: 1px solid #E2E2E2;
      border-radius: 0px;
      font-weight: 500;
      /* border: 1px solid #E2E2E2; */
      padding: 17px 50px;
      color: #fff;
      background: #06C169;
      border-right: none;
    }

    tr th:first-child {
      border-left: 1px solid #E2E2E2;
    }

    tr th:last-child {
      border-right: 1px solid #E2E2E2;
    }

    tr td:first-child {
      border-left: 1px solid #E2E2E2;
    }

    tr td:last-child {
      border-right: 1px solid #E2E2E2;
    }

    tr td {
      border-bottom: 1px solid #E2E2E2;
      border-top: 1px solid #E2E2E2;
      font-size: 14px;
      font-weight: 600;
      color: #666666;
      padding: 10px;
      vertical-align: middle;
    }

    tr td.profile-picture img {
      width: 55px;
      height: auto;
    }


    tr:last-child {
      border-bottom: 1px solid #E5E5E5;
    }

  }
}

.table-responsive {
  overflow-x: auto;
  padding-bottom: 0px;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #eaeaea;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #06C169;
  border-radius: 20px;
}

.sr-no-checkbox {
  display: flex;
  align-items: center;


  input[type="checkbox"] {
    width: 19px;
    height: 18px;
    margin-right: 12px;
    margin-left: 13px;
    cursor: pointer;
    appearance: none;
    border: 2px solid #06C169;
    /* background-color: #CE2127; */
    border-radius: 3px;
    outline: none;
  }

  input[type="checkbox"]:checked {
    background-image: url(../images/myka-imgs/checked-login.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
  }

  p {
    font-size: 13px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0;
    padding: 10px;
    vertical-align: middle;
  }

}

.resolved-sign span {
  font-size: 14px;
  font-weight: 600;
  color: #059A54;
}

.pending-sign span {
  font-size: 14px;
  font-weight: 600;
  color: #E21919;
}

/* -- TABLE CSS --- */

/* ------------------  NORMAL TOP FILTER BTN CSS -------- */

.quotes {
  width: auto;
  min-width: 134px;
  max-width: 100%;
  position: relative;
  background: #fff;
  border-radius: 30px;
  margin-left: 10px;
}

.dropdown-btn {
  height: 100%;
  /* padding: 10px; */
  padding: 9px 15px;
  position: relative;
  font-size: 14px;
  border-radius: 30px;
  color: #fff;
  border: none;
  border: 2px solid #059A54;
  font-weight: 600;
  height: 44px;
  cursor: pointer;
  background: #06C169;
  max-width: 206px;
  text-align: left;
  /* border-radius: 3px; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.dropdown-btn i {
  margin-left: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.dropdown {
  padding: 0px;
  background-color: #ffffff;
  border-radius: 5px;
  margin-top: 5px;
  position: absolute !important;
  display: none;
  right: 0 !important;
  width: -webkit-fill-available;
  text-align: left !important;
  border: 1px solid #E8E8E8;
  z-index: 1;
  box-shadow: 0px 4px 4px 0px #00000040;

  /* flex-direction: column; */
}

.quotes-list {
  /* width: max-content; */
  width: auto;
}

.influ-btns-label {
  position: relative;
  /* margin: 0; */
  z-index: 1;
  color: #333333;
  margin-right: 5px;
  /* border-bottom: 1px solid #FEB8FF; */
  font-weight: 400;
  padding: 9px 15px;
  /* padding: 4px; */
  gap: 19px;
  width: 100%;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
}

/* MORE FILTER BTNS CSS */

.influ-dropdown {
  position: relative;
}

.influ-more-drop-list {
  position: absolute;
  left: 0;
  padding: 10px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 5px;
  display: none;
  width: max-content;
}

.influ-more-drop-list-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* MORE FILTER BTNS CSS */

/* ---------------- DATERANGE FILTER CSS --------- */

.broker-date {
  /* width: 150px; */
  width: 226px;
  height: 44px;
  margin-left: 7px;
  border-radius: 30px;
  background: #06C169;
  border: 2px solid #059A54;
}

.broker-date input[type="text"] {
  width: 100%;
  height: auto;
  padding: 11px 13px 10px 43px;
  /* border: 1px solid #626CFE; */
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  /* line-height: 4px; */
  font-size: 14px;
  color: #fff;
  appearance: none;
  background: url(../images/myka-imgs/daterange-icon.svg);
  background-size: 18px;
  background-position: left 16px center;
  background-repeat: no-repeat;
}


.broker-date input::placeholder {
  color: #fff;
}

/* ---------------- DATERANGE FILTER CSS --------- */

/* -----------------  ABOUT US / TERMS AND CONDITIONS / PRIVACY POLICY --------- */



.terms-wrap {
  width: 100%;
  height: auto;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 15%);
  padding: 20px;
}

.view-product-wrap {
  width: 100%;
  height: auto;
  /* box-shadow: 0px 3px 6px rgb(0 0 0 / 15%); */
  padding: 20px;
}

.terms-wrap h1 {
  font-size: 24px;
  color: #06C169;
  font-weight: 600;
  margin: -2px 0 15px 0;
}

.terms-wrap h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding-left: 4px;
}

.all-selected-aboutus p {
  padding: 8px 5px;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  border-radius: 8px;
  margin: 0;
}

.all-selected-aboutus {
  border-radius: 6px;
  border: 1px solid var(--formbdr, #C0C0C0);
  background: #FFF;
  padding: 17px 15px;
}

.all-selected-aboutus img {
  width: 390px;
  height: 241px;
  object-fit: cover;
}

.terms-wrap h1:first-child {
  /* margin: 0px 0 20px 0; */
}

.terms-wrap form {
  width: 100%;
  height: auto;
}

.term-input {
  width: 100%;
  height: auto;
  padding: 10px;
  outline: none;
  font-size: 16px;
  /* font-family: 'Aleo', serif; */
  border: 1px solid rgba(79, 79, 79, 0.25);
  background: #FFFFFF;
  border: 1px solid rgba(23, 23, 72, 0.2);
  border-radius: 5px !important;
  cursor: auto;
}

.term-txt {
  width: 100%;
  height: 200px;
  padding: 10px;
  outline: none;
  /* font-family: 'Aleo', serif; */
  border: 1px solid rgba(79, 79, 79, 0.25);
  background: #FFFFFF;
  border: 1px solid rgba(23, 23, 72, 0.2);
  border-radius: 5px !important;
  cursor: auto;
}

.terms-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 14px;
}

.terms-btn {
  width: auto;
  border: none;
  padding: 8px 50px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  margin: 0px 5px;
}

.terms-btn:first-child {
  background: #EFEFEF;
  color: #000;
}

.abouts-us-btnwrap {
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  margin: 16px 0 0 0;
}

.about-edit-btn {
  height: 48px;
  background: #000000;
  color: #fff !important;
  border-radius: 40px;
  align-items: center;
  width: auto;
  border: none;
  text-align: center;
  padding: 12px 42px 12px 42px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0px 5px;
}

.about-save-btn {
  height: 48px;
  color: #fff !important;
  border-radius: 40px;
  align-items: center;
  width: auto;
  border: none;
  text-align: center;
  padding: 12px 42px 12px 42px;
  background: #06C169;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0px 5px;
}



/* -----------------  ABOUT US / TERMS AND CONDITIONS / PRIVACY POLICY --------- */

/* ------------------  NORMAL TOP FILTER BTN CSS -------- */

/* PAGINATION CSS */

.influ-pagi {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 35px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul {
  padding: 0px;
  margin: 0;
  display: inline-block;
}

.influ-pagi ul li {
  list-style: none;
  display: inline-block;
  margin: 0 4px;
}

.influ-pagi ul li a {
  font-size: 15px;
  font-weight: 500;
  transition: .5s;
  color: #666666;
  border: 1px solid #06C169;
  width: 45px;
  border-radius: 42px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul li:first-child a {
  font-size: 15px;
  font-weight: 500;
  transition: .5s;
  color: rgba(0, 0, 0, 0.80);
  border: 1px solid rgba(0, 0, 0, 0.80);
  width: 45px;
  border-radius: 42px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul li:last-child a {
  font-size: 15px;
  font-weight: 500;
  transition: .5s;
  color: rgba(0, 0, 0, 0.80);
  border: 1px solid rgba(0, 0, 0, 0.80);
  width: 45px;
  border-radius: 42px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul li:first-child a:hover {
  color: #666666;
  background: #E5E5E5;
  transition: .5s;
}

.influ-pagi ul li:first-child a {
  color: #666666;
  background: #f3f3f3;
  transition: .5s;
  border: none;
}

.influ-pagi ul li:last-child a:hover {
  color: #666666;
  background: #E5E5E5;
  transition: .5s;
}

.influ-pagi ul li:last-child a {
  color: #666666;
  background: #f3f3f3;
  transition: .5s;
  border: none;
}

.influ-pagi ul li.active a {
  color: #fff;
  background: linear-gradient(180deg, #06C169 0%, #06C169 100%);
  transition: .5s;
}

.influ-pagi ul li a:hover {
  color: #fff;
  background: linear-gradient(180deg, #06C169 0%, #06C169 100%);
  transition: .5s;
}

.influ-pagi form {
  position: absolute;
  right: 0;
}


.show-result-pagination-wp select {
  width: 100%;
  height: 100%;
  color: #666666;
  font-size: 14px;
  border-radius: 6px 6px 6px 6px;
  outline: none;
  border: 2px solid #D2D2D2;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  padding: 9px 42px 9px 21px;
  border-radius: 40px;
  background: url(../images/myka-imgs/sidebar-icons/select-drop-icon.png);
  background-position: center right 18px;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: #fff;
}

.show-result-pagination-wp option {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  padding: 5px;
}


/* PAGINATION CSS */

.responded-btn {
  height: 48px;
  background: linear-gradient(180deg, #06C169 0%, #06C169 100%);
  color: #fff !important;
  border-radius: 40px;
  align-items: center;
  width: auto;
  border: none;
  text-align: center;
  padding: 12px 42px 12px 42px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0px 5px;
}