/* Footer */
footer {
  min-height: 86px;
  padding: 20px 0;
  background-color: var(--footerColor)
}

footer hr {
  display: none;
  width: 100%;
  height: 3px;
  background: var(--white) !important;
  margin: 10px 0 !important;
}

footer .cookies-settings {
  cursor: pointer;
}

footer svg {
  font-size: 20px;
}

footer h5, footer svg, footer a {
  color: var(--white) !important
}

@media only screen and (max-width: 575px) {
  footer {
    min-height: 0;
    padding: 24px 0;
  }

  footer .container {
    flex-direction: column;
  }

  footer .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  footer hr {
    display: block;
  }
}
