html {
  scroll-behavior: smooth;
}

#full-page-wrapper {
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 65px;
  box-sizing: border-box;
}

.news-item {
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
  padding: 20px;
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
  position: relative;
}

.news-item.subscribed {
  padding: 20px !important;
  border-radius: 10px !important;
  cursor: auto !important;
}

.news-item.normal {
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.news-wrapper {
  padding: 20px 100px;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
}

#companiesWrapper {
  width: 100%;
  position: relative;
}
#subscribedWrapper {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: none;
}

#loaderWrapper {
  position: absolute;
}

.news-loader {
  width: 100%;
  height: 10rem;
}

.news-pages {
  padding: 6px 0 10px 0;
  font-size: 14px;
}

.news-pages.bottom {
  padding: 50px 100px 0 100px;
}

.news-date-and-tags-wrapper {
  display: flex;
  justify-content: space-between;
}

.company-logo-and-excerpt-container {
  display: flex;
  flex-wrap: nowrap;
}

.company-logo-wrapper {
  height: 60px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.company-logo-and-excerpt-container img {
  height: 100%;
}

.news-tags-container {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.news-tags-item {
  padding: 4px 6px;
  border: 1px solid #30A5BF;
  color: #30A5BF;
  margin-right: 3px;
  margin-bottom: 3px;
  margin-left: 0;
}

.news-tags-item:first-of-type {
  margin-left: 0;
  margin-right: 3px;
}

.news-tags-container.hidden {
  display: none;
}

.news-date {
  color: #979797;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.news-title {
  line-height: 1.2;
  font-size: 1.4rem;
}

.news-title a {
  text-decoration: none;
  transition: opacity 0.1s ease;
  opacity: 1;
}

.news-title a:hover {
  opacity: 0.8;
}

.article-excerpt {
  font-size: 0.9rem;
}

.news-item.impactful {
  padding: 10px;
  border-left: 10px solid;
  position: relative;
}

.news-item.impactful.price-gain {
  border-color: #66df81
}
.news-item.impactful.price-loss {
  border-color: #ed727e
}

.impactful .article-buttons {
  margin-top: 8px;
}

.news-item.impactful.subscribed .article-excerpt{
  -webkit-line-clamp: 4;
  line-clamp: 4;
  white-space: unset;
}

.impactful .article-excerpt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.impactful .news-title {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.news-item.impactful.subscribed .news-title {
  margin-bottom: 6px;
}
.news-item.impactful.subscribed .company-logo-wrapper {
  height: 55px;
}
.news-item.impactful.subscribed .company-logo-wrapper img {
  height: 100%;
  width: unset;
}

.impactful .article-buttons a {
  padding: 6px 10px !important;
  border-radius: 6px !important;
}

.company-miniquote-container {
  width: 100%;
  order: 3;
  width: 100%;
  margin: 4px 0;
}

.news-date-and-tags-wrapper {
  flex-wrap: wrap;
}

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

.news-search-wrapper input {
  /* padding: 8px 12px; */
  /* padding-right: 30px; */
  /* border: 1px solid #30A5BF;   */
  width: 100%;

  border: 1px solid transparent;
  background-color: #fff;
  /* box-shadow: 1px 1px 1px 1px rgba(170, 170, 170, 0.5); */
  box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  padding-left: 2.375rem;
}

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

.dropbtn {
  position: relative;
}

.dropbtn .loader {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -8px;
  right: 6px;
}

#area-search-dropdown-content {
  position: fixed;
  width: auto;
}

.dropdown-content {
  position: absolute;
  display: none;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.dropdown-content .option {
  padding: 6px 20px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.dropdown-content .option mark {
  background-color: unset;
  font-weight: 900;
  color: #30A5BF;
  pointer-events: none;
}

.dropdown-content .option.header {
  font-weight: 700;
  pointer-events: none;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #30A5BF;
  color: #fff;
}

.dropdown-content .option:hover {
  background-color: rgb(236, 236, 236);
}
.dropdown-content.show {
  display: block;
}

.close-btn {
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  display: none;
}

.close-btn:hover {
  opacity: 1;
}

/* .news-date-selector-wrapper {
  margin-right: 10px;
  margin-bottom: 10px;
} */


.news-date-selector-items {
  display: flex;
}

.news-date-selector {
  padding: 4px 6px;
  border: 1px solid #30A5BF;
  color: #30A5BF;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 1;
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  min-height: 33px;
  border-right: 0;
}

.news-date-selector:last-of-type {
  border-right: 1px solid #30A5BF;
}

.news-date-selector:hover {
  opacity: 0.8;
}

.news-date-selector.selected {
  color: #fff;
  background-color: #30A5BF;
}



.news-filters-items {
  display: flex;
}


.scroll-top-container {
  font-size: 30px;
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  background-color: #000;
  color: white;
  cursor: pointer;
  transition: opacity 0.1s ease;
  opacity: 0.6;
  z-index: 2;
  align-items: center;
  padding-bottom: 2px;
}

.scroll-top-container:hover {
  opacity: 0.8;
}

.filter-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.search-and-filter-controls-wrapper {
  display: flex;
  flex-wrap: wrap;
  order: 1;
  width: 100%;
}

.news-filter-btn {
  align-items: center;
  color: #fff;
  background-color: #30A5BF;
  padding: 2px 2px 2px 10px;
  display: inline-flex;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 1;
  position: relative;
  font-size: 13px;
  min-height: 33px;
}

.filter-count-badge {
  position: absolute;
  border-radius: 1000px;
  background-color: #6e6e6e;
  color: #fff;
  font-size: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -5px;
  right: -5px;
  opacity: 0;
  transition: opacity 0.2s ease;
}


.filter-count-badge.active {
  opacity: 1;
}

.news-filter-btn:hover {
  opacity: 0.8;
}

#filters-modal {
  display: none;
  z-index: 999999 !important;
  /* top: 30px !important; */
}

#filters-modal .modal-content {
  border-radius: 30px !important;
}

#close-filters-btn {
  background: #C4C9D1;
  width: 30px;
  height: 30px;
  font-size: 22px;
  border-radius: 50%;
  color: #fff;
  font-weight: 500;
  position: absolute;
  right: 15px;
  top: 15px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  padding: 10px 25px;
  /* position: relative; */
  z-index: 10;
  border-top: 1px solid #efefef;
}

.modal-footer .filter-btn {
  color: #30A5BF;
  padding: 10px 20px;
  border-radius: 1000px;
  opacity: 1;
  cursor: pointer;
  border: 1px solid #30A5BF;
  transition: all 0.2s ease;
}

.modal-footer .filter-btn:first-of-type {
  margin-right: 10px;
}

.modal-footer .filter-btn:hover {
  color: #fff;
  background-color: #30A5BF;
}

.modal-body.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  max-height: 60vh;
  position: relative;
}

.filter-subgroup-wrapper {
  position: relative;
  /* border-right: 1px solid #c5c5c5; */
}

.filter-subgroup-content {
  min-width: 200px;
  padding: 10px 20px;
  
}

.filter-subgroup-content.scroll {
  max-height: calc(60vh - 40px);
  overflow-y: auto;
}

.filter-subgroup-content.scroll, .filter-subgroup-wrapper.scroll {
  max-height: calc(60vh - 40px);
  overflow-y: auto;
}

.filter-subgroup-content::-webkit-scrollbar, .filter-subgroup-wrapper::-webkit-scrollbar {
  width: 10px;
}
.filter-subgroup-content::-webkit-scrollbar-track, .filter-subgroup-wrapper::-webkit-scrollbar-track {
  background-color: rgb(216, 216, 216);
}
.filter-subgroup-content::-webkit-scrollbar-thumb, .filter-subgroup-wrapper::-webkit-scrollbar-thumb {
  background: rgba(99, 154, 166, 0.5); 
}
.filter-subgroup-content::-webkit-scrollbar-thumb:hover, .filter-subgroup-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 154, 166, 0.8); 
}




.filter-subgroup-wrapper:last-of-type  {
  border-right: 0;
}

.filter-subgroup-header {
  text-align: center;
  display: flex;
  justify-content: center;
}

.filter-subgroup-header div {
  text-transform: uppercase;
  background: #30a5bf;
  color: white;
  border-radius: 10px !important;
  width: auto !important;
  padding: 6px 20px !important;
}

.form-group {
  margin-bottom: 10px;
}

.filter-subgroup-content.min-max-input-group {
  display: flex;
  justify-content: space-between;
}

.filter-subgroup-content.min-max-input-group label {
  margin-left: 12px;
}

.filter-subgroup-content.min-max-input-group input {
  color: #192342;
  margin-left: 2px;
  margin-right: 2px;
  padding: 8px 12px;
  border: 0.5px solid #707070;
  border-radius: 10px;
  max-width: 100px;
}

.min-max-input-group .form-group div {
  display:flex;
  align-items: center;
}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  color: #192342;
}

.form-group input[type=text], .form-group select {
  padding: 8px 12px;
  border: 0.5px solid #707070;
  border-radius: 10px;
  /* border: 1px solid #c5c5c5;  */
  width: 100%;
  margin-top: 4px;
  color: #192342;
}

.form-group input[type=checkbox] {
  transform: scale(1.2);
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.checkbox-group label {
  text-transform: unset;
  cursor: pointer;
}

.checkbox-group div {
  padding: 4px 0;
  /* display: grid; */
  /* grid-template-columns: 24px 1fr; */
  align-items: center;
  cursor: pointer;
}

.dropdown-search-wrapper {
  position: relative;
}

.filter-multiselect,
.filter-multiselect option {
  background-color: #ffffff;
  color: #192342;
}
.filter-multiselect:invalid,
.filter-multiselect option[value=""] {
  color: #192342;
}

.multiselect-active-box {
  min-height: 30px;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  background-color: #e4e3e3;
  position: relative;
  transition: min-height 0.2s ease;
}

.multiselect-active-box.no-content {
  min-height: 0;
  padding: 0;
}

.multiselect-active-element {
  border: 1px solid #30A5BF;
  color: #30A5BF;
  margin-right: 3px;
  margin-bottom: 3px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.active-item-text {
  padding: 2px 6px;
}

.active-item-close-btn {
  background-color: #30A5BF;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 1;
  height: 100%;
  padding: 0 4px;
}

.active-item-close-btn:hover {
  opacity: 0.8;
}

.multiselect-active-element:last-of-type {
  margin-right: 0;
}

#filters-modal .close-btn {
  top: 8px;
}

.reset-news-filter-btn {
  border: 1px solid #30A5BF;
  display: flex;
  align-items: center;
  padding: 2px 2px 2px 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 1;
  margin-left: 10px;
  font-size: 13px;
  color: #606060;
  background-color: #fff;
  min-height: 33px;
}

.reset-news-filter-btn:hover {
  opacity: 0.8;
}


.reset-news-filter-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.reset-news-filter-btn svg path {
  fill: #30A5BF;
}

#news-title {
  font-size: 30px;
}

.quick-search-and-date-container {
  padding-bottom: 10px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}

#quick-search-container {
  display: flex;
  margin-bottom:10px;
}

.quick-search-option, .market-option {
  padding: 10px;
  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: 5px;
  text-align: center;
  background-color: white;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}

.market-option.mini {
  padding: 10px 20px;
  font-weight: normal;
  font-size: 14px;
  border-radius: 0;
  margin: 0;
}

.market-option.mini:hover {
  outline: 0;
}

.market-option.mini:first-of-type {
  border-radius: 10px 0 0 10px;
}
.market-option.mini:last-of-type {
  border-radius: 0 10px 10px 0;
}

.market-option.mini.selected {
  background-color: #30a5bf;
  color: white;
  outline: 0;
  border: 0;
}

#quick-search-buttons-dropdown-label {
  display: none;
  padding: 10px;
  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: 5px;
  text-align: center;
  background-color: white;
  letter-spacing: -0.5px
}

#quick-search-buttons-dropdown-container {
  display: flex;
}

@media only screen and (max-width: 900px) {
  #quick-search-buttons-dropdown-label {
    display: inline-block;
    width: 160px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  }

  #quick-search-buttons-dropdown-container {
    display: none;
    position: absolute;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 45%);
    margin-top: 4px;
    border-radius: 4px;
  }

  .quick-search-option {
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid lightgray;
    border-radius: 0;
    margin-right: 0;
    width: 160px;
    box-sizing: border-box;
  }

  

  .quick-search-option:last-of-type {
    border-bottom: 0;
  }

  #quick-search-buttons-dropdown-container .quick-search-option:hover {
    outline: none !important;
    border-left: 8px solid #30A5BF;
  }

  #quick-search-buttons-dropdown-container .quick-search-option.selected {
    outline: none !important;
  }
  
}


.quick-search-option:hover, .market-option:hover {
  outline: 1px solid #30A5BF;
}

.quick-search-option.selected, .market-option.selected {
  outline: 1px solid #30A5BF;
}

.quick-search-option:last-of-type {
  margin-right: 0;
}

#narrow-your-search-container {
  margin-bottom: 10px;
  padding-bottom: 16px;
}


.search-option-header {
  margin-bottom: 4px;
}

.filter-selector {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  background-color: #fff;

  padding: 10px 12px;
  border: 0.5px solid #707070;
  border-radius: 10px;
  width: 100%;
  color: #192342;
}

#date-filter-selector {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  width: 100%;
  color: #192342;

  border: 1px solid transparent;
  background-color: #fff;
  /* box-shadow: 1px 1px 1px 1px rgba(170, 170, 170, 0.5); */
  box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

.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 {
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  -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-label img {
  width: 14px;
  margin-right: 4px;
}

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

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


.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: 35px;
}

.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;
  display: flex;
}

.filter-option.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

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

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

.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: #30A5BF;
  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-selector:last-of-type .filter-selector-content {
  left: unset;
  right: 0;
}

#impactful-news-filters-container {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
  order: 2;
}

#impactful-news-filters-container .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;
}

#impactful-news-filters-container .filter-selector.hasValue {
  background-color: #30A5BF;
}

#impactful-news-filters-container .filter-selector.hasValue > .filter-selector-label {
  color: white;
}

#impactful-news-filters-container .filter-selector-content {
  top: 40px !important;
}

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

#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:first-of-type {
  justify-content: flex-end;
}
#price-inputs-wrapper div {
  display: flex;
  align-items: center;
  font-weight: 300;
}
#price-inputs-wrapper input {
  width: 60px;
  color: #192342;
  margin-left: 2px;
  margin-right: 2px;
  padding: 4px;
}
#price-range-slider {
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
}
#price-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-labels {
  width: 100%;
  margin-top: 24px;
  position: relative;
}
.range-slider .range-slider__thumb {
  background: #30a5bf;
}

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

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

#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-close-btn {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
  opacity: 1;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.flex-wrapper {
  display: flex;
  align-items: center;
}


.news-item.welcomeEmbed {
  padding: 10px;
}
.news-item.welcomeEmbed .article-excerpt {
  display: none;
}
.news-item.welcomeEmbed .news-title {
  font-weight: 600 !important;
  font-size: 16px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-top: 4px;
  margin-bottom: 4px;
}
.news-item.welcomeEmbed .news-date {
  font-size: 12px;
}
.news-item.welcomeEmbed .article-buttons {
  margin-top: 0;
}
.news-item.welcomeEmbed .article-buttons a {
  padding: 4px 8px !important;
  font-size: 12px;
  margin-right: 4px !important;
  border-radius: 0 !important;
}
.news-item.welcomeEmbed .news-tags-item {
  padding: 2px 4px;
  font-size: 12px;
}



/* filter range sliders */
.range-slider-wrapper {
  width: 290px;
}

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

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

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

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

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

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

.range-slider-inputs-wrapper div {
  display: flex;
  align-items: center;
  font-weight: 300;
}

.range-slider-inputs-wrapper div:first-of-type {
  justify-content: flex-start;
}
.range-slider-inputs-wrapper div:last-of-type {
  justify-content: flex-end;
}

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

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

/* Firefox */
.range-slider-inputs-wrapper input[type=number] {
  -moz-appearance: textfield;
}

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

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

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

.ranger-slider-inputs-wrapper-to {
  position: relative;
}

.ranger-slider-inputs-wrapper-to::after {
  content: '+';
  position: absolute;
  right: 21px;
  top: 4px;
  font-size: 14px;
  font-weight: 700;
  display: none;
  pointer-events: none;
  user-select: none;
}

.ranger-slider-inputs-wrapper-to.plus::after {
  display: block;
}


.range-slider-container.noUi-horizontal {
  height: 10px !important;
}

.range-slider-container .noUi-handle {
  width: 24px !important;
  height: 24px !important;
  background: #30a5bf !important;
  border: 0 !important;
}

#market-buttons-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.options-header {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  margin-bottom: 2px;
}





@media only screen and (max-width: 1200px) {
  .news-wrapper {
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
    max-width: unset;
  }
  
}













@media only screen and (max-width: 641px) {

  #full-page-wrapper {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-body.grid-layout {
    grid-template-columns: 1fr !important;
    overflow-y: auto !important;
    padding: 8px 10px !important;
  }

  .filter-selector-content {
    width: calc(100vw - 30px);
  }

  .news-search-wrapper {
    margin-bottom: 10px;
  }

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

  .news-date-and-tags-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .news-tags-container {
    width: 100%;
  }

  .company-miniquote-container {
    margin-bottom: 3px;
    width: 100%;
    border-bottom: 1px solid #ededed;
    padding-bottom: 3px;
  }

  .news-date {
    font-size: 0.6rem !important;
  }

  .article-excerpt {
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2;
    -webkit-box-orient: vertical
  }

  .impactful .article-excerpt {
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2;
    -webkit-box-orient: vertical
  }

  .news-title {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .scroll-top-container {
    right: 10px;
    bottom: 10px;
  }

  .news-date-selector-wrapper .filter-selector-content{
    padding-top: 10px;
  }
  
  .news-date-selector-wrapper .filter-selector-options{
    padding: 0 10px;
  }
  
  .news-date-selector-wrapper .filter-option input[type="radio"] {
    transform: scale(1.0);
  }
  
  .news-date-selector-wrapper .filter-option label {
    font-size: 12px;
  }
  
  .news-date-selector-wrapper .filter-selector-footer{
    padding: 10px 10px 0;
  }

  .company-logo-and-excerpt-container {
    flex-wrap: wrap;
  }
  
  .company-logo-wrapper {
    height: unset;
    width: 100%;
    max-width: 100px;
  }
  
  .company-logo-and-excerpt-container img {
    height: unset;
    width: 100%;
  }

  .quick-search-and-date-container {
    margin-top: 0;
    gap: 0.5rem;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .quick-search-buttons-wrapper {
    width: 100%;
  }

  .news-date-selector-wrapper {
    flex-grow: 1;
  }

  .quick-search-container {
    flex-grow: 1;
  }

  .news-date-selector-wrapper .filter-selector-label {
    justify-content: center;
  }

  #quick-search-buttons-dropdown-label {
    /* padding: 6px 6px; */
    font-size: 14px;
  }

  #news-title {
    font-size: 18px;
    font-weight: bold;
  }

  /* #date-filter-selector {
    padding: 6px 10px;
    font-size: 12px;
    padding-bottom: 4px;
  } */

  #date-filter-selector .filter-selector-content {
    min-width: 130px;
  }
  #date-filter-selector .filter-selector-label {
    font-size: 12px;
    transform: translateY(-1px);
  }
  #date-filter-selector .filter-selector-label img {
    width: 10px;
  }

  #narrow-your-search-title {
    display: none;
  }

  /* .news-search-wrapper input {
    padding: 6px 10px;
    font-size: 10px;
    padding-left: 1.6rem;
    padding-top: 8px;
  }

  .news-search-wrapper input::placeholder {
    font-size: 10px;
  } */

  .news-search-wrapper .close-btn {
    font-size: 14px;
  }

  /* .news-search-wrapper .fa-search {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  } */

  .news-filters-items .new-secondary-btn {
    padding: 6px 10px !important;
    font-size: 12px;
    padding-right: 4px  !important;
  }

  .news-filters-items .new-brand-btn {
    padding: 6px 10px !important;
    font-size: 12px;
    align-self: center;
  }

  #filters-modal {
    top: 0 !important;
  }
  
  .news-pages {
    font-size: 10px;
    padding: 2px 0;
  }

  #news-search-wrapper {
    width: 100%;
    margin-bottom: 6px;
    align-items: center;
  }

  .news-search-wrapper {
    margin: 0;
    width: 100%;
  }

  .hide-if-mobile {
    display: none;
  }

  .article-buttons {
    margin-top: 6px;
  }

  .article-buttons a {
    padding: 3px 6px !important;
    font-size: 10px !important;
    border-radius: 0 !important;
    margin-right: 4px !important;
  }
  .impactful .article-buttons a {
    padding: 3px 6px !important;
    font-size: 10px;
    border-radius: 0 !important;
    margin-right: 4px !important;
  }

  .news-item {
    padding: 10px;
    border-radius: 0;
    margin-bottom: 6px;
  }


  .impactful .article-excerpt {
    white-space: unset;
  }

  .news-tags-item {
    padding: 2px 4px;
    font-size: 10px !important;
  }

  #narrow-your-search-container {
    margin: 10px 0;
  }

  #article-search-dropdown-content {
    max-height: 300px;
  }
  #article-search-dropdown-content .option {
    font-size: 12px;
    padding: 4px 10px;
  }

  #narrow-your-search-container .flex-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }

  .search-and-filter-controls-wrapper {
    width: 100%;
    flex-shrink: 0;
  }

  #impactful-news-filters-container {
    margin-top: 4px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
  }

  #impactful-news-filters-container .filter-selector {
    position: unset !important;
    padding: 4px 10px;
  }
  #impactful-news-filters-container .filter-selector .filter-selector-label{
    font-size: 10px;
  }

  #impactful-news-filters-container .filter-selector-content {
    top: 30px !important;
    width: 100% !important;
  }

  .qmod-miniquotes.qmod-ui-tool {
    font-size: 11px !important;
  }

  #banner-placements-container {
    width: calc(100% + 20px);
    top: 0 !important;
    margin-top: -20px;
    margin-bottom: 0;
  }

} 
