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

html {
  background-color: #f0f0f0;
}

body.noscroll {
  overflow: hidden;
}

#_footer {
  display: none !important;
}

#page-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  max-width: 1400px;
  margin: auto;
  gap: 0.5rem;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  color: hsl(225, 45%, 18%);
  padding-top: 40px;
  min-height: calc(100vh - 60px);
}

/* #page-wrapper * {
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu";
} */

.fa {
  font-family: "Font Awesome 5 Free" !important;
}

#dashboard-content {
  max-width: 1200px;
}

dialog {
  padding: 0;
  border: 0;
  border-radius: 0.25rem;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgb(52 58 64 / 20%);
}

.dialog-content {
  padding: 1rem;
}

#forgot-password-link {
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.8;
}

#forgot-password-link:hover {
  text-decoration: underline;
  opacity: 1;
}

.dialog-content form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.dialog-buttons-wrapper {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

#dashboard-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.dashboard-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: hsl(225, 45%, 18%);
  cursor: pointer;
  transition: background-color, opacity 150ms ease;
  font-weight: bold;
  font-size: 16px;
  align-self: center;
  padding-left: calc(1rem + 6px);
  user-select: none;
  position: relative;
  display: grid;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  grid-template-columns: 16px 1fr;
}

.dashboard-tab svg {
  height: 16px;
}

.dashboard-tab svg path {
  fill: #192342;
}

.aside-break {
  width: 100%;
  height: 1px;
  background-color: #192342;
}

.notification-badge {
  padding: 2px 6px;
  border-radius: 1000px;
  background-color: #192342;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  right: -8px;
  top: -2px;
}

.dashboard-tab.selected {
  background-color: hsla(225, 45%, 18%, 15%);
  border-left: 6px solid;
  padding-left: 1rem;
  opacity: 1;
}

.dashboard-tab:not(.selected):hover {
  background-color: hsla(225, 45%, 18%, 5%);
  opacity: 1;
}

.tab-content-title {
  font-size: 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #f0f0f0;
  padding: 0.5rem 1.25rem;
  font-weight: bold;
}

.dashboard-tab-content {
  display: none;
}

.dashboard-tab-content.selected {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2em;
}

.tab-content {
  padding: 1rem;
  position: relative;
}

.tab-content.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.content-card {
  box-shadow: 0 3px 10px rgb(52 58 64 / 20%);
  width: 100%;
  background-color: white;
  border-radius: 0.1rem;
}

.content-card-subheader {
  font-weight: 500;
}

.content-card-subsection {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.125rem;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:read-only {
  opacity: 0.8;
}

.form-group label {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: gray;
  letter-spacing: 0.5px;
}

.form-group img {
  height: 16px;
  opacity: 0.6;
  transition: opacity 150ms ease;
  cursor: pointer;
}

.form-group img:hover {
  opacity: 0.8;
}

.subsection-edit-btns {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: flex-end;
  grid-column: 1 / 3;
}

.subsection-btn {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: white;
  color: #404452;
  transition: box-shadow, background-color 150ms;
  font-weight: 500;
  user-select: none;
}

.subsection-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.subsection-btn.large {
  font-size: 16px !important;
  padding: 8px 16px;
}

.subsection-btn.large img {
  height: 16px;
}

.subsection-btn.primary {
  background-color: #192342;
  color: white;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px,
    rgba(48, 165, 191, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

.subsection-btn.primary:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 -1px 0px rgba(0, 0, 0, 0.1) !important;
}

.subsection-btn.secondary {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(64, 68, 82, 0.16) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

.subsection-btn.secondary:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(64, 68, 82, 0.16) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(64, 68, 82, 0.08) 0px 3px 9px 0px,
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

/* .subsection-btn.delete-btn {
  background-color: #f95050;
  color: white;
  box-shadow: 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, 
    #f95050 0px 0px 0px 1px, 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

.subsection-btn.delete-btn:hover {
  box-shadow: 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, 
    #f95050 0px 0px 0px 1px, 
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
    rgba(64, 68, 82, 0.08) 0px 3px 9px 0px,
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
} */

#upgrade-subscription-button {
  outline: 2px solid #f2be22c4;
}

.subsection-btn img {
  height: 12px;
}

.subsection-btn.subsection-btn.primary img {
  filter: invert(1);
}

.subsection-is-editing-btns {
  display: none;
  gap: 0.5rem;
  align-items: center;
}

.icon-loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgb(194 194 194 / 50%);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

.element-loader {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 2em 1em;
}

.element-loader > div {
  width: 24px;
  height: 24px;
  border: 2px solid rgb(25 35 66);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

#add-notification-dialog {
  max-width: 1000px;
  width: 100%;
  min-height: 80vh;
}

#add-watchlist-dialog {
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
}

#add-watchlist-dialog .dialog-buttons-wrapper {
  width: 100%;
  margin-top: 20px;
}

.form-group-title {
  margin-bottom: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-group .multiselect-widget summary,
.form-group input[type="text"],
.form-group input[type="search"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
  width: 100%;
  height: 40px;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.125rem;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 14px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 100px;
}

.form-group input[data-editable="true"]:not(:read-only) {
  outline: 1px solid #1923427d;
  border: 1px solid #192342;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  accent-color: #2799b2;
  transform: scale(1.2);
  margin-right: 8px;
}

.form-group .multiselect-widget input[type="checkbox"] {
  transform: none;
  width: 1em;
  height: 1em;
}

.form-group .multiselect-widget .multiselect-widget-item {
  font-size: 11px;
  text-wrap: wrap;
}

.form-group .multiselect-widget-search .fa-search {
  top: 11px;
  opacity: 0.7;
}

.form-group .multiselect-widget summary::after {
  margin-top: 4px;
}

.form-group .location-search-widget-autocomplete-wrapper {
  max-width: unset;
}

#add-notification-dialog input {
  font-size: 14px;
  font-family: Nunito Sans, sans-serif;
}

.add-card-button {
  display: flex;
  border: 0;
  outline: 0;
  gap: 0.5rem;
  background-color: #30a5bf;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  align-items: center;
  box-shadow: 0 3px 10px rgb(52 58 64 / 20%);
  transition: all 150ms ease;
}

.add-card-button:hover {
  background-color: #2a98b1;
  box-shadow: 0px 4px 10px rgb(52 58 64 / 30%);
}

.add-card-button img {
  height: 20px;
  filter: invert(1);
}

#watchlist-companies,
#watchlist-ignore-companies,
#add-spatial-filter-projects,
#add-spatial-filter-regions {
  margin-top: 4px;
  padding: 0.5rem;
  background-color: #f7f7f7;
  border-radius: 0.25rem;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

#watchlist-companies.is-empty,
#watchlist-ignore-companies.is-empty,
#add-spatial-filter-projects.is-empty,
#add-spatial-filter-regions.is-empty {
  display: none;
}

.company-chip {
  font-size: 10px;
  text-transform: uppercase;
  background-color: #30a5bf;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1000px;
  user-select: none;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.company-chip:hover {
  background-color: #2a98b1;
}

.form-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}

.form-error-title {
  font-weight: bold;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.form-error-title svg {
  width: 16px;
  transform: translateY(-1px);
}

.form-error-title svg path {
  fill: #721c24;
}

.spatial-filter-row table {
  font-size: 12px;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.spatial-filter-row table thead {
  background-color: #f7f7f7;
}

.spatial-filter-row table th {
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
  border: 1px solid white;
  text-align: left;
}

.spatial-filter-row table td {
  padding: 0.25rem 0.5rem;
  border: 1px solid #f7f7f7;
}

#watchlist-news-categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.element-loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
}

.element-loader-wrapper .loader,
.watchlist-content-wrapper .loader,
.watchlist-stock-content-wrapper .loader {
  width: 30px !important;
  height: 30px !important;
}

#dashboard-watchlists-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.watchlist-content-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  margin-bottom: 10px;
  border-bottom: 0;
}

.watchlist-news-rows-wrapper {
  border: 1px solid #f0f0f0;
}

.watchlist-content-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.watchlist-content-title > span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.watchlist-content-buttons-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.watchlist-content-buttons-wrapper img {
  opacity: 0.7;
  cursor: pointer;
  width: 12px;
}

.watchlist-content-buttons-wrapper img:hover {
  opacity: 0.8;
}

.watchlist-content-buttons-wrapper img.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.watchlist-content-row {
  font-size: 12px;
  padding: 0.25rem 0;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.watchlist-content-row:nth-child(odd) {
  background-color: #f9f9f9;
}

.watchlist-content-row:nth-child(even) {
  background-color: #fff;
}

.watchlist-news-item-news-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.watchlist-content-row:hover {
  box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0,
    0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  z-index: 2;
}

#dashboard-watchlists-tabs-wrapper {
  display: flex;
  gap: 1rem;
}

.watchlist-tab.selected {
  border: 1px solid #19234285;
  background-color: white;
  opacity: 1;
  border-bottom: 0;
}

.watchlist-wrapper {
  flex-direction: column;
  gap: 1rem;
  padding: 12px;
  border: 1px solid #dedddc;
  border-radius: 4px;
}

.watchlist-news-item-name-and-date-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.watchlist-news-item-company-name {
  font-weight: 600;
}

.watchlist-news-item-date {
  color: #979797;
  font-size: 14px;
  white-space: nowrap;
}

.watchlist-news-items-action-button-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem;
}

.watchlist-news-items-action-button-wrapper img {
  height: 14px;
  opacity: 0.7;
}

.watchlist-news-items-action-button-wrapper:hover {
  background-color: rgba(100, 121, 143, 0.122);
}

.watchlist-news-items-action-button-wrapper:hover img {
  opacity: 0.9;
}

.single-watchlist-no-content {
  padding: 0.5rem;
  background-color: #f0f0f0;
  font-size: 12px;
}

.watchlist-stock-content-wrapper {
  position: relative;
  overflow: auto;
  padding-bottom: 2px;
  margin-top: 4px;
}

.stock-data-table-body {
  max-height: 400px;
  overflow-y: auto;
  padding-bottom: 2px;
  border: 1px solid #f0f0f0;
  border-bottom: 0;
}

.stock-data-header-row,
.watchlist-content-row.stock-row {
  display: flex;
  padding: 0;
  width: fit-content;
  min-width: 100%;
}

.stock-data-header-cell:nth-child(1),
.stock-data-cell:nth-child(1) {
  width: calc(100% - 650px);
  min-width: 100px;
  text-align: left;
}

.stock-data-header-cell:nth-child(2),
.stock-data-cell:nth-child(2) {
  width: 80px;
}

.stock-data-header-cell:nth-child(3),
.stock-data-cell:nth-child(3) {
  width: 100px;
}

.stock-data-header-cell:nth-child(4),
.stock-data-cell:nth-child(4) {
  width: 100px;
}

.stock-data-header-cell:nth-child(6),
.stock-data-cell:nth-child(6) {
  width: 80px;
}

.stock-data-header-cell:nth-child(7),
.stock-data-cell:nth-child(7) {
  width: 80px;
}

.stock-data-header-cell:nth-child(8),
.stock-data-cell:nth-child(8) {
  width: 80px;
}

.stock-data-header-cell:nth-child(9),
.stock-data-cell:nth-child(9) {
  width: 80px;
}

.stock-data-header-cell,
.stock-data-cell {
  width: 50px;
  padding: 0.25rem;
  flex-grow: 0;
  flex-shrink: 0;
}

.stock-data-header-cell {
  font-size: 11px;
  text-transform: uppercase;
  border: 1px solid #f0f0f0;
  border-right: 0;
  background-color: rgba(0, 0, 0, 0.03);
}

.stock-data-cell {
  min-height: 36px;
}

.stock-data-cell.negative {
  color: #d9363d;
}

.stock-data-cell.positive {
  color: #007600;
}

.watchlist-news-timerange-wrapper {
  display: flex;
  gap: 0.5rem;
}

.watchlist-news-timerange-wrapper button {
  font-size: 10px;
  text-transform: uppercase;
}

.autocomplete-searchbar-widget-input {
  /* border: 0 !important; */
  box-shadow: 0 3px 10px rgb(52 58 64 / 20%);
}

#admin-company-selector-wrapper {
  margin-bottom: 1rem;
}

#admin-company-selector-current-company {
  font-weight: bold;
}

#asset-tabs-wrapper {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.asset-tab {
  font-size: 10px;
  text-transform: uppercase;
  background-color: white;
  cursor: pointer;
  transition: all 150ms ease;
  opacity: 0.9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(64, 68, 82, 0.16) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

.asset-tab.selected {
  background-color: #30a5bf;
  opacity: 1;
  color: white;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, #30a5bf 0px 0px 0px 1px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(64, 68, 82, 0.08) 0px 2px 5px 0px;
}

.asset-tab:hover {
  opacity: 1;
}

.asset-content-wrapper {
  padding: 1em 0;
}

.asset-map-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  border: 1px solid #f0f0f0;
}

.asset-map {
  width: 100%;
  height: 100%;
}

.form-group.fakepassword::before {
  content: "**********";
  position: absolute;
  left: 1rem;
  top: calc(22px + 0.375rem);
  user-select: none;
  z-index: 9;
  color: #a9acaf;
}

.user-subscription-card {
  padding: 1rem;
  padding-top: 0;
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 184px;
  max-width: 240px;
  position: relative;
  width: 100%;
}

.user-subscription-card.selected {
  background-color: hsl(225, 45%, 18%);
  color: white;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.card-top-content {
  margin-bottom: 1rem;
}

.card-top-content,
.card-bottom-content {
  height: 50%;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}

.select-plan-button {
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  background-color: hsl(225, 45%, 18%);
  color: white;
  user-select: none;
  transition: 300ms all ease;
  border: 2px solid transparent;
}

.select-plan-button:hover {
  background-color: white;
  color: hsl(225, 45%, 18%);
  border-color: hsl(225, 45%, 18%);
}

/* .select-plan-button.current-plan {
  cursor: auto;
} */

.user-subscription-card.selected .select-plan-button {
  color: hsl(225, 45%, 18%);
  background-color: white;
}

#user-subscription-action-buttons {
  display: flex;
  justify-content: center;
}

#card-details-wrapper {
  border: 1px solid #1923424d;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  width: max-content;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.dashboard-tabs-header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: none;
}

#free-trial-dialog,
#free-trial-banner {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  border: 0;
  outline: 0;
  max-width: 500px;
}

#free-trial-banner {
  max-width: unset !important;
}

#free-trial-header,
#free-trial-banner-header {
  font-size: 16;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

#free-trial-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 0.75rem;
  cursor: pointer;
}

.watchlist-news-paging-wrapper {
  display: flex;
  margin-top: -20px;
  justify-content: center;
  gap: 1rem;
}

.daterangepicker-widget summary {
  height: 40px !important;
}

.watchlist-news-filters,
.watchlist-newsroom-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.watchlist-filter-btn {
  display: inline-flex;
}

.watchlist-filter-content {
  display: none;
  position: absolute;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  background-color: white;
  z-index: 9999;
  margin-top: 3px;
  left: 10px;
  width: calc(100% - 20px);
}

.watchlist-filter-wrapper.active .watchlist-filter-content {
  display: block;
}

.watchlist-filter-btn::after {
  display: block;
  width: 1rem;
  height: 1rem;
  -webkit-margin-start: calc(1rem * 0.5);
  margin-inline-start: calc(1rem * 0.5);
  float: right;
  transform: rotate(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(65, 84, 98)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: right center;
  background-size: 1rem auto;
  background-repeat: no-repeat;
  content: "";
  transition: transform 150ms ease;
}

.watchlist-filter-wrapper.active .watchlist-filter-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.watchlist-filter-chips-header,
.watchlist-newsroom-filter-chips-header {
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  display: none;
}

.watchlist-filter-chips,
.watchlist-newsroom-filter-chips {
  display: none;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px dashed #d6d2d2;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid #bdbdbd;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 1000px;
  background-color: #fff;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 150ms ease;
  white-space: nowrap;
}

.filter-chip:hover {
  opacity: 1;
}

.filter-chip-close {
  margin-left: 6px;
}

.watchlist-filter-tags .input-icon {
  top: 12px !important;
}

.watchlist-results-table-header {
  display: none;
  flex-wrap: nowrap;
}

.watchlist-content-row {
  display: flex;
  flex-wrap: wrap;
}

.watchlist-content-row:hover .watchlist-results-row-action-btns {
  display: flex;
}

.watchlist-results-row-action-btns {
  display: none;
  gap: 0.25rem;
  align-items: center;
  position: absolute;
  right: 1px;
  top: 1px;
  background-color: white;
  padding: 0 0.5rem;
  height: calc(100% - 2px);
  border-left: 1px solid rgba(100, 121, 143, 0.122);
  background-color: #f8d7da;
}

.watchlist-action-btn[data-action="remove-company"] {
  color: #842029;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.watchlist-results-table-cell {
  padding: 0.25rem 0.5rem;
  font-size: 11px;
  color: #3c3c3c;
  flex-shrink: 0;
}

.watchlist-results-table-header .watchlist-results-table-cell {
  font-weight: 500;
  position: relative;
  user-select: none;
}

.watchlist-results-table-header .watchlist-results-table-cell.sortable,
.watchlist-sort-option.sortable {
  padding-right: 24px;
  cursor: pointer;
}

.watchlist-results-table-header .watchlist-results-table-cell.sortable::before,
.watchlist-sort-option.sortable::before {
  position: absolute;
  top: 11px;
  transform: translateY(-50%);
  display: block;
  opacity: 0.3;
  right: 1em;
  content: "↑";
  color: black;
  text-shadow: 0 0 black;
}

.watchlist-results-table-header .watchlist-results-table-cell.sortable::after,
.watchlist-sort-option.sortable::after {
  position: absolute;
  top: 11px;
  transform: translateY(-50%);
  display: block;
  opacity: 0.3;
  right: 0.5em;
  content: "↓";
  color: black;
  text-shadow: 0 0 black;
}

.watchlist-results-table-header .watchlist-results-table-cell.sort-asc::before,
.watchlist-sort-option.sort-asc::before {
  opacity: 1;
}

.watchlist-results-table-header .watchlist-results-table-cell.sort-desc::after,
.watchlist-sort-option.sort-desc::after {
  opacity: 1;
}

.watchlist-results-table-header .watchlist-results-table-cell.sortable:hover {
  text-decoration: underline;
}

.watchlist-results-table-cell:nth-of-type(1) {
  width: 100%;
  order: 1;
  font-weight: 500;
}
.watchlist-results-table-cell:nth-of-type(2) {
  width: 25%;
  order: 3;
  display: none;
}
.watchlist-results-table-cell:nth-of-type(3) {
  width: 56px;
  order: 4;
  display: none;
}
.watchlist-results-table-cell:nth-of-type(4) {
  width: 110px;
  order: 5;
}
.watchlist-results-table-cell:nth-of-type(5) {
  width: 50%;
  order: 1;
  display: none;
}
.watchlist-results-table-cell:nth-of-type(6) {
  display: none;
}
.watchlist-results-table-cell:nth-of-type(7) {
  width: 180px;
  order: 7;
}
.watchlist-results-table-cell:nth-of-type(8) {
  width: 86px;
  order: 8;
}
.watchlist-results-table-cell:nth-of-type(9) {
  width: 100px;
  order: 9;
}
.watchlist-results-table-cell:nth-of-type(10) {
  display: none;
}
.watchlist-results-table-cell:nth-of-type(11) {
  display: none;
}
.watchlist-results-table-cell:nth-of-type(12) {
  display: none;
}
.watchlist-results-table-cell:nth-of-type(13) {
  display: none;
}

.watchlist-company-mobile {
  display: block;
}
.watchlist-company-desktop {
  display: none;
}

.watchlist-results-table-cell .price-change-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  margin-top: 1px;
}

.price-change-symbol.positive {
  background-color: #090;
}

.price-change-symbol.negative {
  background-color: #a00;
}

.price-change-symbol.positive img,
.price-change-symbol.negative img {
  filter: invert(1);
}

.price-change {
  color: #333;
  font-weight: 500;
}

.price-change.positive {
  color: #090;
}

.price-change.negative {
  color: #a00;
}

.percent-change {
  color: #333;
  background-color: #f4f4f4;
  font-size: 10px;
  padding: 2px;
  border-radius: 2px;
}

.percent-change.positive {
  background-color: #e0f3e0;
  color: #090;
}

.percent-change.negative {
  background-color: #fee;
  color: #a00;
}

.watchlist-results-table-cell .price-change-symbol img {
  width: 8px;
}

.dollarvolume,
.sharevolume {
  flex-shrink: 0;
}

.avgvolratio {
  padding: 2px;
  border-radius: 2px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 10px;
}

.avgvolratio.neutral {
  background-color: #ededed;
}

.avgvolratio.neg3 {
  background-color: #aa0000a3;
  color: white;
}
.avgvolratio.neg2 {
  background-color: #aa00005e;
}
.avgvolratio.neg1 {
  background-color: #aa000021;
}
.avgvolratio.pos3 {
  background-color: #009000a3;
  color: white;
}
.avgvolratio.pos2 {
  background-color: #0090005e;
}
.avgvolratio.pos1 {
  background-color: #00900021;
}

#current-watchlist-btn {
  font-size: 16px;
  display: inline-flex;
}

#current-watchlist-btn::after {
  display: block;
  width: 1rem;
  height: 1rem;
  -webkit-margin-start: calc(1rem * 0.5);
  margin-inline-start: calc(1rem * 0.5);
  float: right;
  transform: rotate(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(65, 84, 98)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: right center;
  background-size: 1rem auto;
  background-repeat: no-repeat;
  content: "";
  transition: transform 150ms ease;
}

#current-watchlist-btn.active::after {
  transform: rotate(180deg);
}

#watchlist-options-dropdown {
  position: absolute;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  background-color: white;
  z-index: 9999;
  margin-top: 3px;
  display: none;
  min-width: 200px;
  max-height: 300px;
  overflow-y: auto;
}

#watchlist-options-dropdown .watchlist-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 150ms ease;
}

#watchlist-options-dropdown .watchlist-option:hover {
  background-color: hsla(225, 45%, 18%, 5%);
}

#watchlist-options-dropdown .watchlist-option.active {
  font-weight: bold;
}

.watchlist-news-cell-wrapper {
  position: relative;
}

.watchlist-filter-content {
  padding: 20px;
}

.watchlist-news-cell-popup {
  position: absolute;
  top: 0;
  right: -0.5rem;
  transform: translateY(-100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  background-color: white;
  z-index: 9999;
  width: 300px;
  display: none;
  overflow-y: auto;
  padding: 0.5rem;
  max-height: 200px;
}

.watchlist-news-element {
  margin-bottom: 10px;
  padding: 0.25rem;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
}

.watchlist-news-element:last-of-type {
  margin-bottom: 0;
}

.news-cell:hover .watchlist-news-cell-popup,
.watchlist-news-cell-popup:hover .watchlist-news-cell-popup {
  display: block;
}

.watchlist-news-item-title {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 150ms ease;
}

.watchlist-news-element a {
  text-decoration: none;
}

.watchlist-news-element a:hover .watchlist-news-item-title {
  opacity: 1;
}

.watchlist-sort-wrapper-mobile {
  display: block;
}

.watchlist-sort-options {
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  padding: 0.25rem 0;
  margin-top: 6px;
}

.watchlist-sort-option {
  position: relative;
  padding: 0.25rem 0.5rem;
  font-size: 14px;
  font-weight: lighter;
  border-bottom: 1px solid #e9e9e9;
}

.watchlist-sort-option:last-child {
  border-bottom: 0;
}

.watchlist-sort-option.sort-asc,
.watchlist-sort-option.sort-desc {
  font-weight: bold;
}

.watchlist-sort-btn {
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 12px;
}

.mobile-sort-by-and-dir-wrapper {
  background-color: #192342;
  color: white;
  padding: 2px 4px;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.watchlist-results-table-cell .price-change {
  font-size: 11;
}

.watchlist-results-table-cell.move-positive {
  color: #090;
}
.watchlist-results-table-cell.move-negative {
  color: #a00;
}

.spatial-filter-drop-area {
  width: 100%;
  padding: 20px;
  height: 129px;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-wrapper label {
  display: block;
  width: 100%;
  padding: 15px 12px;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  font-size: 12px;
  text-transform: uppercase;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  text-align: center !important;
  transition: background-color 0.2s ease;
}

.upload-wrapper label:hover {
  background-color: #f8f8f8;
}

#spatial-filter-file-upload-warning {
  display: none;
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  margin-bottom: 0.25rem;
  background-color: white;
  justify-content: space-between;
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  flex-direction: column;
}

#spatial-filter-file-info-section {
  display: block;
  padding: 0.5rem;
  background-color: #f7f7f7;
  margin-top: 6px;
  border: 1px dashed #e8e8e8;
}

.selected-file-item {
  font-size: 14px;
  font-weight: lighter;
  line-height: 20px;
}

#watchlist-news-articles-dialog {
  max-width: 94%;
}

.article-list-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ebebeb;
  background-color: rgba(0, 0, 0, 0.03);
}

.article-list-dialog-close {
  cursor: pointer;
}

.article-list-dialog-content {
  max-height: 600px;
  overflow-y: auto;
  padding: 1rem;
}

#watchlist-mode-tabs {
  display: flex;
}

.watchlist-mode-btn {
  padding: 0.25rem 0.5rem;
  background-color: white;
  cursor: pointer;
  border: 1px solid #192342;
  color: #192342;
  font-weight: 500;
  font-size: 16px;
}

.watchlist-mode-btn.active {
  background-color: #192342;
  color: white;
}

.watchlist-newsroom-page-wrapper {
  display: none;
}

.watchlist-newsroom-page-wrapper.active {
  display: block;
}

.watchlist-newsroom-card {
  box-shadow: 0px 3px 6px #00000029;
  padding: 0.5rem;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
  font-size: 13px;
}

.watchlist-newsroom-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 0.25rem;
}

.watchlist-newsroom-card-title {
  font-weight: 500;
}

.watchlist-newsroom-card-date {
  color: #979797;
  font-size: 0.8em;
  flex-shrink: 0;
  margin-right: 10px;
}

#watchlist-newsroom-paging-wrapper {
  gap: 0.5rem;
  justify-content: center;
}

#watchlist-newsroom-totals-wrapper {
  margin-top: 10px;
  margin-bottom: 4px;
  opacity: 0.8;
  font-size: 14px;
}

.watchlist-newsroom-card-read-btns {
  display: flex;
  gap: 0.25rem;
  margin-top: 6px;
}

.watchlist-newsroom-card-read-btns .subsection-btn {
  font-size: 13px;
}

.watchlist-newsroom-card-read-btns a {
  text-decoration: none;
}

#watchlist-newsroom-read-article-dialog {
  margin-top: 0;
  margin-right: 0;
  width: 900px;
  height: 100vh;
  max-height: unset;
  max-width: 100%;
  min-width: unset;

  outline: 0;
  border-radius: 0;
}

#watchlist-newsroom-read-article-dialog .dialog-content {
  height: calc(100% - 46px);
  overflow-y: auto;
}

#watchlist-newsroom-read-article-dialog img {
  max-width: 100% !important;
  height: auto !important;
}

.watchlist-newsroom-card-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.watchlist-newsroom-card-tag {
  background-color: #f0f0f0;
  font-size: 10px;
  border-radius: 2px;
  padding: 2px 4px;
  white-space: nowrap;
}

.watchlist-newsroom-card-tag.company-tag {
  background-color: #f0f0f0;
  color: #192342;
  font-weight: 500;
  border: 1px solid rgba(25, 35, 66, 0.5);
}

.watchlist-newsroom-card-company {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.watchlist-newsroom-filter-timerange
  .daterangepicker-widget-custom-range
  .calendar-icon-wrapper {
  padding: 0 10px !important;
}

.watchlist-newsroom-filter-tags .input-icon,
.watchlist-newsroom-filter-commodities .input-icon {
  margin-top: 12px !important;
}

.dashboard-watchlist-news-content-wrapper.no-content {
  padding: 1em;
  background-color: #f7f7f7;
  margin: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  font-weight: lighter;
}

.watchlist-newsroom-filter-chips {
  margin-bottom: 10px;
}

#dashboard-watchlist-news-content-wrapper {
  margin-bottom: 20px;
}

#tutorial-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tutorial-card {
  max-width: 100%;
  position: relative;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.tutorial-card a {
  text-decoration: none;
}

.tutorial-card-header {
  font-weight: bold;
  margin-bottom: 6px;
}

.tutorial-card-description {
  opacity: 0.7;
}

#open-datamodal {
  margin-bottom: 10px;
}

#watchlist-email-wrapper {
  display: flex;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

#watchlist-email-wrapper.selected {
  background-color: #192342;
  color: white;
}

#watchlist-email-wrapper img {
  opacity: 0.6;
  width: 14px;
  height: 14px;
}
#watchlist-email-wrapper.selected img {
  filter: invert(1);
  opacity: 1 !important;
}

#watchlist-email-wrapper label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  pointer-events: none;
}

#watchlist-email-wrapper input {
  transform: scale(1.4);
  margin-right: 12px;
  accent-color: #192342;
  pointer-events: none;
}

#watchlist-newsroom-export-too-big-dialog {
  max-width: 400px;
}

#watchlist-newsroom-export-too-big-dialog .dialog-content {
  padding: 0 1rem;
}

.dialog-footer {
  padding: 0 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.custom-date-wrapper .calendar-icon-wrapper {
  height: 30px !important;
}

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

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

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@media (min-width: 576px) {
  #page-wrapper {
    max-width: 540px;
  }

  dialog {
    min-width: 400px;
    margin-top: 120px;
  }

  .tutorial-card {
    max-width: calc(50% - 1rem);
  }

  .watchlist-newsroom-card {
    font-size: 15px;
  }

  .watchlist-newsroom-card-read-btns .subsection-btn {
    font-size: 15px;
  }

  .watchlist-filter-content {
    width: 330px;
    left: unset;
  }

  .watchlist-results-table-header {
    display: flex;
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom: 1px solid lightgray;
    width: fit-content;
    z-index: 2;
  }

  .watchlist-content-row {
    flex-wrap: nowrap;
  }

  .watchlist-sort-wrapper-mobile {
    display: none;
  }

  .watchlist-results-table-cell.hide {
    display: none !important;
  }

  .watchlist-results-table-cell:nth-of-type(1) {
    width: 56px;
    order: 1;
    text-align: center;
    font-weight: 400;
  }
  .watchlist-results-table-cell:nth-of-type(2) {
    width: 54px;
    order: 2;
    text-align: center;
    display: block;
  }
  .watchlist-results-table-cell:nth-of-type(3) {
    width: 56px;
    order: 3;
    text-align: center;
    display: block;
  }
  .watchlist-results-table-cell:nth-of-type(4) {
    width: 110px;
    order: 4;
  }
  .watchlist-results-table-cell:nth-of-type(5) {
    width: 165px;
    order: 5;
    display: block;
  }
  .watchlist-results-table-cell:nth-of-type(6) {
    width: 50px;
    order: 6;
    display: block;
  }
  .watchlist-results-table-cell:nth-of-type(7) {
    width: 180px;
    order: 7;
  }
  .watchlist-results-table-cell:nth-of-type(8) {
    width: 80px;
    text-align: center;
    order: 8;
  }
  .watchlist-results-table-cell:nth-of-type(9) {
    width: 80px;
    text-align: center;
    order: 9;
  }
  .watchlist-results-table-cell:nth-of-type(10) {
    width: 100px;
    text-align: center;
    order: 10;
  }
  .watchlist-results-table-cell:nth-of-type(11) {
    width: 60px;
    order: 11;
    display: block;
    text-align: center;
  }
  .watchlist-results-table-cell:nth-of-type(12) {
    width: 64px;
    order: 12;
    display: block;
    text-align: center;
  }
  .watchlist-results-table-cell:nth-of-type(13) {
    width: 64px;
    order: 13;
    display: block;
    text-align: center;
  }
  .watchlist-results-table-cell:nth-of-type(14) {
    width: 68px;
    order: 14;
    display: block;
    text-align: center;
  }

  .watchlist-company-mobile {
    display: none;
  }
  .watchlist-company-desktop {
    display: block;
  }

  .watchlist-sort-wrapper-mobile {
    position: relative;
  }

  .watchlist-results-table {
    overflow: auto;
    max-height: calc(100dvh - 200px);
    position: relative;
  }

  .watchlist-news-rows-wrapper {
    width: fit-content;
  }

  #watchlist-news-articles-dialog {
    max-width: 600px;
  }

  .watchlist-results-table-header .watchlist-results-table-cell.sortable,
  .watchlist-sort-option.sortable {
    padding-right: 18px;
  }

  .watchlist-newsroom-card-header {
    flex-wrap: nowrap;
  }

  .slimscrollbar::-webkit-scrollbar {
    width: 8px;
  }

  .slimscrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .slimscrollbar::-webkit-scrollbar-thumb {
    background: #b9b9b9;
  }

  .slimscrollbar::-webkit-scrollbar-thumb:hover {
    background: #9e9e9e;
  }
}

@media (min-width: 768px) {
  #page-wrapper {
    max-width: 720px;
  }

  .user-subscription-card {
    width: 100%;
  }
}

@media (min-width: 992px) {
  #page-wrapper {
    max-width: 960px;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    gap: 2em;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 50px;

    padding-top: 100px;
    min-height: 100vh;
  }

  #dashboard-tabs {
    flex-direction: column;
  }

  .dashboard-tabs-header {
    display: block;
  }

  .dashboard-tab {
    align-self: unset;
  }

  .notification-badge {
    right: 2px;
    top: 10px;
  }
}

@media (min-width: 1200px) {
  #page-wrapper {
    max-width: 1140px;
  }

  .tab-content {
    grid-template-columns: 1fr 1fr;
  }

  .tab-content.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1500px) {
  #page-wrapper {
    max-width: 1400px;
  }
}
