/* The class for creating a header within the list */
.taskHeader{
  width: 100%;
  min-height:40px;
  position:relative;
  overflow:hidden;
  background-color: #468;
  border-radius: 5px;
  margin-bottom: 6px;
  max-height: 200px;
  opacity: 1;

  transition: all ease-in-out .3s;

  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}

/* The formatting for the title display of the header */
.headerTitle{
  font-family: "Lato-Light","Segoe UI Light","Calibri";
  font-size: 30px;
  color: #FFF;
  margin-left: 0;
  margin-top:5px;
  display: inline-block;
}
