/**************************
@yellow			: #dbbd40;
@black          : #000;
**************************/
/*****************************************************************************************

*IMPORT GOOGLE FONTS IN CORE FONTS.LESS file
*Only create mixins of font families in here

.roboto(){ font-family: "Roboto", sans-serif; font-style: normal;}
******************************************************************************************/
footer {
  color: white;
  background-color: #cccccc;
  font-family: "latoregular", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
footer .footer-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 3rem;
}
footer .footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-text .links {
  display: flex;
  flex-direction: column;
}
footer .footer-text .links li {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 10px;
}
footer .footer-text .links li p {
  display: none;
}
footer .footer-text .links li a,
footer .footer-text .links li button,
footer .footer-text .links li span {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}
footer .footer-text .links li a:hover,
footer .footer-text .links li button:hover,
footer .footer-text .links li span:hover {
  cursor: pointer;
  color: black !important;
}
footer .footer-text .links li a:active,
footer .footer-text .links li button:active,
footer .footer-text .links li span:active,
footer .footer-text .links li a:visited,
footer .footer-text .links li button:visited,
footer .footer-text .links li span:visited {
  color: white;
}
@media screen and (min-width: 1024px) {
  footer .footer-text .links {
    flex-direction: row;
  }
  footer .footer-text .links li p {
    display: inline-block;
  }
}
footer .footer-esrb-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 57px;
  height: 75px;
}
footer .button {
  position: absolute;
  display: inline-block;
  background-color: #ccc;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 0 10px #ccc;
  border-radius: 50%;
  padding: 0;
  width: 30px;
  height: 30px;
  left: 50%;
  top: 0;
}
footer .button i {
  position: absolute;
  backface-visibility: hidden;
  background-color: #fff;
  width: 2px;
  border-radius: 2px;
  height: 15px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
footer .button i:before,
footer .button i:after {
  content: "";
  background-color: #fff;
  transform-origin: top center;
  display: inline-block;
  height: 10px;
  margin-left: -1px;
  width: 2px;
  position: absolute;
}
footer .button i:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
footer .button i:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
footer .button:hover {
  background-color: #fff;
}
footer .button:hover i,
footer .button:hover i:before,
footer .button:hover i:after {
  background-color: #ccc;
}
