.ech-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;

  margin: 0;
  padding: 10px;
  font-size: 14px;
  background: rgba(242, 242, 242, 0.05);
  color: rgb(0, 84, 134);
  border-top: 1px solid rgba(0, 84, 134);

  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  overflow: hidden;
}

.ech-footer-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ech-footer-left,
.ech-footer-right {
  white-space: nowrap;
}


.ech-footer a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

.ech-footer a:hover,
.ech-footer a:focus {
  text-decoration: underline;
}

.ech-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 0.25) 0%,
    rgba(242, 242, 242, 0.25) 40%,
    rgba(242, 242, 242, 0.15) 70%,
    rgba(242, 242, 242, 0.05) 90%,
    rgba(242, 242, 242, 0.00) 100%
  );
}

@media (prefers-color-scheme: dark) {
  .ech-footer {
    background: rgba(60, 60, 60, 0.05);
    color: rgb(242, 242, 242);
    border-top: 1px solid rgba(242, 242, 242);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
  }

  .ech-footer::after {
    background: linear-gradient(
      to bottom,
      rgba(60, 60, 60, 0.25) 0%,
      rgba(60, 60, 60, 0.25) 40%,
      rgba(60, 60, 60, 0.15) 70%,
      rgba(60, 60, 60, 0.05) 90%,
      rgba(60, 60, 60, 0.00) 100%
    );
  }

  .ech-footer a {
    background-color: transparent;
  }
}

@media (max-width: 576px) {
  .ech-footer-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .ech-footer-left,
  .ech-footer-right {
    width: 100%;
  }

  .ech-footer-right {
    margin-top: 8px;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
  }
}
