/*reset*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
img,
strong,
ol,
ul,
li,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
footer,
header,
menu,
nav,
section,
summary,
audio,
video {
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
}
input[type=submit],
input[type=button],
button {
  border: 0;
}
/* font families */

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(/fonts/opensans/opensans-lightitalic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(/fonts/opensans/opensans-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(/fonts/opensans/opensans-bolditalic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(/fonts/opensans/opensans-light.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(/fonts/opensans/opensans-regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(/fonts/opensans/opensans-bold.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
html {
  display: flex;
  min-height: 100%;
}
body {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
/* grid */

.row {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.row:after {
  clear: both;
  content: "";
  display: block;
}
.col {
  float: left;
  display: inline-block;
  position: relative;
}
/* links */

a:link,
a:visited {
  color: #0099FF;
  text-decoration: none;
}
a:hover,
a:active {
  color: #006bff;
  text-decoration: underline;
}
/* font styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Open Sans', arial;
}
h1 {
  font-size: 5em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2.5em;
}
h4 {
  font-size: 2em;
}
h5 {
  font-size: 1.25em;
}
h6 {
  font-size: 1em;
}
/* body */

html {
  display: flex;
  min-height: 100%;
}
body {
  background: #292929;
  color: #ccc;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.website {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  font-family: 'Open Sans', arial;
}
.content p {
  padding: 0 0 20px 0;
}
div,
input,
p,
select,
textarea {
  box-sizing: border-box;
}
.right {
  float: right;
}
.left {
  float: left;
}
/* forms */

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: #666;
  color: #aaa;
  font-size: 17px;
}
/* replace built-in Chrome autofill yellow input fields with custom color scheme */

input:-webkit-autofill {
  outline: none;
}
input:-webkit-autofill {
  border-color: #444;
  -webkit-box-shadow: 0 0 0 30px #444 inset;
  -webkit-text-fill-color: #ccc !important;
}
input:-webkit-autofill:hover {
  border-color: #4f4f4f;
  -webkit-box-shadow: 0 0 0 30px #4f4f4f inset;
  -webkit-text-fill-color: #bbb !important;
}
input:-webkit-autofill:focus {
  border-color: #0099ff;
  -webkit-box-shadow: 0 0 0 30px #035092 inset;
  -webkit-text-fill-color: #ccc !important;
}
label,
input {
  display: inline-block;
}
/* panel */

.panel {
  /* stylize login form & fields */
  color: #aaa;
  padding-top: 50px;
  font-size: 17px;
  font-weight: 400;
}
.panel .container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background-color: #333;
  width: fit-content;
  border-radius: 4px;
}
.panel .container:after {
  content: " ";
  display: block;
  clear: both;
  overflow: hidden;
  font-size: 0;
}
button {
  padding: 10px 25px;
  color: #aaa;
  background-color: #222;
  border: 0 none;
  border-radius: 4px;
  font-size: 17px;
}
button:hover {
  color: #ccc;
  background-color: #0099ff;
}
button:focus {
  border: 0 none;
  outline: 1px solid #0099ff;
  background-color: #035092;
  color: #ccc;
}
a.button {
  display: inline-block;
  padding: 7px 15px;
  margin: 0 5px;
  color: #b7b7ff;
  background-color: #3c3c9b;
  border-radius: 4px;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:active {
  text-decoration: none;
}
a.button:hover {
  color: #d4d4fd;
  background-color: #2b2bb6;
}
.msg {
  display: none;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 20px;
  margin-bottom: 15px;
  background-color: #48667f;
  color: #93c5ff;
}
.msg.error {
  background-color: #7f4848;
  color: #ff9393;
}
/* imports */

header {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  clear: both;
  position: relative;
}
header > * {
  display: block;
}
header .logo {
  float: left;
  font-size: 24px;
  padding: 13px 20px;
  white-space: nowrap;
}
header .sub {
  float: left;
  font-size: 18px;
  padding: 18px 20px;
  color: #999;
  white-space: nowrap;
}
header nav {
  float: right;
  padding: 12px 20px 10px 20px;
}
header nav ul {
  white-space: wrap;
  list-style: none;
  clear: both;
}
header li {
  display: block;
  float: left;
  margin: 5px;
}
header li a {
  padding: 5px 15px;
  color: #ddd !important;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  border: 2px solid transparent;
}
header li a:hover,
header li a:active {
  text-decoration: none;
}
header li a:hover {
  background-color: #551dbd;
}
header li.selected a {
  border-bottom-color: #551dbd;
}
@media (max-width: 1080px) {
  header nav {
    float: none;
    display: inline-block;
    padding: 12px 0 20px 0;
  }
}
@media (max-width: 600px) {
  header nav ul {
    text-align: center;
  }
  header nav li {
    float: none;
    display: inline-block;
    margin: 5px 5px 15px 5px;
  }
}
@media (max-width: 450px) {
  header {
    text-align: center;
  }
  header .logo {
    float: none;
    display: inline-block;
  }
  header .sub {
    display: none;
  }
}
footer {
  background-color: #222;
  color: #eee;
  padding: 10px 10px 20px 10px;
}
footer a:link,
footer a:visited {
  color: #0099FF;
}
footer a:hover,
footer a:active {
  color: #007AFF;
}
footer .logo img {
  width: 100px;
}
footer .no-user > a {
  display: inline-block;
  padding: 0 20px 0 0;
}
