body,
div,
ul,
ol,
li,
h2,
h4,
input,
p,
th,
td {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
img {
  padding: 0px;
  margin: 0px;
}
ol,
ul {
  list-style: none;
}

body {
  background: rgb(240, 240, 240);
  -webkit-font-smoothing: antialiased;
  padding: 20px 0;
}
.title-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 65%;
  margin-bottom: 40px;
  max-width: 800px;
}
#container {
  max-width: 1000px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c1 {
  background: rgb(240, 240, 240);
  border-radius: 10px;
  padding: 10px;
}
h2 {
  font-size: 48px;
  color: darkblue;
  text-shadow: rgb(36, 36, 36) 0 -1px 0;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
}
h4 {
  font-size: 20px;
  color: #2e2e2e;
  padding-left: 10px;
}

.filter {
  margin-bottom: 10px;
  width: 100%;
  float: left;
  clear: both;
}
.filters input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.filters label {
  height: 48px;
  background-color: #ddd;
  padding: 5px;
  margin-right: 10px;
  border: 1px solid #444;
  border-radius: 10px;

  display: table-cell;
  vertical-align: middle;
}
.filters td {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.filters label:hover {
  background-color: rgb(221, 229, 255);
  cursor: pointer;
  cursor: hand;
}
.filters input[type="radio"]:checked + label {
    background-color: rgb(187, 211, 255);
    border-color: rgb(68, 104, 204);
}
.filter-image {
  margin-right: 5px;
}

input {
  font-size: 18px;
  width: 33%;
  padding: 2px 10px;
  border-radius: 10px;
  border: solid 1px #555;
  float: left;
  margin-right: 10px;
  margin-bottom: 15px;
}

.sort-by {
  margin-bottom: 10px;
  width: 100%;
  float: left;
  clear: both;
}
.sort {
  font-family: sans-serif;
  font-size: 14px;
  height:30px;
  color: rgb(46, 46, 46);
  margin-right: 10px;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 10px;
  border: solid 1px #666;
  display: block;
  float: left;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  cursor: hand;
}
.sort:hover {
  background-color: rgb(122, 122, 122);
  color: #fafafa;
}
.sort:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}
.sort.asc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgb(46, 46, 46);
  content:"";
  position: relative;
  top:13px;
  right:-5px;
}
.sort.desc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgb(46, 46, 46);
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}

.table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.title-link:link {
  color: #2e2e2e;
  text-decoration: none;
}
.title-link:visited {
  color: #2e2e2e;
  background-color: transparent;
  text-decoration: none;
}
.title-link:hover {
  color: #2e2e2e;
  background-color: transparent;
  text-decoration: underline;
}
.title-link:active {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}
.list {
  clear: both;
}
.list li {
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#scenario-list li {
  background-color: rgba(99, 99, 99, 0.1);
  border: solid 1px darkblue;
  border-radius: 10px;
}
/* #scenario-list li:nth-child(2n+1) {
  background-color: rgba(99, 99, 99, 0.1);
  border: solid 1px darkblue;
  border-radius: 10px;
}
#scenario-list li:nth-child(2n) {
  background-color: rgba(36, 36, 36, 0.2);
  border: solid 1px darkblue;
  border-radius: 10px;
} */
.recommended {
  visibility: hidden;
  font-size: 0px;
  padding-left: 10px;
}
.compatible {
  visibility: hidden;
  font-size: 0px;
  padding-left: 10px;
}

.header-image {
  width: 50px;
  height: 46px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0px;
}
.header-date {
  text-align: right;
  padding-right: 10px;
}
.scenarios-column {
  font-size: 18px;
  padding-top: 10px;
  padding-left: 10px;
  width: 25%;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}
.padding-column {
  width: 250px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}
.screenshot {
  width: 240px;
  border-radius: 10px;
}