main {
  padding: 0;
  max-width: 1400px;

  --desktop-modal-width: clamp(330px, 28vw, 375px);
  --desktop-modal-gap: 1.75rem;
  --desktop-content-width: calc(100% - var(--desktop-modal-width) - var(--desktop-modal-gap));
  --color-item-bg-dark: #161617;
  --color-border-gray-dark: #242629;
}

main {
  padding: 2rem 2rem 8rem;
}

body {
  overflow: initial;
}

.back-link-outer > a {
  display: inline-flex;
  align-items: center;
  color: var(--color-quiver-white-3);
  font-size: 13px;
}

.back-link-outer > a:hover {
  color: var(--color-quiver-white);
}

.back-link-outer i {
  margin-right: 6px;
  font-size: 12px;
  color: var(--color-quiver-green);
}

.strategy-outer {
  display: flex;
  flex-direction: row-reverse;

  gap: var(--desktop-modal-gap);
}

.strategy-inner {
  min-width: var(--desktop-content-width);
  width: var(--desktop-content-width);
  max-width: var(--desktop-content-width);
}

.strategy-header {
  display: flex;
}

.strategy-header-inner {
  padding-top: 2rem;
  min-width: var(--desktop-content-width);
  width: var(--desktop-content-width);
  max-width: var(--desktop-content-width);
}

.strategy-title {
  display: inline-block;
}

.strategy-title > h1 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--color-quiver-white-light);
}

#strategyReturn {
  display: flex;
  align-items: center;
  gap: .33rem;
  padding-top: .5rem;
  transition: opacity .5s ease-in;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--color-quiver-white-2);
  
  span {
    letter-spacing: .25px;
    font-weight: 500;
  }
}

.desc-toggle-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -.5rem;
  cursor: pointer;

  > i {
    font-size: clamp(11px, 2vw, 12px);
    color: var(--color-quiver-gray-2);
  }
}

.desc-toggle-mobile.desc-toggle-mobile-active {
  margin-top: 1rem;

  > i {
    color: var(--color-quiver-white-2);
  }
}

.strategy-description-mobile {
  display: none;
  padding: 1.5rem 0 1rem;
}

.strategy-description-outer {
  position: sticky;
  top: 3rem;
  right: 0;
  margin-top: -80px;
  border: 1px solid var(--color-border-gray);
  border-radius: 8px;
  padding: 1.5rem;
  min-width: var(--desktop-modal-width);
  width: var(--desktop-modal-width);
  max-width: var(--desktop-modal-width);
  height:100%;
  background-color: var(--color-item-bg-dark);
}

.strategy-description {
  display: flex;
  flex-direction: column;
}

.strategy-description p,
.strategy-description-mobile p {
  margin: 1rem 0 .75rem;
  max-width: 80ch;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 350;
  line-height: 1.8;
  color: var(--color-quiver-white-4);
}

.strategy-description-mobile p,
.strategies-disclaimer p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1rem 1.5rem .75rem 0;
}

.strategy-description-mobile p.show-all,
.strategies-disclaimer p.show-all {
  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  overflow: unset;
  text-overflow: unset;
}

.strategies-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
  padding-right: 2rem;
  
  p.collapse {
    margin: 0;
    font-size: clamp(11px, 1.25vw, 11.5px);
    font-weight: 300;
    color: var(--color-quiver-gray-3);
    font-style: italic;
    line-height: 1.45;

    strong {
      font-weight: 450;
    }
  }
  
  i {
    font-size: clamp(11px, 2vw, 11px);
    color: var(--color-quiver-gray-2);
    cursor: pointer;
  } 
}

.strategy-description p a:hover {
  text-decoration: underline;
}

.strategy-description .description-metrics {
  display: flex;
  flex-wrap: wrap;
  padding: .75rem 0 .75rem 0;
}

.description-metrics > div {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-bottom: 1rem;
}

.description-metrics > div strong {
  padding-bottom: .25rem;
  font-size: clamp(13px, 2vw, 13px);
  font-weight: 300;
  color: var(--color-quiver-gray-3);
}

.description-metrics > div span {
  font-size: clamp(15px, 2vw, 16px);
  font-weight: 350;
  color: var(--color-quiver-white-2);
}

.description-metrics div.backtest-date {
  > span {
    font-size: clamp(14px, 2vw, 15px);
  }
}

div.backtest-date-mobile {
  display: none;

  strong {
    font-size: clamp(13px, 2vw, 13px);
    font-weight: 400;
    color: var(--color-quiver-white-4);
    padding: .25rem 0;
  }
  span {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 400;
    color: var(--color-quiver-gray-4);
  }
}

.description-metrics {
  border-bottom: 1px solid #2c2c2e;
}

.strategy-dataset span {
  position: absolute;
  top: .25rem;
  left: calc(100% + .5rem);
  display: block;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  padding: .125rem .6rem;
  opacity: .85;
}

.actions.strategy-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

.actions > button,
.actions > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 450;
  padding: .25rem .75rem;
  border: 1px solid var(--color-quiver-green);
  border-radius: 9999px;
  color: var(--color-quiver-green);
  background-color: transparent;
  opacity: .95;
  width: 100%;
  height: 42px;
  cursor: pointer;
  transition: .1s;

  white-space: nowrap;

  i {
    margin-top: 2px;
    margin-right: .5rem;
    font-size: clamp(11px, 1.75vw, 11px);
  }
}

.actions > #watch-btn.dim-watchlist-btn,
.actions > #watch-btn-mobile.dim-watchlist-btn,
.actions > #watch-btn.inactive,
.actions > #watch-btn-mobile.inactive {
  pointer-events: none;
  opacity: .5;
}

.actions #watch-btn.remove-btn,
.actions #watch-btn-mobile.remove-btn {
  border: 1px solid var(--color-error-red);
  color: var(--color-error-red);
}

.actions #watch-btn.remove-btn:hover {
  background-color: #fe555543;
  color: var(--color-quiver-white);
}

.actions > button:hover {
  background-color: #57d7b942;
  color: var(--color-quiver-white);
}

.actions > a.copy {
  font-weight: 550;
  color: var(--color-quiver-white);

  i {
    font-size: clamp(11px, 1.75vw, 11px);
    margin-right: .65rem;
  }
}

.actions.strategy-actions.strategy-actions-mobile {
  display: none;
  gap: .5rem;
  padding-top: 0;
}

.actions.strategy-actions-mobile > button,
.actions.strategy-actions-mobile > a {
  height: 28px;
  font-size: clamp(13px, 1.5vw, 14px);
}

.price-graph-outer {
  position: relative;
  width: 100%;
}

#price_graph {
  position: relative;
  margin: .75rem 0 0;
  width: 100%;
  height: 300px;
}

.graph-toggles-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border-gray);
  padding: 0 .75rem 0 0;
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease-in;
}

.graph-toggles-gear {
  display: none;
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  padding: .25rem;

  > i {
    font-size: 17px;
    color: #454f55;
    cursor: pointer;
  }
}

ul.graph-toggles-range {
  display: flex;
  align-items: center;
  gap: .75rem;

  > li {
    margin-bottom: -1px;
    padding: .55rem .4rem;
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 400;
    color: var(--color-quiver-white);
    border-bottom: 1px solid transparent;

    &.active {
      font-weight: 500;
    }
  }
}

.graph-toggles-outer.toggles-active {
  opacity: 1;
  pointer-events: all;

  li {
    cursor: pointer;
  }
}

div.graph-toggles-lines {
  display: flex;
  align-items: center;
  gap: 1rem;

  > label {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding-right: 19px;
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 400;
    color: var(--color-quiver-gray-4);
    cursor: pointer;
  }
}

/* custom checkbox */
/* Hide the browser's default checkbox */
.graph-toggles-lines input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* custom checkbox */
.checkmark {
  position: absolute;
  top: 0px;
  right: 0;
  height: 14px;
  width: 14px;
  background-color: #121212;
  border-radius: 1px;
  border: 1px solid var(--color-quiver-gray-4);
}

/* On mouse-over, add a background color */
.graph-toggles-lines label:hover input ~ .checkmark {
  background-color: #1e1f24;
}

/* When the checkbox is checked, add a background */
.graph-toggles-lines input:checked ~ .checkmark {
  background-color: #1e1f24;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.graph-toggles-lines input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.graph-toggles-lines .checkmark:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--color-quiver-white-4);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.metrics-header,
.holdings-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 3rem 0 1rem;
}

.holdings-header {
  margin: 2rem 0 .75rem;
}

.metrics-header > h2,
.holdings-header > h2,
.faqs-outer h5 {
  position: relative;
  display: inline;
  font-size: clamp(22px, 2.5vw, 27px);
  font-weight: 400;
  color: var(--color-quiver-white-light);
}

.strategy-description-header,
.strategy-description-header-mobile,
.metrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;

  > i.fa-copy,
  span.descriptions-toggle i {
    cursor: pointer;
    color: var(--color-quiver-gray-3);
    font-size: clamp(13px, 2vw, 14px);
    margin-right: .5rem;
  } 
}

.metrics-header {
  justify-content: flex-start;
}

.strategy-description-header > h2,
.strategy-description-header-mobile > h2 {
  font-size: clamp(21px, 2.5vw, 23px);
  font-weight: 400;
  color: var(--color-quiver-white-light);
}

span.toggle-additional-metrics {
  margin-right: .75rem;
  padding-top: .75rem;
  display: block;
  text-align: right;
  margin-left: auto;
  font-weight: 350;
  font-size: 13px;
  color: var(--color-quiver-gray-4);
  cursor: pointer;
}

.metrics-header span.descriptions-toggle {
  display: flex;
}

.metrics-header i {
  font-size: clamp(13px, 1.5vw, 15px);
}

.strategy-metrics-outer {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: .5rem;
}

.strategy-metrics-outer #additional-metrics {
  display: flex;
  flex-wrap: wrap;
  max-height: 0;
  transition: max-height .2s ease-out;
  overflow: hidden;
  width: 100%;
}

#additional-metrics.show-additional-metrics {
  max-height: 500px;
  transition: max-height .2s ease-in;
}

.strategy-metrics-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.strategy-metrics-inner > .inner-item {
  display: flex;
  width: 50%;
}

.strategy-metrics-inner > div > div {
  margin: 4px 8px 4px 0px;
  padding: .9rem 1rem;
  border-radius: 4px;
  width:130px;
  white-space: nowrap;
  background-color: #222731;
  box-shadow: 2px 2px 2px rgb(14, 14, 18);
}

.strategy-metrics-inner  h3 {
  padding-bottom: .33rem;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-quiver-gray-2);
}

.strategy-metrics-inner span {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-quiver-white-2);
}

.metrics-descriptions-outer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  background-color: rgba(0,0,0,.75);
}

.metrics-descriptions-outer.show-descriptions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.metrics-descriptions-inner {
  border-radius: 4px;
  padding: 1.5rem;
  width: 100%;
  max-width: 550px;
  background-color: var(--color-item-bg-dark);
  box-shadow: 2px 2px 4px rgba(0,0,0,1);
}

.metrics-descriptions-inner .definitions-header {
  display: flex;
  justify-content: space-between;
}

.definitions-header i {
  font-size: 22px;
  cursor: pointer;
  color: var(--color-error-red);
  opacity: .75;
  transition: .2s;
}

.definitions-header i:hover {
  opacity: 1;
}

.metrics-descriptions-inner > ul {
  max-height: 50vh;
  overflow-y: auto;
}

.metrics-descriptions-inner li {
  padding: 0 2rem 2rem 0;
}

.metrics-descriptions-inner h5 {
  padding-bottom: 1.25rem;
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 400;
}

.metrics-descriptions-inner h6 {
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 400;
  padding-bottom: .25rem;
}

.metrics-descriptions-inner p {
  font-size: clamp(12px, 2vw, 13px);
  color: var(--color-quiver-gray-2);
  line-height: 1.4;
}

.metrics-descriptions-inner span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.metrics-descriptions-inner a {
  color: var(--color-quiver-green);
  font-size: 12px;
}

.metrics-descriptions-inner a:hover {
  text-decoration: underline;
}

.holdings-outer {
  display: flex;
  flex-wrap: wrap;
  padding-top: .25rem;
}

.table-outer {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 8px;
  padding: 0;
}

.display-tabs-strategy {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1rem 0;
  border-bottom: 1px solid var(--color-border-gray);
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease-in;
}

.display-tabs-strategy.display-tabs-active {
  opacity: 1;
  pointer-events: all;
}

.display-tabs-strategy > div {
  margin-bottom: -1px;
  margin-right: .75rem;
  padding: .5rem .5rem;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 350;
  color: var(--color-quiver-white);
  cursor: pointer;
  opacity: .5;
  white-space: nowrap;
  transition: .1s;
  border-bottom: 2px solid transparent;

  strong {
    font-weight: 350;
  }
}

.display-tabs-strategy > div.active-tab-strategy {
  opacity: 1;
  font-weight: 450;
}

#strategyPageOuter .strategy-metrics-inner > div > div {
  background-color: var(--color-item-bg-dark);
}

#strategyPageOuter .table-outer {
  display: none;
  background-color: transparent;
  border-bottom: 1px solid var(--color-border-gray-dark);
  border-radius: 0;
  padding-bottom: .25rem;
}

#strategyPageOuter .table-outer.strategy-content-active {
  display: block;
}

#strategyPageOuter .strategy-metrics-inner > div > div {
  width: 50%;
  box-shadow: 3px 3px 2px rgb(12, 12, 12);
}

#strategyPageOuter .table-outer tr td:first-child a,
#strategyPageOuter .table-outer tr th:first-child a {
  display: flex;
  align-items: center;

  strong {
    display: block;
    font-weight: 500;
    padding-bottom: 1px;
    color: var(--color-quiver-white-light);
  }

  span {
    padding-right: .75rem;
    min-width: 90px;
    width: 12.5vw;
    max-width: 175px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: clamp(12px, 1.75vw, 12px);
    font-weight: 350;
    color: var(--color-quiver-gray-2);
  }

  img {
    width: 22px;
    height: 22px;
    margin-right: .75rem;
    border-radius: 1px;
  }
}

#strategyPageOuter .table-outer tr th:first-child,
#strategyPageOuter .table-outer tr td:first-child {
  background-color: #121212;
  min-width: 150px;
  width: 33%;
}

.table-outer .rebalance-date {
  padding-left: .5rem;
  font-size: 14px;
  color: var(--color-quiver-gray);
}

.table-outer .rebalance-date > span {
  font-weight: 300;
}

.table-outer .disclaimer {
  padding: .2rem .5rem 1.5rem .5rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-quiver-gray-3);
  font-style: italic;
}

.table-outer .disclaimer > span {
  color: var(--color-quiver-green);
  margin-right: 2px;
  font-size: 14px;
  display: none;
}

.table-header {
  padding: .75rem 0 1.5rem 0rem;
}

.table-filter-inner {
  border: 1px solid var(--color-border-gray-dark);
  border-radius: 4px;
}

.table-filter-inner:focus-within {
  border-bottom: 1px solid var(--color-quiver-green);
}

.table-filter-inner > input {
  font-size: 12px;
  background-color: #1e1f24;
}

#strategyPageOuter .table-filter-inner > input {
  background-color: var(--color-item-bg-dark);
}

.table-header-title > h3 {
  font-size: clamp(17px, 2.5vw, 23px);
  font-weight: 400;
  color: var(--color-quiver-white);
}

.table-outer table tr.sticky-table-headers > th {
  color: var(--color-quiver-gray);
  white-space: nowrap;
  font-size: 13px;
  border-left: 0;
  background-color: var(--color-item-bg-dark) !important;
  padding: .9rem 1rem .9rem 1rem;

  > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;

    &.cell-centered {
      justify-content: center;
    }
  }

  &:first-child {
      z-index: 3;
      border-left: 1px solid var(--color-border-gray);
  }

  &:first-child > div {
    justify-content: space-between;
  }

  &:last-child {
    min-width: 132px;
  }
}

.table-outer td,
#strategyPageOuter tbody th {
  padding: 0;

  a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border-gray-dark);
    padding: .25rem 1rem;
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 400;
    color: var(--color-quiver-white);
    white-space: nowrap;
    height: 54px;
  }

  a.date {
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 350;
  }
}

.table-outer thead th:not(:first-child),
.table-outer td:not(:first-child) {
  width: 20%;

  a {
    font-family: 'Roboto', sans-serif;
    letter-spacing: .5px;
    justify-content: flex-end;

  }

  a.cell-centered {
    justify-content: center;
  }
}

.table-outer .header-filter {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-grow:1;
}

.header-filter i {
  color: var(--color-quiver-white-4);
  font-size: 12px;
  font-size: clamp(12px, 2vw, 13px);
  cursor: pointer;
}

.header-filter i:hover {
  color: var(--color-quiver-white-2);
}

.ticker-table-input-outer,
.ticker-table-input-outer.hide-placeholder::before {
  display: none;
}

.ticker-table-input-outer {
  position: absolute;
  left: .5rem;
  padding: 0.3rem 0.5rem .3rem .25rem;
  border-radius: 2px;
  background-color: #1d1d1e;
}

input.ticker-table-input {
  margin-left: .25rem;
  border: none;
  min-width: 70px;
  width:9vw;
  max-width: 90px; 
  background-color: transparent;
  font-size: clamp(13px, 1.5vw, 14px);
  color: var(--color-quiver-white-3);
}

.ticker-table-input-outer.table-search-active {
  display: block;
}

i.table-search-active,
i.table-search-active:hover {
  color: var(--color-quiver-green);
}

/* fake ::before placeholder */
.ticker-table-input-outer::before {
  position: absolute;
  left: .5rem;
  content: 'Enter ticker';
  color: var(--color-quiver-gray-3);
  font-size: 12px;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 300;
  pointer-events: none;
}

.ticker-table-input.no-results {
  color: var(--color-error-red);
}

.table-outer .upcoming-table td {
  white-space: initial;
}

.table-outer td a {
  font-size: 15px;
}

.table-outer .upcoming-table td,
.table-outer .upcoming-table td a {
  font-size: 15px;
} 

.table-outer .table-inner {
  position: relative;
  max-height: 550px;
  border-bottom: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 97.5%, rgba(0, 0, 0, 0) 100%);
  -mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 97.5%, rgba(0, 0, 0, 0) 100%);
}

#strategyPageOuter .table-inner {
  min-height: 300px;
  max-height: 550px;
  max-height: min(600px, 77.5vh);
}

.table-inner tbody tr:nth-child(even) {
  background-color: transparent;
}

.table-inner tbody tr:hover a {
  background-color: #161616;
}

#strategyPageOuter td:first-child {
  border-left: 1px solid var(--color-border-gray-dark);
}
#strategyPageOuter td:last-child {
  border-right: 1px solid var(--color-border-gray-dark);
}

.content-loader-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: .25s;
}

.content-loader-outer.hide-loader {
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.content-loader {
  box-sizing: border-box;
  display: inline-block;
  border-top: 5px solid #657c92;
  border-right: 5px solid transparent;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: rotation 1s linear infinite;
}

#watch-btn .content-loader,
#watch-btn-mobile .content-loader {
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--color-quiver-green);
  border-right: 3px solid transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.content-placeholder-outer {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #121212;
}

.content-placeholder {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  padding: .5rem;
  opacity: .75;
  height: 100%;
}

.hide-content-loader,
.hide-content-loader-table {
  opacity: 0;
  pointer-events: none;
  transition: .4s;
}

.hide-content-loader-table {
  transition: .1s;
}

.hide-content-loader-table .content-loader-outer {
  background-color: transparent;
}

.loader-row td {
  position: relative;
  height: 50px;
}

.no-data-element {
  padding: 1.5rem .25rem;
}

.no-data-element p {
  font-size: 16px;
  font-size: clamp(17px, 2vw, 19px);
  color: var(--color-quiver-white-2);
  padding-left: 0 !important;
}

.no-data-element span {
  font-size: 14px;
  font-size: clamp(15px, 2vw, 18px);
  padding: 0.5rem 0;
  font-size: 15px;
  color: var(--color-quiver-gray-3);
}

.positive {
  color: #57d7BA !important;
}
.negative {
  color: #ff1d58 !important;
}
.sell {
  color: #ff1d58 !important;
}
.neutral {
  color: var(--color-quiver-gray-3) !important;
}

.axis path,
.axis line {
  fill: none;
  stroke: var(--color-border-gray);
  stroke-width: 1.5px;
  opacity: .5;
  shape-rendering: crispEdges;
}

.line {
  fill: none;
  stroke-width: 2px;
}

.line-spy {
  fill: none;
  stroke: rgb(89, 90, 91);
  stroke-width: 1px;
}

.start-price-line {
  stroke: rgb(60, 61, 61);
  stroke-width: 1px;
}

.overlay {
  fill: none;
  pointer-events: all;
}

.focus circle {
  fill: rgb(169, 164, 195);
}
.grid {
  opacity: .5;
}
.grid .tick {
  stroke: var(--color-quiver-gray);
  opacity: 0.1;
}
.focus text{
  fill: silver;
}
.area {
    fill: #377CC3;
    opacity: .75;
    stroke-width: 0;
}
.yAxisTicks {
  /*
  styling for axis ticks/labels goes here
  **/
}
.xAxisTicks {
  /*
  styling for axis ticks/labels goes here
  **/
}
.bar {
  fill: steelblue;
}

.bar:hover {
  fill: lightblue;
}

.axis text {
  font-size: 12px;  
  font-weight: 300;
  stroke: transparent;
  stroke-width: 1px;
  fill: var(--color-quiver-gray-4);
}

.tooltip {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background-color: var(--color-item-bg-dark);
  border-radius: 2px;
  border: 1px solid var(--color-border-gray);
  padding: .75rem .75rem .5rem;
  white-space: nowrap;
}

.tooltip strong {
  color: var(--color-quiver-gray);
  font-size: 12px;
  font-weight: 500;
  padding-bottom: .25rem;
}

.tooltip p, 
.tooltip span
{
  display: flex;
  align-items: center;
  font-size: 13px;
  padding-top: .75rem;
  font-weight: 400;
  color: var(--color-quiver-white-2);
}

.tooltip div {
  display: flex;
  justify-content: space-between;
}

.tooltip span {
  padding-left: 1.5rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: .5px;
}

.tooltip span.return {
  display: inline-block;
  margin-left: auto;
  color: var(--color-quiver-gray-4);
  font-size: 12px;
  padding-top: .4rem;
  padding-bottom: .25rem;
}

.tooltip span.above-bench {
  color: var(--color-quiver-green);
}

.tooltip span.below-bench {
  color: var(--color-error-red);
}

.tooltip span.tooltip-marker {
  display: inline-block;
  padding: 0;
  padding-left: 0;
  margin: 0 .33rem 0 0;
  width: 7px;
  height: 7px;
}

circle {
  fill: none;
  stroke-width: 1px;
}

th .sort-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: .75rem;
  cursor: pointer;
}

.sort-outer i {
  font-size: 14px;
  color: rgb(125,125,125);
  line-height: .25 !important;
  transition: .2s;
}

th i.sort-active {
  color: var(--color-quiver-green);
  transition: .2s;
}

.sub-gate-outer {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;

  .gate-rows {
    width: 100%;
    padding: .75rem;
    gap: .75rem;
    overflow: hidden;
    background-color: var(--color-item-bg-dark);
    opacity: .175;

    > div {
      width: 100%;
      height: 50px;
      background-color: #1a1b1c;
      border-radius: 4px;
    }
  }
}

.sub-gate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0rem 2rem 1rem;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.sub-gate-inner {
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.sub-gate img {
  width: 70px;
}

.sub-gate strong {
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--color-quiver-white);
  line-height: 1.6;
  font-weight: 550;
}

.sub-gate a.alt-link {
  font-size: clamp(12px, 1.25vw, 15px);
  color: var(--color-quiver-white-4);
  line-height: 1.6;
  max-width: 625px;
}

.sub-gate span {
  display:none;
  font-size: clamp(13px, 1vw, 14px);
  color: #849aae;
  font-size: 12px;
}

.sub-gate a:not(.alt-link) {
  padding: .6rem 1rem;
  background-color: var(--color-quiver-green);
  border-radius: 1px;
  color: black;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 16px);
  margin-top: .25rem;
}

.faqs-outer {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  padding: 2.5rem 0 0rem;
  border-top: 1px solid var(--color-border-gray-dark);
  background-color: transparent;
}

.faqs-outer h5 {
  margin: 0;
  padding: 0 1rem 0 0;
  color: var(--color-quiver-white-light);
  margin-bottom: 1.5rem;
}

.faq-dropdown {
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding:1.25rem;
  cursor: pointer;
}

.fa-chevron-up {
  color: var(--color-quiver-green);
}

.faqs-list {
  display:flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

.faqs-list li {
  background-color: #171719;
  border-radius: 4px;
  margin: 0 0rem 1rem 0rem;
  box-shadow: 2px 2px 3px rgb(4, 4, 4);
}

.faqs-list strong {
  display: block;
  font-size: clamp(14px, 1.75vw, 16px);
  font-weight: 400;
  color: var(--color-quiver-white);
  line-height: 1.3;
}

.faqs-list p {
  display: none;
  padding: 0 2rem 1.5rem 1.25rem;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 300;
  color: var(--color-quiver-white-4);
  line-height: 1.8;
  margin-top: -.5rem;
  max-width: 90ch;
}

.faqs-list a {
  color: var(--color-quiver-green);
}

.faqs-list a:hover {
  text-decoration: underline;
}

.about-outer {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem 8rem;
  width: 100%;
  background-image: linear-gradient(to bottom, #121212, #080808);
}

.about-outer img {
  min-width: 325px;
  width: 52vw;
  max-width: 475px;
  padding: 0 1rem;
  transform: scaleX(-1);
  margin-left: -3rem;
}

.about-inner {
  display:flex;
  flex-direction: column;
}

.about-inner-left {
  display:flex;
  justify-content: center;
}

.about-inner-left strong {
  display:block;
  padding-top: 2rem;
  padding-bottom: .25rem;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 550;
  text-align: center;
  line-height: 1.15;
  color: var(--color-quiver-white-light);
}

.about-inner-left p {
  margin-top: .25rem;
  max-width: 48ch;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  color: var(--color-quiver-gray);
  line-height: 1.6;
}

.about-inner-right {
  display:flex;
  justify-content: center;
}

.about-inner-right a {
  margin: 1.5rem .5rem 0 .5rem;
  padding: .75rem 2rem;
  border-radius: 2px;
  font-size: clamp(15px, 2.5vw, 17px);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--color-quiver-green);
  color: black;
}

.about-inner-right a:last-child {
  background-color: var(--color-graph-bg);
  color: var(--color-quiver-white);
}

.about-inner-right a:last-child:hover {
  background-color: var(--color-graph-bg);
}

.about-inner-right a:hover {
  background-color: #5be9c8;
}

@media screen and (max-width: 1200px) {
  .table-outer table tr.sticky-table-headers > th {
    > div {
      white-space: wrap;
    }
  }
}

@media screen and (max-width: 1023px) {
  main {
    padding: 0;
  }
  main {
    padding: 1.5rem 1.5rem 8rem;
  }
  /* remove --desktop vars */
  .strategy-outer,
  .strategy-inner,
  .strategy-header-inner{
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }
  .strategy-header-inner {
    position: sticky;
    top: 0;
    background-color: #121212;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
  .strategy-inner {
    margin-right: 0;
  }
  .strategy-description-outer {
    display: none;
  }
  .strategy-description-mobile {
    display: block;
  }
  .actions.strategy-actions.strategy-actions-mobile {
    display: flex;
  }
  .actions.strategy-actions-mobile > button,
  .actions.strategy-actions-mobile > a {
    border-radius: 4px;
  }
  #price_graph {
    margin-bottom: 0;
    border-bottom: none;
    margin-top: 0;
    height: 250px;
  }
  .line {
    stroke-width: 1px;
  }
  .metrics-header {
    margin-top: .5rem;
  }
  .holdings-header {
    margin-top: 1.5rem;
  }
  .table-outer {
    margin: 0 0 2rem;
  }
  #strategyPageOuter .table-outer tr th:first-child,
  #strategyPageOuter .table-outer tr td:first-child {
    position: sticky;
    left: 0;
    width: auto;

    a {
      padding-left: .75rem;

      span {
        max-width: 20vw;
      }
    }
  }
  .faqs-outer {
    padding-top: .75rem;
    margin-top: 0rem;
    border-top: 0;
  }
}

@media screen and (max-width: 800px) {
  main {
    padding: 0;
  }
  main {
    padding: 1.5rem 1rem 8rem;
  }
  .strategy-title > h1 {
    font-size: 22px;
  }
  .strategy-dataset span {
    font-size: 11px;
  }
  .back-link-outer > a,
  .metrics-header > span,
  .strategy-metrics-inner h3 {
    font-size: 12px;
  }
  .table-outer td {
    font-size: 13px;
  }
  .table-outer td a {
    font-size: 13px;
  }
  .metrics-header > h2,
  .holdings-header > h2,
  .strategy-description-header-mobile > h2,
  .faqs-outer h5 {
    font-size: 21px;
  }
  .metrics-descriptions-inner {
    padding: 1rem;
    margin: 0 .75rem;
  }
  .strategy-metrics-inner > div > div {
    padding: .75rem;
    width: 125px;
  }
  .strategy-metrics-inner span {
    font-size: 16px;
  }
  .display-tabs-strategy {
    flex-wrap: wrap;
    border-bottom: 0;
    margin: 1rem 0 .25rem;

    > div {
      padding: .125rem .125rem;
      margin-right: .75rem;
      margin-bottom: .75rem;
    }
  }
  .table-outer .rebalance-date,
  .table-outer .disclaimer,
  .table-outer th:first-child,
  .upcoming-table p {
    padding-left: 1.5rem;
  }
  .table-header {
    flex-direction: row;
    padding: .5rem 0 1.5rem 0;
  }
  .table-filter-inner {
    margin-top: 0;
    margin: .5rem 0;
  }
  .axis text {
    font-size: 11px; 
  }
  .focus text{
    font-size: 14px;
  }
  .tooltip strong {
    font-size: 11px;
  }
  .tooltip p, 
  .tooltip span {
    font-size: 13px;
  }
  .faq-dropdown {
    padding: 1rem;
  }
}

@media screen and (max-width: 500px) {
  main {
    padding: 0;
  }
  main {
    padding: 1.5rem .75rem 8rem;
  }
  .strategy-dataset {
    display: none;
  }
  .strategy-header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .actions.strategy-actions.strategy-actions-mobile {
    flex-direction: row;
  }
  .actions > #watch-btn-mobile {
    max-width: 50%;
  }
  .graph-toggles-gear {
    display: block;
  }
  .graph-toggles-gear.graph-toggles-active-mobile {

    > i {
      color: #4a555c;
    }
  }
  .graph-toggles-outer {
    display: none;
    flex-direction: column-reverse;
    gap: .75rem;

    &.graph-toggles-active-mobile {
      display: flex;
    }
  }
  .strategy-metrics-inner {
    flex-direction: column;
  }
  .strategy-metrics-inner > .inner-item {
    width: 100%;
  }
  .table-inner tbody td:first-child a {
    background-color: #1a1a1b;
  }
  #strategyPageOuter .table-outer tr td:first-child a,
  #strategyPageOuter .table-outer tr th:first-child a {
    img {
      width: 20px;
      height: 20px;
      margin-right: .75rem;
    }
  }
  .sub-gate {
    flex-direction: column;
    gap: 1.25rem;
  }
  .sub-gate img {
    width: 60px;
  }
  .sub-gate-inner {
    align-items: center;
    max-width: 315px;
  }
  .sub-gate strong,
  .sub-gate span,
  .sub-gate a {
    text-align: center;
  }
}