/*
Project: 16-17_2.36b
Activity: Introducing Key Terms
Author: Richy Thomas
*/

#order li, .ui-droppable {
  font-size: 1.2em;
  line-height: 1.3em;
  margin-bottom: 0.2em;
  min-height: 3em;
}

 #activity{
  font-size: 1.1em;
  line-height: 1.2em;
}

.ui-droppable {
  background-color: rgb(178, 3, 196);
  border-radius: 4px;
  border: 1px solid rgb(1, 195, 233);
  color: rgb(253,157,0);
  cursor: move;
  line-height: 3em;
  list-style: none;
  position: relative;
  width: 100%;
}

#order li {
  background-color: rgba(255, 255, 255, .9);
  border: 1px solid #000;
  border-radius: 4px;
  color: rgba(0,0,0,1);
  line-height: 1.4em;
  padding: 0 0.5em;
}

span.swappableElement {
  background: rgb(1, 195, 233);
  border-radius: 4px;
  color: rgb(255,255,255);
  height: 2.9em;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 5;
}

.ui-draggable.being-dragged {
  background: rgba(21,21,21,.7);
  z-index: 6;
  -webkit-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
  -moz-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
  box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
}

.alert {
  border-radius: 6px;
  margin: 1.6em 0 0;
  padding: 9px 12px;
  font-weight: 700;
}

.alert-success {
  border: 1px solid #3c763d;
}

.alert-danger {
  border: 1px solid #a94442;
}

/* Tablet */
@media(min-width: 768px){

.alert {
    margin-bottom: 20px;
  }

}

/* Desktop */
@media(min-width:992px){

  .alert {
    margin-bottom: 0;
  }

  #activityControls {
    text-align: right;
  }

}

/* Large Desktop */
@media(min-width:1200px){



}

/* Print */
@media print {


}