﻿#learningCheckModal {
  height: 100%;
}
.popup-learningcheck {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.popup-learningcheck .progress-step {
  background: aliceblue;
  padding: 0.4rem;
  border-bottom: solid 1px #dae5ef;
  font-weight: bold;
  text-align: center;
}
.popup-learningcheck h1 {
  font-size: 0.9rem;
  text-transform: uppercase;
}
.popup-learningcheck h2 {
  line-height: 2.1rem;
  margin-bottom: 1rem;
}
.popup-learningcheck .learningcheck-wrapper {
  padding: 1rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.popup-learningcheck .learningcheck-wrapper.type-1 .options {
  display: flex;
}
.popup-learningcheck .learningcheck-wrapper.type-2 .open-answer {
  display: flex;
}
.popup-learningcheck .open-answer {
  display: none;
  margin-bottom: 1rem;
}
.popup-learningcheck .open-answer textarea {
  width: 90%;
  height: 200px;
}
.popup-learningcheck .options {
  display: none;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}
.popup-learningcheck .options .pics {
  width: 49%;
  padding: 0;
  position: relative;
}
.popup-learningcheck .options .pics .pic {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup-learningcheck .options .pics .pic img {
  max-width: 100%;
  max-height: 100%;
}
.popup-learningcheck .options .list {
  width: 49%;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup-learningcheck .options .list .result {
  border: solid 2px #FFF;
  border-radius: 3px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.popup-learningcheck .options .list .result h3 {
  font-size: 1rem;
  font-weight: bold;
}
.popup-learningcheck .options .list .result .correct,
.popup-learningcheck .options .list .result .incorrect {
  display: none;
}
.popup-learningcheck .options .list .result.correct {
  border: solid 2px green;
}
.popup-learningcheck .options .list .result.correct .correct {
  display: block;
}
.popup-learningcheck .options .list .result.incorrect {
  border: solid 2px red;
}
.popup-learningcheck .options .list .result.incorrect .incorrect {
  display: block;
}
.popup-learningcheck .options .list .option {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 1px;
  border: solid 2px #DDD;
  background: white;
  line-height: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.popup-learningcheck .options .list .option img {
  height: 100px;
  width: unset;
  margin-right: 1rem;
}
.popup-learningcheck .options .list .option.no-pic img {
  display: none;
}
.popup-learningcheck .options .list .option.correct {
  border-color: green;
  background: green;
  color: #FFF;
}
.popup-learningcheck .options .list .option.answer-correct {
  border-color: green;
  background: green;
  color: #FFF;
}
.popup-learningcheck .options .list .option.answer-incorrect {
  border-color: red;
  background: red;
  color: #FFF;
}
.popup-learningcheck .options .list .option:hover {
  border: solid 2px #32A086;
}
.popup-learningcheck .options .list .option.active {
  border: solid 2px #32A086;
}
.popup-learningcheck .options .list.no-pic .option img {
  display: none;
}
.popup-learningcheck .options .list.grid {
  display: flex;
  justify-content: space-between;
}
.popup-learningcheck .options .list.grid .option {
  width: 32%;
  display: block;
}
.popup-learningcheck .options .list.grid .option img {
  width: 100%;
  height: unset;
  margin-right: 0;
}
.popup-learningcheck .options.no-pic .pics {
  display: none;
}
.popup-learningcheck .options.no-pic .list {
  width: 100%;
}
.popup-learningcheck .options.no-pic .list.grid {
  width: 100%;
}
.popup-learningcheck .btns {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}