@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer .footer-top {
  padding-top: 35px;
  padding-bottom: 40px;
  background-color: #373737;
}
footer .footer-top p {
  line-height: 1.2em;
  margin-bottom: 16px;
  color: #FFFFFF;
}
footer .footer-top .container {
  text-align: left;
}
footer .footer-bottom {
  background-color: #666666;
}
footer .footer-bottom a.ot-sdk-show-settings {
  cursor: pointer;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  padding: 7px 0;
  margin: 0;
  list-style: none;
}
footer ul li {
  margin-right: 13px;
  text-align: center;
}
footer ul li a {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  white-space: nowrap;
  display: inline-block;
  padding: 4px 0;
  font-style: normal;
}
footer ul li a:before {
  margin-right: 2px;
  display: inline-block;
  content: url("/Icons/footer-arrow.svg");
}
footer ul li a:hover {
  text-decoration: underline;
}
footer ul li:last-child {
  font-size: 14px;
  color: #FFFFFF;
  margin-left: auto;
  margin-right: 0;
  padding: 4px 0;
}
@media (max-width: 992px) {
  footer ul {
    justify-content: center;
  }
  footer ul li:last-child {
    margin-left: 0;
    flex-basis: 100%;
  }
}