/* Centre dotted line */

.here:after {
  content: "";
  position: absolute;
  z-index: 1000;
  top: 10%;
  bottom: 0;
  left: 50%;
  border-left: 2px dotted rgba(77, 80, 87, 0.5);
  transform: translate(-50%);
  -ms-transform: translate(-50%); /* IE 9 */
  -webkit-transform: translate(-50%); /* Safari */

}
div.here {
  position: relative;
  text-align: center;
  z-index: auto;
}

/* End od Centre dotted line */

/* Statement Stack */
.dropZone {
  background-color: rgba(99, 102, 109, 0.15);
  border-radius: 4px;
  margin-bottom: 1em;
  min-height: 500px;
  padding: 1em;
  text-align: center;
}
.draggable, .dropZone .draggable {
  background-color: rgba(77, 80, 87, 0.8);
  border-radius: 4px;
  color: #FFF;
  cursor: move;
  display: inline-block;
  font-size: 16px;
  padding: .5em;  /*text-align: center;*/
  z-index: 3000;
  margin: 2px;
}
.draggable {
  position: absolute;
  margin: 0 auto;
  top: 0px;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}

/*.dropZone .draggable {
  height: auto!important;
  margin-bottom: 6px;
  width: 96%!important;
}*/
.dropZone .draggable:last-child {
  margin-bottom: 0;
}
#statementStack {
  text-align: center;
}
.alert {
  margin: 1em 0 0;
  font-weight: bold;
}
.alert-danger {
  border: 1px solid #a94442;
}
.alert-success {
  border: 1px solid #3c763d;
}