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

#page-wrapper {
  padding: 50px;
  padding-top: 20px;
  background-color: #f7f7f7;
  min-height: 100vh;
}

.main-titles {
  display: flex;
}

.page-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  cursor: pointer;
}

.page-title.selected {
  text-decoration: underline;
}

.page-title:hover {
  text-decoration: underline;
}

#watchlist {
  margin-left: 20px;
  position: relative;
}

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

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

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

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

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

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

.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 {
  right: 0;
  left: unset;
}

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

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

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

.subtext {
  font-size: 12px;
  font-weight: 300;
  margin-top: 6px;
}

#table-title {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 14px;
  color: gray;
}

#table-title span {
  color: #192342;
  font-weight: 600;
}

#table-wrapper {
  width: min-content;
  position: relative;
  min-height: 500px;
}

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

.single-header {
  padding: 10px 6px;
  box-sizing: border-box;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.single-header.hidden {
  display: none;
}

.single-header img {
  width: 14px;
  opacity: 0.5;
  cursor: pointer;
  margin-left: 10px;
}

.single-header img:hover {
  opacity: 1;
}

#table-body {
  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-row.user-added {
  background-color: #192342;
  color: #fff;
}

.single-row.user-added .col-news img {
  filter: brightness(0) invert(1);
}

.single-row .row-buttons {
  position: absolute;
  left: -54px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 54px;
}

.single-row .remove-row-btn {
  cursor: pointer;
  background-color: #192342;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  box-sizing: border-box;
}

.single-row .remove-row-btn:hover,
.single-row .add-to-watchlist-btn:hover {
  opacity: 1;
}

.single-row .add-to-watchlist-btn {
  cursor: pointer;
  background-color: #fff;
  color: #192342;
  border: 1px solid;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  opacity: 0.8;
}
.single-row .remove-row-btn.watchlist {
  background-color: #fff;
  color: #192342;
  border: 1px solid;
  box-sizing: border-box;
}

.single-cell {
  padding: 10px 6px;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 12px;
  position: relative;
}

.single-cell.hidden {
  display: none;
}

.single-header,
.single-cell {
  width: 100px;
  flex-grow: 0;
  flex-shrink: 0;
}

#header-news,
.col-news {
  width: 50px;
  text-align: center;
}

#header-value-start,
.col-value-start,
#header-value-end,
.col-value-end {
  text-align: center;
  justify-content: center;
  width: 100px;
}

#header-value-change,
.col-value-change {
  text-align: center;
  width: 180px;
  justify-content: center;
}
#header-value-percent-change,
.col-value-percent-change {
  width: 180px;
  text-align: center;
  justify-content: center;
}
#header-value-marketcap,
.col-value-marketcap {
  text-align: center;
  justify-content: center;
  width: 110px;
}
#header-exchange,
.col-exchange,
#header-ticker,
.col-ticker {
  width: 80px;
}
#header-share-volume,
.col-share-volume,
#header-share-value,
.col-share-value {
  text-align: center;
  justify-content: center;
}

#header-share-value,
.col-share-value {
  width: 120px;
}

#header-company,
.col-company {
  width: 200px;
}

.col-value-change {
  font-weight: 700;
}

.single-cell.pos {
  color: #2a8f40;
}
.single-cell.neg {
  color: #ed727e;
}

.col-value-percent-change {
  color: #192342 !important;
  font-size: 12px;
}

.bar-chart-wrapper {
  width: 100%;
  position: relative;
  height: 20px;
  border-radius: 1000px;
  background-color: #f7f7f7;
  overflow: hidden;
}

.bar-chart {
  height: 100%;
  border-radius: 1000px;
  position: absolute;
  overflow: hidden;
}

.bar-chart-wrapper.reversed .bar-chart {
  right: 0;
}

.bar-chart-wrapper.reversed .percent-change-label {
  right: 5px;
  left: unset;
  color: #192342 !important;
  font-size: 12px;
}

.single-cell.pos .bar-chart {
  background-color: #66df81;
}
.single-cell.neg .bar-chart {
  background-color: #ed727e;
}

.percent-change-label {
  position: absolute;
  left: 5px;
  line-height: 20px;
  bottom: 0;
  font-weight: 700;
}

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

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

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

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

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

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

#marketcap-range-slider-labels span:nth-of-type(1) {
  left: 0%;
}
#marketcap-range-slider-labels span:nth-of-type(2) {
  left: 12.5%;
}
#marketcap-range-slider-labels span:nth-of-type(3) {
  left: 23%;
}
#marketcap-range-slider-labels span:nth-of-type(4) {
  left: 34%;
}
#marketcap-range-slider-labels span:nth-of-type(5) {
  left: 46%;
}
#marketcap-range-slider-labels span:nth-of-type(6) {
  left: 57%;
}
#marketcap-range-slider-labels span:nth-of-type(7) {
  left: 69%;
}
#marketcap-range-slider-labels span:nth-of-type(8) {
  left: 79%;
}
#marketcap-range-slider-labels span:nth-of-type(9) {
  left: 90%;
}

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

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

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

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

/* Chrome, Safari, Edge, Opera */
#marketcap-inputs-wrapper input::-webkit-outer-spin-button,
#marketcap-inputs-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

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

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

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

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

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

#price-range-slider-labels span:nth-of-type(1) {
  left: 0%;
}
#price-range-slider-labels span:nth-of-type(2) {
  left: 12.5%;
}
#price-range-slider-labels span:nth-of-type(3) {
  left: 23%;
}
#price-range-slider-labels span:nth-of-type(4) {
  left: 34%;
}
#price-range-slider-labels span:nth-of-type(5) {
  left: 46%;
}
#price-range-slider-labels span:nth-of-type(6) {
  left: 57%;
}
#price-range-slider-labels span:nth-of-type(7) {
  left: 69%;
}
#price-range-slider-labels span:nth-of-type(8) {
  left: 79%;
}
#price-range-slider-labels span:nth-of-type(9) {
  left: 90%;
}

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

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

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

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

/* Chrome, Safari, Edge, Opera */
#price-inputs-wrapper input::-webkit-outer-spin-button,
#price-inputs-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

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

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

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

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

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

#volume-range-slider-labels span:nth-of-type(1) {
  left: 0%;
}
#volume-range-slider-labels span:nth-of-type(2) {
  left: 12.5%;
}
#volume-range-slider-labels span:nth-of-type(3) {
  left: 23%;
}
#volume-range-slider-labels span:nth-of-type(4) {
  left: 35%;
}
#volume-range-slider-labels span:nth-of-type(5) {
  left: 46%;
}
#volume-range-slider-labels span:nth-of-type(6) {
  left: 59%;
}
#volume-range-slider-labels span:nth-of-type(7) {
  left: 69%;
}
#volume-range-slider-labels span:nth-of-type(8) {
  left: 81%;
}
#volume-range-slider-labels span:nth-of-type(9) {
  left: 90%;
}

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

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

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

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

/* Chrome, Safari, Edge, Opera */
#volume-inputs-wrapper input::-webkit-outer-spin-button,
#volume-inputs-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

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

.loader-wrapper {
  position: absolute !important;
}

.loader {
  display: block;
}

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

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

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

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

.add-to-watchlist-button {
  width: 190px;
  cursor: pointer;
  margin-top: 6px;
  color: #9296ad;
  transition: opacity 0.15s ease;
  opacity: 1;
  margin-left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 22px;
  display: none;
}

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

.modal #search-wrapper {
  width: 100% !important;
}

#search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 300px;
  margin-bottom: 20px;
}

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

.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-option {
  font-size: 16px;
  padding: 0.4em 1em 0.4em 1em;
}

.autocomplete {
  position: relative;
}
.autocomplete-options {
  width: 100%;
  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);
}

#watchlist-count-badge {
  display: none;
  background-color: #f2be22;
  color: #192342;
  height: 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100%;
  position: absolute;
  top: -6px;
  right: -20px;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.modal {
  display: none;
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: fadein 0.3s;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 100vw;
}

.modal.open {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.modal-content {
  background-color: #fff;
  padding: 10px 20px !important;
  max-width: 94%;
  box-sizing: border-box;
  position: relative;
  overflow-y: unset;
  max-height: calc(100vh - 40px);
  min-height: 300px;
  width: 600px !important;
  min-width: 300px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  color: #192342;
  text-align: center;
  line-height: 30px;
}

.modal-title {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
}

.modal-footer {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: absolute;
  bottom: 0;
  position: absolute;
  bottom: 10px;
}

.modal-btn {
  padding: 6px 20px;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  transition: opacity 0.15s ease;
  opacity: 1;
}

.modal-btn:hover {
  opacity: 0.8;
}

.modal-btn-cancel {
  background-color: #dbdbdb;
}
.modal-btn-save {
  background-color: #192342;
  color: #fff;
}

.modal-body p {
  margin-top: 0;
}

.watchlist-companies-to-add {
  margin-top: -10px;
}

.add-to-watchlist-company-row {
  background-color: #ebeaea;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}
.add-to-watchlist-company-row:nth-child(even) {
  background-color: #f7f7f7;
}

.remove-add-to-watchlist-row {
  font-size: 18px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.15s ease;
  margin-right: 10px;
}

.remove-add-to-watchlist-row:hover {
  opacity: 0.8;
}

#add-to-watchlist-modal input,
#add-to-watchlist-modal select,
.filter-selector select {
  border: 1px solid #efefef;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 10px;
  flex-grow: 1;
}

#add-to-watchlist-modal label {
  width: 140px;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 14px;
}

.modal-btn.action.small {
  background-color: #192342;
  color: #fff;
  font-size: 12px;
  padding: 6px;
}
.modal-btn.danger.small {
  background-color: #dc3545;
  color: #fff;
  font-size: 12px;
  padding: 6px;
}

.new-watchlist-feedback {
  font-size: 14px;
  color: #dc3545;
}

#filter-select-exchange option[data-entitlement="none"] {
  display: none;
}
#filter-select-exchange option[data-entitlement="eod"] {
  display: none;
}

#mobile-filters-btn {
  display: none;
}

.col-company-mobile-wrapper {
  display: none;
}

.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;
}
#nav-new .menu .dropdown .dropdown-menu li a.active-link{
    text-decoration: underline;
}

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

#nav-new .profile .submenu .relative {
  position: relative;
}
#mobile-menu .submenu a,
.profile .submenu a,
#nav-new .profile .submenu a {
  padding: 0 !important;
  margin: 0 !important;
  color: #000 !important;
}
.profile .submenu .dropdown-menu,
#nav-new .profile .submenu .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  position: absolute;
  top: 0;
  left: 100%;
}

#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 {
  width: 150px;
  display: none;
}

#mobile-menu .submenu li.relative:hover .dropdown-menu {
  display: block;
}
@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;
  }
  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) {
  #page-wrapper {
    padding: 10px;
    box-sizing: border-box;
    padding-top: 10px !important;
  }

  .inner-page-wrapper {
    width: 100%;
  }

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

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

  .filter-selector:last-of-type .filter-selector-content {
    left: 10px !important;
  }

  .filter-selector-label {
    font-size: 12px;
  }

  .filter-selector-content {
    text-align: left;
    width: calc(100vw - 20px) !important;
    padding: 40px 0 40px 0;
    left: 10px;
    position: fixed;
    top: 10px;
  }

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

  #search::placeholder {
    font-size: 12px;
  }

  .slider-wrapper {
    width: 100% !important;
  }

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

  #mobile-filters-btn {
    display: block;
  }

  #mobile-filters-btn svg {
    width: 24px;
    fill: #192241;
  }

  .search-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filter-controls-wrapper {
    margin-bottom: 10px;
  }

  #filter-tags-wrapper {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  #table-title {
    background-color: #edeef4;
    color: #333;
    width: 100%;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
  }

  #table-header {
    display: none;
  }

  #table-wrapper {
    width: 100%;
  }

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

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

  .tag-text {
    font-size: 10px;
  }

  .load-more-button {
    text-align: center;
    margin-left: 0;
    transform: unset;
    width: 100%;
    font-size: 14px;
  }

  .single-row {
    display: grid;
    width: 100%;
    grid-template-columns: 25% 25% 40px 40px calc(50% - 80px);
    grid-template-rows: 1fr 1fr 1fr;
    padding: 4px 10px;
    position: relative;
  }

  .single-cell {
    padding: 0;
    width: unset;
  }

  .col-company-mobile-wrapper {
    display: flex;
    grid-row: 1;
    grid-column: 1 / 5;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .col-company,
  .col-exchange,
  .col-ticker {
    display: none;
  }

  .col-company-mobile {
    font-size: 12px;
    font-weight: 700;
    width: unset;
    margin-right: 4px;
  }

  .col-exchange-mobile {
    font-size: 11px;
    width: unset;
  }

  .col-ticker-mobile {
    font-size: 11px;
    width: unset;
  }

  .col-news {
    width: 20px;
    grid-row: 1;
    grid-column: 5;
    width: 100%;
    text-align: right;
    pointer-events: none;
  }

  .col-news a {
    pointer-events: auto;
  }

  .col-value-start {
    display: none;
  }

  .col-value-end {
    grid-column: 3 / 5;
    grid-row: 2;
    font-size: 11px;
    text-align: left;
  }

  .col-value-end::before {
    content: "Price: ";
    white-space: nowrap;
    font-weight: 700;
  }

  .col-share-volume {
    grid-column: 1 / 3;
    grid-row: 2;
    font-size: 11px;
    text-align: right;
    padding-right: 6px;
  }

  .col-share-volume::before {
    content: "Volume: ";
    white-space: nowrap;
    font-weight: 700;
  }

  .col-share-value {
    display: none;
  }

  .col-value-marketcap {
    display: none;
  }

  .col-value-change {
    grid-column: 1 / 3;
    grid-row: 3;
    width: 100%;
    padding-right: 6px;
  }
  .col-value-percent-change {
    grid-column: 3 / 6;
    grid-row: 3;
    width: 100%;
  }

  .percent-change-label {
    font-size: 10px !important;
    line-height: 14px;
  }

  .bar-chart-wrapper {
    height: 14px;
  }

  .single-row.pad-left {
    padding-left: 26px;
  }

  .single-row .row-buttons {
    left: 4px;
    width: 18px;
    top: 4px;
    flex-direction: column;
  }

  .single-row .remove-row-btn {
    width: 18px;
    height: 18px;
  }

  .single-row .add-to-watchlist-btn {
    width: 18px;
    height: 18px;
  }
  .single-row .remove-row-btn.watchlist {
    width: 18px;
    height: 18px;
  }

  .page-title {
    font-size: 16px;
  }

  #market-buttons-wrapper {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .market-option {
    font-size: 12px;
    padding: 4px 10px;
  }
}