.container {
  max-width: 1024px;
}

.top-row {
  height: 100px;
  text-align: left;
  box-shadow: 0 0 10px rgb(0,0,0,0.5);
  width: 100%;
  background: purple;
}
.top-row .container {
  padding-top: 15px;
}
.top-row img {
  width: 60px;
  float: left;
  padding: 0 20px 0 0;
}
.top-row h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.top-row p {
  font-size: 0.9em;
  margin: 0;
  padding: 0;
}

.row-one {
  margin-top: 100px;
}

nav {
  float: right;
  display: none;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 100px;
  transition: all 500ms ease-in-out;
}
@media (min-width: 800px) {
  nav {
    display: inline-block;
  }
}
nav a {
  padding: 0px 14px;
}

/* tabs */

.tabs {
  list-style: none;
  display: none;
  width: 100%;
  padding: 30px 0 0 0;
  margin: 0;
}
@media (min-width: 800px) {
  .tabs {
    display: table;
  }
}
.tabs li {
  display: table-cell;
  border: 0px;
  border-bottom: 1px solid #ababab;
  padding: 0;
}
.tabs li.selected {
  border: 1px solid #ababab;
  border-bottom: 1px solid transparent;
}
.tabs li a {
  display: block;
  text-align: center;
  font-family: cursive;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.8em;
}
.tabs li a:after {
  content: '';
  display: block;
  margin: auto;
  height: 1px;
  width: 0px;
  background-color: transparent;
  transition: width .5s ease, background-color .5s ease;
}
.tabs li:hover a:after {
  width: 100%;
  background-color: #d65050;
}
.tabs li.selected a:after,
.tabs li.selected:hover a:after {
  width: 0px;
  background-color: transparent;
}

/* dropdown */

#dropdown {
  display: block;
  margin: 30px auto 0 auto;
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(0deg, #c0bfbc 0%, #f6f5f4 100%);
  color: #241f31;
  font-weight: 700;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 800px) {
  #dropdown {
    display: none;
  }
}

/* downloads table */

.downloads {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  border-spacing: 0px;
  margin-bottom: 100px;
  text-align: left;
  color: yellow;
}
.downloads thead {
  font-weight: 700;
}
.downloads thead td {
  padding: 15px 0 15px 20px;
  font-family: cursive;
  line-height: 25px;
  border: 0px;
}
.downloads tbody tr:hover {
  background: rgba(244,237,244,0.025);
}
.downloads tbody td {
  padding: 15px 0 15px 20px;
  font-family: cursive;
  line-height: 25px;
  border: 0px;
  border-top: 1px solid #555;
}
.downloads td.left {
  width: 75px;
  white-space: nowrap;
  padding-left: 20px;
}
@media (min-width: 800px) {
  .downloads td.left {
    width: 150px;
  }
}
.downloads td.right {
  display: none;
  width: 150px;
  white-space: nowrap;
  padding: 0 20px 0 0;
}
@media (min-width: 800px) {
  .downloads td.right {
    display: table-cell;
  }
}
.downloads td.mid a {
  color: #d65050;
}
.downloads td.mid a.issue {
  color: #ffffff;
}
.downloads td.mid a:hover {
  text-decoration: underline;
}
.downloads td a.button {
  width: 75px;
  height: 30px;
  border-radius: 15px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
}
.downloads td p {
  margin: 0 20px 0 0;
  max-width: 100%;
}
.versionWarning {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  border-right: 1px solid #ababab;
  border-left: 1px solid #ababab;
  font-weight: 700;
  color: white;
  background: #e53935;
  background: linear-gradient(45deg, rgba(125,0,0,1) 0%, rgba(255,0,0,1) 50%, rgba(125,0,0,1) 100%);
  transition: all 500ms ease-in-out;
}
.versionWarning a {
  text-decoration: underline;
}
.versionWarning.visible {
  max-height: unset;
  padding: 10px;
}
.timestamp {
  color: transparent;
}
.timestamp.visible {
  color: unset;
}
input {
  margin: 0;
}
