.ids__footer {
  color: rgba(var(--ids__white-RGB));
  font-size: 0.8em;
  display:flex;
  padding:.5em calc(var(--ids__density) * .6em) 1.5em;
  gap:.8em;
  justify-content:space-between;
  align-items:center;
  width:100%;

  a {
    text-decoration: none;
    color: rgb(var(--ids__white-RGB), .5);
    @media (width < 767px) {
    padding: 0.2em 0;
    }

    &:hover {
        color: rgb(var(--ids__white-RGB));
        text-decoration-color: rgba(var(--ids__main-RGB), 0.2);
        transition: color 0s ease, text-decoration 0s ease;
    }
}

.ids__footnav {
    display:flex;
    justify-content:space-between;
    gap:2.2em;
    align-items:center;
}

@media (max-width: 767px) {
    .ids__footnav {
        display:none
    }
}

.ids__footnav ul {
    display:flex;
    justify-content:space-between;
    gap:inherit;
    align-items:center;
    margin:0;
}

.ids__footnav ul li {
    
    padding: 0;
    margin-bottom: 0;
    
    &::before {
        content: '';
    }

    @media (width < 767px) { 
        font-size: 1em;
    }

}

.ids__footnav-item {
    display:flex;
    justify-content:space-between;
    gap:inherit;
    align-items:center;

}

.ids__copyright {
  font-size: .85em;
  color: rgba(var(--ids__white-RGB), .4);
}