/*Header*/
.header-div {
    background-color: white;
}

.header-image {
  box-sizing: content-box;
  padding: 16px 0;
  height: 36px;
}

/*Footer*/
#footer-fix-container {
  position: relative;
  min-height: 100vh;
}

#footer-fix-content-wrap {
  padding-bottom: 66px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 66px;
}

.footer-div {
  box-sizing: content-box;
  background-color: #CC4744;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-text,
.footer-text span,
.ecard-privacy-policy,
.ecard-terms-of-service {
  font-size: 15px;
  color: white;
}

/* Loading Icon */
.submission-spinner {
  width: 20px;
  height: 20px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}