@import
url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css);

:root {
  --search-forms-autosuggest-min-width: 180px;
}

#price_graph .line {
  stroke: var(--color-quiver-green);
}

main {
  padding: calc(var(--header-height) + 30px) 30px 0 30px;
  width: 100%;
  max-width: 1280px;
}

div.page-title-outer .page-title {
  padding-bottom: .5rem;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  margin-right: .5rem;
}

.export-outer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: .5rem;
  justify-content: space-between;
}

.export-outer .link-divider {
  display: none;
  color: #a9a9ae;
  font-size: 12px;
  font-weight: 300;
  padding: 0 .125rem;
}

a.export-link,
a.petition-link {
  white-space: nowrap;
  font-size: 12px;
  font-size: clamp(11px, 1.5vw, 13px);
  padding: 0.35rem 0.75rem;
  background-color: var(--color-border-gray);
  color: white;
  border-radius: 2px;
  transition: .2s;
  margin-left: .25rem;
}

a.export-link:hover,
a.petition-link:hover {
  text-decoration: none;
  color: black;
  background-color: var(--color-quiver-green);
}

.table-header-title > h3 {
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 400;
  background-color: transparent;
}

.table-header-title > p {
  font-size: clamp(14px, 2vw, 20px);
  color:rgb(190, 190, 190);
}

div.page-title-outer .page-title-description {
  font-size: 17px;
}

.table-outer {
  max-width: 100%;
  border-radius: 4px;
  border:none;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
  background-color: var(--color-graph-bg);
}

.table-outer .header-desc {
  padding: .25rem 0;
  font-size: 14px;
  color: #849aae;
}

.table-outer .header-desc.alt-desc {
  padding-left: 1.5rem;
  padding-bottom: 1rem;
  text-align: right;
  font-weight: 300;
  font-size: clamp(11px, 1.5vw, 13px);
  color: rgb(185, 185, 185);
}

i.trend {
  color: var(--color-dataset-sec);
  padding-right: .25rem;
  font-size: 16px;
}

.table-outer .table-header.table-header-politician {
  padding-bottom: .75rem;
}

.table-header-title i {
  margin-right: .5rem;
  font-size: 20px;
  color: #657c92;
}

.table-outer td a {
  font-size: 14px;
  color: #849aae;
}

.search-forms {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-forms > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: calc(50% - .5rem);
  padding: 1.5rem;
  background-color: var(--color-graph-bg);
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
  margin-bottom: 1rem;
}

.search-forms > div > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
}

.search-forms > div > div > div {
  flex-grow: 2;
}

div.autosuggest-congress li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2F3F4D;
  padding: .5rem;
  cursor: pointer;
  transition: .1s;
}

div.autosuggest-congress li:hover {
  background-color: var(--color-border-gray) !important;
}

.search-forms h3 {
  display:flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color:rgb(200, 200, 200);
}

.search-forms form {
  position: relative;
  display: flex;
}

.search-forms p {
  position: relative;
  padding: .75rem 1rem .75rem 0;
  font-size: 13px;
  color: rgb(185, 185, 185);
  white-space: nowrap;
}

.search-forms input {
  flex-grow: 2;
  display: block;
  padding: .25rem .25rem;
  background: transparent;
  color: #BEC0C4;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  overflow: hidden; 
}

.search-forms input {
  margin-right:1rem;
  border-radius: 0;
  border-bottom: 2px solid var(--color-border-gray);
  padding: .5rem;
  min-width: var(--search-forms-autosuggest-min-width);
  background-color: transparent;
  font-size: 14px;
  color: #BEC0C4;
  outline: none;
  transition: .2s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  overflow: hidden;
  text-align: center;
}

#ticker-search-form-congress input {
  min-width: 120px;
  width: 120px;
  text-transform: uppercase;
}


.search-forms input:focus {
  border-bottom: 2px solid var(--color-quiver-green);
  outline: 0;
}

.search-forms input:focus-within {
  border-bottom-color: var(--color-quiver-green);
  transition: .2s;
}

.search-forms input::placeholder {
  text-align: center;
  font-size: 14px;
  text-transform: none;
}

/* autocomplete input styles/hack */
.search-forms input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--color-graph-bg) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--color-graph-bg) inset;
  -webkit-text-fill-color: #BEC0C4;
}

.search-forms .search-submit {
  display: inline;
}

.search-forms .search-submit {
  border-radius: 4px;
  padding: .5rem 1rem;
  background-color: var(--color-border-gray);
  color: var(--color-quiver-white);
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
}

.search-forms .search-submit:hover {
  background-color: var(--color-quiver-green);
  color: var(--color-quiver-black);
}

#auto-suggest-results-container-ticker, #auto-suggest-results-container {
  z-index: 1;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  border-radius: 2px;
  background-color: rgb(31, 36, 45);
  box-shadow: 2px 2px 5px rgb(0 0 0 / 33%), -2px -2px 5px rgb(0 0 0 / 33%);
}

#auto-suggest-results-container .span-active-autosuggest-result {
  background-color: var(--color-border-gray) !important;
}

.table-outer .table-inner {
  max-height: 475px;
}

.table-outer thead th {
  border: none;
  color: rgb(200, 200, 200);
  background-color: #293240 !important;
}

.table-outer thead th.sortable {
  border-right: 1px solid var(--color-border-gray);
}

thead th > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.sort-up, .sort-down {
  font-size: 13px;
  line-height: .25;
  color: rgb(165,165,165);
  transition: .2s;
}

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

.table-inner tbody tr:nth-child(even),
.table-inner tbody tr:nth-child(even) th {
  background-color: var(--color-header-bg);
}

#netWorthTable tbody tr:nth-child(odd) th,
#netWorthTable tbody tr:nth-child(odd) td {
  background-color: var(--color-graph-bg);
}

#netWorthTable tbody tr:nth-child(even) th,
#netWorthTable tbody tr:nth-child(even) td {
  background-color: var(--color-header-bg);
}

.table-congress tbody tr:hover {
  box-shadow:inset 0 0 0 100px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: .2s;
}

.table-congress tr td,
.table-congress tr td span,
.table-congress tr td p {
  max-width: 20ch;
  overflow: hidden;
  text-overflow: ellipsis;
  color:rgb(185, 185, 185);
  white-space: nowrap;
}

.table-congress tr td p {
  padding: 1rem;
}

.table-congress tr td {
  padding: 0;
  width: calc(100% / 6);
}

.table-congress.table-politician tr td {
  width: calc(100% / 7);
}

.table-congress tr td > a {
  padding: 1.25rem;
  color:rgb(200, 200, 200);
}

.table-congress tr td > a > span {
  color: var(--color-quiver-white);
  font-size: 12px;
  font-weight: 300;
}


.table-congress tr td > a > span:nth-child(1) {
  font-size: 15px;
  font-weight: 400;
}

.table-congress tr td > a > span:nth-child(2) {
  font-size: 13px;
  color: rgb(200, 200, 200);
}

.table-congress tr td > a > span:nth-child(3) {
  font-size: 12px;
  color:rgb(185, 185, 185);

}

.table-congress tr td p {
  font-weight: 300;
}

.table-congress .positive,
.positive, .sort-active,
h1 a {
  color: var(--color-quiver-green);
}

.table-congress .negative,
.negative {
  color: var(--color-error-red);
}

.table-congress .sale,
.sale {
  color: var(--color-dataset-gov);
}

.table-traders td > a {
  font-size: 14px;
  font-size: clamp(14px, 2vw, 15px);
  padding: 1rem;
}

.table-traders td strong {
  font-weight: 400;
  color: rgb(225,225,225);
}

.table-traders td span {
  font-size: 12px;
  font-size: clamp(11px, 2vw, 13px);
}

.strategy-title > h2 {
  font-size: 24px;
  font-weight: 400;
}

.page-title-description span {
  display: none;
}

.toggle-search-collapse {
  margin-left: auto;
  display: none;
  color:rgb(200, 200, 200);
}

.search-forms h3:hover .toggle-search-collapse {
  color: var(--color-quiver-green);
} 

i.fa-search-dollar,
i.fa-user {
  margin-right: .5rem;
  color: #849aae;
}

i.congress-icon.fa-user {
  margin-right: 0;
}

.congress-icon-outer.pfp {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #999cd0;
  margin-right: .75rem;
  min-width: 40px;
  width: 40px;
  height: 40px;
}

tr:hover .congress-icon-outer.pfp {
  border-color: var(--color-quiver-green);
}

.congress-icon-outer.pfp img {
  min-height: 100%;
  object-fit: cover;
}

i.profile-icon {
  align-self: flex-end;
  margin-right: 0;
  font-size: 20px;
}

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

.btn-inactive {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

#price_graph {
  border-bottom: none;
}

.strategy-metrics-inner > div > div {
  background-color: #212732;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .33);
}

.metrics-descriptions-inner {
  background-color: var(--color-header-bg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .33);
}

.table-filter-inner > input {
  background-color: var(--color-graph-bg);
}

/* secondary pages */
.back-link, .ticker-link {
  display: inline-block;
  padding: .5rem .75rem;
  border-radius: 4px;
}

.back-link {
  margin-bottom: .5rem;
  color: var(--color-quiver-green);
  background-color: var(--color-graph-bg);
  font-size: 14px;
  box-shadow:0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
}

.back-link:hover {
  background-color: var(--color-border-gray);
}

.back-link i,
h3 i {
  margin-right: .5rem;
  color: #849aae;
}

.back-link:hover i {
  color: var(--color-quiver-green);
}

.page-title-outer-alt {
  margin: .5rem .5rem 0 .5rem;
}

.page-title-outer-alt > div {
  display: flex;
  align-items: flex-end;
}

.page-title-outer-alt h1 {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 400;
}

.page-title-outer-alt h1 > a:hover {
  text-decoration: underline;
}

.page-title-outer-alt span {
  font-weight: 300;
  font-size: 16px;
  font-size: clamp(14px, 2vw, 18px);
  color:rgb(185, 185, 185);
}

.icon-title {
  display: flex;
  align-items: center;
}

.icon-title i {
  margin-right: .75rem;
  color: #849aae;
  font-size: clamp(15px, 2vw, 21px);
}

.no-activity {
  padding-top: .5rem;
  padding-left: .5rem;
  margin-bottom: 300px;
}

.trade-details-outer {
  display: flex;
  margin-top: 1rem;
  height: 100%;
  border: 1px solid var(--color-border-gray);
  border: 1px solid rgba(50,50,50,.1);
  border-radius: 4px;
  box-shadow:0 2px 4px rgb(0 0 0 / 33%), 0 8px 16px rgb(0 0 0 / 33%);
}

.trade-details-outer.no-graph {
  max-width: 450px;
  margin: 2rem auto;
}

.trade-details {
  border-right: 1px solid rgba(0,0,0,.25);
  flex-grow: 1;
  padding:2rem 1.5rem 1rem 1.5rem;
  background-color: var(--color-graph-bg);
  min-width: 30%;
}

.trade-details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow:1;
  padding:.5rem;
  height: 60px;
  border-bottom: 1px solid var(--color-graph-bg);
}

.trade-details > div:hover {
  background-color: var(--color-header-bg);
}

.trade-details .flex-column span,
.trade-details a {
  font-size: 14px;
}

.trade-details .flex-column span:nth-child(2),
.trade-details .detail-desc {
  color:rgb(185, 185, 185);
  font-size: 12px;
}

.trade-details .flex-column span:nth-child(3) {
  color:rgb(165, 165, 165);
  font-size: 11px;
}

.trade-details h3, .trade-graph h3 {
  padding-bottom: 1rem;
  padding-left: .5rem;
  font-weight: 400;
  font-size: 18px;
}

.trade-details > div p {
  font-size: 13px;
  color:#849aae;
}
.trade-details > div span {
  text-align: right;
  font-size: 13px;
}

.trade-details .transaction {
  font-size: 15px;
}

.trade-details .comp-name {
  max-width: 30ch;
}

.trade-details a {
  color: var(--color-quiver-white);
}
.trade-details a:hover {
  color: var(--color-quiver-green);
}

.trade-graph {
  flex-grow: 1;
  min-width: 66%;
  padding:2rem 2rem .75rem 1rem;
  justify-content: space-between;
}

.trade-graph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
}

.trade-graph ul {
  display: flex;
  padding-bottom: 1rem;
}

.trade-graph li {
  margin-left: .75rem;
}

.trade-graph ul i {
  margin: 0 .25rem;
}

.trade-graph ul span {
  font-size: 14px;
  font-weight: 300;
  color: rgb(225,225,225);
}

.trade-graph-inner {
  padding-left: .5rem;
}

.trade-graph div.svg-container,
.trade-graph svg {
  height: 415px !important;
}

.trade-graph svg text {
  font-family: "Roboto", sans-serif !important;
  fill: rgb(165, 165, 165) !important;
  font-size: 15px !important;
}

.trade-graph .hovertext text {
  fill: black !important;
}

.trade-graph .g-ytitle text {
  font-size: 17px !important;
  font-weight: 400 !important;
  fill: #849aae !important;
}

.trade-perf-outer {
  display: flex;
  align-items: center;
}

.trade-perf-outer > div {
  margin-left: .75rem;
  width: 50%;
  border-radius: 2px;
  padding: .75rem;
  background-color: var(--color-header-bg);
}

.trade-perf-outer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-quiver-white);
}

.trade-perf-outer span {
  font-size: 24px;
}

.hyphen {
  color: rgb(185, 185, 185);
  font-weight: 300;
  padding: 0 .25rem;
}

.search-forms #auto-suggest-links-container {
  min-width: 200px;
  max-width:none;
  left: 0;
}

#netWorthTable th:nth-child(1),
#netWorthTable td:nth-child(1) {
  width: 60px;
}

#netWorthTable td:nth-child(1) a {
  justify-content: center;
  font-family: "Figtree", sans-serif;
  color: rgb(160, 160, 160);
  padding: .25rem;
}

#netWorthTable .header-filter {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-grow:1;
  margin-left: calc(-50px + .5rem);
}

.header-filter i {
  color: rgb(200, 200, 200);
  font-size: 12px;
  font-size: clamp(12px, 2vw, 13px);
  margin-right: .25rem;
  cursor: pointer;
}

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

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

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

input.ticker-table-input {
  margin-left: .25rem;
  border: none;
  min-width: 80px;
  width:14vw;
  max-width: 150px; 
  background-color: transparent;
  font-size: 12px;
  font-size: clamp(13px, 2vw, 14px);  
  color: rgb(200,200,200);
}

.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 name';
  color: rgb(160, 160, 160);
  font-size: 12px;
  font-size: clamp(13px, 2vw, 14px);
  pointer-events: none;
}

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

#netWorthTable img,
#netWorthTable .user-icon-outer {
  margin-right: .75rem;
  border: 2px solid #999cd0;
  border-radius: 50%;
  width: 48px;
  min-width: 48px;
  height: 48px;
  object-fit: cover;
  overflow: hidden;
}

#netWorthTable .user-icon-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}

#netWorthTable .user-icon-outer i {
  font-size: 28px;
  margin-top: 20px;
  color: #999cd0;
  margin: 20px auto 0;
}

#netWorthTable tbody tr:hover th,
#netWorthTable tbody tr:hover td {
  background-color: #1b1f27;
  box-shadow: none;
  transition: .1s;
}

#netWorthTable tbody tr:hover img,
#netWorthTable tbody tr:hover .user-icon-outer {
  border-color: var(--color-quiver-green);
}

#netWorthTable tbody tr:hover .span-rank {
  color: var(--color-quiver-white);
}

#netWorthTable thead th:first-child,
#netWorthTable thead th:nth-child(2) {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
}

#netWorthTable tbody th:first-child,
#netWorthTable tbody th:nth-child(2) {
  position: sticky;
  left: 0;
  z-index: 2;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

#netWorthTable thead th:nth-child(2) {
  left: 60px;
  border-left: 0 !important;
  padding-left: 0;
  min-width: auto;
  width: auto;
  max-width: none;
}

#netWorthTable tbody th:nth-child(2) {
  z-index: 1;
  left: 60px;
  min-width: 150px;
}

#netWorthTable tbody th a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50px;
}

#netWorthTable td {
  padding: 0;
  height: 50px;
  border-bottom: 0; 
}

#netWorthTable td a {
  color: rgb(200,200,200);
  font-size: 14px;
  font-size: clamp(14px, 2vw, 15px);
}

#netWorthTable tbody th.politician-cell {
  z-index: 1;
  position: sticky;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

#netWorthTable th.politician-cell a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7rem .5rem 0.7rem 0;
  width: 100%;
  height: 100%;
}

#netWorthTable .politician-cell strong {
  display: block;
  padding-bottom: .125rem;
  font-size: 12px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  color: white;
  min-width: 120px;
}

#netWorthTable .politician-cell span {
  display: block;
  max-width: 24ch;
  color: #c7c7c7;
  font-size: 12px;
  font-size: clamp(12px, 1.5vw, 12px);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#netWorthTable th.politician-cell span.span-state {
  font-size: 12px;
  color: #a3a3a3;
  padding-top: .125rem;
}

#netWorthTable .span-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(180, 180, 180);
  font-size: 12px;
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 400;
}

.data-disclaimer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem 0;
}

.data-disclaimer p {  
  color: rgb(150, 150, 150);
  font-size: 12px;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.75;
  max-width: 100ch;
  font-family: "Roboto", sans-serif;
}

.data-disclaimer span {
  display: inline-block;
  padding-right: .75rem;
  color: var(--color-quiver-green);
  font-size: 14px;
  font-size: clamp(14px, 2vw, 16px);
}

.footer-outer {
  margin-top: 8rem;
}

@media screen and (max-width: 800px) {
  main {
    padding: calc(var(--header-height) + 30px) 1rem 0 1rem;
  }
  div.page-title-outer {
    padding: 0 0 1rem .25rem;
  }
  .page-title-description {
    position: relative;
  }
  .page-title-description span {
    display: inline;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
    color: #999cd0;
    font-size: 12px;
    cursor: pointer;
  }
  .page-title-description.collapse-mobile span {
    top: 0;
    left: calc(100% - 40px);
    bottom: 0;
  }
  .collapse-mobile p {
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 40px);
    white-space: nowrap;
  }
  .search-forms {
    flex-direction: column;
  }
  .search-forms > div {
    width: 100%;
  }
  .search-forms p {
    padding: 1.25rem 1rem 1.25rem 0;
  }
  .search-forms h3:hover {
    cursor: pointer;
  }
  .toggle-search-collapse {
    display: inline;
  }
  .search-forms .collapse-mobile-search {
    display: none
  }
  .icon-title i {
    margin-right: .5rem;
  }
  .table-outer td:first-child {
    padding-left: 0;
  }
  .table-outer .header-desc {
    font-size: 12px;
    padding: .5rem 0;
  }
  .table-outer .header-desc.alt-desc {
    text-align: left;
    padding-right: .5rem;
  }
  .table-outer .table-header.table-header-politician {
    padding-bottom: 0;
  }
  i.trend {
    font-size: 12px;
  }
  .table-congress tr td > a {
    padding: 1rem;
  }
  .page-title-description p,
  .search-forms h3,
  .table-congress tr td > a > span:nth-child(1) {
    font-size: 13px;
  }
  .table-congress tr td > a,
  .table-congress tr td > a > span:nth-child(2) {
    font-size: 12px;
  }
  .table-congress tr td > a > span:nth-child(3) {
    font-size: 11px;
  }
  .strategy-title > h2 {
    font-size: 20px;
  }  
  .strategy-description p {
    font-size: 13px;
  }
  .trade-details-outer {
    flex-wrap: wrap-reverse;
  }
  .trade-graph-header {
    padding-left: 0;
  }
}

@media screen and (max-width: 500px) {
  .export-outer .link-divider {
    display: inline;
  }

  a.export-link,
  a.petition-link {
    background-color: transparent;
    padding: 0;
    color: var(--color-quiver-green);
    margin-left: 0;
  }
  .trade-details h3, .trade-graph h3 {
    font-size: 15px;
    width:100%;
  }
  .trade-graph-header {
    display:block;
  }
  .trade-graph-inner {
    margin-left: 0;
    padding-left: 0;
  }
  .trade-graph svg text {
    font-size: 13px !important;
  }
  .trade-graph ul {
    display: flex;
    justify-content: flex-end;
  }
  .trade-graph ul span {
    font-size: 13px;
    color: rgb(200,200,200);
  }
  .trade-perf-outer {
    display: block;
    margin-bottom: .5rem;
  }
  .trade-perf-outer > div {
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    padding: .25rem;
    width: 100%;
    background-color: transparent;
  }
  .trade-perf-outer p {
    font-weight: 400;
    font-size: 13px;
  }
  .trade-perf-outer span {
    font-size: 16px;
  }
  .table-traders td:first-child {
    min-width: 190px;
  }
  #netWorthTable th.politician-cell a {
    padding: 0.5rem .75rem 0.5rem 0;
  }
  input.ticker-table-input {
    max-width: 80px !important;
  }
  #netWorthTable img,
  #netWorthTable .user-icon-outer {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  #netWorthTable td,
  #netWorthTable tbody th {
    height: 65px;
  }
  #netWorthTable td:nth-child(2) a {
    padding-left: 1.5rem;
  }
  #netWorthTable thead th:nth-child(2),
  #netWorthTable tbody th:nth-child(2) {
    left: 50px;
  }
  #netWorthTable thead th:first-child,
  #netWorthTable thead th:nth-child(2),
  .paginated-table th:nth-child(1),
  .paginated-table td:nth-child(1) {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
  }
  .ticker-table-input-outer {
    margin-left: 0;
  }
  #netWorthTable th.politician-cell span.span-state {
    display: none;
  }
  #netWorthTable .politician-cell strong {
    min-width: 85px;
  }
}

@media screen and (max-width: 400px) {
  main {
    padding: calc(var(--header-height) + 1rem) .5rem 0 .5rem;
  }
  .header-outer .header-inner {
    padding: 0 1rem;
  }
  nav > .header-quiver-logo-outer > .header-quiver-logo > img {
    min-width: 175px;
    width: 175px;
  }
  #hamburger-icon {
    font-size: 22px;
  }
  div.page-title-outer {
    padding: 0 0 1rem .5rem;
  }
  .table-outer .header-desc {
    font-size: 11px;
  }
  .table-outer .header-desc.alt-desc {
    padding-left: 1rem;
  }
  .table-header {
    padding: 0.5rem 1rem 1rem 1rem;
  }
  .table-outer .table-congress th:first-child {
    padding-left: 1rem;
  }
  .table-congress tr td, .table-congress tr td span, .table-congress tr td p {
    max-width: 16ch;
  }
  .search-forms > div {
    padding: 1rem;
    margin-bottom: .5rem;
  }
  .search-forms form {
    flex-direction: column;
  }
  .search-forms p {
    white-space: initial;
    font-size: 12px;
    width:100%;
    text-align:center;
  }
  #ticker-search-form-congress input,
  .search-forms input {
    min-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }
  #auto-suggest-results-container-ticker, #auto-suggest-results-container {
    top: calc(100% - 2rem);
    left: 0;
    right: 0;
    max-width: 100%;
  }
  .trade-graph {
    padding: 1rem 1rem 0 1rem;
  }
  .trade-details {
    padding: 1.5rem .5rem .5rem .5rem;
  }
}