@charset "UTF-8";
/* --------------------------------

Imports

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

body {
  background-color: #F8F9F9;
}

.group:after {
  content: " ";
  display: block;
  clear: both;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

textarea {
  resize: none;
}

.master {
  width: 100%;
  max-width: 900px;
  max-height: 500px;
  /* use this property to set the widget height*/
  border: 1px solid #C6CDD0;
  background-color: #F8F9F9;
}

.question_wrapper {
  padding: 0;
  margin: 0;
  height: 50%;
  /* value here is 100% divided by number of questions vertically displayed*/
}

.question {
  width: 100%;
  height: 80px;
  padding: 6px 15px;
  background-color: #E5E9EA;
  font-weight: bold;
}

.answer_wrapper {
  width: calc(50% - 15px);
  float: left;
  margin: 10px 0px 20px 10px;
}

.response {
  width: calc(100% - 2px);
  border: 1px solid #C6CDD0;
  padding: 5px;
  height: calc(100% - 34px);
  margin-bottom: 10px;
  float: left;
}

.answer {
  height: calc(100% - 30px - 34px - 34px);
  padding-left: 10px;
  -webkit-transition: opacity 0.25s ease-in;
  -moz-transition: opacity 0.25s ease-in;
  -ms-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
}

.answer:before {
  content: "Student Kumar’s answer";
  font-size: 12px;
  font-weight: 600;
}

.hide_answer {
  opacity: 0;
}

.show_answer {
  opacity: 1;
}

.nav-pills > li > a {
  border: none;
  border-radius: 0px;
  color: #006b8a;
  font-size: 1.4rem;
  font-weight: 400;
}

.nav-pills > li > a:hover, .nav-pills > li > a:focus {
  background-color: #212628;
  color: #F8F9F9;
}

.nav-pills > li.active > a {
  background-color: #212628;
  border-radius: 0px;
  color: #F8F9F9;
  font-size: 1.4rem;
  font-weight: 400;
}

.nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  background-color: #212628;
  color: #F8F9F9;
}

.nav-pills > li + li {
  margin: 0px;
}
