html {
  font-size: 10px;
  height: 100%;
  padding: 0;
  margin: 0;
}
.body {
  font-family: 'Source Sans Pro', Tahoma, sans-serif;
  font-size: 1.8rem;
  color: white;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: black;
  background-position: 50% 0%;
  background-repeat: repeat;
  background-image: url("images/stars_r.jpg");
  background-attachment: fixed;
}
.body .header {
  color: #0047ab;
  flex: 0 0 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111111;
  padding: 0 20px;
}
.body .header .nav-bar .nav-item {
  font-size: 1.4rem;
  border-radius: 7px;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
  width: 10rem;
  height: 4rem;
  margin-right: 20px;
  transition: all 0.3s;
  border: solid #0047ab 3px;
  background: none;
  color: #0047ab;
}
.body .header .nav-bar .nav-item:hover {
  cursor: pointer;
  background-color: #0047ab;
  color: #111111;
}
.body .header .nav-bar .nav-selected {
  background-color: #0047ab;
  color: #111111;
}
.body .header .nav-bar .nav-unselected {
  background: none;
  color: #0047ab;
}
.body .app-container {
  flex: 1 0 auto;
  padding-top: 25px;
}
.body .footer {
  /*font-size: 1.5rem;
        text-align: center;
        color: @cory-gray-light;
        flex: none;
        margin-bottom: 10px;*/
  color: #0047ab;
  background: #111111;
  font-size: 1.3rem;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.video {
  position: relative;
  width: 57%;
  padding-bottom: 32%;
}
.frame {
  position: absolute;
  width: 100%;
  height: 100%;
}
.expenses-page div.instructions {
  width: 25em;
  margin: 2em auto;
  padding: 1em;
  border: thin solid white;
}
.expenses-page div.instructions p {
  color: white;
}
form.expense {
  width: 20em;
  margin: 0 auto;
}
form.expense fieldset {
  padding: 1em 0;
}
form.expense p {
  margin: 1em 2em;
  color: white;
}
form.expense label {
  color: white;
  width: 8em;
  text-align: right;
}
form.expense #year {
  width: 5em;
}
form.expense p.rating {
  margin: 2em 0;
  text-align: center;
}
h1 {
  text-align: center;
  color: #ccc;
  font-family: Arial;
  font-size: 3rem;
  margin: 0.5em auto;
}
.buttons-old {
  text-align: center;
}
.buttons-old button {
  margin: 0rem 1rem;
  color: white;
  background-color: #ff9634;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  width: 10rem;
  height: 3rem;
  font-size: 1.8rem;
}
.buttons-old button:hover {
  cursor: pointer;
  background-color: #ce6b30;
}
table {
  border-spacing: 0;
  border: none;
  margin: 1rem auto;
  -moz-box-shadow: 6pt 6px 10pt #333333;
  -webkit-box-shadow: 6pt 6px 10pt #333333;
  box-shadow: 6pt 6px 10pt #333333;
  border-collapse: collapse;
}
table th {
  color: white;
  background: rgba(71, 54, 255, 0.4);
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  border: 1px solid #191933;
  text-align: left;
  font-family: Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
}
table th.name {
  width: 190px;
}
table th.date {
  width: 162px;
}
table th.cost {
  width: 190px;
}
table th.category {
  width: 149px;
}
table td {
  border: 1px solid #cfcfcf;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.5rem;
  color: #333333;
}
table td span.stars {
  display: inline-block;
  width: 140px;
}
table td span.num {
  display: inline-block;
  width: 3em;
  text-align: right;
}
.newItem {
  background: rgba(70, 233, 70, 0.5);
}
th a:link {
  color: #F5F3EB;
}
th a:visited {
  color: #E3DCC5;
}
th a:hover {
  color: #ffffff;
}
.login-form {
  width: 25em;
  margin: 0 auto;
}
.login-form fieldset {
  padding: 1em 0;
}
.login-form p {
  margin: 1em 2em;
  color: white;
}
.login-form label {
  display: inline-block;
  color: white;
  width: 5em;
  text-align: right;
}
.login-form .keep {
  text-align: center;
}
.login-form .keep label {
  width: auto;
  font-style: italic;
  font-size: 0.9em;
}
.login-form input {
  display: inline-block;
}
.login-form #year {
  width: 5em;
}
.login-form p.rating {
  margin: 2em 0;
  text-align: center;
}
.login-form .message p {
  text-align: center;
  color: #ccc;
  font-style: italic;
}
