@media print {
  /* Hide everything in the body when printing... */
  body.printing * { display: none; }
  /* ...except our special div. */
  body.printing #print-me { display: block; }
}

@media screen {
  /* Hide the special layer from the screen. */
  #print-me { display: none; }
}
.filterBtn {
  padding: 10px 20px;
  width: 150px;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #dbdbdb;
  float: left;
  margin-right: 10px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.filterBtn.active {
  background-color: #009688;
  color: #ffffff;
}
#output {
}
#output .item {
  display: none;
  border: solid 1px #e1e1e1;
  position: relative;
  float: left;
  margin-right: 20px;
  margin-top: 20px;
  height: 216px;
  width: 722px;
}
#output .item .day {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 35px;
  text-transform: uppercase;
  opacity: 0.1;
  font-weight: bolder;
}
#output .item .rightSide,
#output .item .leftSide {
  position: relative;
  height: 216px;
  padding: 10px;
  box-sizing:border-box;
  float: left;
  width: 360px;
  border-right: solid 1px #e1e1e1;
}
#output .item .rightSide {
  border-right: 0px;
  float: right;
  font-size: 11px;
}
#output .monday.delivery {
  display: block;
}
#output .item .rightSide ul {
  display: -ms-flexbox;           /* IE 10 */
  display: -webkit-flex;          /* Safari 6.1+. iOS 7.1+ */
  display: flex;
  -webkit-flex-flow: wrap column; /* Safari 6.1+ */
  flex-flow: wrap column;
  max-height: 170px;
  margin: 0px;
  padding: 0px;
  list-style: none;   
}

.table-stripped{
  width: 100%;
}

#basic_info .panel-controls {
  display: none;
}
.ui-autocomplete {
  overflow: auto;
  height: 300px;
}

.sm-screen-only {
  display: none;
}

.modal .driverListWrap {
  margin-bottom: 20px;
  max-height: 240px;
  overflow-y: auto;
}

.driver-item{
  margin-bottom: 20px;
}