/**************************
@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;
    }
} 
*/
#thps-overview {
  color: #fff;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 140px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #thps-overview {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #thps-overview {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 768px) {
  #thps-overview {
    padding-top: 40px;
    padding-bottom: 170px;
  }
}
#thps-overview .thps-overview-content h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 3.75rem;
  line-height: 4.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #thps-overview .thps-overview-content h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
#thps-overview .thps-overview-content .slider-header {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
  background-image: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/home/overview-nav-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
@media (min-width: 768px) {
  #thps-overview .thps-overview-content .slider-header {
    width: 80%;
    margin: 0 auto 50px auto;
    background-size: cover;
  }
}
#thps-overview .thps-overview-content .slider-header button {
  color: #f17841;
  padding: 20px 16px 16px;
  transition: color 0.3s ease;
  background: none;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
}
@media (min-width: 480px) {
  #thps-overview .thps-overview-content .slider-header button {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    text-transform: uppercase;
  }
}
#thps-overview .thps-overview-content .slider-header button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 26px;
  left: -5px;
  bottom: 0px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.3s ease;
}
@media screen and (max-width: 768px) {
  #thps-overview .thps-overview-content .slider-header button::after {
    left: -3px;
    bottom: -4px;
  }
}
@media (hover: hover) {
  #thps-overview .thps-overview-content .slider-header button:hover {
    color: #f18449;
  }
  #thps-overview .thps-overview-content .slider-header button:hover::after {
    background-image: url(../../../../../../../../content/dam/atvi/tony-hawk/chicago/home/GameOverview_Tab_Selected_Hover.png);
  }
}
#thps-overview .thps-overview-content .slider-header button.active {
  color: #fff;
}
#thps-overview .thps-overview-content .slider-header button.active::after {
  background-image: url(../../../../../../../../content/dam/atvi/tony-hawk/chicago/home/GameOverview_Tab_Selected.png);
}
@media screen and (max-width: 500px) {
  #thps-overview .thps-overview-content .slider-header button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #thps-overview .thps-overview-content .slider-header button {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    font-size: 10px;
    padding: 13px 5px 10px;
  }
  #thps-overview .thps-overview-content .slider-header button.active {
    background-position: 0px 29px;
  }
}
#thps-overview .thps-overview-content .slick-slider {
  padding: 0 20px;
  margin-bottom: 0;
}
#thps-overview .thps-overview-content .slick-slider .slide {
  text-align: left;
}
#thps-overview .thps-overview-content .slick-slider .slide[data-slide='3'] .playlist-embed {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content {
    display: flex;
  }
}
#thps-overview .thps-overview-content .slick-slider .slide-content .image-frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content .image-frame {
    width: 460px;
  }
}
@media (min-width: 768px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content .image-frame {
    width: 50%;
  }
}
#thps-overview .thps-overview-content .slick-slider .slide-content .image-frame img {
  width: 100%;
  height: auto;
  clip-path: polygon(1% 0%, 98% 0%, 99.5% 99%, 0% 100%);
}
#thps-overview .thps-overview-content .slick-slider .slide-content .image-frame::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/home/image-border-strokes.png');
  background-repeat: no-repeat;
  background-size: contain;
}
#thps-overview .thps-overview-content .slick-slider .slide-content .text-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: #000;
}
@media (min-width: 768px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content .text-content {
    width: 50%;
    padding: 0 0 0 40px;
    background: none;
  }
}
@media (min-width: 1200px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content .text-content {
    padding: 0 0 60px 40px;
  }
}
#thps-overview .thps-overview-content .slick-slider .slide-content .text-content h3 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #thps-overview .thps-overview-content .slick-slider .slide-content .text-content h3 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }
}
#thps-overview .thps-overview-content .slick-slider .slide-content .text-content p {
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1px;
}
#thps-overview .thps-overview-content .slick-slider .slide-content .playlist-embed {
  width: 100%;
}
#thps-overview .thps-overview-content .slick-slider .slick-prev,
#thps-overview .thps-overview-content .slick-slider .slick-next {
  z-index: 5;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: auto;
  bottom: -80px;
  transition: .25s all;
}
#thps-overview .thps-overview-content .slick-slider .slick-prev .slick-prev-icon::before,
#thps-overview .thps-overview-content .slick-slider .slick-next .slick-prev-icon::before,
#thps-overview .thps-overview-content .slick-slider .slick-prev .slick-next-icon::before,
#thps-overview .thps-overview-content .slick-slider .slick-next .slick-next-icon::before {
  content: none;
}
#thps-overview .thps-overview-content .slick-slider .slick-prev:hover,
#thps-overview .thps-overview-content .slick-slider .slick-next:hover {
  scale: 1.1;
}
#thps-overview .thps-overview-content .slick-slider .slick-prev {
  background-image: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-previous.png');
  /*@media (min-width: 1200px) {
                    //left: 640px;
                    left: ~"calc(50% + 40px)";
                }*/
  left: calc(50% - 50px);
}
#thps-overview .thps-overview-content .slick-slider .slick-next {
  left: auto;
  background-image: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-next.png');
  /*@media (min-width: 1200px) {
                    //right: 455px;
                    left: ~"calc(50% + 105px)";
                }*/
  right: calc(50% - 50px);
}
#thps-overview .thps-overview-content .slick-slider .slick-prev:hover,
#thps-overview .thps-overview-content .slick-slider .slick-next:hover {
  background-color: black;
  color: white;
}
html[lang="ru"] .thps-overview-content .slider-header button {
  font-size: 10px;
}
@media (min-width: 480px) {
  html[lang="ru"] #thps-overview .thps-overview-content .slider-header button {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  html[lang="ru"] #thps-overview .thps-overview-content .slider-header button {
    font-size: 16px;
  }
}
html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slide-content .text-content,
html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slide-content .text-content {
  text-align: right;
  padding-right: 40px;
}
@media screen and (min-width: 1200px) {
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-prev,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-prev {
    left: auto;
    right: calc(50% - 40px);
    rotate: 180deg;
  }
}
@media screen and (max-width: 1199px) {
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-prev,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-prev {
    left: auto;
    right: 0;
    rotate: 180deg;
    top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-next,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-next {
    right: calc(50% + 25px);
    left: auto;
    rotate: 180deg;
  }
}
@media screen and (max-width: 1199px) {
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-next,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-next {
    right: auto;
    left: 0;
    rotate: 180deg;
    top: 75px;
  }
}
@media screen and (max-width: 768px) {
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-prev,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-prev,
  html[lang="ar"] #thps-overview .thps-overview-content .slick-slider .slick-next,
  html[lang="rtl"] #thps-overview .thps-overview-content .slick-slider .slick-next {
    top: 80px;
  }
}
