/*
Project: 16-17_3-12
Author: Richy Thomas
Color Palette: Violet: #B64286 , Teal: #187466
*/

/* Statement Stack */

.dropZone {
  background-color: #FFF;
  border: 1px solid #B64286;
  border-radius: 4px;
  margin-bottom: 1em;
  min-height: 380px;
  padding: 1em;
  text-align: center;
}

.dropZone h4 {
  margin-bottom: 10px;
  font-size: 2em;
}

.draggable, .dropZone .draggable {
  background-color: #187466;
  border-radius: 4px;
  color: #FFF;
  cursor: move;
  display: inline-block;
  font-size: 1.4em;
  padding: .5em;
  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;
}

.alert {
  margin: 1em 0 0;
  font-weight: bold;
  font-size: 1.3em;
}

.alert-danger {
  border: 1px solid #a94442;
}

.alert-success {
  border: 1px solid #3c763d;
}


/* Tablet */
@media(min-width: 768px){



}

/* Desktop */
@media(min-width:992px){



}

/* Large Desktop */
@media(min-width:1200px){


}

/* Print */
@media print {


}