@import url(https://fonts.googleapis.com/css?family=Work+Sans:300,600);
body {
  margin: 0px;
  font-size: 9px;
  font-family: "Work Sans", sans-serif;
  color: #333;
  font-weight: 300;
  text-align: center;
  background-color: white;
}
h1 {
  font-weight: 300;
  margin: 2px;
  padding: 10px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type="radio"] {
  height: 1.6em;
  width: 1.6em;
}
button {
  font-family: "Work Sans", sans-serif;
  font-size: 22px;
  background-color: #279;
  color: #fff;
  border: 0px;
  border-radius: 3px;
  padding: 20px;
  cursor: pointer;
  margin: 20px 10px;
  z-index: 3;
  display: block;
  font-size: 2em;
}
button:hover {
  background-color: #38a;
}

table,
th {
  border: 1px solid #279;
  margin: auto;
  background-color: #279;
}

td {
  text-align: left;
  font-weight: bold;
  border: 3px solid white;
  margin: auto;
  background-color: white;
}

.question {
  font-size: 3em;
  margin-bottom: 10px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #0e76bc;
}
.answers {
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
  font-size: 3em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #0e76bc;
}
.answers label {
  display: block;
  margin-bottom: 10px;
}

.slide {
  position: static;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 1;
  display: none;
}
.active-slide {
  display: block;
  z-index: 2;
}
.quiz-container {
  position: static;
  height: auto;
  margin-top: 40px;
}

#graphical
{
  margin-bottom: 20px;
}

.score-indicator {
  margin-top: 50px;
  padding-top: 10px; /* Add top padding */
  padding-bottom: 10px; /* Add bottom padding */
  min-width: 250px;
  width: 10%;
  height: 100%;
  border-radius: 25px;
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 0, 0, 1) 25%,
    rgba(246, 141, 61, 1) 50%,
    rgba(19, 168, 158, 1) 75%,
    rgba(19, 168, 158, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 0, 0, 1) 25%,
    rgba(246, 141, 61, 1) 50%,
    rgba(19, 168, 158, 1) 75%,
    rgba(19, 168, 158, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(255, 0, 0, 1) 25%,
    rgba(246, 141, 61, 1) 50%,
    rgba(19, 168, 158, 1) 75%,
    rgba(19, 168, 158, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000",endColorstr="#13a89e",GradientType=1);
}

[class*="arrow-up"] {
  position: relative;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid black;
}

.modal {
  display: none;
  position: fixed;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: relative;
  background-color: white;
  padding: 20px;
  margin: auto;
  width: 75%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.modal-content input {
  width: 10%;
  min-width: 100px;
  max-width: 200px;
  height: 20px;
  border-width: 3px;
}

.modal-content #modal-btn {
  margin: auto;
  margin-top: 20px;
  font-size: 20px;
  width: 10%;
  min-width: 60px;
  max-width: 100px;
  height: 20px;
  text-align: center;
}

.modal-content #modal-btn p {
  margin: -10px;
}

.displayed-question-result {
  color: black;
}

#results {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px;
  display: none;
}

.header {
  font-size: 11px;
  padding: 30px;
  background: #0e76bc;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.text-show-results
{
  font-size: 14px;
  padding-top: 0px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@media (min-width: 700px) {
  body {
    font-size: 15px;
  }
  .header {
    font-size: 17px;
  }
  .score-indicator {
    min-width: 400px;
    min-height: 12px;
  }
  .text-show-results
  {
    font-size: 18px;
    padding-top: 0px;
  }
}
