/* 
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
.post-title h1 {
  font-size: 4.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 1.5rem;
}

body {
  background-color: #191919;
}
body header {
  background-color: black;
  border-color: transparent;
  position: relative !important;
}
body header #my-account-roland.btn.btn-primary, body header #login-roland.btn.btn-primary {
  background-color: white;
  border-color: white;
  color: black;
}
@media (max-width: 1024px) {
  body header #my-account-roland.btn.btn-primary, body header #login-roland.btn.btn-primary {
    background-color: transparent;
    border-color: transparent;
    color: white;
  }
}
body header a.newsletter {
  color: white;
}
body header .logo svg, body header .search-icon svg {
  fill: white;
}
body header #nav_mobile span {
  background: white;
}
body .links-top-page {
  display: none;
}
body.fadedArticle article {
  padding-bottom: 2rem;
}
body.fadedArticle article * {
  display: none;
}
body.fadedArticle article p:first-child, body.fadedArticle article p:nth-child(2), body.fadedArticle article p:nth-child(3) {
  display: block;
}
body.fadedArticle article ~ * {
  display: none;
}
body.fadedArticle article:after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  bottom: 0;
  position: absolute;
  left: 0;
  background: linear-gradient(to top, #191919, transparent);
}
body.fadedArticle .full-article .scroll-container {
  position: relative;
  pointer-events: none !important;
}

.full-article {
  min-height: 100vh;
  position: relative;
  overflow: visible;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.full-article .wrap {
  position: relative;
  height: 100%;
}
.full-article .section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.full-article .section.active {
  opacity: 1;
}
.full-article .absolute-position {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.full-article .scroll-container {
  height: 50vh;
  position: sticky;
  top: 0;
  background-color: #191919;
  z-index: 2;
  margin-bottom: 3rem;
}
.full-article .scroll-container .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -4rem;
  margin-top: -4rem;
  margin-left: 0;
  margin-top: 0;
  opacity: 0;
  z-index: 99;
  transition: all 0.1s linear;
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.full-article .scroll-container .title-container h1 {
  font-size: 12rem;
  line-height: 0.9;
  color: #26E6FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  transform-origin: left;
  transition: all 0.2s linear;
}
@media (max-width: 1024px) {
  .full-article .scroll-container .title-container h1 {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .full-article .scroll-container .title-container h1 {
    font-size: 6rem;
  }
}
@media (max-width: 500px) {
  .full-article .scroll-container .title-container h1 {
    font-size: 5rem;
  }
}
.full-article .scroll-container .title-container .stand-first {
  background-color: white;
  color: #191919;
  padding: 0.6rem 1.5rem;
  display: inline-block;
  font-family: "sofia-pro";
  border-radius: 24px;
  font-weight: 600;
  min-width: 50%;
  text-align: center;
  transition: all 0.3s linear;
  transition-delay: 0s;
  opacity: 1;
}
.full-article .scroll-container .title-container .stand-first * {
  margin: 0;
}
@media (max-width: 1024px) {
  .full-article .scroll-container .title-container .stand-first {
    max-width: 25rem;
    font-size: 1.4rem;
  }
}
.full-article .scroll-container .small-title-container {
  opacity: 1;
  text-align: left;
  margin-left: 0;
  padding-top: 2rem;
  transition: all 0.3s linear;
  transition-delay: 0.3s;
}
.full-article .scroll-container .small-title-container .title-container__title {
  font-size: 3rem;
  color: white;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0rem;
}
.full-article .scroll-container .small-title-container .title-container__title span {
  display: block;
}
@media (max-width: 1024px) {
  .full-article .scroll-container .small-title-container .title-container__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .full-article .scroll-container .small-title-container .title-container__title {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .full-article .scroll-container {
    height: auto;
    aspect-ratio: 1.3;
  }
}
.full-article .scroll-container:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff9eb;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: all 0.3s linear;
  opacity: 0.1;
  transition-delay: 0.7s;
}
.full-article .scroll-container[data-current-view=year-intro] .title-container, .full-article .scroll-container[data-current-view=year-outro] .title-container {
  opacity: 1;
  transition-delay: 0.6s;
  transition: all 0.5s linear;
}
.full-article .scroll-container[data-current-view=year-intro] .title-container .stand-first, .full-article .scroll-container[data-current-view=year-outro] .title-container .stand-first {
  transition-delay: 0.6s;
}
.full-article .scroll-container[data-current-view=year-intro] .small-title-container, .full-article .scroll-container[data-current-view=year-outro] .small-title-container {
  opacity: 0;
  transition-delay: 0s;
}
.full-article .scroll-container[data-current-view=year-intro]:after, .full-article .scroll-container[data-current-view=year-outro]:after {
  opacity: 0;
  width: 0;
  transition-delay: 0.2s;
}
.full-article .mannequin-section {
  z-index: 1;
}
.full-article .z1 {
  z-index: 1;
}
.full-article .z2 {
  z-index: 2;
}
.full-article .years-section {
  transition: all 0.3s linear;
  opacity: 0;
  overflow: hidden;
  transition-delay: 0s;
}
.full-article .years-section.active {
  opacity: 1;
}
.full-article .years-section.active .years-section__illo--left, .full-article .years-section.active .years-section__illo--left-2 {
  opacity: 1;
  transition: all 0.5s ease;
}
.full-article .years-section.active .years-section__illo--left.years-section__illo--left, .full-article .years-section.active .years-section__illo--left-2.years-section__illo--left {
  transition-delay: 0.4s;
}
.full-article .years-section.active .years-section__illo--left.years-section__illo--left-2, .full-article .years-section.active .years-section__illo--left-2.years-section__illo--left-2 {
  transition-delay: 0.5s;
}
.full-article .years-section.active .years-section__illo--right, .full-article .years-section.active .years-section__illo--right-2 {
  opacity: 1;
  transition: all 0.5s ease;
}
.full-article .years-section.active .years-section__illo--right.years-section__illo--right, .full-article .years-section.active .years-section__illo--right-2.years-section__illo--right {
  transition-delay: 0.4s;
}
.full-article .years-section.active .years-section__illo--right.years-section__illo--right-2, .full-article .years-section.active .years-section__illo--right-2.years-section__illo--right-2 {
  transition-delay: 0.5s;
}
.full-article .years-section.active .years-section__woman-shoes, .full-article .years-section.active .years-section__man-shoes {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s ease, opacity 0.3s ease;
}
.full-article .years-section.active .years-section__woman-bottom, .full-article .years-section.active .years-section__man-bottom {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s ease, opacity 0.3s ease;
  transition-delay: 0.1s;
}
.full-article .years-section.active .years-section__woman-top, .full-article .years-section.active .years-section__man-top {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s ease, opacity 0.3s ease;
  transition-delay: 0.2s;
}
.full-article .years-section .years-section__illo--left, .full-article .years-section .years-section__illo--left-2 {
  opacity: 0;
  transition: all 0.2s linear;
}
.full-article .years-section .years-section__illo--left.years-section__illo--left, .full-article .years-section .years-section__illo--left-2.years-section__illo--left {
  transition-delay: 0s;
  z-index: 2;
}
.full-article .years-section .years-section__illo--left.years-section__illo--left-2, .full-article .years-section .years-section__illo--left-2.years-section__illo--left-2 {
  transition-delay: 0s;
  z-index: 1;
}
.full-article .years-section .years-section__illo--right, .full-article .years-section .years-section__illo--right-2 {
  opacity: 0;
  transition: all 0.2s linear;
}
.full-article .years-section .years-section__illo--right.years-section__illo--right, .full-article .years-section .years-section__illo--right-2.years-section__illo--right {
  transition-delay: 0s;
}
.full-article .years-section .years-section__illo--right.years-section__illo--right-2, .full-article .years-section .years-section__illo--right-2.years-section__illo--right-2 {
  transition-delay: 0s;
}
.full-article .years-section .years-section__woman-shoes {
  transform: translateX(-50vw);
  transition: all 0.2s linear;
  opacity: 0;
}
.full-article .years-section .years-section__woman-bottom {
  transform: translateX(-50vw);
  transition: all 0.2s linear;
  opacity: 0;
  transition-delay: 0s;
}
.full-article .years-section .years-section__woman-top {
  transform: translateX(-50vw);
  transition: all 0.2s linear;
  opacity: 0;
  transition-delay: 0s;
}
.full-article .years-section .years-section__man-shoes {
  transform: translateX(50vw);
  transition: all 0.2s linear;
  opacity: 0;
  transition-delay: 0s;
}
.full-article .years-section .years-section__man-bottom {
  transform: translateX(50vw);
  transition: all 0.2s linear;
  opacity: 0;
  transition-delay: 0s;
}
.full-article .years-section .years-section__man-top {
  transform: translateX(50vw);
  transition: all 0.2s linear;
  opacity: 0;
  transition-delay: 0s;
}
.full-article .years-scroll-container {
  position: absolute;
  bottom: -10rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
  padding-top: 5rem;
  z-index: -1;
}
.full-article .years-scroll-container .cont {
  width: 1px;
  display: flex;
  overflow: visible;
}
.full-article .years-scroll-container:before {
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
  bottom: 0rem;
  position: absolute;
  background: linear-gradient(to bottom, #191919, transparent);
  z-index: -1;
  pointer-events: none;
}
.full-article .years-scroll-container:after {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  bottom: 4rem;
  background: #191919;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .full-article .years-scroll-container {
    bottom: -8rem;
    padding-bottom: 6rem;
  }
}
.full-article .years-scroll-container .wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.full-article .years-scroll-container .year-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 6rem;
  width: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}
.full-article .years-scroll-container .year-wrap .year-pill {
  background: #191919;
  position: relative;
  z-index: 2;
  border: 1px solid white;
  color: white;
  border-radius: 24px;
  padding: 0.6rem 1.5rem;
  list-style: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "sofia-pro";
  font-weight: bold;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  margin: 0;
  opacity: 1;
  transition: all 0.3s linear;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(1) {
  transition-delay: 0.6s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(2) {
  transition-delay: 0.7s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(3) {
  transition-delay: 0.8s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(4) {
  transition-delay: 0.9s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(5) {
  transition-delay: 1s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(6) {
  transition-delay: 1.1s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(7) {
  transition-delay: 1.2s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(8) {
  transition-delay: 1.3s;
}
.full-article .years-scroll-container .year-wrap .year-pill:nth-child(9) {
  transition-delay: 1.4s;
}
.full-article .years-scroll-container .year-wrap .year-pill:hover {
  background: white;
  color: #191919;
}
.full-article .years-scroll-container .year-wrap .year-pill * {
  margin: 0;
}
.full-article .years-scroll-container .year-wrap .year-pill a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}
.full-article .years-scroll-container .year-wrap .year-pill.active {
  background: #26E6FF;
  color: #191919;
  border-color: #26E6FF;
}
.full-article .years-scroll-container .year-wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #757B7A;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 0.7s linear;
  transition-delay: 0.8s;
  opacity: 1;
}
@media (max-width: 1024px) {
  .full-article .years-scroll-container .year-wrap {
    gap: 2rem;
  }
  .full-article .years-scroll-container .year-wrap .year-pill {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
  }
}
.full-article .content-section {
  padding-top: 6rem;
  color: white;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  font-size: 1.8rem;
}
.full-article .content-section a {
  color: #26E6FF;
  text-decoration: underline;
}
.full-article .content-section a:hover {
  color: #ADDAFF;
}
.full-article .content-section .wrap {
  max-width: 840px;
}
.full-article .content-section h2.trigger, .full-article .content-section h2.line-divider {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #fff9eb;
}
.full-article .content-section .byline {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.full-article .content-section .tags-report a {
  color: #fd2341;
}
.full-article.loading {
  opacity: 0;
  pointer-events: none;
}
.full-article.loading .scroll-container .title-container {
  top: 40px;
  opacity: 0;
}
.full-article.loading .scroll-container .title-container .stand-first {
  opacity: 0;
}
.full-article.loading .years-scroll-container .year-wrap {
  opacity: 0;
}
.full-article.loading .years-scroll-container .year-pill {
  opacity: 0;
}
.full-article.loading .years-scroll-container .year-wrap:after {
  width: 0;
}
.full-article.loaded .years-scroll-container .year-wrap .year-pill {
  transition-delay: 0s !important;
}
@media (max-width: 1024px) {
  .full-article #rac-newsletter {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}