.embed-responsive {
  border: 1px solid #777;
  border-bottom: 0;
}

.img-thumbnail {
    border: 1px solid #999;
    margin-bottom: 20px;
}

.well {
  min-height: 163px;
  border-radius: 6px
}

#activityControls a {
  text-decoration: none;
}


.content, #suggestedAnswer, .suggestedAnswer, #print {
    display: none;
}

.question, .suggestedAnswer {
    font-size: 1.5em;
    padding-bottom: 21px;
}

.suggestedAnswer ul li {
    margin-bottom: 10px
}


/*.contentinput {
    width: 100%;
    min-height: 200px;
    border: solid 1px;
}*/


 #suggestedAnswer.finalScreenDisplay {
    position: relative;
    bottom: 0;
    display: block;
    counter-reset: my-counter;
}

div.suggestedAnswer.finalScreenDisplay:first-child {
    border-top: 1px dashed #000;
}

.suggestedAnswer.finalScreenDisplay {
    display: inline-block;
    border-bottom: 1px dashed #000;
}

.suggestedAnswer.finalScreenDisplay:before {
    content: counter(my-counter, decimal);
    counter-increment: my-counter;
    left: 0;
    top: 0;
    font-size: 30px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
    padding-right: 5px;
}


/* Tablet */
@media(min-width: 768px){

  .btn {
    margin-right: 10px;
  }

  .btn.pull-right {
    margin-right: 0;
    margin-left: 10px;
  }

}


@media print {

  .well {
    min-height: 20px;
  }

  .img-thumbnail {
    display: none;
  } 

  .col-xs-3, .col-xs-9 {
    width: 100%!important;
  }


  .content {
      page-break-inside: avoid;
      display: inline-block;
  }

  #question {
      page-break-after: always;
  }

  #suggestedAnswer {
      position: relative;
      bottom: 0;
      display: block;
      counter-reset: my-counter;
  }

  div.suggestedAnswer:first-child {
      border-top: 1px dashed #000;
  }

  .suggestedAnswer {
      display: inline-block;
      border-bottom: 1px dashed #000;
  }

  .suggestedAnswer:before {
      content: counter(my-counter, decimal);
      counter-increment: my-counter;
      left: 0;
      top: 0;
      font-size: 30px;
      font-family: inherit;
      font-weight: 500;
      line-height: 1.1;
      color: inherit;
      padding-right: 5px;
  }

}