  .dropZone {
  background-color: rgba(29,78,137,0.15);
  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(208,208,208,1);
  margin: 10px 0;
}

.draggable, .dropZone .draggable {
  background-color: #00adb5;
  border-radius: 6px;
  color: rgba(255,255,255,1);
  cursor: pointer;
  display: inline-block;
  font-size: 1.2em;
  padding: .5em;
  text-align: center;
  z-index: 2;
}

.draggable {
  cursor: move;
}

.dropZone .draggable {
  height: auto!important;
  margin-bottom: 6px;
}

.dropZone .draggable:last-child {
  margin-bottom: 0;
}

#statementStack {
  text-align: center;
  margin-bottom: 20px;
}

.card-description {
  margin: 10px 0;
}

h4 {
  font-size: 20px;
}

/* Tablet */
@media(min-width: 768px){

  .draggable {
    width: 133px!important;
  }

  .dropZone .draggable {
    width: 122px!important;
  }

}


/* Desktop */
@media(min-width:992px){

  .draggable {
    width: 188px!important;
  }

  .dropZone .draggable {
    width: 166px!important;
  }

  h4 {
    font-size: 24px;
  }

}


/* Large Desktop */
@media(min-width:1200px){

  .draggable {
    width: 236px!important;
  }

  .dropZone .draggable {
    width: 222px!important;
  }

}


/* Print */
@media print {


}