@charset "utf-8";
/* CSS Document */

.dropZone {
  background-color: #cad8e4;
  border-radius: 4px;
  margin-bottom: 1em;
  min-height: 150px;
  padding: 10px;
  text-align: center;
}

.draggable, .dropZone .draggable {
  background-color: #005e75;
  border-radius: 4px;
  color: #FFF;
  cursor: move;
  display: inline-block;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  z-index: 2;
}

.draggable {
  width: 100%;
}

.dropZone .draggable {
  height: auto!important;
  margin-bottom: 6px;
  width: 96%!important;
}

.dropZone .draggable:last-child {
  margin-bottom: 0;
}

#statementStack {
  text-align: center;
}

.total-correct, .all-correct {
	display: none;
}

.alert {
  margin: 1em 0 0;
  font-weight: bold;
}

.alert-danger {
  border: 1px solid #a94442;
}

.alert-success {
  border: 1px solid #3c763d;
}