.ui-draggable:hover {
  opacity: 0.8;
  cursor: pointer;
}
.ui-draggable:active {
  opacity: 0.8;
  cursor: pointer;
}
.quiz-container {
  display: flex;
  flex-direction: row;
  /*flex-wrap: wrap;*/
}
/*.quiz-container .column {
            display: table;
          }
          .quiz-container .column .box {
            display: table-cell;
          }*/
.box {
  border-radius: 5px;
  padding: 15px 10px;
  box-shadow: 0px 2px 4px 0px #cbcbcb;
  border-color: #979797;
  border-width: 1px;
  min-height: 55px;
  display: flex;
  align-items: center;
}
.q-box {
  width: 100%;
  border-style: solid;
}
.a-box {
  position: relative;
  margin-left: auto;
}
.a-box::after {
  content: "";
  width: 30px;
  height: 30px;
  right: -40px;
  position: absolute;
  display: block;
}
.a-box.wrong {
  box-shadow: 0px 0px 6px 1px red;
}
.a-box.correct {
  box-shadow: 0px 0px 6px 1px green;
}
.a-box.wrong::after {
  background-image: url(https://dev1.insurewithcompass.com/wp-content/uploads/2021/03/wrong.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.a-box.correct::after {
  background-image: url(https://dev1.insurewithcompass.com/wp-content/uploads/2021/03/correct.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.a-box,
.an-box {
  border-style: dashed;
  width: 100%;
  padding: 0;
}
.an-box {
  justify-content: center;
  border-width: 3px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  background: linear-gradient(
          90deg,
          rgba(49, 107, 164, 1) 0%,
          rgba(12, 61, 96, 1) 100%
  );
}
/*            .quiz-container .column {
              padding: 0 30px;
            }*/
.quiz-container .questions-column {
  width: 80%;
  margin: 0 auto;
  padding: 0;
}
.quiz-container .answers-column {
  width: 40%;
}
.quiz-container .column .box:not(last-of-type) {
  margin-bottom: 10px;
}
.quiz-container .column .box > .box {
  margin-bottom: 0;
}
.answers-container {
  width:20%;
  padding: 5px 0;
  justify-content: space-evenly;
  gap: 10px;
  border: lightgrey;
  border-style: dotted;
  border-width: 2px;
}
.answers-container .title {
  text-align: center;
}
.answers-container .clue {
  border: 0;
  font-style: italic;
  font-weight: 300;
  color: #808080;
}
.answers-row {
  min-height: 280px;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.answers-row.ui-droppable-hover {
  background: #f9f9f9;
  border: 1px solid #999;
}
.question-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.quiz-container .question-item:not(last-of-type) {
  margin-bottom: 10px;
}
.quiz_result_container h3 strong.full {
  color: green;
}
@media (min-width: 1280px) {
  .a-box,
  .an-box {
    max-width: 250px;
  }
  .an-box {
    margin-bottom: 0;
  }
  .a-box {
    margin-right: calc(30% - 290px);
  }
  .a-box-heading {
    margin-right: calc(30% - 290px);
  }
  .q-box {
    max-width: 70%;
    min-width: 70%;
    margin-right: 40px;
  }
  .quiz-container .questions-column {
    width: 80%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .quiz-footer {
    display: flex;
    justify-content: center;
    font-style: italic;

  }

}
