/*
Project: 16-17_1-24
Author: Richy Thomas
Palette: Color: Red: #9D0B0C; Blue: #241D3C;
*/

.content, #suggestedAnswer, .suggestedAnswer, #print {
  display: none;
}

.question, .suggestedAnswer {
  font-size: 1.2em;
}

.question {
  margin-bottom: 10px;
}

.suggestedAnswer {
  margin-bottom: 20px;
}

textarea {
  width: 100%;
  min-height: 100px;
}

.contentinput {
  border: solid 1px;
  margin-bottom: 20px;
  min-height: 100px;
  width: 100%;
}

#suggestedAnswer {
  margin-top: 20px;
}

#suggestedAnswer.finalScreenDisplay {
  bottom: 0;
  counter-reset: my-counter;
  display: block;
  margin-bottom: 30px;
  position: relative;
}

.suggestedAnswer.finalScreenDisplay:before {
  color: inherit;
  content: counter(my-counter, decimal) ".";
  counter-increment: my-counter;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  left: 0;
  line-height: 1.1;
  padding-right: 5px;
  top: 0;
}


/* Tablet */
@media(min-width: 768px){



}


/* Desktop */
@media(min-width:992px){



}


/* Large Desktop */
@media(min-width:1200px){



}


/* Print */
@media print {



}