/**************************
@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;
    }
} 
*/
body#play-now #buy-now-container {
  position: relative;
}
body#play-now h1 {
  display: block;
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF;
  text-align: center;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/playnow/orange-header-bg.webp) -18px center no-repeat;
  background-size: 100% 100%;
  padding-top: 25px;
  width: fit-content;
  padding-bottom: 25px;
  margin: 0 auto;
  padding-inline: 60px;
}
@media screen and (max-width: 600px) {
  body#play-now h1 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    text-transform: uppercase;
  }
}
body#play-now h2 {
  display: none;
}
body#play-now .thps-3-4-subpage-playnow #thps-3-4-cards-container .slick-dots {
  bottom: -40px;
}
#playnow-page-container {
  padding-top: 105px;
  padding-bottom: 50px;
  overflow: hidden;
}
#playnow-page-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/playnow/thps-playnow-hero-bg.webp) top center no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1440px;
  height: 543px;
  padding-inline: 16px;
}
#playnow-page-container > .atvi-image,
#playnow-page-container .section-header {
  position: relative;
}
#playnow-page-container #hero-logo-container {
  width: 100%;
  max-width: 490px;
  margin: 0 auto 45px;
}
#playnow-page-container #hero-logo-container img {
  width: 100%;
  display: block;
}
#playnow-page-container .thps-play-now-header {
  margin-bottom: 50px;
}

/**************************
@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;
    }
} 
*/
/*body#play-now {

	&.test-b {

        #play-now-container { display: none; }
        #buy-now-container { display: block; position: relative; }

    }

    //default
    #play-now-container { display: block; }
    #buy-now-container { display: none; }

}*/

