@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype") tech("variations"), url("../fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype-variations"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 300 800;
  font-stretch: 75% 100%;
}
@font-face {
  font-family: "TangoSans";
  src: url("../fonts/TangoSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
#dataGrid .gridBlock .dropdown .dropdownButton, #dataGrid .gridBlock .dropdownGroup select {
  font-family: "OpenSans";
  font-weight: 400;
}

#dataGrid {
  margin: 1% 15%;
  padding: 15px;
  background-color: #555;
  border-radius: 10px;
}

#dataGrid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  place-items: center;
  place-content: space-evenly;
  align-items: start;
  padding: 0px;
  background-color: transparent;
}
#dataGrid .gridBlock {
  display: flex;
  flex-direction: column;
  width: 300px;
}
#dataGrid .gridBlock .wrapper {
  display: flex;
  justify-content: center;
  min-height: 75px;
}
#dataGrid .gridBlock .wrapper h1 {
  padding: 0px;
  margin: 5px;
  align-self: flex-end;
  text-align: center;
}
#dataGrid .gridBlock .dropdown:hover .dropdownButton {
  background-color: #aaa;
}
#dataGrid .gridBlock .dropdown:hover .dropdownContent {
  display: block;
}
#dataGrid .gridBlock .dropdown .dropdownButton {
  border: none;
  outline: none;
  background-color: black;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: white;
  text-align: center;
  padding: 0px 12px;
}
#dataGrid .gridBlock .dropdown .dropdownContent {
  display: none;
  position: absolute;
  min-width: 164.83px;
  background-color: #777;
  box-shadow: 0px 2px 6px rgba(255, 255, 255, 0.5);
  z-index: 1;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
#dataGrid .gridBlock .dropdown .dropdownContent a {
  padding: 10px;
}
#dataGrid .gridBlock .dropdownGroup {
  display: flex;
  justify-content: space-around;
  margin-bottom: 5px;
}
#dataGrid .gridBlock .dropdownGroup select {
  font-size: 1.7rem;
  color: white;
  padding-left: 5px;
  padding-right: 20px;
  border: none;
  background: url(/images/ui/DropdownArrowSmall.png) no-repeat right transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#dataGrid .gridBlock .dropdownGroup select:focus {
  outline: none;
}
#dataGrid .gridBlock .dropdownGroup select option {
  color: black;
  border: none;
}
#dataGrid .gridBlock .dataSubGrid {
  display: flex;
  flex-direction: column;
  background-color: #555;
  padding: 5px;
  border-radius: 10px;
}
#dataGrid .gridBlock .dataSubGrid p, #dataGrid .gridBlock .dataSubGrid h5 {
  align-self: flex-end;
  text-wrap: wrap;
}
#dataGrid .gridBlock .dataSubGrid a {
  text-decoration: none;
}
#dataGrid .gridBlock .dataSubGrid a .row {
  background-color: transparent;
  transition: background-color 0.1s ease-in-out;
}
#dataGrid .gridBlock .dataSubGrid a .row:hover {
  background-color: #888;
}
#dataGrid .gridBlock .dataSubGrid .row {
  display: grid;
  grid-template-columns: 40px 1fr 65px;
  border-bottom: 2px solid #777;
}
#dataGrid .gridBlock .dataSubGrid .pkmIconWrapper {
  display: flex;
}
#dataGrid .gridBlock .dataSubGrid .firstRow {
  background-color: rgba(255, 215, 0, 0.4980392157) !important;
}
#dataGrid .gridBlock .dataSubGrid .firstRow:hover {
  background-color: rgba(255, 217, 0, 0.7490196078) !important;
}
#dataGrid .gridBlock .dataSubGrid .secondRow {
  background-color: rgba(192, 192, 192, 0.4980392157) !important;
}
#dataGrid .gridBlock .dataSubGrid .secondRow:hover {
  background-color: rgba(192, 192, 192, 0.7490196078) !important;
}
#dataGrid .gridBlock .dataSubGrid .thirdRow {
  background-color: rgba(176, 141, 87, 0.4980392157) !important;
}
#dataGrid .gridBlock .dataSubGrid .thirdRow:hover {
  background-color: rgba(176, 141, 87, 0.7490196078) !important;
}
#dataGrid .gridBlock .dataSubGrid .lastRow {
  border-bottom: 0px;
}
#dataGrid .gridBlock .timestamp {
  font-size: 1.2rem;
  color: #666;
}