a,
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}
a:focus,
a:active {
  background-color: transparent;
  outline: none;
}

body {
  font-family: Nunito Sans, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #30a5bf;
}

#page-wrapper {
  padding: 50px;
  background-color: #f7f7f7;
}

.inner-page-wrapper {
  margin: auto;
  width: min-content;
}

/* Filter selectors */
.filter-controls-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

#filter-control-buttons-wrapper {
  display: flex;
  align-items: center;
}

#search-and-sort-wrapper {
  display: flex;
  margin-right: 10px;
  position: relative;
}

.filter-selector {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: 1px solid #30a5bf;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #192342;
  cursor: pointer;
  opacity: 1;
  user-select: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-right: 10px;
  border: 0 !important;
  width: unset;
}

#sort-settings-wrapper {
  display: none;
  height: 38px;
  width: 38px;
  padding: 0;
  background-color: #30a5bf;
  flex-grow: 0;
}

#sort-settings-wrapper img {
  margin-top: 8px;
  margin-left: 8px;
  filter: invert(1);
  height: 20px;
}

.filter-selector:last-of-type {
  margin-right: 0;
}

.filter-selector.open {
  background-color: rgb(245, 245, 245);
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%),
    0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
}

.filter-selector-label {
  font-size: 16px;
  white-space: nowrap;
  color: #192342;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

.filter-selector select {
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 4px;
}

.filter-selector-header {
  position: absolute;
  top: 5px;
  right: 5px;
}

.filter-selector:last-of-type .filter-selector-content {
  left: unset;
  right: 0;
}

.filter-selector-content {
  position: absolute;
  background-color: #fff;
  padding: 26px 0 10px 0;
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%),
    0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
  left: 0;
  width: max-content;
  border-radius: 4px;
  display: none;
  z-index: 1999;
  animation: growOut 200ms ease-in-out forwards;
  transform-origin: top center;
  top: 50px !important;
}

.filter-selector.open .filter-selector-content {
  display: block;
}

.filter-selector-options {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 30px;
}

.filter-selector-options::-webkit-scrollbar {
  width: 10px;
}

.filter-selector-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1000px;
  border-right: 2px solid #fff;
}

.filter-selector-options::-webkit-scrollbar-thumb {
  background: rgb(212, 212, 212);
  border-radius: 1000px;
  border-right: 2px solid #fff;
}

.filter-selector-options::-webkit-scrollbar-thumb:hover {
  background: rgb(158, 158, 158);
}

.filter-option {
  margin-bottom: 10px;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  transform: scale(1.2);
  margin-right: 10px;
  display: inline !important;
}

.filter-option:last-of-type {
  margin-bottom: 0;
}

.filter-selector-footer {
  display: flex;
  padding: 20px 26px 0 26px;
  margin-top: 10px;
  border-top: 1px solid rgb(212, 212, 212);
  justify-content: space-between;
}

.filter-selector-footer button {
  cursor: pointer;
  border-radius: 0;
  outline: 0;
  border: 2px solid #30a5bf;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
}

.filter-btn-clear {
  background-color: #fff;
  color: #30a5bf;
  margin-right: 10px;
}

.filter-btn-clear.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.filter-btn-search {
  color: #fff;
  background-color: #30a5bf;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.8;
  -webkit-transition: 0.1s;
  transition: opacity 0.1s;
  margin-top: 10px;
  margin-bottom: 10px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #30a5bf;
  cursor: pointer;
  border-radius: 100%;
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #30a5bf;
  cursor: pointer;
  border-radius: 100%;
}

#commodity-filter-both-sliders-wrapper {
  display: none;
  margin-top: 16px;
}

.slider-wrapper {
  opacity: 1;
  transition: opacity 0.15s ease;
}

.slider-wrapper:hover {
  opacity: 1 !important;
}

.slider-wrapper.disabled {
  opacity: 0.5;
}

.or-divider {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 10px;
  justify-content: center;
}

.or-divider div {
  height: 1px;
  background-color: #30a5bf;
  width: 20px;
  margin-right: 6px;
  margin-left: 6px;
}

.range-slider-label {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

#filter-grade-slider-units {
  text-transform: lowercase;
}

@keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#date-range-picker {
  display: flex;
}

.custom-date-wrapper {
  position: relative;
}

#date-range-picker input {
  padding: 6px 8px 6px 34px;
  width: 130px;
  border: 1px solid;
  border-radius: 4px;
}

#date-range-picker input:first-of-type {
  margin-right: 10px;
}

.calendar-icon-wrapper {
  position: absolute;
  left: 0;
  width: 33px;
  height: 29px;
  bottom: 0;
  padding: 10px;
  box-sizing: border-box;
  background-color: var(--main-color-192342);
  border-radius: 4px 0 0 4px;
}

.calendar-icon-wrapper img {
  filter: invert(1);
  transform: translateY(-3px);
}

.input-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

#filter-tags-wrapper {
  margin-bottom: 40px;
}

#filter-tags-header {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 16px;
}

#filter-tags-header span {
  font-size: 12px;
  background-color: #192342;
  color: white;
  padding: 2px 6px;
  border-radius: 1000px;
  cursor: pointer;
  transition: all 150ms ease-in;
}

#filter-tags-header span:hover {
  opacity: 0.8;
}

#filter-tags-container {
  display: flex;
}

.filter-tag {
  border: 1px solid #bdbdbd;
  padding: 2px 2px 2px 8px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 1000px;
  margin-right: 6px;
  background-color: #fff;
}

.filter-tag-bold {
  font-weight: 700;
  color: #192342;
}

.filter-tag-close-btn {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  opacity: 1;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.filter-tag-close-btn:hover {
  color: #192342;
  font-weight: 700;
}

.search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 300px;
}

#search-type-selector-wrapper {
  position: absolute;
  right: 10px;
  display: flex;
  height: 100%;
  border-radius: 0 10px 10px 0;
  border-left: 1px solid lightgray;
}

#search-type-selector-wrapper select {
  border: 0;
  background-color: transparent;
  outline: none;
  text-align: right;
  cursor: pointer;
  padding-left: 4px;
}

#controls-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}

#company-search,
#filer-search {
  width: 100%;
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  padding-left: 2.375rem;
  padding-right: 95px;
}

.fa-search {
  display: inline-block !important;
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem !important;
  text-align: center;
  pointer-events: none;
  color: rgba(48, 165, 191, 0.5);
}

.fa-search:before {
  content: "\f002";
}

/* #search::placeholder {
  text-transform: uppercase;
  color: #30a5bf;
  font-weight: 700;
  font-size: 14px;
  font-family: lato,sans-serif;
} */

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  display: none;
}

#search-icon-wrapper {
  position: absolute;
  left: 0;
  width: 33px;
  height: 100%;
  bottom: 0;
  padding: 8px;
  box-sizing: border-box;
  background-color: #30a5bf;
  border-radius: 4px 0 0 4px;
}

#search-icon-wrapper img {
  filter: invert(1);
}

.single-control-container {
  margin-right: 10px;
  position: relative;
}

.single-control-container:last-of-type {
  margin-right: 0;
}

.single-control-container label {
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

#no-results {
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  font-weight: 700;
  display: none;
}

#no-results.show {
  display: block;
}

.load-more-button {
  width: 112px;
  cursor: pointer;
  margin-top: 6px;
  color: #9296ad;
  transition: opacity 0.15s ease;
  opacity: 1;
  margin-left: 100%;
  transform: translateX(-100%);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 22px;
}

.load-more-button:hover {
  opacity: 0.8;
}

/* search bar autocomplete */
.autocomplete {
  position: relative;
}
.autocomplete-options {
  cursor: pointer;
  z-index: 1000;
  display: none;
  position: absolute;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%),
    0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
  border-radius: 4px;
  font-size: 11px;
  animation: growOut 150ms ease-in-out forwards;
  transform-origin: top center;
  margin-top: 6px;
  border-radius: 4px;
}
.search-option {
  font-size: 14px;
  min-height: 1.4em;
  padding: 0.2em 2em 0.2em 1em;
}

.search-option:hover {
  background-color: rgb(245, 245, 245);
}

#tables-wrapper {
  position: relative;
}

#table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.table-scroll-wrapper {
  width: fit-content;
}

.table-header {
  display: flex;
  background-color: #edeef4;
  border-radius: 4px;
  border: 1px solid #f3f3f3;
  padding: 0 10px;
  width: 100%;
}

.single-row {
  display: flex;
  align-items: center;
  margin-top: 1px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #f3f3f3;
  box-sizing: border-box;
  padding: 0 10px;
}

.single-table-header {
  padding: 10px 6px;
  box-sizing: border-box;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 13px;
  position: relative;
  padding-right: 24px;
  display: flex;
  align-items: center;
  line-height: 14px;
}

.single-table-header.sortable {
  cursor: pointer;
}

.single-table-header.sortable::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  opacity: 0.3;
  right: 1em;
  content: "↑";
  color: black;
  text-shadow: 0 0 black;
}

.single-table-header.sortable::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  opacity: 0.3;
  right: 0.5em;
  content: "↓";
  color: black;
  text-shadow: 0 0 black;
}

.single-table-header.sortable.disabled {
  cursor: auto;
}

.single-table-header.sortable.disabled::after {
  display: none !important;
}

.single-table-header.sortable.disabled::before {
  display: none !important;
}

.single-table-header.sort-asc::before {
  opacity: 1;
}
.single-table-header.sort-desc::after {
  opacity: 1;
}

.single-cell {
  padding: 10px 6px;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 14px;
}

.single-cell a {
  text-decoration: none;
  border-bottom: 0;
  cursor: pointer;
  color: var(--main-color-192342);
}

.single-cell .clickable {
  cursor: pointer;
  font-weight: bold;
}

.single-cell .clickable:hover {
  text-decoration: underline;
}

.single-cell .relationship {
  color: #7b7b7b;
}

.single-cell a:hover {
  border-bottom: 2px solid #30a5bf;
}

.single-cell.positive {
  color: #080;
}
.single-cell.negative {
  color: #ff0000;
}

#no-data {
  background-color: white;
  padding: 10px;
}

#table-page-controls {
  background-color: white;
  padding: 10px;
  display: flex;
  flex-direction: column;

  align-items: center;
}

#page-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

#page-text-wrapper {
  font-size: 12px;
}

.paging-btn {
  padding: 4px 10px;
  background-color: white;
  border: 1px solid #edeef4;
  font-size: 15px;
  cursor: pointer;
  min-width: 30px;
  box-sizing: border-box;
  text-align: center;
  transition: all 150ms ease-in-out;
}

.paging-btn:hover,
.paging-btn.selected {
  background-color: #192342;
  color: white;
  border: 1px solid lightgray;
}

.single-table-header:nth-child(1),
.single-cell:nth-child(1) {
  width: 100px;
}
.single-table-header:nth-child(2),
.single-cell:nth-child(2) {
  width: 200px;
}
.single-table-header:nth-child(3),
.single-cell:nth-child(3) {
  width: 200px;
}
.single-table-header:nth-child(4),
.single-cell:nth-child(4) {
  width: 250px;
}
.single-table-header:nth-child(5),
.single-cell:nth-child(5) {
  width: 160px;
}
.single-table-header:nth-child(6),
.single-cell:nth-child(6) {
  width: 110px;
  text-align: center;
}
.single-table-header:nth-child(7),
.single-cell:nth-child(7) {
  width: 90px;
  text-align: center;
}
.single-table-header:nth-child(8),
.single-cell:nth-child(8) {
  width: 90px;
  text-align: center;
}
.single-table-header:nth-child(9),
.single-cell:nth-child(9) {
  width: 100px;
  text-align: center;
}
.single-table-header:nth-child(10),
.single-cell:nth-child(10) {
  width: 150px;
  text-align: center;
}

.multiselect-dropdown {
  min-width: 300px !important;
}

#value-filter-selector .multiselect-dropdown {
  min-width: 150px !important;
}

/* #value-filter-selector .multiselect-dropdown-list > div:nth-child(2) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(3) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(4) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(5) label {
  color: #080;
}
#value-filter-selector .multiselect-dropdown-list > div:nth-child(9) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(8) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(7) label,
#value-filter-selector .multiselect-dropdown-list > div:nth-child(6) label {
  color: red;
}

#value-filter-selector .filter-selector-content {
  left: unset !important;
  right: 0 !important;
} */

#value-slider-wrapper {
  width: 300px;
}

#value-range-slider {
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.range-slider .range-slider__thumb {
  background: #30a5bf;
}

.range-slider .range-slider__range {
  background: #30a5bf;
}

#value-range-slider-labels {
  width: 100%;
  margin-top: 24px;
  position: relative;
}

#value-range-slider-labels span {
  font-size: 8px;
  color: #979797;
  position: absolute;
  bottom: 0;
}

#value-range-slider-labels span:nth-of-type(1) {
  left: -4%;
}
#value-range-slider-labels span:nth-of-type(2) {
  left: 10.5%;
}
#value-range-slider-labels span:nth-of-type(3) {
  left: 23%;
}
#value-range-slider-labels span:nth-of-type(4) {
  left: 34%;
}
#value-range-slider-labels span:nth-of-type(5) {
  left: 48%;
}
#value-range-slider-labels span:nth-of-type(6) {
  left: 57%;
}
#value-range-slider-labels span:nth-of-type(7) {
  left: 69%;
}
#value-range-slider-labels span:nth-of-type(8) {
  left: 80%;
}
#value-range-slider-labels span:nth-of-type(9) {
  left: 92%;
  white-space: nowrap;
}

#value-inputs-wrapper {
  display: flex;
  justify-content: space-between;
  color: #192342;
}

#value-inputs-wrapper div {
  display: flex;
  align-items: center;
  font-weight: 300;
}

#value-inputs-wrapper div:first-of-type {
  justify-content: flex-start;
}
#value-inputs-wrapper div:first-of-type {
  justify-content: flex-end;
}

#value-inputs-wrapper input {
  width: 60px;
  color: #192342;
  margin-left: 2px;
  margin-right: 2px;
  padding: 4px;
}

#value-inputs-wrapper input::-webkit-outer-spin-button,
#value-inputs-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#value-inputs-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

#value-range-slider-ticks {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 24px);
  transform: translateX(12px);
}

.range-slider-tick {
  width: 1px;
  background-color: #979797;
  height: 4px;
}

.range-slider-tick:first-of-type,
.range-slider-tick:last-of-type {
  visibility: hidden;
}

.pro-badge {
  justify-content: center;
  align-items: center;
  background-color: #da373d;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  padding: 0 6px;
  text-transform: uppercase;
  position: relative;
  margin-left: -10px;
  left: -3px;
  bottom: -3px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .pro-badge {
    font-size: 8px;
    line-height: 12px;
    margin: 0;
    left: 2px;
    bottom: 0;
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.h-full{
  height: 100%;
}
#nav-new a {
  font-size: 12.8px;
  border-bottom: 3px solid transparent;
}
#nav-new .menu .dropdown .nav-item,
#nav-new .menu .dropdown a {
  cursor: pointer;
}
#nav-new .menu .dropdown .nav-item svg {
  position: relative;
  top: -2px;
  left: 5px;
}
#nav-new .menu .dropdown .dropdown-menu {
  display: none;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
#nav-new .menu .dropdown .dropdown-menu {
  min-width: 130px;
  display: none;
  flex-direction: column;
}

#nav-new .menu .dropdown .dropdown-menu li {
  padding: 0;
  text-align: left;
}

#nav-new .menu .dropdown .dropdown-menu li:hover {
  background-color: #e9ecef;
}

#nav-new .menu .dropdown .dropdown-menu li a,
#nav-new .menu .dropdown .dropdown-menu li a.on-hover:hover,
#nav-new .menu .dropdown .dropdown-menu li a.active-link {
  border-bottom: none !important;
}
#mobile-menu .submenu .active-link-mobile,
#mobile-menu .submenu .dropdown-menu .active-link-mobile,
.profile .submenu .dropdown-menu .active-link-mobile {
  text-decoration: underline !important;
}
#mobile-menu .submenu .dropdown-toggle.active-link-mobile,
.profile .submenu .dropdown-toggle.active-link-mobile{
  text-decoration: none !important;
}
#mobile-menu .submenu a,
#mobile-menu .submenu .dropdown-menu a,
.profile .submenu .dropdown-menu a {
  transition: background-color text-decoration 0.2s !important;
}

#mobile-menu .submenu a:active,
#mobile-menu .submenu .dropdown-menu a:active,
.profile .submenu .dropdown-menu a:active {
  background-color: rgba(51, 181, 229, 0.4) !important; /* Light blue */
  text-decoration: underline !important;
}

#nav-new .menu .dropdown .dropdown-menu li a {
  display: flex;
  color: #000;
  white-space: nowrap;
  text-transform: capitalize;
  padding: 8px 16px;
  margin: 0;
}
#nav-new .menu .dropdown .dropdown-menu li a:hover {
  color: #000;
}

#nav-new .menu .dropdown:hover .dropdown-menu {
  display: block;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 3px 3px;
}

#mobile-menu .submenu a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  border-bottom: none !important;
}
#mobile-menu .submenu a svg {
  transform: rotate(-90deg) scale(0.9);
}
#mobile-menu .submenu .dropdown-menu {
  list-style: none;
  width: 150px;
  display: none;
}

#mobile-menu .submenu li.relative:hover .dropdown-menu {
  display: block;
}

@media only screen and (max-width: 900px) {
  #page-wrapper {
    padding: 26px;
  }

  .filter-selector {
    padding: 6px 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  #search,
  #search::placeholder,
  .filter-selector-label {
    font-size: 12px;
  }
}

@media only screen and (max-width: 800px) {
  .filter-controls-wrapper {
    max-width: calc(100vw - 60px);
    flex-wrap: wrap;
  }

  #filter-control-buttons-wrapper {
    flex-wrap: wrap;
  }

  .filter-selector {
    max-width: 140px;
    margin-bottom: 6px;
    justify-content: center;
  }

  #sort-settings-wrapper {
    height: 38px;
    width: 38px;
  }

  #search-and-sort-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .search-wrapper {
    flex-grow: 1;
    margin-bottom: 10px;
  }
  #search {
    width: 100%;
    box-sizing: border-box;
  }
  #search,
  #search::placeholder,
  .filter-selector-label {
    font-size: 14px;
  }
  .filter-selector {
    padding: 6px 20px;
  }
  #search-type-selector-wrapper {
    height: 38px;
  }
}
@media (max-width: 767px) {
  .profile .submenu .dropdown-menu,
  #nav-new .profile .submenu .dropdown-menu {
    position: static;
    border: none;
  }
  #mobile-menu .submenu {
    width: 100% !important;
  }
  #mobile-menu .submenu .dropdown-menu {
    width: 100%;
  }
  .profile .submenu li,
  .profile .submenu a {
    font-size: 14px !important;
  }
  .profile .submenu li {
    padding-inline: 5px !important;
    border-top: 1px solid #dcdcdc;
  }
  .profile .submenu li:first-child{
    border-top-color: transparent;
  }
  .profile .submenu a {
    padding-inline: 0 !important;
  }
  #mobile-menu .submenu a,
  .profile .submenu a,
  #nav-new .profile .submenu a {
    padding: 0 !important;
    margin: 0 !important;
    color: #000;
  }
  ul.submenu li:hover, ul.submenu a:hover{
    background-color: transparent;
  }
  .profile .submenu li.relative:last-child{
    padding-bottom: 0 !important;
  }
  .profile .submenu li.relative >a{
    padding-inline: 5px !important;
  }
  .profile .submenu .dropdown-parent .dropdown-menu {
    display: none !important;
  }
  .profile .submenu .dropdown-parent.open .dropdown-menu.show {
    display: block !important;
  }
  .profile .submenu .dropdown-menu{
    border-top: 1px solid #dcdcdc;
    padding: 5px 0 0;
    margin: 10px 0 0;
  }
  .profile .submenu .dropdown-menu li{
    border-top: none;
    padding-inline: 5px !important;
    padding-block: 5px !important;
  }
  .profile .submenu .dropdown-menu li a{
    font-weight: 400;
  }
  .profile .submenu .dropdown-parent .dropdown-toggle svg,
  #mobile-menu .submenu .dropdown-parent .dropdown-toggle svg {
    transform: rotate(0deg) scale(0.9);
  }
  .profile .submenu .dropdown-parent.open .dropdown-toggle svg,
  #mobile-menu .submenu .dropdown-parent.open .dropdown-toggle svg{
    transform: rotate(180deg) scale(0.9);
  }
  #main-nav-user-name {
    display: none;
  }
}

@media only screen and (max-width: 641px) {
  body.noscroll {
    overflow: hidden;
  }

  #search-and-sort-wrapper {
    margin-left: 10px;
  }

  #page-wrapper {
    padding: 10px;
    box-sizing: border-box;
    padding-top: 10px !important;
  }

  .inner-page-wrapper {
    width: unset;
  }

  #blocker {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / 0.2);
    z-index: 1998;
  }

  #page-wrapper.modal-open #blocker {
    display: block;
  }

  .filter-selector-content {
    text-align: left;
    width: calc(100vw - 20px) !important;
    padding: 40px 0 40px 0;
    left: 10px;
    position: fixed;
    top: 10px;
    /* animation: fadeIn 150ms ease-in-out forwards; */
  }

  .filter-selector-options {
    padding: 0 20px;
  }

  .filter-selector:last-of-type .filter-selector-content {
    left: 10px;
    right: unset;
  }

  #date-range-picker {
    flex-wrap: wrap;
  }

  .custom-date-wrapper {
    width: 100%;
  }

  .custom-date-wrapper:first-of-type {
    margin-bottom: 6px;
  }

  #date-range-picker input {
    width: 100%;
    box-sizing: border-box;
  }

  .filter-selector-header {
    top: 10px;
    right: 10px;
  }

  .filter-close-btn {
    font-size: 24px;
  }

  .filter-selector select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
  }

  .autocomplete-options {
    width: 100%;
  }

  .search-option {
    font-size: 16px;
    padding: 0.4em 1em 0.4em 1em;
  }

  #filter-tags-wrapper {
    margin-bottom: 20px;
  }

  #filter-tags-container {
    flex-wrap: wrap;
  }

  .filter-tag {
    margin-bottom: 6px;
  }

  .filter-tag-close-btn {
    font-size: 18px;
  }

  .filter-controls-wrapper {
    margin-bottom: 20px;
    margin-top: 10px;
    max-width: unset;
  }

  .single-control-container {
    flex-grow: 1;
    margin-right: 5px;
  }

  .filter-selector {
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
    max-width: 120px;
    margin-right: 0;
    margin-left: 10px;
    position: unset;
  }

  #filter-control-buttons-wrapper {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
  }

  .filter-selector-label,
  #search,
  #search::placeholder {
    font-size: 12px;
  }

  #sort-settings-wrapper {
    display: block;
    height: 38px;
    width: 38px;
    flex-shrink: 0;
    margin-left: 0;
  }

  #sort-settings-wrapper img {
    margin-left: 0;
  }

  #search-wrapper {
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }

  #search-label {
    display: none;
  }

  #search {
    width: 100%;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid rgb(153, 153, 153);
  }

  #table-wrapper {
    max-width: unset;
    width: 100%;
    overflow-x: auto;
    box-shadow: unset;
    padding: 0 10px;
  }

  .table-scroll-wrapper {
    width: 100%;
  }

  #table-page-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid lightgray;
    padding: 6px 10px;
  }

  .inner-page-wrapper {
    padding-bottom: 70px;
  }

  .table-header {
    /* display: none; */
    width: min-content;
  }

  .single-row {
    width: min-content;
  }

  .single-cell {
    /* width: unset !important; */
    padding: 4px 6px;
    font-size: 12px;
  }

  .single-cell a {
    border-bottom: 1px solid;
  }

  .col-news a,
  .col-socials a {
    border-bottom: 0;
  }

  #filter-tags-wrapper {
    padding: 0 10px;
  }

  #clear-search-btn {
    top: 6px;
  }

  .single-table-header:nth-child(1),
  .single-cell:nth-child(1) {
    width: 80px;
  }
  .single-table-header:nth-child(2),
  .single-cell:nth-child(2) {
    width: 120px;
  }
  .single-table-header:nth-child(3),
  .single-cell:nth-child(3) {
    width: 120px;
  }
  .single-table-header:nth-child(4),
  .single-cell:nth-child(4) {
    width: 160px;
  }
  .single-table-header:nth-child(5),
  .single-cell:nth-child(5) {
    width: 120px;
  }
  .single-table-header:nth-child(6),
  .single-cell:nth-child(6) {
    width: 80px;
    text-align: center;
  }
  .single-table-header:nth-child(7),
  .single-cell:nth-child(7) {
    width: 70px;
    text-align: center;
  }
  .single-table-header:nth-child(8),
  .single-cell:nth-child(8) {
    width: 70px;
    text-align: center;
  }
  .single-table-header:nth-child(9),
  .single-cell:nth-child(9) {
    width: 80px;
    text-align: center;
  }
  .single-table-header:nth-child(10),
  .single-cell:nth-child(10) {
    width: 120px;
    text-align: center;
  }

  .filter-controls-wrapper {
    padding-right: 10px;
  }

  .search-wrapper {
    margin-right: 0;
  }

  #search-type-select {
    font-size: 12px;
  }

  .paging-btn {
    font-size: 12px;
  }
}
