* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0 auto;
  min-height: 100%;
  max-width: 1100px;
  
  font-size: 11pt;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;

  display: grid;
  grid-template-rows: max-content minmax(0, 1fr) max-content;
  grid-template-columns: 200px auto;
  grid-template-areas: 'header header' 'nav main' 'footer footer';
}
header {
  grid-area: header;
  font-size: 18pt;
  padding: 24px;
  background-color: #344db4;
  color: #fff;
}
main :link,
main :visited,
footer :link,
footer :visited {
  color: #344db4;
  text-decoration: underline;
  font-weight: bold;
}
main :link:hover,
main :visited:hover,
footer :link:hover,
footer :visited:hover {
  text-decoration: none;
}
aside {
  grid-area: nav;

  background-color: #344db4;
}
nav {
  display: flex;
  flex-direction: column;

  position: sticky;
  top: 0;

  background-color: #344db4;
}
nav a {
  padding: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
nav a:hover {
  background-color: rgba(255,255,255,0.1);
}
main {
  grid-area: main;
  padding: 24px;
}
footer {
  grid-area: footer;
  padding: 24px;
  background-color: rgba(0,0,0,0.1);
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
#screenshot {
  float: left;
  margin: 0 1em 1em 0;
}
#screenshot>img {
  border: 1px solid #344db4;
}
#screenshotnew {
  text-align: center;
  margin: 0 0 1em 0;
}
#screenshotnew img {
  /*border: 1px solid #344db4;*/
  max-width: 100%;
  height: auto;
}
#screenshot2>img {
  max-width: 100%;
  height: auto;
}
.intro {
  text-align: center;
  margin: 1em 0;
  font-style: italic;
  font-weight: bold;
}
.center {
  text-align: center;
}
.justify {
  text-align: justify;
}
#download {
  display: inline-flex;
  flex-direction: column;
  background-color: #344db4;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  font-weight: bold;
  text-align: center;
}
#download:hover {
  background-color: #495fbc;
}
#version {
  font-size: 0.8em;
  font-weight: normal;
}
#version::before {
  content: "Version\20";
}
.release {
  background: rgba(0,0,0,0.1);
  margin: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
#releases {
  display: flex;
  flex-direction: column;
}
.release-title {
  font-weight: bold;
}
.release-date {
  font-style: italic;
  opacity: 0.5;
}
.release.latest-release {
  margin-bottom: 32px;
}
.release.latest-release>.release-title::after {
  content: "Latest release";
  background: #344db4;
  color: #fff;
  padding: 2px 4px;
  margin-left: 0.5em;
  font-size: 0.7em;
}
.release-links {
  display: flex;
}
a.release-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #344db4;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.8em;
  font-weight: bold;
  margin: 4px;
}
a.release-link:hover {
  background-color: #495fbc;
}
a.release-link.link-sourcecode,
a.release-link.link-mirror {
  background: #fff;
  color: #000;
}
a.release-link.link-sourcecode:hover,
a.release-link.link-mirror:hover {
  background: #f1f1f1;
}
.release-hashes {
  display: flex;
  flex-direction: column;
}
.hash-info {
  display: flex;
}
.hash-label {
  display: block;
  padding: 4px;
  width: 90px;
  text-align: right;
}
.hash-textbox {
  flex-grow: 1;
}
.hash-label::after {content: ":\20";}
summary {
  cursor: pointer;
}
table.stretch {
  width: 100%;
}
table.border {
  border-collapse: collapse;
}
table.border th,
table.border td {
  border: 1px solid #aaa;
  padding: 4px;
}
#js-loading-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#js-loading-status::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("/img/loader.svg");
  margin-bottom: 8px;
}
#issuescount {
  background-color: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 2px 4px;
  margin: 0 0 2px 2px;
  font-size: 7pt;
  vertical-align: super;
  align-self: flex-start;
}
#issuescount:empty {
  display: none;
}
.notice {
  background: #c5d0fa;
  border: 2px solid #344DB4;
  padding: 16px;
  margin: 8px 8px 24px;
  text-align: center;
  animation: notice-in 0.8333333333s linear;
  overflow: hidden;
}
kbd {
  border: 1px solid #aaa;
  margin: 0 2px;
  padding: 2px;
  box-shadow: 2px 2px #ccc;
  font-size: 9pt;
}
.alert{background-color:#fffad9;padding:8px 8px 8px 32px;border:1px solid #d28466;color:#98420e;background-image:url("/alert-outline.png");background-repeat:no-repeat;background-position:8px center;}
.alert>a{color:#d28466;border-bottom-color:#d28466;}
#dl_terms {font-size: 9pt;text-align: center;margin: 2em 0 0;opacity: 0.5;}
@keyframes notice-in {
  0%, 40% {
    max-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
  }
  40.001% {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
  to {
    max-height: 56px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}
@media (max-width: 800px) {
  body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: max-content max-content auto max-content;
    grid-template-areas: 'header' 'nav' 'main' 'footer';
  }
  nav {
    position: static;
    background-color: rgba(52, 78, 180, 0.5);
    justify-content: flex-start;
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
  }
  nav a {
    padding: 12px;
  }
  #screenshot {
    float: none;
    margin: 1em 0;
    text-align: center;
  }
  #download {
    display: flex;
  }
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
  body {
    background: #202020;
    color: #fff;
  }
  main :link,
  main :visited,
  footer :link,
  footer :visited {
    color: #c4ccee;
  }
  footer {
    background-color: #333;
  }
  #screenshotnew img {
    border-color: #c4ccee;
  }
  header,
  aside,
  nav {
    background-color: #c4ccee;
    color: #000;
  }
  nav a {
    color: #000;
  }
  nav a:hover {
    background-color: #8090d2;
  }
  .notice {
    background: #c4ccee;
    color: #000;
    border-color: #8090d2;
  }
  .notice :link,
  .notice :visited {
    color: #344db4;
  }
  #download {
    background-color: #c4ccee;
    color: #000;
  }
  #download:hover {
    background-color: #8090d2;
  }
  a.release-link {
    background-color: #c4ccee;
    color: #000;
  }
  a.release-link:hover {
    background-color: #8090d2;
  }
  a.release-link.link-sourcecode {
    background-color: #464646;
    color: #fff;
  }
  a.release-link.link-sourcecode:hover {
    background-color: #5b5b5b;
  }
  #issuescount {
    background-color: rgba(0,0,0,0.15);
  }
  #js-loading-status::before {
    background-image: url("/img/loader_dark.svg");
  }
  .release.latest-release>.release-title::after {
    background: #c4ccee;
    color: #000;
  }
}
