/*
Project: 16-17_3-7
Author: Richy Thomas
Pallette: Blue: rgba(82,85,100,1); Grey: rgba(116,130,143,1); Red: rgba(194,91,86,1); White: rgba(255,255,255,1);
*/


/* Hide page 2 on load */

.page2 {
  display: none;
}

/* Answer object */

.answer {
  background-color: rgba(255,255,255,1);
  border: 1px solid rgba(82,85,100,1);
  color: rgba(82,85,100,1);
  padding: 8px 12px;
  margin-bottom: 5px;
  border-radius: 4px;
  cursor: ns-resize;
}

.answer.non-moveable {
  cursor: default;
}

/* Arrow */

.arrow-title h3 {
  margin: 15px 0;
}

.arrow-svg {
  width: 50%;
  height: 0;
  padding-top: 48%;
  position: relative;
  margin: 65px auto;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
}

/* Sortable List */

#activitySortableList span {
  display: block;
}

.sortable, .un-sortable {
  margin: 30px 0;
}

.sortable li, .un-sortable li {
  margin-bottom: 5px;
}

/* Answer feedback box */

#totalCorrectHolder {
  margin-top: 20px;
}


/* Question/Answer box */

.well-question {
  background-color: #cfcfcf;
  border: 1px solid rgba(82,85,100,.5);
}


#yourAnswer {
  margin-top: 20px;
}

.answerBox {
  font-size: 1.15em;
  height: auto;
  line-height: 1.8em;
  min-height: 120px;
}

.answerBox.form-control:focus {
  border-color: rgba(194,91,86,1);
}

/* Hide Suggested Resposne on Load */

.suggestedResponse {
  display: none;
}


/* Suggested Response styling */

.suggestedResponse {
  display: none;
  margin: 20px 0;
}

.suggestedResponse p:last-child {
  margin: 0;
}


/* Add border to alerts */

.alert-danger {
  border-color: #a94442;
}

.alert-success {
  border-color: #3c763d;
}


/* Tablet */
@media(min-width: 768px){

  #arrow {
    margin: 25px auto;
  }

}


/* Desktop */
@media(min-width:992px){

  #arrow {
    margin: 15px auto;
  }

}


/* Large Desktop */
@media(min-width:1200px){



  #arrow {
    margin: 0 auto;
  }

}


/* Print */
@media print {



}
