@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&display=swap');

/* font-family: 'Roboto', sans-serif; */

/* body,
html {
  overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: "Arimo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--text-clr);
  font-size: 18px;
  line-height: 1.2;
  background-color: #fff;
  /* 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: #4A6782;
  --white: #fff;
  --black: #000;
  --secondary-clr: #FFA723;
  --text-clr: #375472;
}

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: rgba(175, 35, 35, 1);
}

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;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */
.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* --------------  EROMAC USER ( DEV MODE ) CSS -----------  */

.choose-plan-table {
  width: 100%;

  .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: 1px solid #888; */
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 37px;


    th {
      font-weight: 500;
      font-size: 14px;
      background-color: var(--primary-clr);
      text-transform: uppercase;
      color: var(--white);
      text-align: center;
      padding: 12px 15px;
      border: 1px solid #888;
    }

    td {
      font-weight: 500;
      font-size: 14px;
      color: #3C3C3C;
      text-align: center;
      padding: 15px 15px;
      border: 1px solid #4A6782;
    }

    tr:first-child td:first-child {
      border-radius: 10px 0 0 0;
    }

    tr td.title-plan {
      color: #3C3C3C;
      font-weight: 800;
      font-size: 15px;
    }

    td.quantity {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
    }

    td button.decrease {
      border: none;
      background: none;
      font-size: 24px;
      background-color: #F9F8F6;
      border-radius: 50%;
    }

    td button.increase {
      border: none;
      background: none;
      font-size: 24px;
      background-color: #F9F8F6;
      border-radius: 50%;
    }

    tr:first-child td:last-child {
      border-radius: 0 10px 0 0;
    }

    tr:last-child td:first-child {
      border-radius: 0px 0 0 10px;
    }

    tr:last-child td:last-child {
      border-radius: 0 0px 10px 0;
    }

    tr:nth-child(odd) {
      background-color: #fff;
    }

    tr:nth-child(even) {
      background-color: #fff;
    }



  }

}

.dicountinformation-wpp {
  display: flex;

  span {
    font-size: 14px;
    color: #4A6782 !important;
    font-weight: 600;
  }

  /* =============== TOOLTIP CSS ============== */

  .tooltip-container {
    position: relative;
    display: inline-block;
  }

  .tooltip-icon {
    cursor: pointer;
  }

  .tooltip-text {
    visibility: hidden;
    opacity: 0;
    min-width: 520px;
    width: 100%;
    background-color: #fff;
    color: #fff;
    box-shadow: 0px 4px 20px 0px #0000001A;
    text-align: left;
    border-radius: 5px;
    padding: 6px 10px;
    position: absolute;
    border: 1px solid #4A6782;
    z-index: 1;
    top: 120%;
    left: 51%;
    transform: translateX(-52%);
    transition: opacity 0.3s;
    white-space: normal;
    line-height: 1.4;
  }



  .tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }




  /* =============== TOOLTIP CSS ============== */

}



.billing-cycle-card-nap {
  display: flex;
  gap: 10px;

  /* .monthy-price-card {
    padding: 0;
    width: 50%;
    border: 1px solid #00152B;
    border-radius: 12px;

    .heading-inn {
      background: #00152B;
      padding: 10px 10px;
      border-radius: 12px 12px 0 0;

      h2 {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
      }
    }

    .content-inn {
      padding: 14px 14px;

      p {
        color: #3C3C3C;
        font-size: 16px;
      }

    }


  } */

  .all-price-card {
    padding: 0;
    width: 50%;
    border: 1px solid #4A6782;
    border-radius: 12px;
    cursor: pointer;

    .heading-inn {
      background: #4A6782;
      padding: 10px 10px;
      border-radius: 9px 9px 0 0;

      h2 {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
      }

    }

    .content-inn {
      padding: 14px 14px;

      p {
        color: #3C3C3C;
        font-size: 16px;
        text-align: center;
      }

    }

  }

  .all-price-card:hover {
    border: 1px solid #00152B;
    box-shadow: 4px 4px 20px 0px #4A678280;

    .heading-inn {
      background: #00152B;
    }

    p {
      color: #00152B;
      font-size: 16px;
      font-weight: 600;
    }

  }

  .all-price-card:focus {
    border: 3px solid #00152B;
    box-shadow: 4px 4px 20px 0px #4A678280;

    .heading-inn {
      background: #00152B;
    }
  }

}


.total-amount-currency {

  .total-amount-box {
    border: 1px solid #4A6782;
    padding: 0px 0px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 100%;

    h2 {
      color: #3C3C3C;
      font-size: 18px;
      text-align: left;
      padding-left: 51px;
      width: 80%;
      font-weight: 800;
    }

    .value-currency-inn {
      width: 100%;

      input[type="text"] {
        background-color: #EBEBEB;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0px;
        color: #3C3C3C;
        height: 50px;
        font-weight: 700;
        padding: 0 20px;
        text-align: center;
        outline: none !important;
        font-size: 18px;
        border: none;
        background: transparent;
        border-left: 1px solid #4A6782;
      }

    }

  }

}



/* --------- TOOLTIP CSS ----------- */



/* --------- TOOLTIP CSS ----------- */


/* ----------------- CONFIRM YOU SUBSCRIPTION CSS ----------------- */

.conform-subscription-main {
  width: 100%;
  height: auto;
  display: flex;
  overflow: auto;
  scrollbar-width: none;
  align-items: baseline;
  background: #fff;
  padding: 39px;
  border-radius: 30px;

  form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0px 90px;
    gap: 20px;
    flex-direction: column;
    margin: auto 0;
    align-items: center;


    h1 {
      font-size: 30px;
      color: #3C3C3C;
      text-align: center;
      margin-bottom: -17px;
    }

    h2 {
      font-size: 20px;
      font-weight: 500;
      color: #4A6782;
      text-align: center;
      margin-bottom: 0px;
      width: 100%;
    }

  }

  .innersubscription-form-wp {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 50%;
    padding-top: 30px;

    .eromac-left-field {
      width: 100%;
      height: 50px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 10px;
      flex-wrap: wrap;

      &:last-child {
        margin-bottom: 0;
      }

      h3 {
        color: #4F5B76;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 9px;
      }

    }

    .eromac-left-field input[type="text"],
    .eromac-left-field input[type="email"],
    .eromac-left-field input[type="password"] {
      width: 100%;
      height: 100%;
      border: 1px solid #B0B0B0;
      outline: none;
      background: var(--white);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: var(--primary-clr);
      padding: 0px 20px;

      &::placeholder {
        color: #B0B0B0;
      }

    }

    .eromac-left-field select {
      width: 100%;
      height: 100%;
      box-shadow: none;
      border: 1px solid #B0B0B0;
      outline: none;
      background: url(../images/Eromac-images/Login-flow-images/flag-dropdown.svg) no-repeat calc(100% - 34px) center transparent;
      background-size: 13px;
      padding-right: 50px;
      background-position: calc(100% - 20px);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #000000;
      padding: 0px 20px;
      cursor: pointer;

      & option {
        font-weight: 600;
        color: #333333;
      }
    }

    .terms-privacy-wrap {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
      padding-top: 16px;
    }

    input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
      appearance: none;
      outline: 2px solid #B0B0B0;
      border-radius: 2px;
      outline-offset: -2px;
      background-color: var(--white);
    }


    input[type="checkbox"]:checked {
      accent-color: var(--primary-clr);
      appearance: auto;
      border-radius: 2px;
      outline: 2px solid #B0B0B0;
    }

  }

}

/* ----------------- CONFIRM YOU SUBSCRIPTION CSS ----------------- */


/* ============ SIDEBAR MOBILE VIEW CSS ========= */

.cross-icon {
  position: absolute;
  top: 21px;
  right: -50px;

  img {
    width: 30%;
  }
}

#sidebar2 {
  transition: width 0.3s ease-in-out;
}

.mobile-toogle {
  position: absolute;
  right: 0;

  img {
    width: 64%;
  }

}

.dashboar-mobile-profile {
  padding: 10px 10px;
  display: flex;
  align-items: flex-start;

  .dasboard-mobile-profile-image {

    img {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }

  }

  .profile-content-inner {

    .user-email {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      padding: 5px 10px;
      width: 100%;

      p {
        font-size: 14px;
        color: #fff;
        font-weight: 600;
        text-align: center;
        margin-bottom: 0;
      }


      span {
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        text-align: center;
      }

    }

    .view-profile {
      padding: 5px 10px;
      width: 100%;
      background: #090f143b;
      margin-left: -1px;

      a {
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        text-align: center;
        width: 100%;
        padding: 2px;
      }

    }

  }


}


/* ============ SIDEBAR MOBILE VIEW CSS ========= */




/* ====================== DEV MODE ( DASHBOARD CSS ) =================== */

/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100%;
  z-index: 999;
  /* box-shadow: 0px 5.44px 5.44px 0px #00000040; */

  transition: .3s ease;
  overflow-x: hidden;
  background: #4A6782;
  scrollbar-width: none;
  padding-top: 0px;
}

#sidebar2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100%;
  z-index: 999;
  /* box-shadow: 0px 5.44px 5.44px 0px #00000040; */

  transition: .3s ease;
  overflow-x: hidden;
  background: #4A6782;
  scrollbar-width: none;
  padding-top: 0px;
}

#sidebar::-webkit-scrollbar {
  display: none;
}

#sidebar2::-webkit-scrollbar {
  display: none;
}

#sidebar.hide {
  width: 0;
}

#sidebar2.hide {
  width: 0;
}

#sidebar .brand {
  height: 60px;
  width: 178px;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  background: #4A6782;
  padding-top: 9px;
  padding-left: 18px;
  box-sizing: content-box;
  transition: .5s;
  justify-content: flex-start;
}

#sidebar2 .brand {
  height: 60px;
  width: 178px;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  background: #4A6782;
  padding-top: 9px;
  padding-left: 18px;
  box-sizing: content-box;
  transition: .5s;
  justify-content: flex-start;
}

#sidebar .brand img {
  width: 135px;
  display: flex;
  justify-content: center;
  margin-right: 0px;
}

#sidebar2 .brand img {
  width: 135px;
  display: flex;
  justify-content: center;
  margin-right: 0px;
}

#sidebar .brand .bx {
  min-width: 60px;
  display: flex;
  justify-content: center;
}

#sidebar2 .brand .bx {
  min-width: 60px;
  display: flex;
  justify-content: center;
}

#sidebar .side-menu {
  width: 100%;
  padding: 8px;
  padding-right: 0;
  margin: 0;
  margin-top: 30px;
}

#sidebar2 .side-menu {
  width: 100%;
  padding: 8px;
  padding-right: 0;
  margin: 0;
  margin-top: 30px;
}

#sidebar .side-menu li {
  height: auto;
  background: transparent;
  border-radius: 48px 0 0 48px;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  margin-right: 9px;
  transition: .5s;
  display: flex;
  align-items: center;
}

#sidebar2 .side-menu li {
  height: auto;
  background: transparent;
  border-radius: 48px 0 0 48px;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  margin-right: 9px;
  transition: .5s;
  display: flex;
  align-items: center;
}

li.inactive.logout-bottom {
  position: relative;
  bottom: 0;
  padding: 10px 10px 10px 10px;
  width: 100%;
  top: 0;
  list-style-type: none;

  a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 14px;
    gap: 14px;
    padding: 12px 10px;
    font-weight: 500;
    color: #fff;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    white-space: nowrap;
    overflow-x: hidden;
  }

  a:hover {
    background: #FFFFFF33;
    color: #fff;
  }

}

#sidebar .side-menu li p {
  position: fixed;
  margin: 0;
  background: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  display: none;
  transition: .5s;
  left: 80px;
}

#sidebar2 .side-menu li p {
  position: fixed;
  margin: 0;
  background: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  display: none;
  transition: .5s;
  left: 80px;
}

#sidebar .side-menu li p:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #000;
  transition: .5s;
  left: -5px;
  top: 15px;
  border-radius: 0px;
  transform: rotate(45deg);
}

#sidebar2 .side-menu li p:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #000;
  transition: .5s;
  left: -5px;
  top: 15px;
  border-radius: 0px;
  transform: rotate(45deg);
}

#sidebar.hide .side-menu li:hover p {
  display: block;
  transition: .5s;
}

#sidebar2.hide .side-menu li:hover p {
  display: block;
  transition: .5s;
}

#sidebar .side-menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 14px;
  padding: 9px 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
  cursor: pointer;
  z-index: 9999;
  white-space: nowrap;
  overflow-x: hidden;
}

#sidebar2 .side-menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 14px;
  padding: 9px 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
  cursor: pointer;
  z-index: 9999;
  white-space: nowrap;
  overflow-x: hidden;
}

#sidebar .side-menu li a img {
  width: 24px;
  height: 28px;
  filter: brightness(1) invert(0);
  margin-right: 16px;
  object-fit: contain;
}

#sidebar2 .side-menu li a img {
  width: 24px;
  height: 28px;
  filter: brightness(1) invert(0);
  margin-right: 16px;
  object-fit: contain;
}

#sidebar .side-menu li.active a {
  background: #FFFFFF33;
  color: #fff;
}

#sidebar2 .side-menu li.active a {
  background: #FFFFFF33;
  color: #fff;
}

#sidebar .side-menu li:hover a {
  background: #FFFFFF33;
  color: #fff;
}

#sidebar2 .side-menu li:hover a {
  background: #FFFFFF33;
  color: #fff;
}

#sidebar .side-menu li.active a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

#sidebar2 .side-menu li.active a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

#sidebar .side-menu li.inactive a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

#sidebar2 .side-menu li.inactive a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

#sidebar .side-menu li:hover a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

#sidebar2 .side-menu li:hover a img {
  filter: brightness(1) invert(0);
  max-width: 42px;
  margin-left: -4px;
}

.primary-contact-personnap img.rotated {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* CONTENT */
#content {
  position: relative;
  width: calc(100% - 270px);
  left: 270px;
  /* transition: .1s ease; */
}

#sidebar.hide~#content {
  width: calc(100% - 0px);
  left: 0;
}

#sidebar2.hide~nav.mobile-nav {
  width: calc(100% - 0px);
  left: 0;
}




/* NAVBAR */
#content nav {
  height: 60px;
  padding: 0 24px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  grid-gap: 24px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

nav.mobile-nav {
  height: 60px;
  padding: 0 24px;
  background: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  grid-gap: 24px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

.bx.bx-menu img {
  width: 41px;
}

.admin-icon {
  flex-basis: auto;
  height: auto;
  width: auto;
  margin-left: auto;
  font-size: 13px;
  border: 2px solid #95AEC7;
  padding: 1px 2px;
  color: #fff;
  font-weight: 500;
  border-radius: 36px;
  display: flex;
  align-items: center;
}

.admin-icon img {
  width: 37px;
}

#content nav .bx.bx-menu {
  cursor: pointer;
  color: #fff;
  font-size: 25px;
}

.bx-menu:before {
  content: "\edc2";
  display: none;
}



.toggle-button-wrap {
  display: flex;
  align-items: center;
  gap: 8px;

  h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A6782;
  }
}

/* NAVBAR */

/* MAIN */
#content main {
  width: 100%;
  height: 100%;
  padding: 25px;
  /* background: #f5f5f5; */
  max-height: 100%;
}

/* MAIN */

/* SIDEBAR */


/* SIDEBAR DROPDOWN LIST */

.dropdown-content-file {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
}

/* Show the dropdown when .showcard is added */
.dropdown-content-file.showcard {
  display: flex;
  background: #42576B;
  margin-right: 10px;
  gap: 18px;
  border-radius: 8px;
  padding: 16px;
  flex-direction: column;
  margin-bottom: 10px;
}

.dropdown-content-file.showcard a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rotate-drops {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon {
  position: absolute;
  right: 14px;
}



.rotate-drops2 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon2 {
  position: absolute;
  right: 14px;
}

.innerdrop-wrap {
  display: flex;
  align-items: center;
  padding: 0px;
}

.rotate-drops3 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon3 {
  position: absolute;
  right: 14px;
}


.rotate-drops4 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon4 {
  position: absolute;
  right: 14px;
}

.rotate-drops5 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon5 {
  position: absolute;
  right: 14px;
}

.rotate-drops6 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon6 {
  position: absolute;
  right: 14px;
}

.rotate-drops7 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon7 {
  position: absolute;
  right: 14px;
}

.rotate-drops8 {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

img#arrowIcon8 {
  position: absolute;
  right: 14px;
}







/* SIDEBAR DROPDOWN LIST */


/* ------------- WELCOME DASHBOARD CSS --------------- */

.welcome-sec-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px 20px 0px 20px;

  h2 {
    color: #4A6782;
    font-size: 24px;
    font-weight: 800;
    padding-top: 25px;
  }

  p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-align: center;
  }

  span {
    color: #AF2323;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding-top: 14px;
    padding-bottom: 29px;
  }

  .tutorial-video {
    width: 30%;
    height: auto;
    position: relative;
    border-radius: 15px;
    margin-bottom: 0;
  }


  .tutorial-main-inn {
    display: flex;
    justify-content: center;
  }

  .tutorial-video video {
    width: 100%;
    height: 99%;
    border-radius: 15px;
  }

  span.video-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
  }

  .play-btn img {
    width: 20% !important;
  }

  span.video-remove img {
    width: 100%;
    height: 100%;
  }

  span.play-btn {
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: -1px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0, 16, 39, 0.3);
    border-radius: 15px;
  }

  #upcoming-video-eromac .owl-nav {
    width: 100%;
    height: auto;
    padding-left: 20px;
    transition: .5s;
  }

  #upcoming-video-eromac .owl-nav button {
    width: 30px;
    height: 30px;
    box-shadow: none;
    position: absolute;
    top: 37%;
    left: 31%;
    right: inherit;
    z-index: 0;
    opacity: 0.8;
    background: transparent;
    outline: none;
    border: 2px solid #AF2323;
    border-radius: 50%;
  }

  #upcoming-video-eromac .owl-nav button i {
    font-size: 14px;
    text-align: center;
    display: flex;
    font-weight: 900;
    justify-content: center;
    height: 100%;
    color: #AF2323;
    place-items: flex-end;
    align-items: center;
  }

  #upcoming-video-eromac .owl-nav button:last-child {
    right: 31%;
    left: inherit;
  }



  #upcoming-video-eromac .owl-dots {
    margin-top: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
  }

  #upcoming-video-eromac .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    width: 25px;
    border-radius: 10px;
  }

  #upcoming-video-eromac .owl-dots button.owl-dot.active {
    background: rgba(74, 103, 130, 1);
    width: 25px;
    border-radius: 10px;
  }


  a {
    height: 46px;
    color: #fff;
    border-radius: 9px;
    align-items: center;
    border: none;
    text-align: center;
    padding: 10px 60px 10px 60px;
    background: #4A6782;
    font-size: 14px;
    display: flex;
    align-items: center;
    bottom: 69px;
    font-weight: 600;
    margin: 0px 5px;
  }


}


/* ------------- WELCOME DASHBOARD CSS --------------- */



/* ------------ GET YOUR PROJECT START --------------- */

.get-start-your-project-main {
  padding: 16px;

  & .band-start-project {
    background-color: #4A6782;
    padding: 21px 15px;
    border-radius: 10px;

    h2 {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 11px;
    }

    p {
      font-size: 16px;
      color: #fff;
      font-weight: 400;
      text-align: center;
      margin-bottom: 0;
    }

  }

  /* project cards */
  .project-main-cards {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding-top: 40px;
    gap: 17px;

    /* cards */
    & .card-project {
      border: 1px solid #4A6782;
      padding: 10px;
      border-radius: 10px;
      width: 25%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      .project-img {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;

        img {
          width: 138px;
          height: 137px;
          object-fit: cover;
        }

        img.help-images {
          width: 60px;
          height: 60px;
        }

      }

      .content-inn {

        h3 {
          font-size: 14px;
          font-weight: 700;
          color: #4A6782;
          text-align: center;
          margin-bottom: 0;
          margin-top: 16px;
        }

        p {
          font-size: 14px;
          color: #3C3C3C;
          font-weight: 500;
          text-align: center;
          margin-bottom: 23px;
          margin-top: 15px;
        }

      }

      a {
        height: auto;
        color: #fff;
        border-radius: 6px;
        align-items: center;
        border: none;
        text-align: center;
        padding: 12px 12px 12px 12px;
        background: #4A6782;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 600;
        margin: 0px 5px;
      }

    }

    /* cards */

  }

  /* project cards */

}


/* --------------- TERMS AND CONDITION CSS ------------ */

.terms-condition-links {

  p {
    font-size: 14px;
    color: #3C3C3C;
    font-weight: 500;
    text-align: center;
    margin-bottom: 23px;
    margin-top: 15px;

    a {
      color: #4A6782;
      font-weight: 800;
      text-decoration: underline !important;
    }


  }

}

.terms-and-privacy-wrap {
  padding: 15px 15px;

  p {
    font-size: 14px;
    color: #3C3C3C;
    font-weight: 500;
    text-align: justify;
    line-height: 29px;
  }

}


/* --------------- TERMS AND CONDITION CSS ------------ */


/* ---------------- SUBSCRIPTION PAGE CSS ------------- */

.subscription-manin-wrap {
  padding: 15px 15px;


  .subscribe-main-box {


    .band-subcribe {
      background: #4A6782;
      padding: 12px 10px;
      border-radius: 8px;
      margin-top: 22px;
      display: flex;
      align-items: center;
      justify-content: center;

      h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 0;
      }

    }


    /* ========= INNER TAB AND PILL ====== */

    .nav-tabs {
      --bs-nav-tabs-border-width: 1px;
      --bs-nav-tabs-border-color: #dee2e6;
      --bs-nav-tabs-border-radius: 0.375rem;
      --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
      --bs-nav-tabs-link-active-color: #495057;
      --bs-nav-tabs-link-active-bg: #fff;
      --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
      border-bottom: none !important;
      margin-bottom: 0;
      justify-content: center;
    }

    .tab-pill-border {
      width: fit-content;
      padding: 5px;
      border-radius: 9px;
      margin-bottom: 26px;
      background: #F5F5F5;
    }

    .toptab-pill-wrap {
      display: flex;
      justify-content: center;
      margin-top: 25px;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
      color: #fff;
      background-color: #4A6782;
      font-weight: 500;
      border-radius: 11px;
      padding: 9px 35px;
      border: none;
    }

    .nav-tabs .nav-link {
      color: #4A6782;
      background: transparent;
      padding: 8px 35px;
      border-radius: 11px;
      font-size: 16px;
    }

    .nav-link {
      display: block;
      padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
      font-size: var(--bs-nav-link-font-size);
      font-weight: 600;
      color: #A9A9A9;
      text-decoration: none;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
      border: none;
    }

    /* ========= INNER TAB AND PILL ====== */


  }

}

.essential-box-main {
  padding: 21px 15px;
  border: 1px solid #B0B0B0;
  border-radius: 10px;

  .manual-band-inn {
    padding: 15px 15px;
    border-radius: 10px;
    background: #4A6782;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .left-sec {
      display: flex;
      flex-direction: column;
      gap: 15px;

      h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 0;
      }

      span {
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 0;
      }

    }

  }


  .new-manual-project {
    width: 100%;
    height: 65px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 31px;

    h3 {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 0;
      width: auto;
    }

    span {
      font-size: 16px;
      font-weight: 400;
      color: #000;
    }

  }


  .cancel-btn-wrap {
    a {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 20px;
      cursor: pointer;
      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;
    }
  }

  .billing-content {
    display: flex;
    gap: 15px;
  }

}


/* --- SUBSCRIPTION BOX CSS --- */


#cancel-plan-popup .modal-dialog {
  max-width: 470px;
}

#cancel-plansuccess-popup .modal-dialog {
  max-width: 470px;
}

#reset-password-popup .modal-dialog {
  max-width: 470px;
}

#reset-password-popup .modal-dialog {
  max-width: 470px;
}

#reset-passwordsuccess-popup .modal-dialog {
  max-width: 470px;
}

#reset-passwordsuccess-popup .modal-dialog {
  max-width: 470px;
}

#suspend-popup .modal-dialog {
  max-width: 574px;
}

#assign-adminrole-popup .modal-dialog {
  max-width: 574px;
}

.subscriptionb-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  padding-bottom: 25px;

  .card-subscription {
    border: 1px solid #000;
    padding: 14px 20px;
    width: 30%;
    border-radius: 10px;

    h1 {
      color: #4A6782;
      font-size: 43px;
      font-weight: 800;
      margin-bottom: 0;
      text-align: center;

      span {
        font-size: 18px;
      }

    }

    h2 {
      color: #4A5568;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 0;
    }

    h3 {
      color: #333333;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 20px;
      text-align: left;
    }

    ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding-bottom: 30px;
      padding-top: 30px;

      li {
        list-style-type: none;
        display: flex;
        gap: 7px;
        align-items: center;

        span {
          color: #3C3C3C;
          font-size: 14px;
        }

      }


    }

    a.active {
      background: #B0B0B0;
      color: #3C3C3C;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      box-shadow: 0px 1px 2px 0px #1018280D;
      border-radius: 6px;
      width: 100%;
      padding: 12px 20px;
      cursor: pointer;
      text-align: 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 {
      background: #AF2323;
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      box-shadow: 0px 1px 2px 0px #1018280D;
      border-radius: 6px;
      width: 100%;
      padding: 12px 20px;
      cursor: pointer;
      text-align: 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;
    }

  }

}

.purchase-more-selection {
  display: flex;
  justify-content: center;

  a {
    background: #AF2323;
    color: #fff;
    font-weight: 600;
    /* border: 2px solid #4A6782; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 6px;
    width: auto;
    padding: 12px 20px;
    cursor: pointer;
    text-align: 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;
  }

}


/* --- SUBSCRIPTION BOX CSS --- */


/* --- SUBSCRIPTION CHECKBOX CSS --- */

.radio-selection-wp {
  padding-top: 20px;

  .select-role-nep {
    display: flex;
    gap: 40px;
    justify-content: center;
  }

  .select-role-nep label.no-assign-check input[type="radio"] {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    outline: 2px solid #00152B;
    outline-offset: 2px;
  }

  label.no-assign-check {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .select-role-nep label.no-assign-check input[type="radio"]:checked {
    background: #00152B;
    outline: 2px solid #00152B;
  }

  .select-role-nep label.no-assign-check h3 {
    color: #4A6782;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    width: max-content;
  }

}

/* --- SUBSCRIPTION CHECKBOX CSS --- */




/* ---------------- SUBSCRIPTION PAGE CSS ------------- */






/* ------- New manula project popup css -------- */

.second-common-popup .modal-dialog {
  max-width: 800px;
}

.second-small-common-popup .modal-dialog {
  max-width: 570px;
}

.second-common-popup .modal-body {
  padding: 5px;
}

.second-small-common-popup .modal-body {
  padding: 5px;
}

.second-common-popup .modal-content {
  border-radius: 10px;
  padding: 10px;

  h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0px;
    text-align: left;
    padding: 12px 18px;
    border-radius: 7px;
    background: #4A6782;
  }

  .second-common-popup .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .align-create-btns {
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .create-manual-bns {
    display: flex;
    gap: 30px;
    justify-content: center;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 6px;
      padding: 12px 40px;
      cursor: pointer;
      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: #4A6782;
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 6px;
      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;
    }

  }

}


.second-small-common-popup .modal-content {
  border-radius: 10px;
  padding: 10px;

  h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0px;
    text-align: left;
    padding: 12px 18px;
    border-radius: 7px;
    background: #4A6782;
  }

  .second-small-common-popup .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .align-create-btns {
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .align-print-btns {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .create-manual-bns {
    display: flex;
    gap: 30px;
    justify-content: center;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 40px;
      cursor: pointer;
      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: #4A6782;
      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;
    }

  }

  .print-manual-bns {
    display: flex;
    gap: 50px;
    justify-content: center;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 45px;
      cursor: pointer;
      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: #4A6782;
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 55px;
      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;
    }

  }

}





.create-manualprojectform {
  width: 100%;
  height: auto;
}

.create-manualprojectform>form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
}

.create-admin-item {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;

  i.fas.fa-search {
    color: #fff;
    position: relative;
    right: 36px;
    font-size: 14px;
    cursor: pointer;
  }


  select {
    width: 100%;
    height: 100%;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E8E;
    padding: 0px 15px;
    appearance: none;
    background: url(../images/super-admin-imgs/select-dropdown.png);
    background-position: center right 20px;
    background-size: auto;
    background-repeat: no-repeat;

    &::placeholder {
      color: #8E8E8E;
    }

    option {
      color: #333333;
      font-weight: 600;
    }

  }

  input[type="text"] {
    width: 100%;
    height: 100%;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E8E;
    padding: 0px 15px;

    &::placeholder {
      color: #8E8E8E;
    }
  }

  input[type="email"] {
    width: 100%;
    height: 100%;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E8E;
    padding: 0px 15px;

    &::placeholder {
      color: #8E8E8E;
    }
  }


}

.new-manual-project {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;

  h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    width: 30%;
  }

  input[type="text"] {
    width: 100%;
    height: 100%;
    border: 0.5px solid #000;
    outline: none;
    background: var(--white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 0px 15px;
    font-family: 'Arial';

    &::placeholder {
      color: #6c757d;
    }
  }

  input[type="password"] {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding: 0px 15px;

    &::placeholder {
      color: #000;
    }
  }

  select {
    width: 97%;
    height: 100%;
    border: 1px solid #000;
    outline: none;
    background: var(--white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 0px 15px;
    appearance: none;
    background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
    background-position: center right 14px;
    background-size: 26px;
    background-repeat: no-repeat;

    &::placeholder {
      color: #000;
    }

    option {
      color: #000;
      font-weight: 600;
    }

  }

  .city-state-wrap {
    display: flex;
    gap: 9px;
    justify-content: flex-end;

    input[type="text"] {
      height: 46px;
    }

  }


  /* Checkbox css */

  .select-role-nep {
    display: flex;
    gap: 40px;
  }

  .select-role-nep label.no-assign-check input[type="radio"] {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    outline: 2px solid #00152B;
    outline-offset: 2px;
  }

  label.no-assign-check {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .select-role-nep label.no-assign-check input[type="radio"]:checked {
    background: #00152B;
    outline: 2px solid #00152B;
  }

  .select-role-nep label.no-assign-check h3 {
    color: #333333;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    width: max-content;
  }

  /* Checkbox css */


}

/* ========= add new customer form css =============== */

.add-new-customer-btn {
  display: flex;

  button {
    background: transparent;
    color: #4A6782;
    font-weight: 600;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    display: flex;
    padding: 14px 2px;
    gap: 8px;
    cursor: pointer;
    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;
  }

}

.new-customer-form-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.customer-form-main {
  border: 1px solid #B0B0B0;
  padding: 10px 13px;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;

  .new-manual-project {
    h3 {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 0;
      width: 54%;
      font-family: 'Arial';
    }
  }

  .align-create-btns {
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .create-manual-bns {
    display: flex;
    gap: 30px;
    justify-content: center;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 22px;
      cursor: pointer;
      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: #4A6782;
      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;
    }

  }

  .fraction-key-btn {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 9px 15px;
      display: flex;
      align-items: center;
      gap: 3px;
      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: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 9px 15px;
      display: flex;
      align-items: center;
      gap: 3px;
      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(3) {
      background: #4A6782;
      color: #fff;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 9px 15px;
      display: flex;
      align-items: center;
      gap: 3px;
      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(4) {
      background: #AF2323;
      color: #fff;
      font-weight: 600;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 11px 15px;
      display: flex;
      align-items: center;
      gap: 3px;
      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;
    }

  }


}

.align-create-btns {
  display: flex;
  justify-content: end;
  width: 100%;
}


.araange-all-btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}



.create-manual-bns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-right: 0;
  margin-top: 15px;

  a:nth-child(1) {
    background: transparent;
    color: #4A6782;
    font-weight: 600;
    border: 2px solid #4A6782;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    padding: 12px 22px;
    cursor: pointer;
    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: #4A6782;
    color: #fff;
    font-weight: 600;
    /* border: 2px solid #4A6782; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    padding: 12px 17px;
    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;
  }

}

.suspend-user-profile {
  display: flex;
  gap: 20px;

  a:nth-child(1) {
    background: transparent;
    color: rgba(175, 35, 35, 1);
    font-weight: 600;
    border: 2px solid rgba(175, 35, 35, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    width: max-content;
    gap: 3px;
    padding: 12px 22px;
    cursor: pointer;
    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: rgba(74, 103, 130, 1);
    font-weight: 600;
    border: 2px solid rgba(74, 103, 130, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 12px 17px;
    display: flex;
    gap: 3px;
    width: max-content;
    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;
  }

}

.profile-user-nap {
  display: flex;
  width: 100%;

  h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    width: 11%;
  }

}




.fraction-key-btn {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0px;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;

  a:nth-child(1) {
    background: transparent;
    color: #4A6782;
    font-weight: 600;
    border: 2px solid #4A6782;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    gap: 3px;
    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: #4A6782;
    font-weight: 600;
    border: 2px solid #4A6782;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    gap: 3px;
    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(3) {
    background: #4A6782;
    color: #fff;
    font-weight: 600;
    border: 2px solid #4A6782;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    gap: 3px;
    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(4) {
    background: #AF2323;
    color: #fff;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 3px;
    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;
  }

}


.inner-add-customer {
  display: flex;
  width: 100%;
  gap: 19px;
  height: 100%;
  align-items: center;

  .align-password-profile {
    width: 100%;
    min-width: 314px;
    height: 45px;
    position: relative;

    input[type="password"] {
      width: 102%;
      position: relative;
      height: 100%;
      right: 4px;
      border: 1px solid #000;
      outline: none;
      background: var(--white);
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      color: #000;
      padding: 0px 15px;

      &::placeholder {
        color: #000;
      }
    }

    .password-eye {
      position: absolute;
      width: 20px;
      height: 20px;
      display: flex;
      top: 12px;
      right: 15px;
      border: none;
      align-items: center;
      background: none;
      justify-content: center;
      cursor: pointer;
      transition: .5s;
    }

    .password-eye .eye-close {
      background-image: url(../images/Eromac-images/Login-flow-images/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/Eromac-images/Login-flow-images/eye-open.svg);
      width: 30px;
      height: 30px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 25px;
    }


  }

}



.contact-details-heading-nap {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: anchor-center;

  h4 {
    font-size: 16px;
    font-weight: 700;
    color: #4A6782;
    margin-bottom: 0;
    width: 20%;
  }

  .border-line {
    width: 100%;
    height: 2px;
    background-color: #AF2323;
    margin-top: 0;
    transform: rotate(0);
  }

  a {
    height: 39px;
    width: 35%;
    color: #fff !important;
    border-radius: 9px;
    align-items: center;
    border: none;
    text-align: center;
    padding: 8px 10px 8px 9px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #4A6782;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0px 5px;
  }
}


/* ========= add new customer form css =============== */


.print-setting-form-wrap {
  width: 100%;
}


/* ============ CUSTOM DROPDOWN CSS ============== */

.select-menu {
  margin-bottom: 24px;
  margin-top: 9px;
  width: 100%;
}

.select-menu .select-btn {
  width: 100%;
  height: 45px;
  border: 1px solid #000;
  outline: none;
  cursor: pointer;
  background: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3C3C3C;
  display: flex;
  align-items: center;
  padding: 0px 15px;
  appearance: none;
  background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
  background-position: center right 14px;
  background-size: 26px;
  background-repeat: no-repeat;
}

.select-menu .options {
  position: absolute;
  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;
  height: 40px;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.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: #229400;
  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 ============== */


/* =========== UPLOAD CSS ============ */

.import-project-wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.import-projectfile {
  font-weight: 400;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  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;
    }
  }
}


/* =========== UPLOAD CSS ============ */


/* ==== CHECKLIST PRINT DATA POPU CSS ======= */

.checklist-datalist {

  .checklist-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 10px;

    input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
      appearance: none;
      outline: 2px solid #3C3C3C;
      border-radius: 5px;
      outline-offset: -2px;
      background-color: transparent;
    }


    input[type="checkbox"]:checked {
      accent-color: var(--primary-clr);
      appearance: auto;
      outline: 2px solid #3C3C3C;
      border-radius: 5px;
    }

    p {
      color: #000000;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 0;
    }

  }

}


/* ==== CHECKLIST PRINT DATA POPU CSS ======= */


/* ------- New manula project popup css -------- */



/* ===============   SIDEBAR & NAV CSS FOR MOBILE VIEW AND DESKTOP ============= */

#sidebar2 {
  display: none;
}

.nav-desktop {
  display: block;
}

.nav-mobile {
  display: none !important;
}

/* ===============   SIDEBAR & NAV CSS FOR MOBILE VIEW AND DESKTOP ============= */



/* ------- customer created succesfully popup css -------- */


.small-common-popup .modal-dialog {
  max-width: 389px;
}

.small-common-popup .modal-body {
  padding: 20px;
}

.small-common-popup .modal-content {
  border-radius: 10px;
  padding: 10px;

  .small-common-popup .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
}


.small-alerts-popup-nap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;

  p {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
  }

  span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #3C3C3C;
  }

  img {
    width: 43px;
  }

  .create-manual-bns {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-right: 0px;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      border: 2px solid #4A6782;
      font-weight: 600;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      display: flex;
      align-items: center;
      padding: 10px 22px;
      cursor: pointer;
      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: #4A6782;
      color: #fff;
      font-weight: 600;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 10px 22px;
      display: flex;
      align-items: center;
      cursor: pointer;
      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;
    }

  }

}

/* add new customer form css */

/* ------- customer created succesfully popup css -------- */

/* ------------ GET YOUR PROJECT START --------------- */



/* ---------------- MANUAL PROJECT FORM CSS --------- */

.manual-project-fromband {
  padding: 16px;

  & .manual-band-inn {
    padding: 21px 15px;
    border-radius: 10px;
    background: linear-gradient(90deg, #4A6782 0%, rgba(16, 22, 28, 0) 66.44%);
    display: flex;
    align-items: center;
    justify-content: space-between;

    .left-sec {
      display: flex;
      flex-direction: column;
      gap: 15px;

      h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 0;
      }

    }

    .right-sec {

      a {
        background: #AF2323;
        color: #fff;
        font-weight: 600;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 14px;
        cursor: pointer;
        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;
      }

    }

  }

  /* ===== OPEN PROJECTS ===== */

  & .openproject-band-inn {
    padding: 7px 15px;
    border-radius: 10px;
    /* background: #4A6782; */
    background: linear-gradient(90deg, #4A6782 0%, rgba(16, 22, 28, 0) 66.44%);
    display: flex;
    align-items: center;
    justify-content: space-between;

    .left-sec {
      display: flex;
      flex-direction: column;
      gap: 15px;

      h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 0;
      }

    }

    .right-sec {

      a {
        background: #4A6782;
        color: #fff;
        font-weight: 600;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 14px;
        cursor: pointer;
        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;
      }

    }

  }

  /* ===== OPEN PROJECTS ===== */


  /* ------------------  NORMAL TOP FILTER BTN CSS -------- */

  .quotes {
    width: auto;
    min-width: 100px;
    max-width: 100%;
    position: relative;
    background: #fff;
    border-radius: 30px;
    margin-left: 0px;
  }

  .dropdown-btn {
    height: 100%;
    padding: 9px 15px;
    position: relative;
    font-size: 14px;
    border-radius: 8px;
    color: #4A6782;
    font-weight: 600;
    height: 40px;
    border: 2px solid #4A6782;
    cursor: pointer;
    background: transparent;
    max-width: 205px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .dropdown-btn.status {
    max-width: max-content;
  }

  .dropdown-btn i {
    margin-left: 10px;
    color: #4A6782;
    font-size: 13px;
    font-weight: 600;
  }

  .dropdown {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 5px;
    position: absolute !important;
    display: none;
    right: 0 !important;
    width: max-content;
    text-align: left !important;
    /* border: 1px solid #E8E8E8; */
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  }



  .quotes-list {
    width: auto;
  }

  .influ-btns-label {
    position: relative;
    z-index: 1;
    color: #4A6782;
    margin-right: 5px;
    font-weight: 500;
    padding: 4px;
    gap: 11px;
    width: 100%;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .influ-btns form label input[type=checkbox] {
    /* margin-left: auto; */
    color: #fff;
    accent-color: #1d7a74;
  }

  .submit-btn-dropdwn {
    padding: 8px 5px 0px 5px;
    background: #fff;
    justify-content: center;
    display: flex;
    width: 100%;

    button {
      width: 80%;
      height: 35.428px;
      border-radius: 23px;
      background: var(--primary-clr);
      color: #fff !important;
      font-size: 14px;
      border: none;
      display: flex;
      font-weight: 600;
      text-align: center;
      align-items: center;
      justify-content: center;
    }

  }

  .influ-btns-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    appearance: none;
    outline: 2px solid var(--primary-clr);
    border-radius: 2px;
    outline-offset: -2px;
    background-color: var(--white);
  }


  .influ-btns-label input[type="checkbox"]:checked {
    accent-color: var(--primary-clr);
    appearance: auto;
    border-radius: 2px;
    outline: 2px solid var(--primary-clr);
  }

  /* ------------------  NORMAL TOP FILTER BTN CSS -------- */


  /* ====== FILTER BAND ======= */


  & .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: 52%;

      form {
        width: 100%;
        height: auto;

        input[type="text"] {
          height: auto;
          padding: 10px 48px 10px 10px;
          border-radius: 10px;
          background-color: var(--white);
          border: 1px solid #B0B0B0;
          color: #000;
          font-size: 14px;
          font-weight: 400;
          background-image: url(../images/Eromac-images/Dev-dashboard-imgs/icons/search-icon.svg);
          background-repeat: no-repeat;
          background-position: center right 0px;
          background-size: 37px;

          &::placeholder {
            color: #B0B0B0;
          }
        }
      }

    }

    .right-sec {
      width: auto;
      display: flex;
      align-items: center;
      gap: 10px;

      .daterange-btn img {
        width: 20px;
        height: auto;
        position: absolute;
        left: 15px;
      }

      .daterange-btn input[type="text"] {
        padding: 0px 10px 0px 50px;
        font-size: 14px;
        height: 36px;
        font-weight: 600;
        outline: none;
        color: var(--primary-clr);
        border: none;
        border-radius: 30px;
        background-color: transparent;
        width: 145px;
        cursor: pointer;
      }

      .daterange-btn input[type="text"]::placeholder {
        color: var(--primary-clr);
      }


      /* --- add a ne customer btn----- */

      a {
        height: 39px;
        width: max-content;
        color: #fff !important;
        border-radius: 9px;
        align-items: center;
        border: none;
        text-align: center;
        padding: 8px;
        display: flex;
        gap: 10px;
        align-items: center;
        background: #4A6782;
        font-size: 14px;
        text-transform: capitalize;
        font-weight: 500;
        margin: 0;
        margin-left: 10px;
      }

      /* --- add a ne customer btn----- */


    }

  }

  /* ====== FILTER BAND ======= */


}

& .manual-project-form-data {
  display: flex;
  justify-content: space-between;


  .left-sec-data {
    width: 55%;
    padding: 3px 15px;


    /* PLOT IAMGE CSS */

    .plot-image-wrap {
      padding-top: 30px;

      .heading-plot {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;

        h4 {
          color: #4A6782;
          font-size: 16px;
          font-weight: 800;
          margin-bottom: 0;
        }

      }

    }


    /* PLOT IAMGE CSS */




    /* ----- TAB AND PILL ------ */

    .nav-tabs {
      --bs-nav-tabs-border-width: 1px;
      --bs-nav-tabs-border-color: #dee2e6;
      --bs-nav-tabs-border-radius: 0.375rem;
      --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
      --bs-nav-tabs-link-active-color: #495057;
      --bs-nav-tabs-link-active-bg: #fff;
      --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
      border-bottom: none !important;
      margin-bottom: 0;
      justify-content: center;
      gap: 10px;
    }

    .tab-pill-border {
      /* box-shadow: 0px 1px 1.7px 1px #0000001A inset; */
      width: fit-content;
      padding: 5px;
      border-radius: 4px;
      margin-bottom: 26px;
      background: transparent;
    }

    .toptab-pill-wrap {
      display: flex;
      justify-content: flex-start;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
      color: #fff;
      background-color: #4A6782;
      font-weight: 500;
      border-radius: 5px;
      padding: 10px 25px;
      border: none;
      font-size: 16px;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.result.active {
      background-color: #AF2323;
    }

    .nav-tabs .nav-link {
      color: #4A6782;
      background: transparent;
      padding: 8px 25px;
      border-radius: 5px;
      font-size: 16px;
      border: 2px solid #4A6782;
    }

    .nav-link {
      display: block;
      padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
      font-size: var(--bs-nav-link-font-size);
      font-weight: 600;
      color: #A9A9A9;
      text-decoration: none;
      transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
      border: none;
    }

    /* ------- TAB AND PILL ------- */

    .create-manualprojectform {
      width: 100%;
      height: auto;
    }

    .create-manualprojectform>form {
      width: 100%;
      height: auto;
      background: #fff;
      box-shadow: 0px 2px 20px 0px #0000001A;
      padding: 12px;
      border-radius: 19px 10px;
      margin-bottom: 25px;
    }

    .new-manual-project {
      width: 100%;
      height: 45px;
      position: relative;
      display: flex;
      align-items: center;

      h3 {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin-bottom: 0;
        width: 50%;
      }

      span {
        font-size: 16px;
        font-weight: 400;
        color: #000;
      }

      input[type="text"] {
        width: 100%;
        height: 100%;
        border: 1px solid #000;
        outline: none;
        background: var(--white);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #000;
        padding: 0px 15px;

        &::placeholder {
          color: #6c757d;
        }
      }

      select {
        width: 100%;
        height: 100%;
        border: 1px solid #000;
        outline: none;
        background: var(--white);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #000;
        padding: 0px 15px;
        appearance: none;
        background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
        background-position: center right 14px;
        background-size: 26px;
        background-repeat: no-repeat;

        &::placeholder {
          color: #000;
        }

        option {
          color: #000;
          font-weight: 600;
        }

      }


    }


    /* =========== TOCUT FORMTABLE WRAP ========= */

    .fraction-key-btn {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 14px;
      gap: 10px;
      align-items: flex-start;
      width: 100%;
      flex-wrap: wrap;

      a:nth-child(1) {
        background: transparent;
        color: #4A6782;
        font-weight: 600;
        border: 2px solid #4A6782;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 9px 15px;
        display: flex;
        align-items: center;
        gap: 3px;
        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: #4A6782;
        font-weight: 600;
        border: 2px solid #4A6782;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 9px 15px;
        display: flex;
        align-items: center;
        gap: 3px;
        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(3) {
        background: #4A6782;
        color: #fff;
        font-weight: 600;
        border: 2px solid #4A6782;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 9px 15px;
        display: flex;
        align-items: center;
        gap: 3px;
        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(4) {
        background: #AF2323;
        color: #fff;
        font-weight: 600;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 11px 15px;
        display: flex;
        align-items: center;
        gap: 3px;
        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;
      }

    }

    .tocut-formtable-warp {


      .tocut-band-head {
        background-color: #42576B;
        padding: 7px 11px;
        border-radius: 6px;
        display: flex;
        align-items: anchor-center;
        justify-content: space-between;

        h3 {
          color: #fff;
          font-size: 16px;
          font-weight: 800;
          margin-bottom: 0;
          text-align: justify;
        }

      }


    }


    /* =========== TOCUT FORMTABLE WRAP ========= */


    /* TABLE CSS */

    .page-table {
      width: 100%;
      padding: 12px 0px;

      .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: 1px solid #888; */

        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 #4A6782;
          width: 0%;
        }

        td {
          font-weight: 500;
          font-size: 14px;
          color: #333333;
          text-align: center;
          padding: 10px 15px;
          border-right: 1px solid #4A6782;

          & .transactions-status-tag {
            font-weight: 600;
            font-size: 14px;
            display: flex;
            padding: 10px 20px;
            border-radius: 8px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            width: fit-content;
            margin: auto;

            &.succeeded {
              background: #EBFFF1;
              color: #119C2B;

              i {
                color: #22C348;
                font-size: 16px;
              }
            }

            &.refunded {
              background: #FFF9F0;
              color: #FFA723;

              i {
                color: #FFA723;
                font-size: 16px;
              }
            }

            &.failed {
              background: #FFF0F0;
              color: #FF0000;

              i {
                color: #FF0000;
                font-size: 16px;
              }
            }
          }

          & .bid-status-tag {
            font-weight: 500;
            font-size: 14px;
            color: var(--white);
            display: flex;
            padding: 10px 20px;
            border-radius: 8px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            width: fit-content;
            margin: auto;
            text-transform: capitalize;

            &.green {
              background: #1A9E00;
            }

            &.red {
              background: #F20000;
            }
          }
        }

        tr:nth-child(odd) {
          background-color: #fff;
        }

        tr:nth-child(even) {
          background-color: #fff;
        }
      }

      input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        appearance: none;
        outline: 2px solid #b3b3b3;
        border-radius: 2px;
        outline-offset: -2px;
        background-color: transparent;
      }


      input[type="checkbox"]:checked {
        accent-color: var(--primary-clr);
        appearance: auto;
        outline: 2px solid #b3b3b3;
        border-radius: 5px;
      }

    }

    /* TABLE CSS */

    /* --- ADD ITEMS BOX ----- */

    .accordian-one-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;

      .add-item-box {
        border: 1px solid #B0B0B0;
        padding: 10px;
        border-radius: 4px;
        margin-top: 28px;

        /* --- ACCORDIANS---- */

        .accordion .accordion-item {
          border-radius: 3px;
          border: none;
          margin-bottom: 0;
        }


        .accordion .accordion-item button[aria-expanded='true'] {
          /* border-bottom: 1px solid rgba(23, 23, 72, 0.5); */
          margin-bottom: 20px;
          display: flex;
          justify-content: space-between;
        }

        .accordion button {
          position: relative;
          display: flex;
          text-align: left;
          width: 100%;
          padding: 13px 12px;
          color: #fff;
          font-size: 1.15rem;
          font-weight: 400;
          border-radius: 6px;
          border: none;
          justify-content: space-between;
          background: #4A6782;
          outline: none;
          align-items: center;
        }

        .accordion button:hover,
        .accordion button:focus {
          cursor: pointer;
          color: #fff;
          display: flex;
          justify-content: space-between;
        }

        .accordion button:hover::after,
        .accordion button:focus::after {
          cursor: pointer;
          color: #171748;
          border: 1px solid #171748;
        }

        .accordion button .accordion-title {
          padding: 0;
          padding: 0;
          font-weight: 600;
          font-size: 14px;
          color: #fff;
        }

        .accordion button .icon {
          display: inline-block;
          position: absolute;
          top: auto;
          right: 10px;
          width: 22px;
          height: 22px;
          border: 1px solid;
          border-radius: 5px;
        }

        .accordion button .icon::before {
          display: block;
          position: absolute;
          content: '';
          top: 9px;
          left: 5px;
          width: 10px;
          height: 2px;
          background: #fff;
        }

        .accordion button .icon::after {
          display: block;
          position: absolute;
          content: '';
          top: 5px;
          left: 9px;
          width: 2px;
          height: 10px;
          background: currentColor;
        }

        .accordion button[aria-expanded='true'] {
          color: #fff;
        }

        .accordion button[aria-expanded='true'] .icon::after {
          width: 0;
        }

        .accordion button[aria-expanded='true']+.accordion-content {
          opacity: 1;
          max-height: max-content;
          transition: all 200ms linear;
          will-change: opacity, max-height;
        }

        .accordion .accordion-content {
          opacity: 0;
          max-height: 0;
          overflow: hidden;
          transition: opacity 200ms linear, max-height 200ms linear;
          will-change: opacity, max-height;
        }

        .accordion .accordion-content p {
          font-size: 13px;
          font-weight: 400;
          padding: 6px 8px 9px 9px;
          margin: 0;
          color: #333333;
          line-height: 25px;
        }

        /* --- ACCORDIANS---- */


        /* ------ ADD ITEM ACCORDIANS FORM ------ */

        .create-manualprojectform {
          width: 100%;
          height: auto;
        }

        /* ===== LISTING FORM UL LI CSS ====== */

        .listing-form {
          width: 100%;

          ul {
            border: 1px solid #B0B0B0;
            border-radius: 9px;
            margin-top: -10px;
          }

          li {
            border-top: 1px solid #B0B0B0;
            border-bottom: 1px solid #B0B0B0;
            padding: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #000000;
            cursor: pointer;
          }

          li:hover {
            background-color: #29A603;
            color: #fff;
          }

          li:first-child:hover {
            background-color: #29A603;
            color: #fff;
            border-radius: 9px 9px 0 0;
          }

          li:last-child:hover {
            background-color: #29A603;
            color: #fff;
            border-radius: 0 0 9px 9px;
          }

          li:first-child {
            border-top: none;
          }

          li:last-child {
            border-bottom: none;
          }

        }


        /* ===== LISTING FORM UL LI CSS ====== */

        .create-manualprojectform>form {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: flex-start;
        }

        .new-manual-project {
          width: 100%;
          height: 45px;
          position: relative;
          display: flex;
          align-items: center;

          h3 {
            font-size: 14px;
            font-weight: 400;
            color: #000;
            margin-bottom: 0;
            width: 80%;

            span {
              font-size: 11px;
              font-weight: 600;
              color: #000;
            }

          }

          input[type="text"] {
            width: 50%;
            height: 40px;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;

            &::placeholder {
              color: #000;
            }
          }

          select {
            width: 100%;
            height: 100%;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;
            appearance: none;
            background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
            background-position: center right 14px;
            background-size: 26px;
            background-repeat: no-repeat;

            &::placeholder {
              color: #000;
            }

            option {
              color: #000;
              font-weight: 600;
            }

          }

          input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            appearance: none;
            outline: 2px solid #b3b3b3;
            border-radius: 2px;
            outline-offset: -2px;
            background-color: transparent;
          }


          input[type="checkbox"]:checked {
            accent-color: var(--primary-clr);
            appearance: auto;
            outline: 2px solid #b3b3b3;
            border-radius: 5px;
          }


          /* Checkbox css */

          .select-role-nep {
            display: flex;
            gap: 40px;
          }

          .select-role-nep label.no-assign-check input[type="radio"] {
            appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            outline: 2px solid #00152B;
            outline-offset: 2px;
          }

          label.no-assign-check {
            display: flex;
            align-items: center;
            gap: 10px;
          }

          .select-role-nep label.no-assign-check input[type="radio"]:checked {
            background: #00152B;
            outline: 2px solid #00152B;
          }

          .select-role-nep label.no-assign-check h3 {
            color: #333333;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            text-align: left;
            margin-bottom: 0;
            width: max-content;
          }

          /* Checkbox css */


        }

        .align-create-btns {
          display: flex;
          justify-content: end;
          width: 100%;
        }

        .create-manual-bns {
          display: flex;
          gap: 15px;
          justify-content: center;

          a:nth-child(1) {
            background: transparent;
            color: #4A6782;
            font-weight: 600;
            border: 2px solid #4A6782;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 22px;
            cursor: pointer;
            font-size: 14px;
            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: #4A6782;
            color: #fff;
            font-weight: 600;
            /* border: 2px solid #4A6782; */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 34px;
            display: flex;
            align-items: center;
            font-size: 14px;
            outline: none !important;
            -webkit-transition: all 0.3sease -in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3sease -in-out;
          }

        }


        /* ------ ADD ITEM ACCORDIANS FORM ------ */



      }

    }


    .accordian-two-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;

      .add-item-box {
        border: 1px solid #B0B0B0;
        padding: 10px;
        border-radius: 4px;
        margin-top: 28px;
        width: 100%;

        /* --- ACCORDIANS---- */

        .accordion .accordion-item {
          border-radius: 3px;
          border: none;
          margin-bottom: 0;
        }


        .accordion .accordion-item button[aria-expanded='true'] {
          /* border-bottom: 1px solid rgba(23, 23, 72, 0.5); */
          margin-bottom: 20px;
          display: flex;
          justify-content: space-between;
        }

        .accordion button {
          position: relative;
          display: flex;
          text-align: left;
          width: 100%;
          padding: 13px 12px;
          color: #fff;
          font-size: 1.15rem;
          font-weight: 400;
          border-radius: 6px;
          border: none;
          justify-content: space-between;
          background: #4A6782;
          outline: none;
          align-items: center;
        }

        .accordion button:hover,
        .accordion button:focus {
          cursor: pointer;
          color: #fff;
          display: flex;
          justify-content: space-between;
        }

        .accordion button:hover::after,
        .accordion button:focus::after {
          cursor: pointer;
          color: #171748;
          border: 1px solid #171748;
        }

        .accordion button .accordion-title {
          padding: 0;
          padding: 0;
          font-weight: 600;
          font-size: 14px;
          color: #fff;
        }

        .accordion button .icon {
          display: inline-block;
          position: absolute;
          top: auto;
          right: 10px;
          width: 22px;
          height: 22px;
          border: 1px solid;
          border-radius: 5px;
        }

        .accordion button .icon::before {
          display: block;
          position: absolute;
          content: '';
          top: 9px;
          left: 5px;
          width: 10px;
          height: 2px;
          background: #fff;
        }

        .accordion button .icon::after {
          display: block;
          position: absolute;
          content: '';
          top: 5px;
          left: 9px;
          width: 2px;
          height: 10px;
          background: currentColor;
        }

        .accordion button[aria-expanded='true'] {
          color: #fff;
        }

        .accordion button[aria-expanded='true'] .icon::after {
          width: 0;
        }

        .accordion button[aria-expanded='true']+.accordion-content {
          opacity: 1;
          max-height: max-content;
          transition: all 200ms linear;
          will-change: opacity, max-height;
          display: flex;
          gap: 55px;
          justify-content: space-between;
        }

        .accordion .accordion-content {
          opacity: 0;
          max-height: 0;
          overflow: hidden;
          transition: opacity 200ms linear, max-height 200ms linear;
          will-change: opacity, max-height;
        }

        .accordion .accordion-content p {
          font-size: 13px;
          font-weight: 400;
          padding: 6px 8px 9px 9px;
          margin: 0;
          color: #333333;
          line-height: 25px;
        }

        /* --- ACCORDIANS---- */


        /* ------ ADD ITEM ACCORDIANS FORM ------ */

        .create-manualprojectform {
          width: 100%;
          height: auto;
        }

        /* ===== LISTING FORM UL LI CSS ====== */

        .listing-form {
          width: 100%;

          ul {
            border: 1px solid #B0B0B0;
            border-radius: 9px;
            margin-top: -10px;
          }

          li {
            border-top: 1px solid #B0B0B0;
            border-bottom: 1px solid #B0B0B0;
            padding: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #000000;
            cursor: pointer;
          }

          li:hover {
            background-color: #29A603;
            color: #fff;
          }

          li:first-child:hover {
            background-color: #29A603;
            color: #fff;
            border-radius: 9px 9px 0 0;
          }

          li:last-child:hover {
            background-color: #29A603;
            color: #fff;
            border-radius: 0 0 9px 9px;
          }

          li:first-child {
            border-top: none;
          }

          li:last-child {
            border-bottom: none;
          }

        }


        /* ===== LISTING FORM UL LI CSS ====== */

        .create-manualprojectform>form {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: flex-start;
        }

        .new-manual-project {
          width: 100%;
          height: 45px;
          position: relative;
          display: flex;
          align-items: center;

          h3 {
            font-size: 14px;
            font-weight: 400;
            color: #000;
            margin-bottom: 0;
            width: 80%;

            span {
              font-size: 11px;
              font-weight: 600;
              color: #000;
            }

          }

          input[type="text"] {
            width: 50%;
            height: 40px;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;

            &::placeholder {
              color: #000;
            }
          }

          select {
            width: 100%;
            height: 100%;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;
            appearance: none;
            background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
            background-position: center right 14px;
            background-size: 26px;
            background-repeat: no-repeat;

            &::placeholder {
              color: #000;
            }

            option {
              color: #000;
              font-weight: 600;
            }

          }

          input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            appearance: none;
            outline: 2px solid #b3b3b3;
            border-radius: 2px;
            outline-offset: -2px;
            background-color: transparent;
          }


          input[type="checkbox"]:checked {
            accent-color: var(--primary-clr);
            appearance: auto;
            outline: 2px solid #b3b3b3;
            border-radius: 5px;
          }


          /* Checkbox css */

          .select-role-nep {
            display: flex;
            gap: 40px;
          }

          .select-role-nep label.no-assign-check input[type="radio"] {
            appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            outline: 2px solid #00152B;
            outline-offset: 2px;
          }

          label.no-assign-check {
            display: flex;
            align-items: center;
            gap: 10px;
          }

          .select-role-nep label.no-assign-check input[type="radio"]:checked {
            background: #00152B;
            outline: 2px solid #00152B;
          }

          .select-role-nep label.no-assign-check h3 {
            color: #333333;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            text-align: left;
            margin-bottom: 0;
            width: max-content;
          }

          /* Checkbox css */


        }

        .align-create-btns {
          display: flex;
          justify-content: end;
          width: 100%;
        }

        .create-manual-bns {
          display: flex;
          gap: 15px;
          justify-content: center;

          a:nth-child(1) {
            background: transparent;
            color: #4A6782;
            font-weight: 600;
            border: 2px solid #4A6782;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 22px;
            cursor: pointer;
            font-size: 14px;
            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: #4A6782;
            color: #fff;
            font-weight: 600;
            /* border: 2px solid #4A6782; */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 34px;
            display: flex;
            align-items: center;
            font-size: 14px;
            outline: none !important;
            -webkit-transition: all 0.3sease -in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3sease -in-out;
          }

        }


        /* ------ ADD ITEM ACCORDIANS FORM ------ */



      }

    }

    /* --- ADD ITEMS BOX ----- */

    /* ------ NESTING NOW BTN ------ */

    .nest-now-btn {
      display: flex;
      justify-content: flex-end;
      padding-top: 25px;

      a {
        background: #AF2323;
        color: #fff;
        font-weight: 600;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
        padding: 15px 41px;
        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;
      }

    }


    /* ------ NESTING NOW BTN ------ */


  }

  .right-sec-data {
    width: 46%;
    padding: 3px 15px;


    /* PROFILE HEADING CSS */
    .profile-summary-main {
      border-left: 2px solid #6B7280;
      padding: 0;
      box-shadow: 0px 4px 20px 0px #0000001A;

      .heading-profile {
        background: #4A6782;
        padding: 10px;
      }

      h2 {
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 0;
        text-align: justify;
      }

    }

    /* PROFILE HEADING CSS */

    /* 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: 1px solid #888; */

        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 #4A6782;
        }

        td {
          font-weight: 500;
          font-size: 14px;
          color: #333333;
          text-align: center;
          padding: 10px 15px;
          border-right: 1px solid #4A6782;

          & .transactions-status-tag {
            font-weight: 600;
            font-size: 14px;
            display: flex;
            padding: 10px 20px;
            border-radius: 8px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            width: fit-content;
            margin: auto;

            &.succeeded {
              background: #EBFFF1;
              color: #119C2B;

              i {
                color: #22C348;
                font-size: 16px;
              }
            }

            &.refunded {
              background: #FFF9F0;
              color: #FFA723;

              i {
                color: #FFA723;
                font-size: 16px;
              }
            }

            &.failed {
              background: #FFF0F0;
              color: #FF0000;

              i {
                color: #FF0000;
                font-size: 16px;
              }
            }
          }

          & .bid-status-tag {
            font-weight: 500;
            font-size: 14px;
            color: var(--white);
            display: flex;
            padding: 10px 20px;
            border-radius: 8px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            width: fit-content;
            margin: auto;
            text-transform: capitalize;

            &.green {
              background: #1A9E00;
            }

            &.red {
              background: #F20000;
            }
          }
        }

        tr:nth-child(odd) {
          background-color: #fff;
        }

        tr:nth-child(even) {
          background-color: #fff;
        }
      }

      /* --- ADD ITEMS BOX ----- */

      .add-item-box {
        border: 1px solid #B0B0B0;
        padding: 10px;
        border-radius: 4px;
        margin-top: 28px;

        /* --- ACCORDIANS---- */

        .accordion .accordion-item {
          border-radius: 3px;
          border: none;
          margin-bottom: 0;
        }

        .accordion .accordion-item button[aria-expanded='true'] {
          /* border-bottom: 1px solid rgba(23, 23, 72, 0.5); */
          margin-bottom: 20px;
        }

        .accordion button {
          position: relative;
          display: flex;
          text-align: left;
          width: 100%;
          padding: 13px 12px;
          color: #fff;
          font-size: 1.15rem;
          font-weight: 400;
          border-radius: 6px;
          border: none;
          background: #4A6782;
          outline: none;
          align-items: center;
        }

        .accordion button:hover,
        .accordion button:focus {
          cursor: pointer;
          color: #fff;
        }

        .accordion button:hover::after,
        .accordion button:focus::after {
          cursor: pointer;
          color: #171748;
          border: 1px solid #171748;
        }

        .accordion button .accordion-title {
          padding: 0;
          padding: 0;
          font-weight: 600;
          font-size: 14px;
          color: #fff;
        }

        .accordion button .icon {
          display: inline-block;
          position: absolute;
          top: auto;
          right: 10px;
          width: 22px;
          height: 22px;
          border: 1px solid;
          border-radius: 5px;
        }

        .accordion button .icon::before {
          display: block;
          position: absolute;
          content: '';
          top: 9px;
          left: 5px;
          width: 10px;
          height: 2px;
          background: #fff;
        }

        .accordion button .icon::after {
          display: block;
          position: absolute;
          content: '';
          top: 5px;
          left: 9px;
          width: 2px;
          height: 10px;
          background: currentColor;
        }

        .accordion button[aria-expanded='true'] {
          color: #fff;
        }

        .accordion button[aria-expanded='true'] .icon::after {
          width: 0;
        }

        .accordion button[aria-expanded='true']+.accordion-content {
          opacity: 1;
          max-height: max-content;
          transition: all 200ms linear;
          will-change: opacity, max-height;
        }

        .accordion .accordion-content {
          opacity: 0;
          max-height: 0;
          overflow: hidden;
          transition: opacity 200ms linear, max-height 200ms linear;
          will-change: opacity, max-height;
        }

        .accordion .accordion-content p {
          font-size: 13px;
          font-weight: 400;
          padding: 6px 8px 9px 9px;
          margin: 0;
          color: #333333;
          line-height: 25px;
        }

        /* --- ACCORDIANS---- */


        /* ------ ADD ITEM ACCORDIANS FORM ------ */

        .create-manualprojectform {
          width: 100%;
          height: auto;
        }

        .create-manualprojectform>form {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: flex-start;
        }

        .new-manual-project {
          width: 100%;
          height: 45px;
          position: relative;
          display: flex;
          align-items: center;

          h3 {
            font-size: 14px;
            font-weight: 400;
            color: #000;
            margin-bottom: 0;
            width: 80%;
          }

          input[type="text"] {
            width: 50%;
            height: 40px;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;

            &::placeholder {
              color: #6c757d !important;
            }
          }

          select {
            width: 100%;
            height: 100%;
            border: 1px solid #000;
            outline: none;
            background: var(--white);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            padding: 0px 15px;
            appearance: none;
            background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
            background-position: center right 14px;
            background-size: 26px;
            background-repeat: no-repeat;

            &::placeholder {
              color: #000;
            }

            option {
              color: #000;
              font-weight: 600;
            }

          }

          /* Checkbox css */

          .select-role-nep {
            display: flex;
            gap: 40px;
          }

          .select-role-nep label.no-assign-check input[type="radio"] {
            appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            outline: 2px solid #00152B;
            outline-offset: 2px;
          }

          label.no-assign-check {
            display: flex;
            align-items: center;
            gap: 10px;
          }

          .select-role-nep label.no-assign-check input[type="radio"]:checked {
            background: #00152B;
            outline: 2px solid #00152B;
          }

          .select-role-nep label.no-assign-check h3 {
            color: #333333;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            text-align: left;
            margin-bottom: 0;
            width: max-content;
          }

          /* Checkbox css */


        }

        .align-create-btns {
          display: flex;
          justify-content: end;
          width: 100%;
        }

        .create-manual-bns {
          display: flex;
          gap: 15px;
          justify-content: center;

          a:nth-child(1) {
            background: transparent;
            color: #4A6782;
            font-weight: 600;
            border: 2px solid #4A6782;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 22px;
            cursor: pointer;
            font-size: 14px;
            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: #4A6782;
            color: #fff;
            font-weight: 600;
            /* border: 2px solid #4A6782; */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: 10px;
            padding: 10px 34px;
            display: flex;
            align-items: center;
            font-size: 14px;
            outline: none !important;
            -webkit-transition: all 0.3sease -in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3sease -in-out;
          }

        }


        /* ------ ADD ITEM ACCORDIANS FORM ------ */



      }

      /* --- ADD ITEMS BOX ----- */

    }

    /* TABLE CSS */

    /* PLOT IAMGE CSS */

    .plot-image-wrap {
      padding-top: 30px;

      .heading-plot {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;

        h4 {
          color: #4A6782;
          font-size: 16px;
          font-weight: 800;
          margin-bottom: 0;
        }

      }

    }


    /* PLOT IAMGE CSS */

  }


}


/* ---------------- MANUAL PROJECT FORM CSS --------- */


/* ------- SHORTCUT BACKGROUND COLORS ---- */

.bg-gray-input {
  background-color: #F3F3F3 !important;
}

/* ------- SHORTCUT BACKGROUND COLORS ---- */



/* -======== OPEN PROJCTS ACTION WRAP ========= */


.open-project-actions {
  display: flex;
  justify-content: center;

  a:nth-child(1) {
    height: 35px;
    color: #fff !important;
    border-radius: 9px;
    align-items: center;
    border: none;
    text-align: center;
    padding: 8px 18px 8px 18px;
    display: flex;
    align-items: center;
    background: #29A603;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0px 5px;
  }

  a.edit-group {
    background: #54A4EE !important;
  }

  a:nth-child(2) {
    height: 35px;
    color: #fff !important;
    border-radius: 9px;
    align-items: center;
    border: none;
    text-align: center;
    padding: 8px 18px 8px 18px;
    background: #AF2323;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0px 5px;
  }

}


/* -======== OPEN PROJCTS ACTION WRAP ========= */


/* =========== ADD A NEW GROUP FORM CSS ======= */

.add-new-group-main {
  border: 1px solid #B0B0B0;
  padding: 10px 13px;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;

  .create-manualprojectform {
    width: 100%;
    height: auto;
  }

  .create-newgroupform form {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 12px;
    border-radius: 19px 10px;
    margin-bottom: 25px;
  }

  .new-manual-project {
    width: 100%;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;

    h3 {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 0;
      width: 50%;
    }

    span {
      font-size: 16px;
      font-weight: 400;
      color: #000;
    }

    input[type="text"] {
      width: 100%;
      height: 100%;
      border: 1px solid #000;
      outline: none;
      background: var(--white);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #000;
      padding: 0px 15px;

      &::placeholder {
        color: #000;
      }
    }

    select {
      width: 100%;
      height: 100%;
      border: 1px solid #000;
      outline: none;
      background: var(--white);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #000;
      padding: 0px 15px;
      appearance: none;
      background: url(../images/Eromac-images/Dev-dashboard-imgs/icons/select-dropdown.svg);
      background-position: center right 14px;
      background-size: 26px;
      background-repeat: no-repeat;

      &::placeholder {
        color: #000;
      }

      option {
        color: #000;
        font-weight: 600;
      }

    }

  }

  .align-create-btns {
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .create-manual-bns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-right: 0px;
    margin-top: 17px;

    a:nth-child(1) {
      background: transparent;
      color: #4A6782;
      font-weight: 600;
      border: 2px solid #4A6782;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 22px;
      cursor: pointer;
      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: #4A6782;
      color: #fff;
      font-weight: 600;
      /* border: 2px solid #4A6782; */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 12px 17px;
      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;
    }

  }

  .add-new-customer-btn {
    display: flex;
    justify-content: end;
    margin-bottom: 23px;
  }

  button {
    background: #4A6782;
    color: #fff;
    font-weight: 600;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    display: flex;
    padding: 11px 12px;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    outline: none !important;
    -webkit-transition: all 0.3sease -in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease -in-out;
  }

  .new-group-form-nap {
    border: 1px solid #B0B0B0;
    padding: 14px;
  }

  input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: none;
    outline: 1px solid #4A6782;
    border-radius: 2px;
    outline-offset: -2px;
    background-color: transparent;
  }


  input[type="checkbox"]:checked {
    accent-color: var(--primary-clr);
    appearance: auto;
    outline: 1px solid #4A6782;
    border-radius: 5px;
  }

  .checked-newgroup-width {
    display: flex;
    gap: 15px;

    p {
      font-size: 16px;
      font-weight: 400;
      color: #4A6782;
    }

  }

}

/* =========== ADD A NEW GROUP FORM CSS ======= */




/* ====================== DEV MODE ( DASHBOARD CSS ) =================== */




/* ==================== DATEPKIER CSS =============== */

.daterangepicker td.start-date {
  border-radius: 0 !important;
}

.daterangepicker td.end-date {
  border-radius: 0;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding-right: 8px;
  border: 1px solid #4A6782;
  padding: 12px;
  border-radius: 26px;
}

/* ==================== DATEPKIER CSS =============== */


/* ===================== 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 #4A6782;
      height: 43px;
      font-family: 'Arial';
    }

    th:first-child {
      width: 50px;
    }

    td {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      text-align: center;
      padding: 10px 15px;
                  border-right: 1px solid #4A6782;
            border-bottom: 1px solid #4A6782;
      height: 38px;
      font-family: 'Arial';
    }
    td:first-child {
                  border-left: 1px solid #4A6782;
    }

    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;
    }

  }


}

/* ===================== TABLE CSS =================== */


/* ==================== FAQ NEW CSS =================== */

/*FAQ*/


.faq-wrap {
  width: 100%;
  height: auto;
  /* box-shadow: 0px 3px 6px rgb(0 0 0 / 15%); */
  padding: 20px;
  display: flex;
  gap: 12px;
}

.faq-left {
  width: 100%;
  height: auto;
}

.faq-right {
  width: 70%;
  height: auto;
}

.right-icons {
  display: flex;
  gap: 1px;
  /* margin-left: 16px; */
  margin: auto;

}

.right-icons img {
  width: 24px;
}

/*FAQ*/

/*FAQ*/

#accordion {
  background: #171748;
}

#accordion h1 {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 15px;
  color: #fff;
  /* font-family: 'Aleo', serif; */
  background: #00955D;
}

#accordion h1 img {
  width: 20px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

#accordion .panel {
  border: none;
  box-shadow: none;
  margin-bottom: 0px;
}

#accordion .panel-title {
  margin-bottom: 0px;
}

#accordion .panel-heading {
  padding: 0;
  border: none;
  background: transparent;
}

#accordion .panel-title a {
  padding: 15px 0px 15px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #171748;
  border-bottom: 1px solid #2F2F75;
  display: flex;
  position: relative;
  border-radius: 0px;
  align-items: center;
}

#accordion .panel-title-2 {
  margin-bottom: 0;
}

#accordion .panel-title-2 ul {
  padding: 0;
  margin: 0;
}

#accordion .panel-title-2 ul li {
  list-style: none;
}

#accordion .panel-title-2 ul li a {
  padding: 15px 0px 15px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  background: #000;
  border-bottom: 1px solid #fff;
  display: flex;
  position: relative;
  border-radius: 0px;
  align-items: center;
}

#accordion .panel-title a.collapsed {
  border-radius: 0px;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 15px;
  position: absolute;
  right: 30px;
  height: auto;
  top: auto;
  bottom: auto;
}

#accordion .panel-title a.collapsed:before {
  content: "\f078";
}

#accordion .panel-body {
  position: relative;
  border: none;
}

#accordion .panel-body ul {
  margin: 0;
  padding: 20px 0px 20px 30px;
}

#accordion .panel-body ul li {
  list-style: none;
  margin: 0px 0px 10px 20px;
}

#accordion .panel-body ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

#accordion ul li a.active {
  color: #CBCBCB;
}

/*RIGHT-PANEL*/
.accordion .accordion-item {
  border-radius: 10px;
  border: 1px solid #B0B0B0;
  margin-bottom: 15px;
  /* background: #E9F4FF80; */
}

.accordion .accordion-item button[aria-expanded='true'] {
  /* border-bottom: 1px solid rgba(23, 23, 72, 0.5); */
}

.accordion button {
  position: relative;
  display: flex;
  text-align: left;
  width: 100%;
  padding: 16px 10px;
  color: #1D5ADB;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  align-items: center;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #171748;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #171748;
  border: 1px solid #171748;
}

.accordion button .accordion-title {
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  color: #0D0D0D;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: auto;
  right: 10px;
  width: 22px;
  height: 22px;
  /* border: 1px solid; */
  border-radius: 22px;
}

.accordion button .icon::before {
  display: none;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10.3px;
  height: 3px;
  background: #0D0D0D;
  
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 25px;
  height: 16px;
  background: #0D0D0D;
  background: url(../images/Vector.svg) !important;
    background-position: center right 14px !important;
    background-size: 11px !important;
    background-repeat: no-repeat !important;
}

.accordion button[aria-expanded='true'] {
  color: #1D5ADB;
}

.accordion button[aria-expanded='true'] .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 25px;
  height: 11px;
  background: #0D0D0D;
  background: url(../images/minus.svg) !important;
    background-position: center right 14px !important;
    background-size: 11px !important;
    background-repeat: no-repeat !important;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 400;
  padding: 0px 8px 16px 9px;
  margin: 0;
  color: #333333;
  line-height: 25px;
}

/*RIGHT-PANEL*/

/*FAQ*/

/* ==================== FAQ NEW CSS =================== */

/* PAGINATION CSS */

.influ-pagi {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 35px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.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: rgba(0, 0, 0, 0.80);
  border: 1px solid #D6D6D6;
  width: 33px;
  border-radius: 42px;
  height: 33px;
  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 #D6D6D6;
  width: 33px;
  border-radius: 42px;
  height: 33px;
  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 #D6D6D6;
  width: 33px;
  border-radius: 42px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul li:first-child a:hover {
  color: #fff;
  background: #3A4B4C;
  border-color: #3A4B4C;
  transition: .5s;
}

.influ-pagi ul li:last-child a:hover {
  color: #fff;
  background: #3A4B4C;
  border-color: #3A4B4C;
  transition: .5s;
}

.influ-pagi ul li.active a {
  color: #fff;
  background: #4A6782;
  border-color: #4A6782;
  transition: .5s;
}

.influ-pagi ul li a:hover {
  color: #fff;
  background: #3A4B4C;
  border-color: #3A4B4C;
  transition: .5s;
}

.influ-pagi form {
  position: absolute;
  right: 0;
}



/* PAGINATION CSS */



/* ==================  PROFILE PAGE CSS ============== */

.my-profile-main {
  padding: 10px 18px;

  .profile-sec-inner {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: flex-end;

    img {}

    .content-inner {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;

      /* ------------- UPLOAD CSV CSS ---------------- */

      .upload-imge-wrap {
        position: relative;
        width: 100%;
      }

      .upload-imge-wrap .add-blog-image {
        overflow: inherit !important;
        border: 2px solid #4A6782;
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        /* height: 186px; */
        color: #416072;
        display: flex;
        margin: 0;
        padding: 11px 16px 11px 31px;
        text-align: center;
        border-radius: 7px !important;
        cursor: pointer;
        align-items: center;
      }

      .upload-icon-wrap {
        display: flex;
        justify-content: space-between;
        /* margin-top: 26px; */
      }

      .upload-imge-wrap img {
        position: absolute;
        top: 15px;
        left: 11px;
        display: flex;
        margin: auto;
        justify-content: center;
      }

      .sample-csv-nap {
        h3 {
          font-weight: 600;
          font-size: 15px;
          color: #00152B;
          margin-bottom: 16px;
          margin-top: 16px;
          text-align: center;
        }
      }

      /* ------------- UPLOAD CSV CSS ---------------- */

      a {
        background: #E0E0E0;
        color: #3C3C3C;
        font-weight: 600;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 14px;
        cursor: pointer;
        font-size: 14px;
        outline: none !important;
        -webkit-transition: all 0.3sease -in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3sease -in-out;
      }


    }

  }


  .profile-form-inner {
    border: 1px solid #B0B0B0;
    padding: 10px 10px;
    border-radius: 10px;
    margin-top: 34px;

    h2 {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
      margin-top: 0px;
      text-align: left;
      padding: 12px 18px;
      border-radius: 7px;
      background: #4A6782;
    }


  }


}


/* ==================  PROFILE PAGE CSS ============== */



/* ================= USER MANAGEMNET CSS ============= */

img.profile-imgss {
  width: 41px;
}

a.active-status {
  height: 35px;
  color: rgba(35, 140, 4, 1) !important;
  border-radius: 9px;
  align-items: center;
  border: none;
  text-align: center;
  padding: 8px 18px 8px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(41, 166, 3, 0.5);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0px 5px;
}

a.waiting-status {
  height: 35px;
  color: rgba(209, 129, 0, 1) !important;
  border-radius: 9px;
  align-items: center;
  border: none;
  text-align: center;
  padding: 8px 18px 8px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 174, 43, 0.5);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0px 5px;
}

/* ================= USER MANAGEMNET CSS ============= */



/* ============= USER PROFILE CSS ============== */

.my-userprofile-main {
  padding: 10px 18px;

  .profile-form-inner {
    border: 1px solid #B0B0B0;
    padding: 16px 16px;
    border-radius: 10px;
    margin-top: 34px;
  }

}

/* ============= USER PROFILE CSS ============== */



/* --------------  EROMAC USER ( DEV MODE ) CSS -----------  */



/* AFTER DEVELOPMENT CSS FIXES 10-06-2025 */

#activate-popup .modal-dialog {
  max-width: 389px
}

#assign-admin-popup .modal-dialog {
  max-width: 600px;
}

h3.subscription-width-set {
  width: 19%;
}


.faded-grey::placeholder {
  color: grey;
  opacity: 0.6;
}

/* AFTER DEVELOPMENT CSS FIXES 10-06-2025 */


/* SS080825 Begin */

.table-responsive {
  overflow-y: auto;
  max-height: 600px;
}

/* End Of SS080825 */

/* --------------  DATEPIKER CSS -----------  */

.daterangepicker td.start-date {
  border-radius: 0 0 0 0 !important;
}

.daterangepicker td.end-date {
  border-radius: 0 0 0 0 !important;
}


a.import-project-btn-table {
  background: #AF2323;
  color: #fff;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  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;
}


.profile-summary-main {
  border-left: 2px solid #6B7280;
  padding: 0;
  box-shadow: 0px 4px 20px 0px #0000001A;

  .heading-profile {
    background: #4A6782;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    a {
      background: #AF2323;
      color: #fff;
      font-weight: 600;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 10px;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 3px;
      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;
    }

  }

  h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 0;
    text-align: justify;
  }



}

.piece-id {
  width: 20% !important;
}

.temp-name {
  width: 21.5% !important;
}

.nameofcustomer {
  width: 41% !important;
}

.City-state-wrap-heading {
  width: 43.9% !important;
}

.newManual {
  width: 41.5% !important;
}

.contactName {
  width: 100% !important;
}

.phoneNo-addcust {
  width: 109% !important;
}

.addcust-email {
  width: 39% !important;
}

.table-bordered>:not(caption)>*>* {
  border-width: 0;
}


/* SS121125 Begin */

.keyboard-keys-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
  
    .box {
      border: 1px solid rgba(176, 176, 176, 1);
      border-radius: 5px;
      padding: 9px 23px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 80px;
  
      .alpha-wrap {
  
        h4 {
          color: #000;
          font-size: 22px;
          font-weight: 800;
          text-align: center;
          margin-bottom: 0;
          text-transform: uppercase;
        }
  
      }
  
      .alpha-no {
  
        p {
          color: rgba(175, 35, 35, 1);
          font-size: 14px;
          font-weight: 800;
          margin-bottom: 0;
          text-align: center;
        }
  
      }
  
    }
  
  
  }
  .second-common-popup .modal-content {
    border-radius: 10px;
    padding: 10px;
  
    h2 {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
      margin-top: 0px;
      text-align: left;
      padding: 12px 18px;
      border-radius: 7px;
      background: #4A6782;
    }
  
    & button[aria-label="Close"] {
      position: absolute;
      right: 21px;
      top: 19px;
      width: 28px;
      height: 28px;
      background: none;
      padding: 0;
      border: none;
      outline: none;
      z-index: 9;
  
      img {
        width: 100%;
        height: 100%;
      }
  
    }  

@media only screen and (max-width: 991px){
    #content main,.get-start-your-project-main{
        padding: 12px;
    }
    ul#custom-pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    ul#custom-pagination li{
        margin: 0;
    }
    table#results-table{
        min-width: 1200px !important;
    }
    #summary-table{
        min-width: 600px !important;
    }
    table#results-table th br{
        display: none;
    }
    table#cutFromTable {
        min-width: 600px;
    }
    .tocut-band-head{
        flex-wrap: wrap;
        gap: 12px;
    }
    .table-responsive table {
        min-width: 600px !important;
    }
    .new-manual-project .city-state-wrap {
        width: 100%;
    }
    .manual-project-fromband
    & .filter-band-inn
    .right-sec
    a {
        margin: 0;
    }
    .dashboard-flag-drop {
        left: 50% !important;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        margin: 0 auto;
    }
    .dasboard-mobile-profile-image {
        width: 80px;
        height: 80px;
        overflow: hidden;
        margin-right: 10px;
        border-radius: 6px;
    }
    .dasboard-mobile-profile-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    li.inactive.logout-bottom{
        padding: 0;
    }
    li.inactive.logout-bottom a img{
        margin: 0 !important;
    }
    .new-group-form-nap {
        border: 0;
        padding: 0;
        margin: 0;
    }
    .manual-project-fromband .filter-band-inn .right-sec a:first-child {
        margin-left: 0;
    }
    .manual-project-fromband .openproject-band-inn {
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: center !important;
    }
    div#comapny_users_list table {
        min-width: 1300px !important;
    }
    .create-manual-bns {
        margin: 15px 0 0 !important;
    }
    .create-manualprojectform > form > .align-create-btns > .create-manual-bns{
        margin: 0 !important;
        flex-wrap: wrap;
    }
    .create-manualprojectform .create-manual-bns a{
        padding: 10px !important;
    }
    #project_users_list table.table.table-bordered,#projects_list table{
        min-width: 1000px !important;
    }
    .essential-box-main .new-manual-project{
        height: 100% !important;
        padding: 0;
    }
    .essential-box-main .new-manual-project .cancel-btn-wrap{
        position: static;
    }
    .essential-box-main{
        margin-bottom: 10px;
    }
    .essential-box-main:last-child{
        margin-bottom: 0;
    }
    .conform-subscription-main {
        padding: 15px;
        border-radius: 15px;
    }
    .conform-subscription-main form#paymentForm {
        padding: 0;
    }
    .conform-subscription-main form#paymentForm .innersubscription-form-wp {
        gap: 20px;
        width: 100%;
        padding-top: 10px;
    }
    .conform-subscription-main .innersubscription-form-wp .eromac-left-field{
        height: auto;
    }
    .conform-subscription-main .innersubscription-form-wp .eromac-left-field input,.conform-subscription-main .innersubscription-form-wp .eromac-left-field select,.conform-subscription-main .innersubscription-form-wp .eromac-left-field .form-control{
        height: 48px !important;
    }
    .conform-subscription-main .innersubscription-form-wp .eromac-left-field .form-control .__PrivateStripeElement{
        height: 100%;
        display: flex !important;
        align-items: center;
    }
    .conform-subscription-main .innersubscription-form-wp .row{
        --bs-gutter-y: 20px;
    }
}
@media only screen and (max-width: 479px){
    .image-user-inner {
        width: 100%;
    }
    .image-user-inner img{
        width: 100% !important;
        height: 100% !important;
    }
    .manual-project-fromband .quotes .dropdown{
        left: 0;
    }
    .dicountinformation-wpp{
        position: relative;
    }
    .dicountinformation-wpp .tooltip-container{
        position: static;
    }
    .dicountinformation-wpp .tooltip-text{
        left: 0;
        transform: none;
        min-width: 100%;
    }
    .conform-subscription-main .innersubscription-form-wp .terms-privacy-wrap {
        padding-top: 0;
    }
    .conform-subscription-main .innersubscription-form-wp .terms-privacy-wrap span{
        font-size: 16px;
    }
    .conform-subscription-main form#paymentForm .innersubscription-form-wp {
        gap: 10px;
        padding-top: 20px;
    }
    .conform-subscription-main form#paymentForm h1 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .conform-subscription-main form#paymentForm h2 {
        font-size: 16px;
    }
    .conform-subscription-main form#paymentForm {
        gap: 0;
    }
}

/* End Of SS121125 */