div.content-body {
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 50% 50%;
}


/******************
Trick Lists
******************/
div.content-body div.tricks {
  border: 2px solid var(--primary-fg);
}
div.content-body div.tricks h3 {
  font-family: Impact, sans-serif;
  font-size: xx-large;
  text-align: center;
  color: var(--secondary-fg);
  background: var(--primary-fg);
  width: 100%;
}

div.content-body div.tricks h3 i.filter {
  float: left;
  margin-top: 1%;
  margin-left: 1%;
  font-size: smaller;
}
div.content-body div.tricks div.fb-tricks-filter {
  display: none;
  z-index: 2;
  position: relative;
  border: 2px var(--primary-fg) solid;
  border-radius: 15px;
  height: fit-content;
  width: fit-content;
  padding: 1%;
  font-weight: bold;
  top: -.5%;
  background: var(--highlight);
  overflow: auto;
}
div.content-body div.tricks div.fb-tricks-filter span, 
div.content-body div.tricks div.bb-tricks-filter span {
  display: inline-block;
}
div.content-body div.tricks div.bb-tricks-filter {
  display: none;
  z-index: 2;
  position: relative;
  border: 2px var(--primary-fg) solid;
  border-radius: 15px;
  height: fit-content;
  width: fit-content;
  padding: 1%;
  font-weight: bold;
  top: -.5%;
  background: var(--highlight);
}
div.content-body div.tricks input {
  margin-bottom: unset;
}

div.content-body div.tricks div.table-responsive table {
  text-align: center;
}
div.content-body div.tricks div.table-responsive table td, 
div.content-body div.tricks div.table-responsive table th {
  padding: 1.2rem 0rem;
  border: none;
}
div.content-body div.tricks div.table-responsive table thead tr th,
div.content-body div.tricks div.table-responsive table thead tr th a {
  font-family: Impact, sans-serif;
  font-size: large;
  font-weight: normal;
  color: var(--primary-fg);
  background: var(--secondary-fg);
  width: 100%;
  padding-left: 1%;
  text-align: center;
}
div.content-body div.tricks div.table-responsive table tr {
  display: grid;
  grid-template-columns: 50% 1fr 1fr;
}
div.content-body div.tricks div.table-responsive table tr.pending {
  display: grid;
  grid-template-columns: 1fr;
}

div.content-body div.tricks div.table-responsive table thead tr th:first-child,
div.content-body div.tricks div.table-responsive table tbody tr td:first-child {
  text-align:left;
}
div.content-body div.tricks div.table-responsive table tbody tr:nth-child(even) {
  background: var(--highlight);
}
div.content-body div.tricks div.table-responsive table tbody tr td:nth-child(3) {
  margin-left: auto;
  margin-right: auto;
}

div.content-body div.tricks div.table-responsive table tr.pending td, tr.pending td a {
  color: var(--highlight-fg);
  background: var(--secondary-fg);
  width: 100%;
}
div.content-body div.tricks div.table-responsive table tr.pending th.pending {
  color: var(--highlight);
  background: var(--primary-fg);
  width: 100%;
  text-align: unset !important;
  font-size: x-large;
}


/******************
For Small Screens
******************/
@media only screen and (max-width: 1000px) {
  div.content-body {
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 100%;
  }
}


