.bg-custom {
  background-color: #87c8a5 !important;
}

.text-custom {
  color: #3a7364 !important
}

.spinner {
  display: none;
  border: 12px solid #ff3add;
  border-radius: 50%;
  border-top: 12px solid #00ed00;
  border-right: 12px solid #d5fa00;
  border-bottom: 12px solid #0ac5ff;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 50%;
  top: 45%;
  margin-left: -30px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
  /* Margin bottom must match footer height */
  margin-bottom: 2rem;
  padding: 25px;
}

html {
  position: relative;
  min-height: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2rem;
  background-color: #646464;
  color: #dddddd;
}