.paddedDivs div { padding:4px; font-size:100%; line-height:140%; }
.paddedDivs .btn { margin-bottom:0px; } 
.blueback.paddedDivs div { color:white; }
.greenback.paddedDivs div { background-color:#360; color:white; }
.btn-green { background-color:#360; border-color:#360; }
.btn-green:hover { color:#360; border-color:#360; }
.green { color:#360; }
.green-check { color:#84BD05; }
.blue-check { color: #003f7c; }
.gold-check { color:#edb118; }
.teal-check { color:#046c7c; }
.orange-check { color:#dc4405; }

.ltgreenback { background-color:#d5e1d3; }
.ltltgreenback { background-color:#e5f2ed; }

.gold h2:before,
h2.gold:before {
    background: #edb118;
}
i.fa-3x { margin-right:16px; }

.loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
.loader--dot:first-child {
  background-color: #000000;
  animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
  background-color: #807f83;
  animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
  background-color: #b6c900;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
  background-color: #3cb6ce;
  animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
  background-color: #fcb816;
  animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
  background-color: #c0257d;
  animation-delay: 0s;
}
.loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
}
.loader--text:after {
  content: "Processing";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Processing";
  }
  25% {
    content: "Processing.";
  }
  50% {
    content: "Processing..";
  }
  75% {
    content: "Processing...";
  }
}
