/* Footer */
footer {
  height: 8vh;
  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 {
    height: 12vh;
  }

  footer .container {
    flex-direction: column;
  }

  footer .footer-right {
    text-align: center;
  }

  footer hr {
    display: block;
  }
}