/**************************
@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;
    }
} 
*/
#shred-loss {
  color: #fff;
  background: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/shred/TSND_BackgroundImage_Purple.webp');
  background-position: bottom;
}
@media (min-width: 1440px) {
  #shred-loss {
    background-repeat: repeat-x;
  }
}
#shred-loss .shred-loss__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  padding: 75px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  #shred-loss .shred-loss__inner {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #shred-loss .shred-loss__inner {
    max-width: 600px;
    padding-inline: 16px;
  }
}
#shred-loss .shred-loss__inner__heading {
  margin-bottom: 25px;
}
#shred-loss .shred-loss__inner__heading h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #shred-loss .shred-loss__inner__heading h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
#shred-loss .shred-loss__inner__heading h2 > span {
  font-family: 'Teko Regular';
}
#shred-loss .shred-loss__inner__heading h2:lang(ru) {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#shred-loss .shred-loss__inner__heading p {
  max-width: 725px;
  display: inline-block;
  margin: 0 auto;
  line-height: 1.6;
}
#shred-loss .shred-loss__inner__video {
  position: relative;
}
