/************************************************************************************************
*              QUESTIONS                                                                        *
************************************************************************************************/
table.question_fillin {
  line-height: 25px;
}

.question_type_GapQuestion2 .correct_answer,
.question_type_GapQuestion .correct_answer,
table.question_fillin .correct_answer,
table.question_match .correct_answer {
  background-color: #33b100;
  padding: 1px 5px;
  color: #fff;
}

table.question_gap .given_answer, table.question_fillin .given_answer {
  background-color: #2ea2cc;
  padding: 1px 5px;
  color: #fff;
}

.question_gap p {
  line-height: 23px;
}

/* BEGIN JASPER */
.question_container {
  background: transparent;
  padding: 0;
  margin: 30px 0;
  overflow: inherit;
  position: relative;
  -webkit-print-color-adjust: exact;
}
.question_container:first-child {
  margin-top: 0;
}
.question_container .select-container {
  margin: 0 5px;
}
.question_container input[type=text], .question_container textarea {
  resize: none;
  outline: none;
  color: rgba(0, 0, 0, 0.87);
  border: none;
  font-size: 17px;
  font-weight: 300;
}
.question_container input[type=text]::placeholder, .question_container textarea::placeholder {
  color: #757575;
}
.question_container input[type=text] {
  padding: 8px 10px;
  margin: 0 5px;
}
.question_container textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #68713a;
}

.question__content-container {
  display: flex;
  flex-direction: row;
  position: relative;
  font-size: 17px;
}
.question__content-container .section {
  font-family: "BundaySlab-Light";
  font-size: 30px;
  font-weight: 600;
}

.question__intro {
  background-color: #F6F7F1;
  padding: 20px 29px;
  position: relative;
  margin: 0 0 4px;
  z-index: 1;
  font-size: 17px;
  /*
  &:before {
  	content: '\f129';
  	position: absolute;
  	top: -12px;
  	left: -12px;
  	width: 25px;
  	height: 25px;
  	font-size: 11px;
  	font-weight: 700;
  	font-family: "Font Awesome";
  	color: #E0E4CB;
  	border: 2px solid #E0E4CB;
  	border-radius: 26px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	background-color: #fff;
  }*/
}
.question__intro:after {
  content: "";
  position: absolute;
  top: calc(100% - 7px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background-color: #fff;
  transform: rotate(45deg);
}

.question__menu-left {
  background-color: #E0E4CB;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  color: #63674d;
  padding: 20px 0;
}

.question__number {
  width: 35px;
  height: 35px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 600;
  background-color: #0BC0EE;
  display: flex;
  justify-content: center;
  padding-top: 3px;
  color: #fff;
}

.question__points {
  margin-top: 7px;
  font-size: 16px;
}

.question__type {
  background-color: transparent;
  color: inherit;
  margin-top: 11px;
  border: 2px solid #8F9570;
  border-radius: 4px;
  height: 26px;
  width: 25px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.question__circles {
  margin-top: auto;
}

.question__circle {
  margin-top: 15px;
  width: 35px;
  height: 35px;
  border-radius: 18px;
  font-size: 20px;
  background-color: #EEF1E2;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: "Font Awesome";
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
.question__circle:hover {
  background-color: #fff;
}
.question__circle.question__circle-teacher:after {
  content: "";
  position: absolute;
  background-image: url(/img/l2018/teacher.svg);
  background-repeat: no-repeat;
  width: 17px;
  height: 24px;
  top: 6px;
  left: calc(50% - 6px);
}
.question__circle.question__circle-lightbulb {
  z-index: 6;
}
.question__circle.question__circle-lightbulb:after {
  content: "\f0eb";
  position: absolute;
  top: 4px;
  font-weight: 300;
}
.question__circle.question__circle-ka {
  z-index: 6;
}
.question__circle.question__circle-ka:after {
  font-family: "Open Sans";
  content: "KA";
  position: absolute;
  top: 4px;
  font-weight: 600;
  color: #888;
  font-size: 16px;
}

.question__circle-lightbulb--content {
  position: absolute;
  z-index: 5;
  top: calc(100% - 56px);
  left: 12px;
  transition: all 0.3s ease;
  min-height: 35px;
  background-color: #fff;
  color: #6B6B6B;
  padding: 4px 15px 6px 50px;
  border-radius: 18px;
  font-weight: 300;
  font-size: 17px;
  width: auto;
  max-width: calc(100% - 23px);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.question__circle-lightbulb--content.show {
  opacity: 1;
  visibility: visible;
}

.question__circle-lightbulb--title {
  font-weight: 700;
  color: #A6AB8C;
  padding-right: 10px;
}

.question__content {
  background-color: #EFF1E4;
  padding: 28px 30px;
  flex: 1;
}

.question__title {
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.question__sortable {
  background: #fff;
  display: block;
  padding: 10px 50px 10px 20px;
  position: relative;
  margin-bottom: 8px;
  position: relative;
  cursor: move;
}
.question__sortable:last-child {
  margin-bottom: 0;
}
.question__sortable i.fa-arrows {
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  color: #CACFAE;
}

.question__group-container .droppable-active, .question__match-container .droppable-active {
  transition: all 0.3s ease;
  background-color: #ccf5cc !important;
}
.question__group-container .droppable-hover, .question__match-container .droppable-hover {
  transition: all 0.3s ease;
  background-color: #E0E4CB !important;
}

.question__group-option--item {
  padding: 8px 8px;
  background: #fff;
  margin-bottom: 20px;
}

.question__group-option--title {
  display: block;
  padding: 10px 0 10px 10px;
  font-weight: 600;
}

.question__group-option--dropbox, .question__match-option--dropbox {
  padding: 10px 10px 0;
  width: 100%;
  background-color: #F3F3F3;
}
.question__group-option--dropbox .question__awnsers-item, .question__group-option--dropbox .block, .question__match-option--dropbox .question__awnsers-item, .question__match-option--dropbox .block {
  border: 2px solid #fff;
  background-color: #fff;
  padding: 5px 18px;
  margin-right: 11px;
}

.question__group-option--dropbox {
  min-height: 100px;
  display: inline-block;
}

.question__awnsers {
  display: block;
  width: 100%;
  float: left;
}

.question__awnsers-item, .block {
  border: 2px solid #fff;
  background-color: #F3F3F3;
  padding: 5px 18px;
  margin-right: 11px;
}

.match_small .question__awnsers-item,
.match_small .block {
  font-size: 16px;
  line-height: 19px;
  padding: 5px;
}

.question__match-container .question__match-option--dropbox .question__awnsers-item, .question__match-container .question__match-option--dropbox .block {
  margin: 0 !important;
}

.question__match-answer-container {
  display: block;
  width: 100%;
}

.question__match-option {
  width: calc(100% - 10px);
  margin: 0 20px 20px 0;
  background: #fff;
  float: left;
  display: flex;
  flex-direction: row;
}

.question__match-option-2col {
  width: calc(50% - 10px);
}
.question__match-option-2col:nth-child(even) {
  margin-right: 0;
}

.question__match-option-3col {
  width: calc(33.3% - 20px);
}
.question__match-option-3col:nth-child(3) {
  margin-right: 0;
}

.question__match-option--title {
  flex: 1;
  padding: 17px 20px;
  border-right: 1px solid #D4D4D4;
}

.question__match-option--dropbox-container {
  flex: 1;
  padding: 5px;
  min-height: 62px;
}

.question__match-option--dropbox {
  height: 100%;
  width: 100%;
  background: #E3E3E3 !important;
  display: flex;
  min-height: 52px;
  padding: 5px;
}

.question__options-container {
  padding-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  bottom: -30px;
  right: -260px;
  width: 260px;
  z-index: 999;
}
.question__options-container.open {
  opacity: 1;
  visibility: visible;
}

.question__options-inner {
  position: relative;
  list-style: none;
  background: #fff;
  padding: 3px;
  font-family: "Source Sans Pro", "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.question__options-inner:before {
  content: "";
  position: absolute;
  bottom: 22px;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.question__options-item {
  margin-bottom: 3px;
  background-color: #F3F3F3;
  color: #6B6B6B;
  padding: 4px 20px;
  cursor: pointer;
}
.question__options-item:last-child {
  margin-bottom: 0;
}

.question__footer {
  display: flex;
  background-color: #F6F7F1;
  position: relative;
  margin: 4px 0 0;
  z-index: 1;
}
.question__footer textarea {
  resize: none;
  outline: none;
  color: rgba(0, 0, 0, 0.87);
  border: none;
  font-size: 17px;
  font-weight: 300;
  width: 100%;
  padding: 20px;
}
.question__footer textarea::placeholder {
  color: #A5A5A5;
}

.question__footer_inverse {
  background-color: #666666;
  color: #fff;
}
.question__footer_inverse:after {
  content: "";
  position: absolute;
  top: -8px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background-color: #fff;
  transform: rotate(45deg);
}

.question__footer.review {
  margin-top: -5px;
  margin-bottom: 10px;
}

.question__footer-content {
  padding: 20px 29px;
  float: left;
  flex: 1;
}
.question__footer-content .toggle_visibility {
  vertical-align: middle;
  height: 33px;
}

.question__footer-content-feedback {
  color: #333333;
}

.question__footer-checkbox {
  padding: 0 5px;
}

.question__footer-title {
  font-weight: bold;
  font-size: 20px;
  display: block;
}
.question__footer-title .fa {
  color: #888888;
  margin-right: 7px;
}

.question__footer-points {
  margin-left: auto;
  text-align: right;
}
.question__footer-points span {
  font-size: 15px;
}

.question__footer-menu {
  margin-left: auto;
}
.question__footer-menu.stacked {
  display: flex;
  flex-direction: column;
}
.question__footer-menu.stacked .question__footer-menu--item {
  border-bottom: 1px solid #E2E2E2;
}
.question__footer-menu.stacked .question__footer-menu--item:last-child {
  border-bottom: none;
}

.question__footer-menu--item {
  color: #5A5A5A !important;
  background: #EFF1EA;
  padding: 20px 25px;
  border-left: 1px solid #E2E2E2;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  float: left;
}
.question__footer-menu--item:hover {
  background: #e8ebe1;
}
.question__footer-menu--item i {
  padding-right: 15px;
  margin-top: 1px;
  font-size: 18px;
}
.question__footer-menu--item i.delete {
  font-size: 21px;
}

.question__footer-content-half {
  float: left;
  width: 50%;
}

.question__footer-content-item {
  align-items: center;
  margin-bottom: 10px;
  min-height: 35px;
}
.question__footer-content-item .btn {
  margin-bottom: 0;
}

@media (max-width: 769px) {
  .question__match-option {
    width: 100%;
  }
}
/* EIND JASPER */
.question_container.question_type_Text {
  border-bottom: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  background: none;
}

.question_container .question_td {
  vertical-align: top;
}

.question_container .question_td_split {
  vertical-align: top;
  width: 400px;
}

.question_counter {
  background-image: url("/img/l2018/circle35.svg");
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-left: -55px;
  margin-right: 20px;
  float: left;
}

.intro {
  margin-bottom: 10px;
  margin-left: -45px;
}

.question {
  font-weight: bold;
}

.question_type_OpenQuestion .question_td textarea {
  width: 100%;
  border: 1px solid #707070;
  margin-top: 10px;
}

.instruction:before {
  content: "\f0da";
  font-family: "Font Awesome";
  margin-right: 15px;
  font-size: 125%;
  color: #ea1010;
  position: relative;
  top: 2px;
  font-weight: 900;
}

div.correct_answer {
  color: #fff;
  background-color: #33b100;
  position: absolute;
  margin: 0;
  margin-left: -35px;
  margin-top: -5px;
  padding: 5px;
  width: 10px;
}

td.correct_answer {
  border: 1px solid #33b100;
  border-left: 5px solid #33b100;
  padding-left: 5px !important;
}

.given_answer {
  color: #fff;
  background-color: #2ea2cc !important;
}

.given_answer_preresit {
  background-color: #ffa500;
}

.given_answer a {
  color: inherit;
}

#grade {
  z-index: 3;
  float: right;
  width: 175px;
  border: 1px solid #767676;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  right: -185px;
}

#grade a {
  text-decoration: none;
  border-bottom: 1px solid #666666;
}

.grade_big {
  float: right;
  display: inline-block;
  font-size: 30px;
  padding: 15px 20px;
  text-align: center;
  color: #fff;
  margin-top: -20px;
  margin-bottom: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.question_options_container {
  z-index: 3;
  text-align: right;
  display: none;
  position: absolute;
  left: 40px;
  font-family: "Source Sans Pro";
}

.question_options {
  background-color: #424242;
  padding: 4px 10px;
  color: #fff;
  text-align: center;
  z-index: 3;
  margin-bottom: 3px;
  cursor: pointer;
}

.question_options a {
  color: inherit;
  text-decoration: none;
}

.max_points {
  position: absolute;
  margin-left: -30px;
  border: 1px solid #999999;
  color: #666666;
  font-size: 90%;
  padding: 4px;
}

.max_points_inline {
  font-size: 70%;
  display: block;
  font-weight: normal;
  color: #666666;
  padding-top: 5px;
}

.question_fillin table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 0;
}

.question_fillin table td, .question_fillin table th {
  padding: 5px 10px;
  color: #000000;
  border: 0;
  vertical-align: top;
}

.question_fillin table th {
  padding: 5px 10px;
  color: #333333;
  font-weight: normal;
  font-size: 14px;
  background-color: #cccccc;
  text-align: left;
}

.question_fillin table.lines td, .question_fillin table.lines th {
  border: 1px solid #aaaaaa;
}

.question_fillin table th a {
  color: inherit;
}

.question_fillin table a {
  color: #666666;
}

.levende_grafiek_option {
  cursor: move;
  width: auto;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
  border: 1px solid #999999;
  background-color: #f6f6f6;
}

.levende_grafiek_option0 {
  border: 1px solid #B4A9AF;
}

.levende_grafiek_option1 {
  border: 1px solid #A3BF91;
}

ul.question_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.question_list .question_container {
  cursor: move;
}

.question_footer {
  background-color: #cccccc;
  padding: 5px;
}

.pos .question_footer {
  background-color: #88CC88;
}

div.block {
  border: 2px solid #fff;
  padding: 5px 15px;
  cursor: move;
  margin-bottom: 11px;
  margin-right: 20px;
  float: left;
  background-color: #F3F3F3;
  box-sizing: border-box;
}

div.block img {
  border: 1px solid #CCCCCC;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

div.block.green {
  /*@include linear-gradient(#d6e3bc, darken(#d6e3bc, 12));*/
}

div.block.blue {
  /*	@include linear-gradient(#ccc0d9, darken(#ccc0d9, 12)); */
}

div.block.orange {
  /* @include linear-gradient(#fabf8f, darken(#fabf8f, 12)); */
}

div.block_error, span.block_error div {
  background-color: #fab6c4;
  /*@include linear-gradient(#fab6c4, darken(#fab6c4, 12));*/
  cursor: pointer;
  border: 1px solid #cc0000 !important;
}

div.block_correct, span.block_correct div {
  background-color: #b6fac4;
  /*@include linear-gradient(#b6fac4, darken(#b6fac4, 12));*/
  cursor: pointer;
  border: 1px solid #00cc00 !important;
}

.drop {
  background-color: #C0C0C0;
  box-sizing: border-box;
}

.drop_group {
  background-color: #CCCCCC;
  width: 250px;
  padding: 10px;
  margin: 10px;
  margin-top: 0px;
  min-height: 100px;
}

.drop_group h3 {
  margin-top: 0;
}

.drop div.block {
  margin-bottom: 0;
}

div.blockItem {
  border: 2px solid #fff;
  padding: 5px 15px;
  cursor: move;
  margin-bottom: 11px;
  margin-right: 20px;
  float: left;
  background-color: #F3F3F3;
  box-sizing: border-box;
}

.cross {
  color: #000;
  float: right;
  margin: 0;
  margin-top: -6px;
  margin-right: -6px;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
  height: 20px;
  transition: all 0.3s ease;
}
.cross:hover {
  color: #0BC0EE;
}
.cross:after {
  content: "\f00d";
  font-family: "Font Awesome";
}

.answerID {
  display: none;
}

.open_given_answer, .open_correct_answer, .open_given_answer_preresit {
  background-color: #fff;
  padding: 15px 22px;
  font-size: 17px;
}
.open_given_answer ul, .open_correct_answer ul, .open_given_answer_preresit ul {
  margin-top: 0;
  margin-bottom: 0;
}

.open_given_answer {
  border-left: 10px solid #2ea2cc;
}
.open_given_answer span {
  color: #2ea2cc;
}

.open_given_answer_preresit {
  border-left: 10px solid #ffa500;
}
.open_given_answer_preresit span {
  color: #ffa500;
}

.open_correct_answer {
  border-left: 8px solid #247E00;
}
.open_correct_answer span {
  color: #247E00;
  font-weight: 600;
}

.invulsamenvatting .question__content p, .inline-input .question__content p {
  line-height: 30px;
}
.invulsamenvatting input[type=text], .inline-input input[type=text] {
  border: 0;
  border-bottom: 1px solid #707070;
  padding: 0px 5px;
  font-size: 17px;
  outline: 0;
  color: #0d7694;
  min-height: 25px;
}
.invulsamenvatting .student_answer, .inline-input .student_answer {
  font-weight: 600;
}

.question_hidden {
  /*@include linear-gradient(#ececec, #cccccc);*/
  padding: 10px;
  border-left: 10px solid #cccccc;
  color: #444444;
  font-size: 15px;
  cursor: pointer;
}

.match_question_answer_container {
  border: 1px dashed #24c0eb;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f6f6f6;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.match_question_answer {
  font-family: "Open Sans";
  font-weight: 600;
}

.hr_questions {
  border: none;
  border-bottom: 1px solid #CCCCCC;
  height: 0;
}

.samenvatting_field {
  border: 1px solid #666666;
  height: 400px;
}

.gap_inline {
  cursor: pointer;
}

.gap_inline span {
  background-color: #e0e0e0;
  padding-right: 5px;
  margin-right: 3px;
  padding-left: 5px;
  border-bottom: 1px solid #cccccc;
}

.gap_inline .gap_inline_active {
  background-color: #00aaff;
  color: #fff;
}

.gap_inline .gap_inline_inactive {
  text-decoration: line-through;
  opacity: 0.5;
}

table.puzzle {
  border-spacing: 0;
  border-collapse: collapse;
  border: 0;
}

table.puzzle td, table.puzzle th {
  padding: 5px 5px;
  color: #666666;
  border: 1px solid #CCCCCC;
}

table.puzzle td.sel {
  border-left: 2px solid #cc0000 !important;
  border-right: 2px solid #cc0000 !important;
}

table.puzzle tr:first-child td.sel {
  border-top: 2px solid #cc0000 !important;
}

table.puzzle tr:last-child td.sel {
  border-bottom: 2px solid #cc0000 !important;
}

table.puzzle input {
  text-align: center;
  text-transform: uppercase;
}

.marked, .marked_correct {
  color: #ffffff;
  padding: 3px;
  border: 1px solid #666666;
  font-weight: bold;
}

.marked {
  background-color: #b13300;
}

.marked_correct {
  background-color: #33b100;
}

.marked.marked_correct:after {
  content: "\f00c";
  font-family: "Font Awesome";
  margin-left: 5px;
}

.question_type_MarkWordsQuestion .mark_words span {
  cursor: pointer;
}

.question_type_SchemeQuestion .question__content-container input[type=text],
.question_type_WordWebQuestion .question__content-container input[type=text] {
  border: 0;
  border-bottom: 1px solid #707070;
  outline: 0;
  color: #0d7694;
}

.question_type_SchemeQuestion .question__content-container input[type=text] {
  padding: 0px 5px;
  font-size: 17px;
  min-height: 25px;
}

.question_type_GapQuestion .correct_answer {
  font-weight: bold;
  color: #247e00;
  margin: 0;
  font-style: italic;
}

.keyboard_image {
  position: relative;
}

.keyboard_image .key {
  font-size: 20px;
  font-family: "Font Awesome";
  color: #CCCCCC;
  position: absolute;
  cursor: pointer;
}

.keyboard_image .circle_correct {
  color: #2ecca2;
}

.keyboard_image .circle_active {
  color: #2ea2cc;
}

.keyboard_image .circle_good_answer:after {
  content: "\f00c";
  font-family: "Font Awesome";
  color: #ffffff;
  position: absolute;
  left: 2px;
  top: 6px;
  font-size: 80%;
}

.keyboard_image .circle_wrong_answer:after {
  content: "\f00d";
  font-family: "Font Awesome";
  color: #ffffff;
  position: absolute;
  left: 5px;
  top: 6px;
  font-size: 80%;
}

.question_note_correct_answer {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  border: 2px solid #00cc00;
  width: 20px;
  height: 20px;
}

.notation_button button {
  font-size: 15px;
}

.canvas_container {
  padding-bottom: 10px;
}

.question_type_GapQuestion .select-container select,
.question_type_GapQuestion2 .select-container select {
  min-height: auto;
  padding-top: 3px;
  padding-bottom: 4px;
}

.question_type_GapQuestion .select-container,
.question_type_GapQuestion2 .select-container {
  line-height: 1.2;
}

.question_type_GapQuestion .select-container:after,
.question_type_GapQuestion2 .select-container:after {
  line-height: 28px;
  top: 0;
  bottom: 0;
}

.question_type_MatchQuestionLayout .drop {
  background-color: rgba(243, 243, 243, 0.7);
  box-sizing: border-box;
  min-height: 42px;
}

.uploaded_files {
  background-color: #dfe4cb;
  padding: 10px 30px;
}

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