.footer-middle--wrapper {
  display: flex;
  width: 100%;
  padding: 24px 16px !important;
  background-color: #eaecee;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  align-self: stretch;

  > .left {
    flex: 1;

    color: var(--Colors-Base-Black, #17191c);
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.035px;
    text-transform: capitalize;
  }

  > .right {
    display: flex;
    width: 100%;
    max-width: fit-content;
    gap: 10px;

    > svg > path {
      fill: #000;
    }
  }
}

.dark-mode .footer-middle--wrapper {
  background-color: #1b1b1b;

  > .left {
    color: var(--Colors-Base-White, #fff);
  }

  > .right > svg > path {
    fill: #fff;
  }
}
