html {
  background: #2B3370;
  background-position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100%;
}
body {
  background: none;
  font-family: 'Roboto', tahoma, sans-serif;
  color: white;
  margin-bottom: 100px;
  overflow-y: scroll;
}
.btn {
  cursor: pointer;
}
.fake-link {
  color: blue;
  cursor: pointer;
}
.fake-link:hover {
  text-decoration: underline;
}
.pointer {
  cursor: pointer;
}
input {
  border: none;
  border-bottom: 1px solid #ccc;
}
.header {
  display: block;
  background: url(/img/logo_1000.png) no-repeat 50% 50%;
  background-size: contain;
  height: 150px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.card {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  padding: 20px;
}
.ad {
  margin-top: 50px;
}
.help .assessment-example {
  background: url(/img/help-assessment-example.png) no-repeat 50% 50%;
}
.help .scores-example {
  background: url(/img/help-scores-example.png) no-repeat 50% 50%;
}
.help .requirements-example {
  background: url(/img/help-requirements-example.png) no-repeat 50% 50%;
}
.help .assessment-example,
.help .scores-example,
.help .requirements-example {
  background-size: contain;
  height: 200px;
  margin-bottom: 30px;
}
.assessment .title {
  width: 70%;
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.assessment .col-delete {
  width: 0;
  text-align: right;
  padding-left: 0;
  padding-right: 0;
}
.assessment .col-delete img {
  vertical-align: bottom;
}
.assessment table,
.grades table {
  width: 100%;
  margin-bottom: 10px;
}
.assessment th,
.grades th {
  text-align: left;
}
.assessment td,
.grades td,
.assessment th,
.grades th {
  height: 34px;
  /* td and th, height works like min-height */
}
.assessment td,
.grades td {
  padding: 4px;
}
.assessment input,
.grades input {
  width: 100%;
}
.grades .col-score {
  width: 80px;
}
.grades .col-score input.badScore {
  box-shadow: 0 0 6px #FF0300;
}
.grades .col-chart {
  width: 35px;
}
.grades .col-chart .chart-container {
  width: 30px;
  height: 30px;
  margin: 5px 0 5px 5px;
}
.results .title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 8px;
}
.results .resultsGraphContainer {
  width: 150px;
  height: 150px;
  margin: 15px 30px 15px 15px;
}
.results .resultsSentence {
  text-align: center;
  font-size: 20px;
}
.results .resultsSentence input {
  text-align: right;
}
.share input {
  display: block;
  width: 100%;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.share .explanation {
  font-size: 14px;
  text-align: center;
}
.footer {
  text-align: center;
  font-size: 9px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
}
.footer div {
  padding-top: 2px;
}
.footer a {
  text-decoration: none;
  color: white;
}
.footer a:hover {
  text-decoration: underline;
}
/* Spinner from http://tobiasahlin.com/spinkit/ */
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  opacity: 0.7;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
