/*
Project: 16-17_2-5
Activity: Pilgrimage
Author: Richy Thomas
*/

.dropZone {
  background-color: rgba(253,157,0, 0.4);
  border-radius: 6px;
  margin-bottom: 2em;
  min-height: 380px;
  padding: 1em 0 .5em;
  text-align: center;
}

.dropZone h2 {
  color: rgba(51,51,51,1);
  margin-bottom: .5em;
}

.dropZone hr {
  border-color: rgba(21,21,21,1);
  margin: 10px 0;
}

.draggable, .dropZone .draggable {
  background-color: rgba(21,21,21,1);
  border-radius: 6px;
  color: rgb(253,157,0);
  cursor: pointer;
  display: inline-block;
  font-size: 1.1em;
  padding: 1em;
  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 {
  font-weight: bold;
  padding: 12px 15px;
}

.alert-success {
  border: 1px solid #3c763d;
}

.alert-danger {
  border: 1px solid #a94442;
}

#activity-controls {
  text-align: right;
}


/* Tablet */
@media(min-width: 768px){



}

/* Desktop */
@media(min-width:992px){



}

/* Large Desktop */
@media(min-width:1200px){



}

/* Print */
@media print {


}