/*
Project: 16-17_3-10
Author: Richy Thomas
Pallette: Dark Blue: rgba(0,103,163,1) , Light Blue: rgba(0,105,165,1); , Orange: rgba(180,63,46,1);
*/


/* Sections */

section {
  display: none;
}


/* Highlighted Text */

.text-highlight {
  background: yellow;
}


/* Table Styles */

table {
  font-size: 16px;
}


/* Finger Frame */

.finger-frame {
  position: relative;
  width: 100%;
  height: 100%;
}


.finger-frame-text {
  width: 50%;
  position: absolute;
  top: 35%;
  left: 25%;
  text-align: center;
}

.finger-frame-text p.lead {
  font-size: 16px;
}


/* Hide/Show Content */

.eye-container a i {
  margin-right: 5px;
}

.eye-container a i.fa-eye-slash {
  color: rgba(194,91,86,1);
}

.eye-container a i.fa-eye {
  color: rgba(51,122,183,1);
}

.collapse.in {
  display: inline;
}


/* Sortable Content */

#order, #activitySortableList {
  border: 1px solid #CCC;
  padding: 15px;
}

#order {
  border-right: 0;
}

#order li {
  border-bottom: 1px solid #CCC;
  height: 100%;
  height: 230px;
  margin-bottom: 15px;
  padding: 10px;
}

#activitySortableList li .swappableElement {
  border-bottom: 1px solid #CCC;
  cursor: move;
  display: block;
  height: 230px;
  padding: 10px;
}

#activitySortableList li:last-child .swappableElement, #order li:last-child {
  border-bottom: 0;
}

.ui-droppable {
  margin-bottom: 15px!important;
}

.ui-draggable.being-dragged {
  background: #FFF;
  cursor: move;
  box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
  -moz-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
  -webkit-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
   z-index: 6;
}

.table-title {
  background: #F5F5F5;
  border: 1px solid #CCC;
  font-size: 16px;
  font-weight: bold;
  height: 98px;
  line-height: 28px;
  padding: 20px;
}

.table-title.first {
  border-right: 0;
}

.side-padding {
  padding: 0 15px;
}

.totalCorrectHolder {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.totalCorrectHolder.alert {
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
}

.totalCorrectHolder.alert-warning {
  border: 1px solid #8a6d3b;
}

.totalCorrectHolder.alert-success {
  border: 1px solid #3c763d;
}

/* Tablet */
@media(min-width: 768px){

  #order li, #activitySortableList li .swappableElement {
    font-size: 14px;
    height: 335px;
  }

}


/* Desktop */
@media(min-width:992px){

  #order li, #activitySortableList li .swappableElement {
    font-size: 16px;
    height: 285px;
  }

  .table-title {
    height: 70px;
  }

  .finger-frame-text p.lead {
    font-size: 19px;
  }

}


/* Large Desktop */
@media(min-width:1200px){

  #order li, #activitySortableList li .swappableElement {
    height: 230px;
  }

  .finger-frame-text {
    left: 27%;
    width: 46%;
  }

  .finger-frame-text p.lead {
    font-size: 25px;
  }

}


/* Print */
@media print {



}