/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
footer {
  position: relative;
  /*&:before { 
		content: "";
		background: url(../../../../../../../content/dam/atvi/tony-hawk/alcatraz/common/nav/NavBG.png) center center repeat-x;
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        rotate: 180deg;
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    &:after {
		content: "";
        height: 95%;
        width: 100%;
        bottom: 0;
        left: 0;
        background: #000;
        position: absolute;

        @media screen and (max-width: @mobile) {
			height: ~"calc(100% - 5px)";
        }
    }*/
}
footer .inner-footer {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  max-width: 970px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 50px;
}
footer .legal-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 25px;
  row-gap: 25px;
  font-family: sans-serif;
}
@media screen and (max-width: 600px) {
  footer .legal-links ul {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
footer .legal-links li {
  font-size: .875rem;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  footer .legal-links li {
    width: fit-content;
    margin: 0 auto !important;
  }
}
footer .legal-links li.privacy-check {
  margin-right: 40px;
}
footer .legal-links a,
footer .legal-links button,
footer .legal-links #ot-sdk-btn.ot-sdk-show-settings {
  color: #FFF;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  text-transform: uppercase;
  font-style: italic;
}
footer .legal-links a:hover,
footer .legal-links button:hover,
footer .legal-links #ot-sdk-btn.ot-sdk-show-settings:hover {
  text-decoration: underline;
}
footer .footer-logos ul {
  display: flex;
  gap: 45px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-logos li#atvi-logo img {
  height: 20px;
}
footer .footer-logos li#vicarious-visions-logo {
  display: none;
}
footer .footer-logos li#vicarious-visions-logo img {
  height: 20px;
}
footer .footer-logos li#iron-galaxy-logo img {
  height: 26px;
}
footer .footer-logos li#demonware-logo img {
  height: 14px;
}
footer .footer-logos a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
footer .footer-logos img {
  display: block;
  margin: 0;
  height: 30px;
}
footer .footer-locale-selector {
  text-align: center;
}
footer .footer-locale-selector .atvi-locale-selector .locale-panel p,
footer .footer-locale-selector .atvi-locale-selector .locale-panel li,
footer .footer-locale-selector .atvi-locale-selector .locale-panel a {
  font-size: unset;
  font-family: unset;
}
footer .footer-locale-selector .atvi-locale-selector .locale-panel a {
  padding: 6.5px 0;
}
footer .footer-rating {
  text-align: center;
}
footer .footer-rating ul {
  display: flex;
  gap: 50px;
  justify-content: center;
}
footer .footer-rating ul li.na-only {
  display: none;
}
footer .footer-rating a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
footer .footer-rating img {
  height: 100px;
  display: block;
  width: auto;
  margin: 0 auto;
}
footer .copyright {
  text-align: center;
}
@media screen and (min-width: 600px) {
  footer .copyright {
    width: 80%;
    margin: 0 auto;
  }
}
footer .copyright p {
  color: #FFF;
  font-family: 'Neo Sans Pro Regular';
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
html[lang='en'] footer .footer-rating ul li.na-only {
  display: block;
}
html[lang='ru'] footer .footer-rating ul li a {
  cursor: default;
}
body#brand footer .footer-logos li#vicarious-visions-logo {
  display: block;
}
