body {
  background-color: #FAFAFA;
}

h1 {
  color: #222222;
}

fieldset {
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.row--padding-top {
  padding-top: 1em;
}

body {
  overflow-x: hidden;
}

.editorcontainer {
  display: -webkit-box;
  display: flex;
  position: relative;
}

#editor {
  height: 100vh;
  min-height: 300px;
}

#question_solution {
  height: 30vh;
}

.editor-half, #editor.editor-half {
  height: 40vh;
}

.editor, .instructions {
  box-sizing: border-box;
}

.instructions__text {
  font-size: 13px;
}

.solution-and-editor-container {
  width: 80%;
  padding-top: 15px;
}

.instructions {
  width: 20%;
}

.modal-completed {
  z-index: 998;
  height: 100vh;
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  background-color: #83B375;
  display: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.modal-completed--visible {
  display: -webkit-box;
  display: flex;
}

.test-progress {
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

.test-progress a {
  text-align: center;
  -webkit-box-flex: 0;
  flex: 0 0 20px;
  margin: 0 1px;
}

.test-progress .test-progress-completed {
  background-color: #83B375;
  color: white;
}

.test-progress .test-progress-notcompleted {
  background-color: #DA3610;
  color: #feefeb;
}

.test-progress .test-progress-current {
  text-decoration: underline;
  font-weight: bold;
  color: #feefeb;
}

.question-controls {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 997;
  border-top: 1px solid #e5e5e4;
}

.testresult {
  height: 50vh;
  overflow: auto;
}

.jasmine {
  height: 30vh;
  overflow: auto;
}

.jasmine ul {
  margin: 0;
}

.test-passed {
  color: #83B375;
}

.test-failed {
  color: #DA3610;
}

iframe.preview {
  width: 100%;
  height: 100vh;
}

.previewcontainer {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: calc(100vh - 50px);
  z-index: 998;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: white;
  opacity: 0.8;
  box-shadow: 5px 6px 5px 6px #ccc;
}

.bounceOut {
  -webkit-animation: bounceOutRight 0.5s;
  animation: bounceOutRight 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.bounceIn {
  -webkit-animation: bounceInRight 0.5s;
  animation: bounceInRight 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(220px, 0, 0);
    transform: translate3d(220px, 0, 0);
    opacity: 0.8;
  }
}

@keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(220px, 0, 0);
    transform: translate3d(220px, 0, 0);
    opacity: 0.8;
  }
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.jasmine_html-reporter {
  display: none;
}

@media (max-width: 900px) {
  .editorcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .instructions, .solution-and-editor-container, .editor, .editor-half {
    width: 100%;
    box-sizing: border-box;
  }
  .solution-and-editor-container {
    padding: 15px;
  }
  .previewcontainer {
    position: static;
    width: auto;
  }
  .editable {
    width: 100%;
  }
}

.btn-primary {
  background-color: #2ab27b;
  color: #FAFAFA;
  border-color: #2ab27b;
}

.btn-primary:active:hover, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #2ab27b;
  border-color: #2ab27b;
}

.btn-primary:hover {
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.btn-link {
  margin: 0;
  padding: 0;
}

[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block;
  /* For Firefox */
}

/* */
div[contenteditable=true], h3[contenteditable=true] {
  border: 1px dashed #AAA;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
}

#loading-indicator {
  display: inline-block;
  height: 20px;
  position: absolute;
  left: 48%;
  left: calc(50%-10px);
  margin-top: 5px;
}

#loading-indicator #dots #dot1 {
  -webkit-animation: load 1s infinite;
  animation: load 1s infinite;
}

#loading-indicator #dots #dot2 {
  -webkit-animation: load 1s infinite;
  animation: load 1s infinite;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#loading-indicator #dots #dot3 {
  -webkit-animation: load 1s infinite;
  animation: load 1s infinite;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.show-inline {
  display: inline-block !important;
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes load {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.user__avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.user__avatar--margin {
  margin-right: 12px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#locked_app {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: red;
  display: -webkit-box;
  display: flex;
  z-index: 9999;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

#locked_app h1 {
  color: white;
  text-align: center;
}

#prescreening {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: whitesmoke;
  display: -webkit-box;
  display: flex;
  z-index: 9999;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.navbar-default .navbar-brand {
  font-family: 'Didact Gothic', sans-serif;
  color: #A2A2A2;
}

.navbar-default .navbar-nav > li > a {
  color: #A2A2A2;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #bcbcbc;
}

.no-nav-margin .navbar {
  margin-bottom: 0;
}

.navbar {
  border: none;
  border-radius: 0;
}

.nav {
  margin-bottom: 0;
  border-radius: 0;
}

.navbar-default {
  background-color: #222222;
}

/*# sourceMappingURL=app.css.map */
