@import "./variables.css";
.footer-container {
  background-color: var(--footer-background-color);
  position: fixed;
  bottom: 0;
  padding: 5px 10px;
  color: #E0E0E0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.footer {
  display: flex;
  color: #E0E0E0;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  font-family: var(--brand-font);
}

.footer-content {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: right;
  padding-right: 12px;
  font-family: var(--brand-font);
  color: var(--footer-color);
}

.information-text {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  font-family: var(--brand-font);
  color: var(--footer-color);
}

.terms-content {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: right;
  padding-right: 12px;
  font-family: var(--brand-font);
  color: var(--footer-color);
  cursor: pointer;
}

.terms-content:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer {
    justify-content: center;
    flex-direction: column;
  }

  .footer-content {
    align-items: center;
    padding-right: 0;
  }

  .information-text {
    text-align: center;
  }

  .terms-content {
    padding-right: 0;
  }

  .privacy-content {
    padding-left: 12px;
  }
}

/*# sourceMappingURL=Footer.css.map */
