@media (hover: none) {
  .fixed .background {
    display: none;
  }
}
#update-flag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 3px;
  background-color: #cccccc;
}
#update-flag.contacting {
  color: #ffffff;
  background-color: #0098ff;
}
#update-flag.done {
  color: #ffffff;
  background-color: #6dd800;
}

h1 {
  text-shadow: 2px 2px 5px #000000;
}

p.highlight1 {
  background-color: rgba(59, 58, 55, 0.85);
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  display: inline-flex;
}

p.highlight2 {
  text-shadow: 1px 1px 2px black;
}

.season {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
}
.season__heading {
  font-size: 3rem;
  display: flex;
  flex-wrap: wrap;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px #000000;
}
.season__results {
  padding: 20px;
  border: 1px solid #cccccc;
  width: 23%;
  margin: 0 1% 2% 1%;
  background-color: rgba(59, 58, 55, 0.85);
}
@media only screen and (max-width: 1000px) {
  .season__results {
    width: 48%;
  }
}
@media only screen and (max-width: 600px) {
  .season__results {
    width: 100%;
  }
}

.results__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: medals;
}
.results__list li {
  position: relative;
  padding: 0 15px 0 30px;
  margin-bottom: 10px;
  counter-increment: medals;
}
.results__list li a {
  position: relative;
  display: inline-block;
  text-indent: -1000em;
}
.results__list li a::before {
  display: block;
  position: absolute;
  text-indent: 0;
  font-family: "Font Awesome 5 Pro", "FontAwesome";
  width: 15px;
  height: 15px;
  font-size: 15px;
  content: "\f360";
}
.results__list li::before {
  content: counter(medals);
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 1.4;
  font-weight: bold;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #ffffff;
  left: 0;
  top: 3px;
  color: #000000 !important;
  text-align: center;
}
.results__list li::before {
  background-color: gold;
}
.results__list li ~ li::before {
  background-color: silver;
}
.results__list li ~ li ~ li::before {
  background-color: burlywood;
}
.results__list li ~ li ~ li ~ li::before {
  background-color: white;
}
.results__list li ~ li ~ li ~ li ~ li ~ li ~ li ~ li ~ li ~ li ~ li {
  display: none;
}
.results__title {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
  min-height: 5rem;
}

.filter__female .season--2018,
.filter__female .season__heading--2018,
.filter__female .season--2019,
.filter__female .season__heading--2019,
.filter__female .season--2020,
.filter__female .season__heading--2020 {
  display: none;
}

.filter__female .results__list li.M {
  display: none;
}
.filter__female .results__list li.F {
  display: list-item;
}
.filter__female .results__list li.F::before {
  background-color: gold;
}
.filter__female .results__list li.F ~ li.F::before {
  background-color: silver;
}
.filter__female .results__list li.F ~ li.F ~ li.F::before {
  background-color: burlywood;
}
.filter__female .results__list li.F ~ li.F ~ li.F ~ li.F::before {
  background-color: white;
}

form.results__filter {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #cccccc;
  background-color: rgba(59, 58, 55, 0.85);
  padding: 10px 6px;
}
form.results__filter input {
  display: none;
}
form.results__filter input:checked + label {
  border: 1px solid #cccccc;
  background-color: rgba(59, 58, 55, 0.85);
}
form.results__filter label:hover {
  border: 1px solid rgba(204, 204, 204, 0.3);
}
form.results__filter label:first-of-type {
  margin-right: 5px;
}
form.results__filter label {
  border: 1px solid transparent;
  cursor: pointer;
  padding: 5px;
  transition: border 0.2s ease, background-color 0.2s ease;
}

