﻿@charset "UTF-8";
:root {
  --color-border: #EDEDED;
  --color-white: #ffffff;
  --color-angle: #B4B4B4;
  --color-primary: #29A2AC;
  --color-placeholder: #A7A7A7;
  --color-black: #000;
  --color-green: #136269;
  --color-background: #F2F2F2;
  --color-head: #2E666A;
  --color-red: #F31A1A;
  --color-icon: #1B5559;
  --color-grey: #474646;
  --border-grey: #ccc;
  --accordion-icon: #A5ABC3;
  --accordion-star: #E8BC0C;
  --accordion-star-gray: #E6E6E6;
  --accordion--card-arrow: #494E4E;
  --lead-card-text: #393A3D;
  --color-icon: #1B5559;
  --color-grey: #474646;
  --filter-border: #D9DCE0;
  --color-filter: #393A3D;
  --color-custom-filter: #F8F9FB;
  --color-scroll-bar: #D9D9D9;
  --color-scroll-thumb: #949494;
  --table-data-col: #AFB3B7;
  --table-border-lte: #CDD1E4;
  --table-head: #191D22;
  --table-border-lte: #444444;
  --button-border: #424548;
  --color-scroll-thumb-hover: #878585;
  --button-text: #AFB3B7;
  --color-lite-font: #555B6C;
  --color-lite-blue: #4D5864;
  --advance-filter: #F2F3FA;
  --per-black:#363636;
  --icon-lite-black:#565656;
  --topbar-border-bottom:#C3C1C1;
  --success-green:#0A6407;
  --lite-green:#E5FFF0;
  --trend-up:#0A6407;
  --trend-down:#FF0000;
  --toggle-label:#282828;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 200;
  color: var(--color-black);
  text-rendering: optimizeLegibility;
  overflow-y: scroll;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.erp-lead-header {
  width: 100%;
  padding: 11px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 111;
}
.erp-lead-header__heading-logo {
  margin-bottom: 0;
  width: 110px;
  height: auto;
}
@media only screen and (max-width: 48em) {
  .erp-lead-header__heading-logo {
    display: none;
  }
}
.erp-lead-header__lead-search {
  border-radius: 20px;
  background: rgba(46, 102, 106, 0.1);
  border: 0;
  width: 360px;
  padding: 8px 18px;
  outline: 0;
  color: var(--color-black);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding-left: 28px;
}
.erp-lead-header__lead-search::-webkit-search-cancel-button {
  display: none;
}
@media only screen and (max-width: 62.3125em) {
  .erp-lead-header__lead-search {
    width: 350px;
  }
}
@media only screen and (max-width: 48em) {
  .erp-lead-header__lead-search {
    width: 300px;
  }
}
@media only screen and (max-width: 37.5em) {
  .erp-lead-header__lead-search {
    width: 200px;
  }
}
.erp-lead-header__lead-search::-moz-placeholder {
  color: var(--color-placeholder);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.erp-lead-header__lead-search::placeholder {
  color: var(--color-placeholder);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.erp-lead-header__lead-search-main {
  position: relative;
}
.erp-lead-header__lead-search-icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-placeholder);
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.erp-lead-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.erp-lead-header__message-main {
  position: relative;
}
.erp-lead-header__notification-main {
  position: relative;
}
.erp-lead-header__message-icon {
  stroke: var(--color-black);
  width: 19px;
  height: 20px;
}
.erp-lead-header__notification-icon {
  stroke: var(--color-black);
  width: 19px;
  height: 20px;
}
.erp-lead-header__message-count {
  width: 18px;
  height: 14px;
  background-color: var(--color-green);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -11px;
  color: var(--color-white);
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  padding-top: 2px;
}
.erp-lead-header__notification-count {
  width: 18px;
  height: 14px;
  background-color: var(--color-red);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -8px;
  color: var(--color-white);
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  padding-top: 2px;
}
.erp-lead-header__user-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.erp-lead-header__user-img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow:hidden;
  object-fit:cover;
}
.erp-lead-header__user-name {
  color: var(--color-black);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 48em) {
  .erp-lead-header__user-name {
    display: none;
  }
}
.erp-lead-header__user-role {
  margin-bottom: 0;
  color: var(--color-placeholder);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 48em) {
  .erp-lead-header__user-role {
    display: none;
  }
}

.center_wrapper {
  grid-column: 1/25;
  min-height: calc(100vh - 213px);
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
}
@media only screen and (max-width: 75em) {
  .center_wrapper {
    min-height: unset;
  }
}

.lead_container {
  width: 100%;
  position: relative;
  min-height: 100vh;
  background-color: var(--color-background);
}

.leads-sidemenu {
  min-width: 210px;
  width: 250px;
  background: linear-gradient(180deg, #228D96 0%, #116369 100%);
  padding: 15px 0;
  transition: 0.3s ease all;
  position: fixed;
  left: 0;
  z-index: 111;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu {
    width: 220px;
    min-width: 220px;
  }
}
@media only screen and (max-width: 48em) {
  .leads-sidemenu {
    width: 70px;
    min-width: 70px;
  }
}
.leads-sidemenu--collapsed {
  min-width: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.leads-sidemenu--collapsed .lead-main-area {
  margin-left: 80px;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu--collapsed {
    min-width: 70px;
    width: 70px;
  }
}
.leads-sidemenu--collapsed .leads-sidemenu__logo {
  width: 40px;
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
}
.leads-sidemenu--collapsed .leads-sidemenu__list-icon {
  width: 30px;
  height: 20px;
}
.leads-sidemenu--collapsed .leads-sidemenu__item {
  justify-content: center;
}
.leads-sidemenu--collapsed .leads-sidemenu__item::after {
  content: attr(data-title);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background-color: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  margin-left: 12px;
  z-index: 10;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu--collapsed .leads-sidemenu__item::after {
    font-size: 12px;
  }
}
.leads-sidemenu--collapsed .leads-sidemenu__item::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 2px;
  border: 6px solid transparent;
  border-right-color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9;
}
.leads-sidemenu--collapsed .leads-sidemenu__item:hover::after, .leads-sidemenu--collapsed .leads-sidemenu__item:hover::before {
  opacity: 1;
}
.leads-sidemenu--collapsed .leads-sidemenu__item.active {
  background: linear-gradient(204deg, #589DA2 43.08%, #5AC8D0 90%);
}
.leads-sidemenu--collapsed .leads-sidemenu__list-main {
  display: none;
}
.leads-sidemenu__logo {
  width: 58px;
  height: 35px;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}
.leads-sidemenu__logo--container {
  padding-left: 15px;
}
.leads-sidemenu__sidemenu-icon {
  position: absolute;
  left: -35px;
  top: 0;
  cursor: pointer;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__sidemenu-icon {
    width: 70px;
    top: 3px;
  }
}
@media only screen and (max-width: 48em) {
  .leads-sidemenu__sidemenu-icon {
    display: none;
  }
}
.leads-sidemenu__list {
  list-style: none;
  margin: 17px 0;
  padding-left: 0;
  min-height: 100vh;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 15px;
  padding-bottom: 80px;
}
.leads-sidemenu__list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background: linear-gradient(180deg, #228D96 0%, #116369 100%);
  border-radius: 15px;
}
.leads-sidemenu__list::-webkit-scrollbar-thumb {
  background: var(--color-head);
  border-radius: 15px;
}
.leads-sidemenu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
  padding: 10px 8px;
  transition: 0.3s ease-in-out;
  position: relative;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__item {
    margin: 10px 0;
    padding: 8px;
  }
}
.leads-sidemenu__item:hover {
  border-radius: 5px;
  background: rgba(124, 245, 255, 0.2);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.leads-sidemenu__item.active {
  border-radius: 5px;
  background: linear-gradient(90deg, #3AABB4 0%, #093A3F 100%);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.leads-sidemenu__item.active .leads-sidemenu__list-icon {
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__item.active .leads-sidemenu__list-icon {
    width: 20px;
    height: 20px;
  }
}
.leads-sidemenu__item.active .leads-sidemenu__list-item {
  font-size: 13px;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__item.active .leads-sidemenu__list-item {
    font-size: 12px;
  }
}
.leads-sidemenu__item.active .leads-sidemenu__right-angle {
  width: 20px;
  height: 20px;
  transition: 0.3s ease-in-out;
}
.leads-sidemenu__list-icon {
  stroke: var(--color-white);
  width: 18px;
  height: 20px;
}
.leads-sidemenu__list-item {
  color: var(--color-white);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__list-item {
    font-size: 14px;
  }
}
.leads-sidemenu__list-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.leads-sidemenu__right-angle {
  width: 16px;
  height: 16px;
  stroke: var(--color-angle);
}
.leads-sidemenu__list-icon-parent {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 90em) {
  .leads-sidemenu__list-icon-parent {
    width: 23px;
    height: 23px;
  }
}

.erp-main-body {
  min-height: 100vh;
  padding: 41px;
}
.erp-main-body.listing {
  padding: 25px;
}
@media only screen and (max-width: 90em) {
  .erp-main-body.listing {
    padding: 15px;
  }
}
@media only screen and (max-width: 90em) {
  .erp-main-body {
    padding: 21px;
  }
}
.erp-main-body__module-heading {
  color: var(--color-head);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.erp-main-body__module-heading.account-heading {
  color: #2E666A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}
.erp-main-body__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
@media only screen and (max-width: 90em) {
  .erp-main-body__head {
    margin-bottom: 15px;
  }
}
.erp-main-body__head.accounts {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 8px 4px 0px rgba(217, 220, 224, 0);
  padding: 10px;
}
.erp-main-body__head-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.erp-main-body__primary-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.erp-main-body__primary-button button {
  color: var(--color-filter);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid var(--filter-border);
  padding: 6px 10px;
  outline: 0;
  position: relative;
  transition: 0.3s;
}
.erp-main-body__primary-button button:hover {
  background-color: #f9f7f7;
}
.erp-main-body__secondary-button button {
  color: var(--color-white);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  background-color: var(--color-head);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--filter-border);
  padding: 7px 10px;
  outline: 0;
  position: relative;
  transition: 0.3s;
}
.erp-main-body__secondary-button button:hover {
  background-color: #254d50;
}
.erp-main-body__secondary-button button svg {
  stroke: var(--color-white);
}

.erp-lead-type {
    display: grid;
    /*grid-template-columns: repeat(5, 1fr);*/
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    width: 100%;
    gap: 15px;
}
@media only screen and (max-width: 106.25em) {
    .erp-lead-type {
        grid-template-columns: repeat(4, minmax(200px, 1fr));
    }
}
@media only screen and (max-width: 90em) {
    .erp-lead-type {
        grid-template-columns: repeat(4, minmax(200px, 1fr));
    }
}
@media only screen and (max-width: 75em) {
    .erp-lead-type {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}
@media only screen and (max-width: 62.3125em) {
    .erp-lead-type {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}
@media only screen and (max-width: 48em) {
    .erp-lead-type {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
        padding-right: 0;
    }
}
.erp-lead-type__lead-type {
  position: relative;
  padding: 2px;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 15px;
  box-shadow: 0px 8px 6px 0px rgba(205, 207, 210, 0.11);
}
.erp-lead-type__lead-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(94, 165, 170, 0.9098039216), #2e666a);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}
.erp-lead-type__lead-type:hover::before {
  opacity: 1;
}
.erp-lead-type__lead-type:hover .erp-lead-type__right-angle {
  scale: 1.3;
}
.erp-lead-type__lead-type-inner {
  border-radius: 15px;
  background: var(--color-white);
  width: -moz-max-content;
  width: max-content;
  padding: 26px;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease all;
  height: 100%;
  min-height :10rem;
}
.erp-lead-type__box-background {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 15px;
}
.erp-lead-type__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.erp-lead-type__lead-icon {
  stroke: var(--color-icon);
  width: 38px;
  height: 38px;
}
.erp-lead-type__right-angle {
  width: 25px;
  height: 25px;
  stroke: var(--color-icon);
  cursor: pointer;
  transition: 0.3s ease all;
}
.erp-lead-type__lead-type-head {
  color: var(--color-grey);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 90em) {
    .erp-lead-type__lead-type-head {
        font-size: 16px;
    }
}
.erp-lead-type__lead-type-para {
    color: rgba(71, 70, 70, 0.8);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3rem;
}
@media only screen and (max-width: 90em) {
  .erp-lead-type__lead-type-para {
    font-size: 14px;
  }
}

.erp-filter {
  border-radius: 8px 8px 0px 0px;
  border: 1px solid var(--filter-border);
  background: var(--color-white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media only screen and (max-width: 48em) {
  .erp-filter {
    display: block;
  }
}
.erp-filter__dropdown {
  position: relative;
}
.erp-filter__filter-search-main {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--filter-border);
  border-radius: 4px;
  padding: 6px 0;
}
.erp-filter__filter-search-main.erp-custom-dropdown {
  border: none;
  width: unset;
}
.erp-filter__filter-search-main.filter-searchbar {
  width: 19rem;
}
@media only screen and (max-width: 48em) {
  .erp-filter__filter-search-main.filter-searchbar {
    width: 100%;
  }
}
.erp-filter__filter-search-main.filter-searchbar input {
  width: 100%;
  padding-right: 5px;
}
.erp-filter__filter-search {
  outline: 0;
  color: var(--color-filter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  border-style: none;
  margin-left: 5px;
}
.erp-filter__filter-search.accounts {
  border-radius: 8px;
  border: 1px solid #D4D4D4;
  padding: 7px 22px;
  padding-right: 12px;
  font-size: 11px;
}
.erp-filter__filter-search.accounts::-moz-placeholder {
  color: #D4D4D4;
}
.erp-filter__filter-search.accounts::placeholder {
  color: #D4D4D4;
}
@media only screen and (max-width: 85.37em) {
  .erp-filter__filter-search {
    width: 250px;
  }
}
@media only screen and (max-width: 75em) {
  .erp-filter__filter-search {
    font-size: 11px;
    width: 200px;
  }
}
@media only screen and (max-width: 64em) {
  .erp-filter__filter-search {
    width: 200px;
  }
}
@media only screen and (max-width: 37.5em) {
  .erp-filter__filter-search {
    width: 150px;
  }
}
.erp-filter__filter-search::-moz-placeholder {
  color: var(--color-filter);
}
.erp-filter__filter-search::placeholder {
  color: var(--color-filter);
}
.erp-filter__filter-search::-webkit-search-cancel-button {
  display: none;
}
.erp-filter__search-icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-filter);
  min-width: 16px;
  min-height: 16px;
}
.erp-filter__search-icon.account-search {
  stroke: #D4D4D4;
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 75em) {
  .erp-filter__search-icon {
    width: 13px;
  }
}
.erp-filter__filters {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 75em) {
  .erp-filter__filters {
    gap: 6px;
  }
}
@media only screen and (max-width: 48em) {
  .erp-filter__filters {
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
.erp-filter__filters-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.erp-filter__filter-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border-radius: 4px;
  border: 1px solid var(--filter-border);
  padding: 6px 10px;
  outline: 0;
}
@media only screen and (max-width: 75em) {
  .erp-filter__filter-dropdown-btn {
    white-space: nowrap;
    padding: 6px 5px;
  }
}
@media only screen and (max-width: 48em) {
  .erp-filter__filter-dropdown-btn {
    width: 100%;
  }
}
.erp-filter__filter-dropdown-btn span {
  color: var(--color-filter);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .erp-filter__filter-dropdown-btn span {
    font-size: 11px;
  }
}
.erp-filter__filter-parent {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .erp-filter__filter-parent {
    width: 100%;
  }
}
.erp-filter__angle-down-icon {
  width: 12px;
  height: 12px;
  stroke: var(--color-filter);
}
.erp-filter__filter-icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-filter);
  position: relative;
}
.erp-filter__filter-count {
    width: 15px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    background-color: var(--color-head);
    border-radius: 50%;
}
.erp-filter__filter-custom-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  border-radius: 10px;
  border: 1px solid var(--color-custom-filter);
  background-color: var(--color-white);
  box-shadow: 0 5px 10px rgba(13, 15, 18, 0.15);
  padding: 10px;
  width: 230px;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  z-index: 9;
}
.erp-filter__filter-custom-dropdown.open {
  display: block;
}
.erp-filter__filter-custom-dropdown::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: var(--color-scroll-bar);
  border-radius: 15px;
}
.erp-filter__filter-custom-dropdown::-webkit-scrollbar-thumb {
  background-color: var(--color-scroll-thumb);
  border-radius: 15px;
}
.erp-filter__dropdown-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0px;
  position: relative;
  min-height: 180px;
}
.erp-filter__dropdown-item {
  text-align: left;
  color: var(--color-filter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  gap: 3px;
  padding: 5px 0;
  cursor: pointer;
}
.erp-filter__dropdown-item .form-check-input {
  width: 15px;
  height: 15px;
}
.erp-filter__dropdown-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.erp-filter__dropdown-item label {
  width: 10rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}
.erp-filter__clearall-btn {
  margin-right: 15px;
  color: var(--color-filter);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  white-space:nowrap;
}
@media only screen and (max-width: 75em) {
  .erp-filter__clearall-btn {
    margin-right: 4px;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 11px;
  }
}
.erp-filter__date {
  position: absolute;
  width: 69px;
  opacity: 0;
}
.erp-filter__date.range-picker {
  width: 157px;
}
.erp-filter__filter-count-number {
    width: 17px;
    height: 17px;
    background-color: var(--color-head);
    color: var(--color-white);
    display : flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    top: -8px;
    display: none;
}

.table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
}

.tabulator-header-contents {

  border: 0px solid #FFF;
  background: #228b94;
}


.tabulator-col-content {
    border: 0px solid #FFF;
    background: #228b94;

}

.tabulator {
  border: unset !important;
  background-color: #fff !important;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  height: 43px !important;
  line-height: 38px !important;
  padding: 0 10px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
}

#employee-table {
  width: 100%;
  overflow-x: auto;
  /* Allow scroll within the table if needed */
}

.tabulator {
  width: 100% !important;
  /* Full width */
  max-width: 100% !important;
  /* No overflow */
  box-sizing: border-box;
  border: unset !important;
  background-color: #fff !important;
}

.tabulator-table {
  min-width: 100% !important;
}

.tabulator-cell {

  padding: 11px !important;
  line-height: normal !important;
  height: 54px;
  color: var(--text-color, #393A3D);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  border-right: 1px solid #dddddd !important;

}

    .tabulator-cell:last-child {
        border-right: 0 !important;
    }
    .tabulator-cell button {
  padding: 0px 12px !important;
}

.tabulator .tabulator-header .tabulator-col {
  border-right: 1px solid #dddddd !important;
}

.tabulator-row.tabulator-group {
  display: flex !important;
  align-items: center !important;
}
.tabulator-row {
    border-bottom: 1px solid #ede8e8 !important;
}

.tabulator-col-sorter {
    background: none !important;
    /* remove default background */
    width: 16px;
    height: 16px;
    background-image: url('@Url.Content("~/images/up-arrow.png")');
    /* default icon */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* when ascending */
.tabulator-col[aria-sort=ascending] .tabulator-col-sorter {
   
    background-image: url('@Url.Content("~/images/up-arrow.png")');
}

/* when descending */
.tabulator-col[aria-sort=descending] .tabulator-col-sorter {
    
    background-image: url('@Url.Content("~/images/down.png")');
}

.tabulator-col-sorter {
  position: relative;
  width: 16px;
  height: 16px;
  overflow: visible;
}

    .tabulator-col-sorter::after {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        width: 13px;
        height: 14px;
        background-image: url('@Url.Content("~/images/up-arrow.png")');
        background-size: contain;
        background-repeat: no-repeat;
    }

/* Change icon on ascending sort */
.tabulator-col[aria-sort=ascending] .tabulator-col-sorter::after {
    background-image: url('@Url.Content("~/images/up-arrow.png")');
}

/* Change icon on descending sort */
.tabulator-col[aria-sort=descending] .tabulator-col-sorter::after {
    background-image: url('@Url.Content("~/images/down.png")');
}

.tabulator-arrow {
  display: none;
}

.tabulator-row .tabulator-cell.tabulator-frozen {
  display: inline-flex !important;
  align-items: center !important;
}

.tabulator-row .tabulator-cell.tabulator-frozen span {
  color: #2e666a !important;
  line-height: 1 !important;
}

.tabulator-footer-contents div {
  border-top: 0 !important;
  background: transparent !important;
}

/* Base sorter styling */
.tabulator-col-sorter {
  position: relative;
  width: 16px;
  overflow: visible;
  background: none !important;
}

/* Hide default icon unless sorted */
.tabulator-col-sorter::after {
  content: "";
  display: none;
  /* hide by default */
  position: absolute;
  top: 12px;
  left: 0;
  width: 13px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Show icon only on sorted column — ascending */
.tabulator-col[aria-sort=ascending] .tabulator-col-sorter::after {
    display: block;
    background-image: url('../images/up-arrow.png');
    /*background-image: url('@Url.Content("~/images/up-arrow.png")');*/
}

/* Show icon only on sorted column — descending */
.tabulator-col[aria-sort=descending] .tabulator-col-sorter::after {
    background-image: url('../images/down.png');
    display: block;
    /*background-image: url('@Url.Content("~/images/down.png")');*/
}

.tabulator .tabulator-footer .tabulator-page-size {
  padding: 8px 5px !important;
}

.tabulator .tabulator-footer .tabulator-page {
  padding: 8px 18px !important;
}

.tabulator .tabulator-footer .tabulator-page.active {
    background: #18747b;
    color: #fff !important;
    border: 1px solid #18747b;
}
    .tabulator .tabulator-footer .tabulator-page:not(disabled):hover {
        background: #02393edb !important;
    }

    .tabulator .tabulator-footer .tabulator-footer-contents {
        padding: 12px 10px !important;
        background-color: #fff !important;
    }

.tabulator .tabulator-footer .tabulator-page:disabled {
  color: #393A3D !important;
}

.tabulator .tabulator-footer .tabulator-page-size {
  color: #393A3D !important;
  outline: 0 !important;
}

.tabulator .tabulator-header .tabulator-col {
  background: #228b94 !important;
  justify-content: flex-end !important;
}

.tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
  border-top: 1px solid #dddddd !important;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  text-align: left;
}

.tabulator .tab-align-right {
  text-align: right !important;
}

.tabulator .tab-align-left {
  text-align: left !important;
}

.tabulator-row .tabulator-cell img {
  width: 26px !important;
  height: 26px !important;
}

.loader-tabulator {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #2e666a;
  width: 35px;
  height: 35px;
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

.loader-main {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.loader-page {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #2e666a;
  width: 55px;
  height: 55px;
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  display: flex;
  gap: 0;
  max-width: unset;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.table-section {
  flex: 1;
}

.tabulator {
  border: none;
}

.tabulator .tabulator-header {
  background: #4a9b9b;
  color: white;
  font-weight: bold;
  border: none;
}

.tabulator .tabulator-header .tabulator-col {
  background: #4a9b9b;
  border-right: 1px solid #3a8b8b;
}

.tabulator .tabulator-header .tabulator-col:last-child {
  border-right: none;
}

.tabulator-row:hover {
  background-color: #f8f9fa;
}

.tabulator-cell {
  padding: 12px 16px;
  border-right: 1px solid #e0e0e0;
}

.tabulator-cell:last-child {
  border-right: none;
}

.tabulator-group-toggle {
  margin-left: 0px;
  background: #2e666a;
  border-radius: 50%;
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
  border-top: 5px solid #fff !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  margin-right: 0 !important;
}

.tabulator-row.tabulator-group {
  font-weight: 600 !important;
  font-size: 14px !important;
  gap: 5px !important;
}

.tabulator-row.tabulator-group span {
  display: none !important;
}

.tabulator-row.tabulator-group .tabulator-group-toggle {
  display: flex !important;
}

.tabulator-row.tabulator-group .tabulator-arrow {
  border-left: 5px solid #fff !important;
  margin-right: 0 !important;
}

.tabulator-row.tabulator-group .tabulator-arrow {
  border-top: 5px solid transparent !important;
}

.tabulator-row.tabulator-group {
  border-bottom: transparent !important;
  border-right: 1px solid transparent !important;
}



.mobile-filters {
  background-color: transparent;
  border: 1px solid var(--color-filter);
  color: var(--color-black);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  display: none;
  align-items: center;
  border-radius: 30px;
  padding: 5px;
}
@media only screen and (max-width: 64em) {
  .mobile-filters.report-mobile-filter {
    display: flex;
  }
}
.mobile-filters svg {
  margin-right: 0;
  width: 16px;
  height: 16px;
  stroke: var(--color-filter);
}
@media only screen and (max-width: 62.3125em) {
  .mobile-filters {
    display: flex;
  }
}

.filter-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
}
.filter-offcanvas.open {
  right: 0;
}
.filter-offcanvas__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
}
.filter-offcanvas__close svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-filter);
}
@media only screen and (max-width: 37.5em) {
  .filter-offcanvas__close svg {
    width: 20px;
    height: 20px;
  }
}
.filter-offcanvas__title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-filter);
  margin-bottom: 40px;
}
.filter-offcanvas__name {
  color: var(--color-filter);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.filter-offcanvas__filter {
  padding: 14px 0 28px;
}

.filter-accordion__item {
  margin-bottom: 10px;
  overflow: hidden;
  border-bottom: 1px solid var(--button-border);
}
.filter-accordion__header {
  background-color: transparent;
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.filter-accordion__header.filterActive .accordion-chevron {
  transform: rotate(180deg);
}
.filter-accordion__header.filterActive h5 {
  font-weight: 600;
  color: var(--color-filter);
}
.filter-accordion__header .accordion-chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  stroke: var(--color-filter);
}
.filter-accordion__content {
  max-height: 0;
  background-color: var(--color-white);
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.filter-accordion__content--options {
  display: flex;
  flex-wrap: wrap;
  max-height: 160px;
  overflow-y: auto;
  padding-bottom: 15px;
}
.filter-accordion__content--options::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: var(--color-scroll-bar);
  border-radius: 15px;
}
.filter-accordion__content--options::-webkit-scrollbar-thumb {
  background: var(--color-scroll-thumb);
  border-radius: 15px;
}
.filter-accordion__search-box {
  border-radius: 8px;
  border: 1px solid var(--button-border);
  padding: 7px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.filter-accordion__search-box input {
  margin-left: 5px;
}
.filter-accordion__search-box svg {
  stroke: var(--color-filter);
  width: 15px;
  height: 15px;
}
.filter-accordion__ul {
  display: flex;
  flex-wrap: wrap;
  max-height: 200px;
  overflow-y: auto;
  padding-bottom: 15px;
}
.filter-accordion__ul::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: var(--color-scroll-bar);
  border-radius: 15px;
}
.filter-accordion__ul::-webkit-scrollbar-thumb {
  background: var(--color-scroll-thumb);
  border-radius: 15px;
}
.filter-accordion__ul li {
  width: 33%;
}
@media only screen and (max-width: 37.5em) {
  .filter-accordion__ul li {
    width: 50%;
  }
}
.filter-accordion .assignee-filter li {
  width: 33%;
}
@media only screen and (max-width: 37.5em) {
  .filter-accordion .assignee-filter li {
    width: 50%;
  }
}
.filter-accordion__count {
  position: absolute;
  top: 0;
  right: 25px;
  width: 20px;
  height: 20px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 12px;
}

.filter-dropdown {
  position: relative;
}
@media only screen and (max-width: 64em) {
  .filter-dropdown {
    display: none;
  }
}
.filter-dropdown__filter {
  stroke: var(--color-black);
  width: 14px;
  height: 14px;
}
.filter-dropdown.filtering span {
  margin-right: 0;
}
@media only screen and (max-width: 48em) {
  .filter-dropdown.filtering span {
    display: none;
  }
}
.filter-dropdown.filtering svg {
  margin-left: 0;
  margin-right: 8px;
}
@media only screen and (max-width: 48em) {
  .filter-dropdown.filtering svg {
    margin-right: 0;
    width: 16px;
    height: 16px;
  }
}
.filter-dropdown__button {
  border-radius: 48px;
  background-color: transparent;
  padding: 6px 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .filter-dropdown__button {
    border-radius: 30px;
    padding: 8px;
  }
}
.filter-dropdown__button--name {
  margin-right: 6px;
  white-space: nowrap;
}
.filter-dropdown__button--icon {
  margin-left: 0;
}
.filter-dropdown__content {
  display: none;
  min-width: 220px;
  position: absolute;
  top: 115%;
  left: 0;
  z-index: 1000;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0px 5px 10px 0px rgba(13, 15, 18, 0.15);
  padding: 2px;
  max-height: 240px;
  overflow-y: auto;
}
.filter-dropdown__content.last-content {
  left: unset;
  right: 0;
}
.filter-dropdown__content::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  border-radius: 15px;
}
.filter-dropdown__content::-webkit-scrollbar-thumb {
  border-radius: 15px;
}
.filter-dropdown__content__leads {
  max-height: unset;
}
.filter-dropdown__content.show {
  display: block;
}
.filter-dropdown__list {
  list-style: none;
}
.filter-dropdown__item {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.filter-dropdown__item--name {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 170px;
  display: inline-block;
}
.filter-dropdown__item-count {
  position: absolute;
  top: -8px;
  right: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
}
.filter-dropdown__days {
  flex-direction: column;
}
.filter-dropdown__days .filter-dropdown-day {
  display: block;
  font-size: 14px;
}
.filter-dropdown__days .filter-dropdown-day__details {
  font-size: 10px;
  display: block;
}
.filter-dropdown__days .filter-dropdown-day__datePicker {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.filter-dropdown__count {
  font-size: 10px;
  display: flex;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}

.filter-search-box {
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 15px;
}
.filter-search-box__input {
  border-style: none;
  outline: none;
  stroke: var(--color-filter);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  background-color: transparent;
}

.financial-year-container {
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--table-border);
  margin-top: 8px;
  border-radius: 18px;
}
.financial-year-container__scroll {
  overflow-x: auto;
}
.financial-year-container__table {
  width: 100%;
  border-collapse: collapse;
}
.financial-year-container__table tr {
  border-bottom: 1px solid var(--table-border-lte);
}
.financial-year-container__table--head {
  background: var(--table-head);
}
.financial-year-container__table th {
  padding: 16px 10px;
  color: var(--table-data-col);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-align: left;
}
.financial-year-container__table th.financial-year-container__number {
  text-align: right;
}
.financial-year-container__table td {
  padding: 16px 10px;
  color: var(--table-data-col);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}
.financial-year-container__expandable-row {
  cursor: pointer;
  transition: background-color 0.2s;
}
.financial-year-container__row-btn {
  cursor: pointer;
  padding: 6px 8px;
  border-style: none;
  background-color: transparent;
}
.financial-year-container__row-btn--icons {
  width: 16px;
  height: 16px;
  stroke: var(--color-black);
}
.financial-year-container__number {
  text-align: right;
}
.financial-year-container__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.financial-year-container__expand-content {
  display: none;
}
.financial-year-container__expand-content--text {
  color: var(--table-data-col);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.financial-year-container__expand-content--text.head {
  margin-left: 30px;
}
.financial-year-container__expand-content.show {
  display: table-row;
}
.financial-year-container__expand-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.2s;
  margin-right: 8px;
}
.financial-year-container__expand-icon.expanded {
  transform: rotate(90deg);
}

.date-picker label {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: var(--color-filter);
  margin-bottom: 5px;
  display: inline-block;
}
.date-picker__inputbox {
  width: 270px;
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-filter);
  cursor: pointer;
}
.date-picker__inputbox.filter {
  border-bottom: 1px solid #D9DCE0;
}
.date-picker__inputbox.filter input {
  color: #393A3D;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}
.date-picker__inputbox.filter .date-picker__calendarIcon {
  width: 12px;
  top: 10px;
  z-index: 3;
}
.date-picker__inputbox input {
  width: 100%;
  border-style: none;
  color: var(--black-col);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  outline: none;
  z-index: 2;
  position: relative;
  background-color: transparent;
}
.date-picker__inputbox input {
  border: 0;
}
.date-picker .phone {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
  border-style: none;
}
.date-picker__calendarIcon {
  width: 15px;
  height: 15px;
  stroke: var(--color-filter);
  position: absolute;
  right: 0;
  z-index: 3;
}

.flatpickr-day {
  border-radius: 0;
  border: none;
  height: 40px;
  line-height: 40px;
}

.flatpickr-day.selected {
  background-color: #2E666A !important;
  color: var(--color-white);
  border: 1px solid #2E666A !important;
}

.flatpickr-day.startRange.startRange {
  border-radius: 0;
}

.flatpickr-day.endRange.endRange {
  border-radius: 0;
  background-color: #2E666A !important;
  color: var(--color-white);
  border: 1px solid #2E666A !important;
}

.lead-report-accordion {
  width: 100%;
  margin: 20px auto;
  border-radius: 5px;
}
.lead-report-accordion__item {
  margin-bottom: 32px;
}
.lead-report-accordion__header {
  width: 100%;
  padding-bottom: 10px;
  border: none;
  color: var(--color-head);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  border-bottom: 2px solid var(--border-grey);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.lead-report-accordion__header--icon {
  width: 14px;
  height: 14px;
  stroke: var(--accordion-icon);
  margin-right: 10px;
}
.lead-report-accordion__content {
  padding: 10px;
  display: none;
}
.lead-report-accordion__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 64em) {
  .lead-report-accordion__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .lead-report-accordion__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lead-report-accordion__card {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 5px;
  padding: 15px 12px;
  color: var(--lead-card-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.lead-report-accordion__card--icon {
  width: 20px;
  height: 20px;
  fill: var(--accordion-star-gray);
  cursor: pointer;
  z-index: 11;
}
.lead-report-accordion__card--icon.active {
  fill: var(--accordion-star);
}
.lead-report-accordion__card--arrow {
  width: 17px;
  height: 17px;
  stroke: var(--accordion--card-arrow);
  margin-left: 20px;
  cursor: pointer;
  z-index: 11;
}
@media only screen and (max-width: 85.37em) {
  .lead-report-accordion__card--arrow {
    margin-left: 10px;
  }
}
.lead-report-accordion__card--outer {
  position: relative;
  padding: 2px;
  border-radius: 5px;
}
.lead-report-accordion__card--outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #5EA5AA, #2E666A);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}
.lead-report-accordion__card--outer:hover::before {
  opacity: 1;
}

.advanced-filter-dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.advanced-filter-dropdown__main-area {
    position: absolute;
    display: none;
    top: 130%;
    z-index: 1000;
    left: unset;
    right: 0;
    overflow-y: visible;
    padding: 3px;
    border-radius: 18px;
    background: var(--color-white);
    border: 1px solid #F5F6FA;
    box-shadow: 0 0 40px 0 rgba(4, 9, 25, 0.15);
}
.advanced-filter-dropdown__main-area.show {
  display: block;
}
.advanced-filter-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--advance-filter);
  background: var(--color-white);
  border-radius: 16px 16px 0 0;
  width: 100%;
}
.advanced-filter-dropdown__header--title {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #393A3D;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}
.advanced-filter-dropdown__main {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .advanced-filter-dropdown__main {
    width: 100%;
  }
}
.advanced-filter-dropdown__main-button {
  border-radius: 48px;
  background-color: transparent;
  border: 1px solid var(--filter-bar-border);
  padding: 6px 10px;
  color: var(--button-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
.advanced-filter-dropdown__button {
  background-color: transparent;
  border-style: none;
  width: 270px;
  border-bottom: 1px solid #D9DCE0;
  color: #393A3D;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  padding: 8px 0;
}
@media only screen and (max-width: 37.5em) {
  .advanced-filter-dropdown__button {
    padding: 8px;
  }
}
.advanced-filter-dropdown__button--head {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.advanced-filter-dropdown__label {
  color: #393A3D;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 6px;
}
.advanced-filter-dropdown__content {
  display: none;
  min-width: 220px;
  position: absolute;
  top: 115%;
  left: 0;
  z-index: 1000;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0px 5px 10px 0px rgba(13, 15, 18, 0.15);
  padding: 2px;
  max-height: 240px;
  overflow-y: auto;
}
.advanced-filter-dropdown__content.last-content {
  left: unset;
  right: 0;
}
.advanced-filter-dropdown__content::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: var(--color-scroll-bar);
  border-radius: 15px;
}
.advanced-filter-dropdown__content::-webkit-scrollbar-thumb {
  background: var(--color-scroll-thumb);
  border-radius: 15px;
}
.advanced-filter-dropdown__content.show {
  display: block;
}
.advanced-filter-dropdown__item {
  padding: 5px 8px;
  display: flex;
  align-items: center;
}
.advanced-filter-dropdown__item:hover {
  background-color: var(--dropdown-hover);
}
.advanced-filter-dropdown__item--name {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 170px;
  display: inline-block;
  margin-bottom: 0;
}
.advanced-filter-dropdown__actions-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.advanced-filter-dropdown__btn-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 30px 15px;
  flex-wrap: wrap;
  border-right: 1px solid var(--advance-filter);
  border-left: 1px solid var(--advance-filter);
}
@media only screen and (max-width: 48em) {
  .advanced-filter-dropdown__btn-area {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
}
.advanced-filter-dropdown__item-count {
  right: -10px;
  top: -10px;
  position: absolute;
  background: #2E666A;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 500;
}
.advanced-filter-dropdown__footer {
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  border-radius: 0px 0px 16px 16px;
  border-right: 1px solid #F3FAFA;
  border-bottom: 1px solid #F3FAFA;
  border-left: 1px solid #F3FAFA;
  background: #F3FAFA;
}
.advanced-filter-dropdown__primary-button {
  font-size: 14px;
  font-style: normal;
  text-wrap: nowrap;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 4px;
  background: #2E666A;
  color: #FFFFFF;
  border: 1px solid #2E666A;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.close-icon-btn {
  stroke: var(--color-black);
  width: 10px;
  height: 10px;
}

.import-btn {
  margin-right: 8px;
}
.import-btn__icon {
  width: 16px;
  height: 15px;
  stroke: #6E6E6E;
  margin-right: 7px;
}
.import-btn__cheverlon {
  width: 16px;
  height: 16px;
  stroke: #6E6E6E;
  margin-left: 11px;
}

.per-top-dropdown__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.per-top-dropdown__toolbar--left {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
.per-top-dropdown__btn {
  border-radius: 10px;
  background: var(--color-white);
  padding: 10px 12px;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  color: var(--per-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.per-top-dropdown__btn--text {
  color: var(--per-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.per-top-dropdown__btn--divide {
  color: #8C8C8C;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0 4px;
}
.per-top-dropdown__btn--datepicker {
  border-style: none;
  outline: none;
  width: auto;
}
@media only screen and (max-width: 90em) {
  .per-top-dropdown__btn--datepicker {
    font-size: 12px;
  }
}
.per-top-dropdown__icon {
  stroke: var(--icon-lite-black);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.per-top-dropdown__icon.import {
  width: 24px;
  height: 24px;
}
.per-top-dropdown__arrow-icon {
  width: 12px;
  height: 8px;
  stroke: #565656;
}
.per-top-dropdown__plus-icon {
  width: 10px;
  height: 10px;
  stroke: #565656;
}

.privacy-toggle input {
  display: none;
}
.privacy-toggle input:checked + label {
  background-color: #1E7D85;
  justify-content: flex-end;
}
.privacy-toggle input:checked + label .circle {
  left: 46px;
}
.privacy-toggle input:checked + label .text {
  transform: translateX(-14px);
  color: #ffffff;
}
.privacy-toggle label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 74px;
  height: 31px;
  background-color: #ddd;
  border-radius: 50px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s ease;
  overflow: hidden;
}
.privacy-toggle label .text {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 2;
  width: 100px;
  white-space: nowrap;
  text-align: center;
  transform: translateX(14px);
}
.privacy-toggle label .circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 25px;
  height: 25px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: left 0.3s ease;
  z-index: 3;
}

.erp-dashboard-table {
  width: 100%;
}
.erp-dashboard-table__container {
  height: 290px;
  overflow-y: auto;
  overflow-x: auto;
}
.erp-dashboard-table__container::-webkit-scrollbar {
  width: 5px;
  height: 6px;
  background-color: rgb(233, 229, 229);
  border-radius: 15px;
}
.erp-dashboard-table__container::-webkit-scrollbar-thumb {
  background: rgb(196, 190, 190);
  border-radius: 15px;
}
.erp-dashboard-table tr {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.erp-dashboard-table__text {
  color: var(--per-black);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  min-width: 3rem;
  max-width: 8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.erp-dashboard-table__first-column {
  width: 50%;
}
.erp-dashboard-table__second-column {
  width: 40%;
}
.erp-dashboard-table__third-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.erp-dashboard-table__star {
  width: 20px;
  height: 20px;
  fill: #E6E6E6;
  cursor: pointer;
}
.erp-dashboard-table__star.active {
  fill: var(--accordion-star);
}
.erp-dashboard-table__logo-img {
  width: 23px;
  height: 23px;
  -o-object-fit: cover;
     object-fit: cover;
}

.erp-dashboard-box {
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  padding: 10px;
}
.erp-dashboard-box__head {
  color: var(--color-head);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-box__head {
    font-size: 13px;
  }
}
.erp-dashboard-box__bold-head {
  color: var(--success-green);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-box__bold-head {
    font-size: 10px;
  }
}
.erp-dashboard-box__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--topbar-border-bottom);
  padding-bottom: 8px;
}
.erp-dashboard-box__search-box {
  border-radius: 8px;
  border: 1px solid #D4D4D4;
  padding: 3px 10px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-box__search-box {
    padding: 3px 6px;
    display: flex;
    align-items: center;
  }
}
.erp-dashboard-box__search-box input {
  border-style: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: var(--color-black);
  outline: none;
}
@media only screen and (max-width: 85.37em) {
  .erp-dashboard-box__search-box input {
    max-width: 7rem;
  }
}
.erp-dashboard-box__search-box input::-moz-placeholder {
  color: var(--color-placeholder);
}
.erp-dashboard-box__search-box input::placeholder {
  color: var(--color-placeholder);
}
.erp-dashboard-box__search-box--icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-placeholder);
  margin-right: 7px;
}
.erp-dashboard-box__right-angle {
  width: 20px;
  height: 20px;
  stroke: #565656;
}
.erp-dashboard-box__lite-green {
  border-radius: 10px;
  background: var(--lite-green);
  color: var(--success-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  padding: 5px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-box__lite-green {
    font-size: 8px;
  }
}

.erp-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(61, 12px);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 0;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid {
    grid-template-rows: repeat(111, 12px);
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid {
    grid-template-rows: repeat(190, 12px);
  }
}
.erp-dashboard-grid__group-summary {
  grid-column: 1/6;
  grid-row: 1/31;
  overflow: hidden;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__group-summary {
    grid-column: 1/10;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__group-summary {
    grid-column: 1/21;
  }
}
.erp-dashboard-grid__profit-loss {
  grid-column: 6/14;
  grid-row: 1/17;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__profit-loss {
    grid-column: 10/21;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__profit-loss {
    grid-column: 1/21;
    grid-row: 63/82;
  }
}
.erp-dashboard-grid__receipt-flow {
  grid-column: 14/21;
  grid-row: 1/22;
  padding-bottom: 0;
  overflow: hidden;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__receipt-flow {
    grid-column: 1/10;
    grid-row: 63/91;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__receipt-flow {
    grid-column: 1/21;
    grid-row: 83/106;
  }
}
.erp-dashboard-grid__ledgers {
  grid-column: 1/6;
  grid-row: 32/62;
  overflow: hidden;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__ledgers {
    grid-column: 1/10;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__ledgers {
    grid-column: 1/21;
  }
}
.erp-dashboard-grid__balance-sheet {
  grid-column: 6/14;
  grid-row: 18/44;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__balance-sheet {
    grid-column: 10/21;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__balance-sheet {
    grid-column: 1/21;
    grid-row: 107/133;
  }
}
.erp-dashboard-grid__closing-balance {
  grid-column: 6/14;
  grid-row: 45/62;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__closing-balance {
    grid-column: 10/21;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__closing-balance {
    grid-column: 1/21;
    grid-row: 156/170;
  }
}
.erp-dashboard-grid__other-reports {
  grid-column: 14/21;
  grid-row: 23/41;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__other-reports {
    grid-column: 1/21;
    grid-row: 93/112;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__other-reports {
    grid-column: 1/21;
    grid-row: 134/155;
  }
}
.erp-dashboard-grid__cash-flow {
  grid-column: 14/21;
  grid-row: 42/62;
}
@media only screen and (max-width: 84.375em) {
  .erp-dashboard-grid__cash-flow {
    grid-column: 10/21;
    grid-row: 63/91;
  }
}
@media only screen and (max-width: 62.3125em) {
  .erp-dashboard-grid__cash-flow {
    grid-column: 1/21;
    grid-row: 171/191;
  }
}

.erp-dashboard-bs {
  display: flex;
}
.erp-dashboard-bs__left {
  width: 50%;
  position: relative;
}
.erp-dashboard-bs__left::after {
  content: "";
  height: 77%;
  width: 1px;
  background-color: #C3C1C1;
  position: absolute;
  right: 0;
  top: 21%;
}
.erp-dashboard-bs__right {
  width: 50%;
}
.erp-dashboard-bs__trend-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.erp-dashboard-bs__trend-up--text {
  color: var(--trend-up);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-up--text {
    font-size: 11px;
  }
}
.erp-dashboard-bs__trend-up--status {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #E5FFF0;
  padding: 5px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-up--status {
    padding: 4px;
  }
}
.erp-dashboard-bs__trend-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.erp-dashboard-bs__trend-down--text {
  color: var(--trend-down);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-down--text {
    font-size: 11px;
  }
}
.erp-dashboard-bs__trend-down--status {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #FFE2E2;
  padding: 5px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-down--status {
    padding: 4px;
  }
}
.erp-dashboard-bs__chart-container {
  padding: 10px 20px 0 0;
}

.erp-other-reports__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  margin: 5px 0;
  border-radius: 5px;
}
.erp-other-reports__head {
  color: var(--lead-card-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}
.erp-other-reports .erp-dashboard-table__star {
  margin-right: 20px;
}

.slim-toggle-switch {
  position: relative;
  width: 40px;
  height: 12px;
  cursor: pointer;
}
.slim-toggle-switch__wrapper {
  display: flex;
  align-items: center;
}
.slim-toggle-switch__label {
  color: var(--toggle-label);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-right: 5px;
}
.slim-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slim-toggle-switch input:checked + .slim-toggle-switch__slider::before {
  transform: translateX(-20px);
}
.slim-toggle-switch input:not(:checked) + .slim-toggle-switch__slider {
  background-color: #ccc;
}
.slim-toggle-switch__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2f6667;
  border-radius: 34px;
  transition: background-color 0.3s;
}
.slim-toggle-switch__slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  right: 0px;
  top: -4px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.erp-dashboard-bs {
  display: flex;
}
.erp-dashboard-bs__left {
  width: 50%;
  position: relative;
}
.erp-dashboard-bs__left::after {
  content: "";
  height: 77%;
  width: 1px;
  background-color: #C3C1C1;
  position: absolute;
  right: 0;
  top: 21%;
}
.erp-dashboard-bs__right {
  width: 50%;
}
.erp-dashboard-bs__trend-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.erp-dashboard-bs__trend-up--text {
  color: var(--trend-up);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-up--text {
    font-size: 11px;
  }
}
.erp-dashboard-bs__trend-up--status {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #E5FFF0;
  padding: 5px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-up--status {
    padding: 4px;
  }
}
.erp-dashboard-bs__trend-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.erp-dashboard-bs__trend-down--text {
  color: var(--trend-down);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-down--text {
    font-size: 11px;
  }
}
.erp-dashboard-bs__trend-down--status {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #FFE2E2;
  padding: 5px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-bs__trend-down--status {
    padding: 4px;
  }
}
.erp-dashboard-bs__chart-container {
  padding: 10px 20px 0 0;
}

.erp-dashboard-cb__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.erp-dashboard-cb__card {
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  background: #F9F9FA;
  width: 100%;
  padding: 1.2rem 2rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 100em) {
  .erp-dashboard-cb__card {
    padding: 1.2rem;
  }
}
@media only screen and (max-width: 85.37em) {
  .erp-dashboard-cb__card {
    padding: 0.8rem;
  }
}
.erp-dashboard-cb__debit-icon {
  width: 16px;
  height: 16px;
}
.erp-dashboard-cb__head {
  color: #363636;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 8px;
  line-height: unset;
}
.erp-dashboard-cb__amount {
  color: #0A6407;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
}

.profit-bg-erp-box {
    color: #0A6407;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
}
.loss-bg-erp-box {
    color: #FF0000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
}
.erp-dashboard-cb__amount.trend-down {
  color: #FF0000;
}
@media only screen and (max-width: 100em) {
  .erp-dashboard-cb__amount {
    font-size: 15px;
  }
}
.erp-dashboard-cb__trend-up--text {
  color: #0A6407;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}
.erp-dashboard-cb__trend-down-text {
  color: #F00;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

.pagination__btn--prev {
  border: unset;
  border-radius: 3px;
  display: inline-block;
  margin: 0 5px;
  padding: 10px;
  background: unset;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pagination__btn--next {
  border: unset;
  border-radius: 3px;
  display: inline-block;
  margin: 0 5px;
  padding: 10px;
  background: unset;
  color: #393A3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pagination__btn--number {
  border: unset;
  border-radius: 3px;
  display: inline-block;
  margin: 0 2px;
  padding: 7px 16px;
  background-color: unset;
  color: #393A3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pagination__btn--dots {
  border: unset;
  border-radius: unset;
  display: inline-block;
  margin: 0 2px;
  padding: 10px 16px;
  background: #fff;
  font-size: 29px;
  color: #393A3D;
}
.pagination__btn--active {
  border-radius: 5px;
  background: #2E666A;
  color: #fff;
}

.lead-main-area {
  margin-left: 250px;
  background-color: var(--color-background);
  transition: 0.3s ease all;
}
.lead-main-area--collapsed {
  margin-left: 80px;
}
@media only screen and (max-width: 90em) {
  .lead-main-area {
    margin-left: 220px;
  }
  .lead-main-area--collapsed {
    margin-left: 70px;
  }
}

/*********Flex*************/
a {
  text-decoration: none;
}

.d-flex {
  display: flex;
}

.text-decoration-line {
  text-decoration: underline;
}

.d-none {
  display: none;
}

.flex-column {
  flex-direction: column;
}

.justify-content-end {
  justify-content: end !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.full-width {
  width: 100%;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.verticla-sml-line {
  display: block;
  height: 30px;
  width: 1px;
  margin-right: 8px;
}

.d-block {
  display: block !important;
}

/********Editable field***********/
.edit {
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
  text-transform: capitalize;
  padding-top: 5px;
  border-bottom: 1px solid #A5ABC3;
  background: inherit;
}

.non-edit {
  border: none;
  outline: none;
  box-shadow: none;
  background: inherit;
  width: 100%;
}

.label {
  display: block;
}

.link-like {
  color: #2B449D !important;
  cursor: pointer;
  display: inline-block;
}

.link-like-header {
  height: 16px;
  width: 16px;
}

.link-container {
  display: flex;
  align-items: center;
  flex-grow: 0;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.label {
  display: block;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 4px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.mr-5 {
  margin-right: 20px;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 4px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-3 {
  margin-left: 12px;
}

.ml-4 {
  margin-left: 16px;
}

.ml-5 {
  margin-left: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 32px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 32px;
}

.pl-4 {
  padding-left: 16px;
}

.text-align-right {
  text-align: right;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 4px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pt-1 {
  padding-top: 4px;
}

.pt-2 {
  padding-top: 8px;
}

.pt-3 {
  padding-top: 12px;
}

.pt-4 {
  padding-top: 16px;
}

.pt-5 {
  padding-top: 20px;
}

.pl-1 {
  padding-left: 4px;
}

.pl-2 {
  padding-left: 8px;
}

.pl-3 {
  padding-left: 12px;
}

.pl-4 {
  padding-left: 16px;
}

.pl-5 {
  padding-left: 20px;
}

.pr-1 {
  padding-right: 4px;
}

.pr-2 {
  padding-right: 8px;
}

.pr-3 {
  padding-right: 12px;
}

.pr-4 {
  padding-right: 16px;
}

.pr-5 {
  padding-right: 20px;
}

.gap-10 {
  gap: 10px;
}

.table-horizontal-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  min-height: calc(100vh - 365px);
  -webkit-overflow-scrolling: touch;
}
.table-horizontal-scroll::-webkit-scrollbar {
  width: 5px;
  height: 6px;
  background-color: transparent;
  border-radius: 3px;
}
.table-horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--table-h-scrollbar);
  border-radius: 3px;
}

.center-lg-modal {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72% !important;
  margin-top: 30px;
}

.h-100 {
  height: 100%;
}

.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.erp-lead-header__lead-search-main {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.search-dropdown.active {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background-color: #f8f9fa;
}

.search-item-icon {
  width: 32px;
  height: 32px;
  background-color: #2aa2ad;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.search-item-content {
  flex: 1;
}

.search-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}

.search-item-subtitle {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.search-category {
  padding: 8px 16px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.erp-main-body__primary-button,
.erp-main-body__secondary-button {
  position: relative;
}

.erp-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    /* aligns dropdown to the right of button */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 6px;
    width: 220px;
    display: none;
    z-index: 1000;
    height: 240px;
    overflow-y: auto;
}
.erp-dropdown.erp-dropdown--export{
    height:unset;
}
    .erp-dropdown::-webkit-scrollbar {
        width: 5px;
        height: 8px;
        background-color: #bab7b7;
        border-radius: 15px;
    }

    .erp-dropdown::-webkit-scrollbar-thumb {
        background: #228D96;
        border-radius: 15px;
    }

.erp-dropdown__item {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}

.erp-dropdown__item:hover {
  background-color: #f5f5f5;
}
    .erp-dropdown__item:hover a {
        color: #024a50;
    }
.file-icon {
  width: 16px;
  height: 16px;
}

.erp-dashboard-container {
  min-height: calc(100vh - 61px);
  padding: 20px;
}
@media only screen and (max-width: 90em) {
  .erp-dashboard-container {
    padding: 15px;
  }
}

.erp-trend__up-icon {
  width: 15px;
  height: 15px;
  fill: var(--trend-up);
}
.erp-trend__down-icon {
  width: 15px;
  height: 15px;
  fill: var(--trend-down);
}
.erp-trend__up-text {
  color: var(--trend-up);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.erp-trend__normal-text {
  color: #363636;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
}

.erp-dashboard-p-l-table__first-column {
  width: 35%;
}
.erp-dashboard-p-l-table__second-column {
  width: 40%;
}
.erp-dashboard-p-l-table__third-column {
  width: 25%;
}

.lite-border-btm {
  border-bottom: 1px solid var(--topbar-border-bottom);
}

.lead-sidemenu-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
}
.lead-sidemenu-scroll::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: black;
  border-radius: 15px;
}
.lead-sidemenu-scroll::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 15px;
}

.leads-sidemenu.leads-sidemenu--collapsed .leads-sidemenu__list {
  height: 100%;
  overflow-x: unset;
  overflow-y: unset;
}

.filter-search-icon {
    border-radius: 6px;
    border: 1px solid #D9DCE0;
    background: #1F868E;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
}

.customer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-modal {
  background: white;
  width: 80%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.customer-modal__header {
  padding: 20px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 4px 65.5px 11px rgba(0, 0, 0, 0.15), 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.customer-modal__title {
  margin: 0 0 10px;
  color: #2E666A;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.customer-modal__filters {
  display: flex;
  gap: 10px;
  width: 65%;
}

.customer-modal__dropdown,
.customer-modal__search {
  padding: 4px;
  border: unset;
  font-size: 14px;
  flex: 1;
  outline: 0;
}

.customer-modal__table-container {
  overflow-y: auto;
  flex-grow: 1;
  border-radius: 8px;
}

.customer-modal__close-icon {
  stroke: var(--color-black);
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.custom-select {
  position: relative;
  width: 236px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #D9DCE0;
  padding: 5px;
  background: #fff;
  outline: 0;
}

.custom-select__selected {
  color: #393A3D;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select__icon {
  margin-left: 10px;
  transition: transform 0.2s ease;
}

/* Rotate the icon when dropdown is open */
.custom-select.open .custom-select__icon {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  top: 40px;
  right: 0;
  border-radius: 5px;
  border: 1px solid var(--color-custom-filter);
  background-color: var(--color-white);
  box-shadow: 0 5px 10px rgba(13, 15, 18, 0.15);
  display: none;
  z-index: 10;
  max-height: 208px;
  overflow-y: auto;
}
.custom-select__options::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: var(--color-scroll-bar);
  border-radius: 15px;
}
.custom-select__options::-webkit-scrollbar-thumb {
  background: var(--color-scroll-thumb);
  border-radius: 15px;
}

.custom-select.open .custom-select__options {
  display: block;
}

.custom-select__option {
  text-align: left;
  color: var(--color-filter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  gap: 3px;
  padding: 5px 7px;
}

.custom-select__option:hover {
  background: #f0f0f0;
}

.custom-select__icon {
  height: 12px;
  width: 12px;
  stroke: #393a3d;
}

.filter-serach-icon-parent {
  border: 1px solid #D9DCE0;
  border-radius: 4px;
  width: 233px;
}
.filter-serach-icon-parent input {
  width: 100%;
  padding-right: 5px;
}

.erp-report-search {
  display: flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  width: 320px;
  padding: 7px 10px;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  background-color: var(--color-white);
}
.erp-report-search input {
  border-style: none;
  background-color: transparent;
  outline: none;
  font-size: 15px;
}

/* CSS for Year Picker */
.per-top-dropdown {
  position: relative;
  display: inline-block;
}

.per-top-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 90em) {
  .per-top-dropdown__btn {
    gap: 8px;
    padding: 7px 9px;
    min-width: auto;
  }
}

.per-top-dropdown__icon {
  width: 20px;
  height: 20px;
  color: #6c757d;
}

.per-top-dropdown__btn span {
  flex: 1;
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}
@media only screen and (max-width: 90em) {
  .per-top-dropdown__btn span {
    font-size: 12px;
  }
}

#yearPicker {
  display: none;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  color: #6c757d;
  transition: transform 0.2s ease;
}

.per-top-dropdown__btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.year-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e1e5e9;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 280px;
}

.year-picker-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.year-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.nav-button {
  background: #2e666a;
  color: white;
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-button:hover {
  background: #2e666a;
}

.decade-range {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

.years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  max-height: 240px;
  overflow-y: auto;
}

.year-button {
  background: #f8f9fa;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 8px;
  cursor: pointer;
  font-size: 13px;
  color: #495057;
  transition: all 0.2s ease;
  text-align: center;
  font-weight: 500;
}

.year-button:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.year-button.current {
  background: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.year-button.selected {
  background: #2e666a;
  color: white;
  border-color: #2e666a;
}

.quick-nav {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.quick-nav button {
  flex: 1;
  padding: 6px 8px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quick-nav button:hover {
  background: #5a6268;
}

.user-page-pagination {
  background: #fff;
  padding: 0 10px 2px;
  border-top: 1px solid #dddddd;
  border-radius: 0 0 8px 8px;
  border-right: 1px solid var(--Border, #D9DCE0);
  border-bottom: 1px solid var(--Border, #D9DCE0);
  border-left: 1px solid var(--Border, #D9DCE0);
  background: #FFF;
}

#user-page-size-selector {
  border: 1px solid #aaa;
  border-radius: 3px;
  display: inline-block;
  margin: 0 2px;
  padding: 6px 11px;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
  outline: 0;
}

.pagination-text {
  color: #393A3D;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.pagination-page-select .bootstrap-select {
  width: unset;
}

.erp-other-reports {
  height: 150px;
  overflow: hidden;
  overflow-y: auto;
}
.erp-other-reports::-webkit-scrollbar {
  width: 5px;
  height: 6px;
  background-color: rgb(233, 229, 229);
  border-radius: 15px;
}
.erp-other-reports::-webkit-scrollbar-thumb {
  background: rgb(196, 190, 190);
  border-radius: 15px;
}

.border-btm-input {
  border-style: none;
  border-bottom: 1px solid #D9DCE0;
  border-radius: 0;
  width: 140px;
}
.error-message {
    color: #FF6746;
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    left: 0;
}

.color-anchor {
  color: #111;
}

.color-anchor:hover {
  color: #2E666A;
}


.erp-new-date-range-filter {
    border-radius: 4px;
    border: 1px solid var(--filter-border);
    padding: 6px 10px;
}

.white-space-nowrap {
    white-space: nowrap;
}
.dashboard-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.dashboard-loader__dot {
    width: 15px;
    height: 15px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.dashboard-loader__dot:nth-child(1) {
    animation-delay: 0s;
}

.dashboard-loader__dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dashboard-loader__dot:nth-child(3) {
    animation-delay: 0.3s;
}

.dashboard-loader__dot:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@media (max-width: 1327px) {
    .erp-filter {
        display: block;
    }
    .erp-filter-button-sub{
        justify-content : space-between;
    }
    .erp-filter__filters-main{
        justify-content : space-between;
    }
    .erp-filter-button-sub{
        margin-bottom : 5px;
    }
}

/* For Webkit Browsers (Chrome, Edge, Safari) */
.tabulator-tableholder::-webkit-scrollbar {
    height: 7px !important; /* horizontal scrollbar thickness */
    width: 7px !important; /* vertical scrollbar thickness */
}

.tabulator-tableholder::-webkit-scrollbar-thumb {
    background: #999 !important; /* scrollbar color */
    border-radius: 6px !important;
}

.tabulator-tableholder::-webkit-scrollbar-track {
    background: transparent !important; /* track color */
}
.tabulator-page-size {
    border: 1px solid #aaa !important;
}

.tabulator-tableholder{
    max-height:510px
}

.tabulator-no-data-msg {
    font-size: 18px;
    font-weight: 500;
    color: #474747;
}
.login-button-loader {
    display: none; 
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-right: 8px;
    border: 7px solid #f3f3f3;
    border-radius: 50%;
    border-top: 7px solid #205456;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 46%;
    top: 11.5%;
}
@media screen and (max-width: 1599px) {
    .login-button-loader {
        border: 6px solid #f3f3f3 !important;
        border-top: 6px solid #205456 !important;
        width: 30px !important;
        height: 30px !important;
        top: 8.5% !important;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.no-data-msg-dropdown {
    text-align: center;
    padding: 8px;
    color: rgb(136, 136, 136);
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.erp-dashboard-table__star.processing {
    /* Keep visual steady while processing to avoid blink */
    opacity: 1;
    pointer-events: none;
}

/*#user-table{
    min-height:200px;
}*/

@media (max-width: 1600px) {
    .advanced-filter-dropdown__btn-area {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1327px) {
    .advanced-filter-dropdown__btn-area {
        grid-template-columns: repeat(2, 1fr);
    }
    .erp-filter__filter-search-main{
        width:300px;
        margin-bottom:10px;
    }
}


.js-filter-dropdown-menu.dropdown-up {
    transform-origin: bottom;
    animation: dropdown-up 0.15s ease-out;
}

@keyframes dropdown-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.lead-source-dropdown__menu.dropdown-up {
    transform-origin: bottom;
    animation: dropdown-up 0.15s ease-out;
}

@keyframes dropdown-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

