/* MOBILE TABLE */
@media only screen and (max-width: 800px) {
  /* Force table to not be like tables anymore */
  .table-striped table,
  .table-striped thead,
  .table-striped tbody,
  .table-striped th,
  .table-striped td,
  .table-striped tr {
  display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .table-striped thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
  }

  .table-striped tr { border: 1px solid #ccc; }

  .table-striped td {
  /* Behave like a "row" */
  border: none !important;
  border: 0px solid #eee !important;
  position: relative !important;
  padding-left: 40% !important;
  white-space: normal;
  text-align:left;
  }

  .table-striped td:before {
  /* Now like a table header */
  position: absolute;
  /* Top/left values mimic padding */
  top: 6px;
  left: 6px;
  width: 40% !important;
  padding-right: 10px;
  white-space: nowrap;
  text-align:left;
  font-weight: bold;
  }

  /*
  Label the data
  */
  .table-striped td:before { content: attr(data-title); }
}


.menu-left {
    margin-bottom: 1em;
}

.menuBtn {
	cursor: pointer;
}

.subHeaderBtn {
	float:right;
	margin: 0 10px;
}

.priorityCell{
    text-align: center;
}

.editCell{
    text-align: center;
}

.editCell span{
    cursor: pointer;
}

.editCell span:hover {
    color: #029acf !important;
}

.removeCell{
    text-align: center;
}

.removeCell span{
    cursor: pointer;
}

.removeCell span:hover{
    color: #E40000;
}


.label {
    opacity: 0.2;
    padding: 10px 14px;
    margin-right: 2px;
    font-weight: normal;
    cursor: pointer;
}

.label:hover, .label:active {
	opacity: 1 !important;
}

.selectedLabel {
	opacity: 1 !important;
}

input.uploadFileH{
    position: relative;
    display: inline-block;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

input.uploadFileHMob, input.uploadFileHMob_2, input.uploadFileH_2{
    position: relative;
    display: inline-block;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

.alertHolder {position: fixed; top: 50px; right: 20px; width: 350px; z-index: 9999;}
.alert {width: 350px;}


div.input-group[class*="col-"]{
    padding-left: 15px;
    padding-right: 15px;
}

.sectionTitle{
    margin-top: 3em;
}

.submenuItem{
    padding-left: 30px;
    border: none;
    background-color: inherit;
}

/*************** NPROGRESS *****************/
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #ce322f;

  position: fixed;
  z-index: 10;
  top: 42px;
  left: 0;

  width: 100%;
  height: 2px;
}