/*Shell Styling */

#edgefinityContentPane {
  position: absolute;
  top: 60px;
  width: 100%;
  height: calc(100% - 100px);
  padding: 0;
}

/*Dashboard/Homepage Styling */

#main-hero {
  max-height: 300px;
  margin-top: -10px;
  overflow-y: hidden;
  background-image: url("/assets/images/main_bg.png");
  background-color: #222;
  box-shadow: inset 0 0 80px black;
}

#hero-text {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.7;
  padding: 10px 50px 50px 50px;
}

.dashboard-section {
  max-width: 950px;
  padding: 20px 20px 100px 20px;
  float: none;
  margin: -80px auto auto auto;
  color: #ffffff;
}

.dashboard-panel {
  cursor: pointer;
}

.dashboard-panel:hover {
  filter: grayscale(45%)
}

.dashboard-header {
  background-repeat:no-repeat;
  background-size: cover;
  height: 100px;
}

.dashboard-panel-body {
  min-height: 190px;
  max-height: 100%;
  padding: 10px 20px 10px 20px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

#img-upload{
    width: 100px;
}
.btn-ef {
  color: #fff;
  background-color: #e65100;
  border-color: #e65100;
}
.btn-ef:focus,
.btn-ef.focus {
  color: #fff;
  background-color: #e65100;
  border-color: #c84600;
}
.btn-ef:hover {
  color: #fff;
  background-color: #c84600;
  border-color: #c84600;
}
.btn-drk-ornge {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #000000;
}
.btn-drk-ornge:focus,
.btn-drk-ornge.focus {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #000000;
}
.btn-drk-ornge:hover {
  color: #fff;
  background-color: #0b0b0b;
  border-color: #000000;
}
.panel-ef {
  border-color: #cc0000;
}
.panel-ef > .panel-heading {
  color: #fff;
  background-color: #cc0000;
  border-color: #cc0000;
}
.panel-ef > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cc0000;
}
.panel-ef > .panel-heading .badge {
  color: #cc0000;
  background-color: #fff;
}
.panel-ef > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cc0000;
}
.panel-drk-ornge {
  border-color: #000000;

background-color: #1a1a1a;
  color: #ffffff;
}
.panel-drk-ornge > .panel-heading {
  color: #e65100;
  background-color: #1a1a1a;
  border-color: #000000;
}
.panel-drk-ornge > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #222222;
}
.panel-drk-ornge > .panel-heading .badge {
  color: #222222;
  background-color: #fff;
}
.panel-drk-ornge > .panel-footer + .panel-collapse > .panel-body {
  	background-color: #080808;
	border-bottom-color: #222222;
}
.table-hover-drk > tbody > tr:hover {
  background-color: #444444;
}
.well-ef {
  min-height: 20px;
  padding: 10px;
  color: #ffffff;
  background-color: #1a1a1a;
  border: 1px solid #222222;
  border-radius: 0px;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(40,40,40, 0.9);
    overflow-y: scroll;
	overflow-x: hidden;
    transition: 0.5s;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
	text-decoration: none;
    right: 45px;
    font-size: 30px;
	color: #ffffff;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }

/* Custom Checkboxes */
}
.checkbox {
  padding-left: 20px; }
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
    padding-left: 5px; }
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 0px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
      color: #555555; }
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";}
.checkbox input[type="checkbox"]:indeterminate + label::after,
.checkbox input[type="radio"]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 0px;
  margin-left: -16.5px;
  margin-top: 7px;
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
      opacity: 0.45; }
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
        cursor: not-allowed; }
.checkbox.checkbox-circle label::before {
    border-radius: 50%; }
.checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7; }
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #cc0000;
  border-color: #cc0000; }
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de; }
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox input[type="checkbox"]:checked + label::before,
.checkbox input[type="radio"]:checked + label::before {
  background-color: #e65100;
  border-color: #e65100; }
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  color: #fff; }

  .checkbox-alt input[type="checkbox"]:checked + label::before,
.checkbox-alt input[type="radio"]:checked + label::before {
  background-color: #ffffff;
  border-color: #ffffff; }
.checkbox-alt input[type="checkbox"]:checked + label::after,
.checkbox-alt input[type="radio"]:checked + label::after {
  color: #000000; }

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c; }
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before,
.checkbox-danger input[type="radio"]:indeterminate + label::before {
  background-color: #cc0000;
  border-color: #cc0000;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before,
.checkbox-info input[type="radio"]:indeterminate + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after,
.checkbox-info input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before,
.checkbox-warning input[type="radio"]:indeterminate + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before,
.checkbox-success input[type="radio"]:indeterminate + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after,
.checkbox-success input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox input[type="checkbox"]:indeterminate + label::before,
.checkbox input[type="radio"]:indeterminate + label::before {
  background-color: #e65100;
  border-color: #e65100;
}

.checkbox input[type="checkbox"]:indeterminate + label::after,
.checkbox input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}
.radio {
  padding-left: 20px; }
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
    padding-left: 5px; }
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #e65100;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
      transition: border 0.15s ease-in-out; }
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #e65100;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
      transform: scale(1, 1); }
.radio input[type="radio"]:disabled + label {
      opacity: 0.65; }
.radio input[type="radio"]:disabled + label::before {
        cursor: not-allowed; }
.radio.radio-inline {
    margin-top: 0; }

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7; }
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7; }
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7; }

.radio-danger input[type="radio"] + label::after {
  background-color: #cc0000; }
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #cc0000; }
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #cc0000; }

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de; }
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de; }
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de; }

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e; }
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e; }
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e; }

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c; }
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c; }
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c; }

.radio-ef input[type="radio"] + label::after {
  background-color: #e65100; }
.radio-ef input[type="radio"]:checked + label::before {
  border-color: #e65100; }
.radio-ef input[type="radio"]:checked + label::after {
  background-color: #e65100; }

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c"; }
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff; }
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}
.modal-header-orange {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #e65100;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
}
.modal-header-drk {
	  color: #e65100;
    background-color: #1a1a1a;
    border-color: #000000;
    padding:9px 15px;
    border-bottom:1px solid #000000;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #e65100;
}

.modal-header-danger {
	color:#ffffff;
	font-size: 24px;
    padding:9px 15px;
    background-color: #cc0000;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
}
.modal-header-warning {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #f0ad4e;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
}
.modal-header-ef {
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #f1f1f1;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
     border-top-left-radius: 0px;
     border-top-right-radius: 0px;
}
.navbar-login
{
    width: 100%;
	min-width:  305px;
    padding: 10px;
    padding-bottom: 0px;
}

.navbar-login-session
{
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
}

.icon-size
{
    font-size: 87px;
}
.fadeout {
    position: relative;
    bottom: 4em;
    height: 4em;
    background: -webkit-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}
.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
  }
.form-signin input[type="text"] {
  margin-bottom: 10px;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
}
footer {
    text-align:center;
    left: 0;
    bottom: 0;
    width: 100%;
}

.btn-press {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-press:focus,
.btn-press.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-press:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-press:active,
.btn-press.active,
.open > .dropdown-toggle.btn-press {
  color: #ffffff;
  background-color: #e65100;
  border-color: #c84600;
  text-decoration: none;
}
.btn-press:active:hover,
.btn-press.active:hover,
.open > .dropdown-toggle.btn-press:hover,
.btn-press:active:focus,
.btn-press.active:focus,
.open > .dropdown-toggle.btn-press:focus,
.btn-press:active.focus,
.btn-press.active.focus,
.open > .dropdown-toggle.btn-press.focus {
  color: #ffffff;
  background-color: #e65100;
  border-color: #c84600;
  text-decoration: none;
}
.btn-press:active,
.btn-press.active,
.open > .dropdown-toggle.btn-press {
  background-image: none;
}
.btn-press.disabled:hover,
.btn-press[disabled]:hover,
fieldset[disabled] .btn-press:hover,
.btn-press.disabled:focus,
.btn-press[disabled]:focus,
fieldset[disabled] .btn-press:focus,
.btn-press.disabled.focus,
.btn-press[disabled].focus,
fieldset[disabled] .btn-press.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-press .badge {
  color: #fff;
  background-color: #333;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 0px 0px 0px;
    -moz-border-radius: 0 0px 0px;
    border-radius: 0 0px 0px 0px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 0px 0 0px 0px;
    -moz-border-radius: 0px 0 0px 0px;
    border-radius: 0px 0 0px 0px;
}
ul.nav-pills {
  font-size: 22px;
  margin: 20px;
  position: fixed;
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  }
.carousel-linked-nav,
.item img {
  display: block;
  margin: 0 auto;
}
#efslider .slider-selection {
	background: #b25400;
}
#efslider .slider-handle {
	background: #e65100;
}
#temperature-slider .slider-selection {
	background: #9e0000;
}
#temperature-slider .slider-handle {
	background: #cc0000;
}
.tab-content > .tab-pane {
  border: none;
  padding: 0px;
  box-shadow: none;
  overflow:visible;
}
.dropdown-submenu {
    position: relative;
	border-radius: 0px;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
	border-radius: 0px;
}
ul.nav-pills {
  font-size: 22px;
  margin: 20px;
  position: fixed;
  padding: 10px;
  background-color: #171717;
  border: 1px solid #000000;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  }
.modal-body-danger {
  position: relative;
  padding: 20px;
  background-color: #ffffff;
}
.modal-footer-danger {
  padding: 10px;
  text-align: right;
  border-top: 1px solid #c0c0c0;
  background-color: #ffffff;
}
.well-danger {
  min-height: 20px;
  padding: 9px;
  margin-bottom: 20px;
  background-color: #efefef;
  border: 1px solid #c9c9c9;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.list-group-item-alert {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #efefef;
  border: 1px solid #c9c9c9;
  color: #171717;
}
.list-group-item-alert:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.list-group-item-alert:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
a.list-group-item-alert,
button.list-group-item-alert {
  color: #171717;
}
a.list-group-item-alert .list-group-item-alert-heading,
button.list-group-item-alert .list-group-item-alert-heading {
  color: #ffffff;
}
a.list-group-item-alert:hover,
button.list-group-item-alert:hover,
a.list-group-item-alert:focus,
button.list-group-item-alert:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #cc0000;
  border-color: #9b0000;}
button.list-group-item-alert {
  width: 100%;
  text-align: left;
}
.list-group-item-alert.disabled,
.list-group-item-alert.disabled:hover,
.list-group-item-alert.disabled:focus {
  background-color: #adafae;
  color: #171717;
  cursor: not-allowed;
}
.list-group-item-alert.disabled .list-group-item-alert-heading,
.list-group-item-alert.disabled:hover .list-group-item-alert-heading,
.list-group-item-alert.disabled:focus .list-group-item-alert-heading {
  color: inherit;
}
.list-group-item-alert.disabled .list-group-item-alert-text,
.list-group-item-alert.disabled:hover .list-group-item-alert-text,
.list-group-item-alert.disabled:focus .list-group-item-alert-text {
  color: #888888;
}
.list-group-item-alert.active,
.list-group-item-alert.active:hover,
.list-group-item-alert.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #cc0000;
  border-color: #9b0000;
}
.list-group-item-alert.active .list-group-item-alert-heading,
.list-group-item-alert.active:hover .list-group-item-alert-heading,
.list-group-item-alert.active:focus .list-group-item-alert-heading,
.list-group-item-alert.active .list-group-item-alert-heading > small,
.list-group-item-alert.active:hover .list-group-item-alert-heading > small,
.list-group-item-alert.active:focus .list-group-item-alert-heading > small,
.list-group-item-alert.active .list-group-item-alert-heading > .small,
.list-group-item-alert.active:hover .list-group-item-alert-heading > .small,
.list-group-item-alert.active:focus .list-group-item-alert-heading > .small {
  color: inherit;
}
.list-group-item-alert.active .list-group-item-alert-text,
.list-group-item-alert.active:hover .list-group-item-alert-text,
.list-group-item-alert.active:focus .list-group-item-alert-text {
  color: #d5ecf7;
}
ul.alert {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #000000;
}

ul.alert li {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  background: #eee;
  font-size: 18px;
  transition: 0.2s;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul.alert li::before {
    position: absolute;
    top: 20px;
    left: 10px;
    content: ""; /* use the hex value here...  &#10079; */
    font-size: 16px;
    color: #000;
    line-height: 16px;
    text-align: center;
}

ul.alert li:nth-child(odd) {
  background: #f9f9f9;
}

ul.alert li:hover {
  background: #ddd;
}

ul.alert li.checked {
    background: #6a6a6a;
    color: #fff;
    text-decoration: none;
}

ul.alert li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 14px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}


ul.alert li.checkedGreen {
  background: #006a00;
  color: #fff;
  text-decoration: none;
}

ul.alert li.checkedGreen::before {
  content: '';
  position: absolute;
  border-color: #0f0;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 14px;
  left: 16px;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}

ul.alert li.notChecked {
  background: #6a0000;
  color: #fff;
  text-decoration: none;
}

ul.alert li.notChecked::before {
    position: absolute;
    top: 20px;
    left: 10px;
    content: "\274c"; /* use the hex value here...  &#10060; */
    font-size: 16px;
    color: #D00;
    line-height: 16px;
    text-align: center;
}

ul.listPicker {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #000000;
}

ul.listPicker > li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    background: #eee;
    font-size: 18px;
    transition: 0.2s;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul.listPicker > li:nth-child(odd) {
    background: #f9f9f9;
}

ul.listPicker > li:hover {
    background: #ddd;
}

ul.listPicker > li.checked {
    background: #6a6a6a;
    color: #fff;
}

ul.listPicker > li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
    margin-top: 6px;
}

div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
	color: #000000;
}

div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

div.tab button:hover {
    background-color: #ddd;
}

div.tab button.active {
    background-color: #cc0000;
	color: #ffffff;
}

.tabcontent {
    padding: 0;
    border: 1px solid #ccc;
    border-top: none;
    margin-bottom: 20px;

}
.dropdown-menu > li.submit > a {
  text-decoration: none;
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #ffffff;
  white-space: nowrap;
}
.dropdown-menu > li.submit > a:hover,
.dropdown-menu > li.submit > a:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #bc0000;
}
ul.checklist {
  margin: 0;
  padding: 0;
}
ul.checklist li {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  background: #eee;
  font-size: 18px;
  transition: 0.2s;

	-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
ul.checklist li:nth-child(odd) {
  background: #e0e0e0;
}
ul.checklist li.checked {
  background: #888;
  color: #fff;
  text-decoration: none;
}
ul.checklist li.checked::before {
  content: '';
  position: absolute;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 10px;
  left: 16px;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}
.delete {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px 12px 16px;
}
.delete:hover {
  background-color: #bc0000;
  color: white;
}

.badge-round {
    border-radius: 10px;
    margin-top: -5px;
    float: right;
}

.page-header {
    padding-left: 20px;
    margin-bottom: 10px;
}

.page-button {
    padding-top: 5px;
    padding-bottom:15px;
}

.tab-content {
  padding: 25px;
  background-color: #171717;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px;
}

.table-checkbox {
  width: 20px;
}

.search-console {
  padding-bottom:10px;
  max-width:400px;
}

.dialog {
  margin-bottom: 0;
}

.well-left {
  padding-left: 15px;
}

/* Settings Page */

.test-email {
  margin-bottom: 15px;
  display: none;
}

/* Infrastructure Page */

.tab-button {
  padding:15px;
}

.modal-tab {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.profile-image {
  max-width: 40px;
  max-height: 40px;
}

.profile-button {
  margin-right: 20px;
  margin-bottom: 2px;
}

.add-op {
  margin-bottom: 15px;
}

.infrastructureButton {
  cursor: pointer;
}

/* History Page */
.cb {
  float: right;
  z-index: 1;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #343434;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e65100;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e65100;
  cursor: pointer;
}

.speed-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #939393;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;

}

.speed-slider:hover {
  opacity: 1;
}

.speed-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e65100;
  cursor: pointer;
}

.speed-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e65100;
  cursor: pointer;
}

/*Reaction + Trigger Pages */
.internal-well {
  max-height: 500px;
  overflow-y: auto;
}

/*User Dialog */
.profile {
  width: 165;
  height: 165;
  margin: auto;
  border: 3px solid #373737;
  margin-bottom:10px;
  -webkit-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

.icon {
  width: 32;
  height: 32;
  padding-bottom:10px;
  margin: auto;
}

.change-button {
  width: 73px;
}

#user-tab {
  margin-bottom: 0;
}

.password-glyph {
  display: initial;
  position: absolute;
  margin-right: 15px;
}

.password-text {
  text-align: right;
  margin-top: 10px;
  padding: 15px;
  font-size: 11px;
}

.scale-buttons {
  position: absolute;
  top: 12px;
  right: 30px;
  opacity: 0.9;
}

.shadow {
  box-shadow: 2px 2px 5px #181818;
}

.no-border {
  border: 0px;
}

/* Workflow Styling */
#grid {
  background-image: url(assets/images/map_bg.png);
  overflow-y: auto;
  height: calc(100vh - 51px);
  border-right: 10px solid #101010;
}

.workflow-name {
  background: none;
  border: none;
  border-bottom: 1px solid #000;
}

.node-panel {
  background-color: #222222;
  overflow-y: hidden;
  height: calc(100vh + 21px);
  padding-right: 0;
  border-right: 10px solid #101010;
}

.event {
  background-color: #200600;
  padding: 10px;
}

.event-node {
  background-color: #ee3d14;
  padding: 0;
}

.logic {
  background-color: #0f2e33;
  padding: 10px;
}

.logic-node {
  background-color: #3cb9cc;
  padding: 0;
}

.data {
  background-color: #17102c;
  padding: 10px;
}

.data-node {
  background-color: #855afe;
  padding: 0;
}

.output {
  background-color: #132503;
  padding: 10px;
}

.output-node {
  background-color: #6dd213;
  padding: 0;
}

.button-node {
  margin: 0 10px 0 0;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(126, 239, 104, 0);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0) inset, 0 0 8px rgba(126, 239, 104, 0);
  outline: 0 none;
}