#header {
  height: 100px;
  background-image: url("img/header.jpg");
  background-position: center center;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#header p {
  margin: 0;
  text-shadow: 0px 0px 5px black, 0px 0px 10px black, 0px 0px 5px black, 0px 0px 15px black;
  font-size: 24px;
  color: white;
  font-weight: bold;
  line-height: 24px;
  text-transform: uppercase;
}

#header p:last-of-type {
  font-size: 12px;
  position: absolute;
  bottom: 0;
  text-transform: lowercase;
}

.success {
  background-color: #8BC34A;
  border: 1px solid #558B2F;
  border-radius: 3px;
  color: #558B2F;
  padding: 0 10px;
}

.warn {
  background-color: #F44336;
  border: 1px solid #9C1D1C;
  border-radius: 3px;
  color: #9C1D1C;
  padding: 0 10px;
}

.home ul {
  line-height: 35px;
}

a.btn {
  color: black;
}

a.btn:focus {
  border: none;
  outline: none;
}

.working {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  color: white;
  opacity: 1;
}

.working.ng-hide-remove {
  opacity: 0;
  -webkit-transition: 0.2s linear opacity;
          transition: 0.2s linear opacity;
}

.working.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
}

.working.ng-hide-add {
  opacity: 1;
  -webkit-transition: 0.2s linear opacity;
          transition: 0.2s linear opacity;
}

.working.ng-hide-add.ng-hide-add-active {
  opacity: 0;
}

.working .spinner {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  width: 100px;
  height: 100px;
  z-index: 3000;
}

.working .spinner img {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 72px;
  height: 72px;
}
