@charset "UTF-8";
.divider {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
@media only screen and (max-width: 480px) {
  .divider {
    height: 6px;
  }
}

html,
body {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.full-page,
body.full-page {
  overflow: hidden;
  position: fixed;
}
html.no-scroll,
body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

* {
  position: relative;
  box-sizing: border-box;
  font-family: inherit;
}

main {
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg {
  transition: fill 0.3s;
}

hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, rgba(59, 69, 77, 0), #3b454d, rgba(59, 69, 77, 0));
  clear: both;
}

a,
button {
  text-decoration: none;
  color: inherit;
}
a:hover, a:active, a:focus,
button:hover,
button:active,
button:focus {
  outline: none;
}

a {
  cursor: pointer;
}

.clear-both {
  clear: both;
}

body.not-ready * {
  transition: none !important;
}

.tooltip {
  cursor: help;
  color: #336699;
}

.align-left {
  text-align: left !important;
}
.align-right {
  text-align: right !important;
}
.align-center {
  text-align: center !important;
}

h1, .faq-title, h2, h3, h4, h5, .escalation__blade .captions .caption__title {
  text-transform: uppercase;
}

h1, .faq-title, h2 {
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-weight: 400;
}

h1, .faq-title {
  font-size: 34px;
  line-height: 34px;
  letter-spacing: 1.7px;
}

h2 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 25px;
    line-height: 25px;
  }
}

h3, h4, h5, .escalation__blade .captions .caption__title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 1.4px;
}

h4 {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 1.1px;
}

h5, .escalation__blade .captions .caption__title {
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.85px;
}

h6 {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

body .logged-in, body.logged-in .logged-out {
  display: none;
}
body.logged-in .logged-in {
  display: block;
}
body .logout {
  cursor: pointer;
}

.cover-image {
  width: 100%;
  height: auto;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .cover-image {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.site-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 100;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-header {
    display: block;
  }
}
.site-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../media/layout/ui/header-bg.png) center center/1px 50px repeat-x;
}
.site-header__logo {
  display: inline-block;
  height: 100%;
  top: -3px;
  padding: 8px 0;
}
@media only screen and (max-width: 1360px) {
  .site-header__logo {
    padding: 8px 0 8px 5px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-header__logo {
    float: left;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__logo.hidable-logo {
    transition: opacity 0.5s;
    opacity: 0;
  }
}
.site-header__logo.show-logo {
  opacity: 1;
}
.site-header__logo a {
  display: block;
  float: left;
  padding: 0 15px;
  transition: filter 0.3s;
}
.site-header__logo a svg {
  display: block;
  fill: #ffffff;
  height: 40px;
}
.site-header__logo a svg.svg-logo {
  display: none;
  width: 32px;
}
@media only screen and (max-width: 1360px) {
  .site-header__logo a svg.svg-logo {
    display: block;
  }
}
.site-header__logo a svg.svg-logo-horizontal {
  display: block;
  width: 130px;
}
@media only screen and (max-width: 1360px) {
  .site-header__logo a svg.svg-logo-horizontal {
    display: none;
  }
}
.site-header__logo a:hover, .site-header__logo a:active, .site-header__logo a:focus {
  outline: none;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
.site-header__burger {
  display: none;
  height: 34px;
  width: 43px;
  margin: 8px 3px;
  padding: 7px 15px 8px;
  background: #29292e;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
@media only screen and (max-width: 1024px) {
  .site-header__burger {
    display: block;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-header__burger {
    float: right;
  }
}
.site-header__burger:before, .site-header__burger:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-image-source: url(../media/layout/ui/button-header.png);
  border-image-slice: 68 64 12 24 fill;
  border-image-outset: 58px 0 0;
  border-image-repeat: round;
  border-top: 3px solid;
  border-right: 32px solid;
  border-bottom: 6px solid;
  border-left: 12px solid;
  z-index: 0;
}
.site-header__burger:after {
  border-image-slice: 3 64 68 24 fill;
  border-image-outset: 0 0 68px;
  opacity: 0;
  transition: opacity 0.3s;
}
.site-header__burger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 21px;
  top: calc(50% - 1px);
  left: 11px;
  background-color: #ffffff;
  transition: opacity 0.3s, background-color 0.3s, top 0.3s, transform 0.3s;
  transform-origin: center center;
  z-index: 5;
}
.site-header__burger span:nth-child(1) {
  top: calc(50% - 7px);
}
.site-header__burger span:nth-child(3) {
  top: calc(50% + 5px);
}
@media only screen and (min-width: 1025px) {
  .site-header__burger:hover:after, .site-header__burger:active:after, .site-header__burger:focus:after {
    opacity: 1;
  }
  .site-header__burger:hover span, .site-header__burger:active span, .site-header__burger:focus span {
    background-color: #242424;
  }
}
.site-header__burger.active span:nth-child(1), .site-header__burger.active span:nth-child(3) {
  top: calc(50% - 1px);
}
.site-header__burger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.site-header__burger.active span:nth-child(2) {
  transform: scale(0);
}
.site-header__burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 1024px) {
  .site-header__burger.active + .site-header__navs {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header__burger.active + .site-header__navs + .site-header__close {
    opacity: 1;
    visibility: visible;
  }
}
.site-header__navs {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
@media only screen and (max-width: 1024px) {
  .site-header__navs {
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    max-width: calc(100% - 67px);
    width: auto;
    max-height: calc(100vh - 50px);
    max-height: calc(calc(var(--ivh, 1vh) * 100) - 50px);
    overflow-x: hidden;
    border: 1px solid #4f545a;
    border-top: none;
    border-right: none;
    background: #303035;
    transform: translateX(100%);
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__navs.active {
    overflow: hidden;
  }
  .site-header__navs.active .site-header__nav,
  .site-header__navs.active .site-header__settings {
    left: -100%;
  }
  .site-header__navs.active .site-header__mobile-submenu {
    left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__nav, .site-header__settings {
    left: 0;
    transition: left 0.3s;
  }
}
.site-header__nav > ul, .site-header__settings > ul {
  height: 40px;
  padding: 3px 0;
  font-size: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul, .site-header__settings > ul {
    height: auto;
    padding: 0;
  }
}
.site-header__nav > ul > li, .site-header__settings > ul > li {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li, .site-header__settings > ul > li {
    display: block;
    height: auto;
    border-bottom: 1px solid rgba(79, 84, 90, 0.25);
  }
}
.site-header__nav > ul > li a span, .site-header__settings > ul > li a span {
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li a span, .site-header__settings > ul > li a span {
    position: initial;
  }
}
.site-header__nav > ul > li a > .svg-chevron, .site-header__settings > ul > li a > .svg-chevron {
  display: inline-block;
  fill: #ffffff;
  width: 10px;
  height: 8px;
  opacity: 0.4;
  margin-left: 2px;
  filter: drop-shadow(1px 1px rgba(255, 255, 255, 0));
  transition: opacity 0.3s, fill 0.3s, filter 0.3s;
  z-index: 5;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li a > .svg-chevron, .site-header__settings > ul > li a > .svg-chevron {
    position: absolute;
    display: block;
    width: 12px;
    height: 9px;
    top: calc(50% - 5px);
    right: 30px;
    transform: rotate(-90deg);
  }
}
.site-header__nav > ul > li.site-header__languages a > .svg-languages, .site-header__settings > ul > li.site-header__languages a > .svg-languages {
  width: 18px;
}
.site-header__nav > ul > li.site-header__languages a span, .site-header__settings > ul > li.site-header__languages a span {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li.site-header__languages a span, .site-header__settings > ul > li.site-header__languages a span {
    display: inline-block;
  }
}
.site-header__nav > ul > li.site-header__languages a > .svg-chevron, .site-header__settings > ul > li.site-header__languages a > .svg-chevron {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li.site-header__languages a > .svg-chevron, .site-header__settings > ul > li.site-header__languages a > .svg-chevron {
    display: inline-block;
  }
}
@media only screen and (min-width: 1025px) {
  .site-header__nav > ul > li:hover > ul, .site-header__nav > ul > li:active > ul, .site-header__nav > ul > li:focus > ul, .site-header__settings > ul > li:hover > ul, .site-header__settings > ul > li:active > ul, .site-header__settings > ul > li:focus > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.site-header .sub-menu {
  position: absolute;
  top: 100%;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 100%;
  padding: 0 15px;
  background-color: #303035;
  border: 1px solid #4f545a;
  border-top: none;
  z-index: 5;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu {
    display: none;
    position: relative;
    visibility: visible;
    top: auto;
    min-width: 0;
    padding: 0;
    width: 100%;
    border: none;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu.logged-in {
    display: none;
  }
}
.site-header .sub-menu li {
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu li {
    padding: 0 15px;
    border-bottom: 1px solid rgba(79, 84, 90, 0.25);
  }
}
.site-header .sub-menu li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: calc(100% + 30px);
  left: -16px;
  border: 1px solid #daedff;
  background: linear-gradient(to bottom, #c2e1ff, #70b6f6);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu li:before {
    box-sizing: border-box;
    width: 100%;
    left: 0;
  }
}
.site-header .sub-menu li a {
  display: block;
  padding: 14px 15px 12px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 8px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s, text-shadow 0.3s;
  cursor: pointer;
  z-index: 5;
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu li a {
    font-size: 15px;
    line-height: 15px;
    padding: 15px 15px 14px;
  }
}
.site-header .sub-menu li a > .svg-external, .site-header .sub-menu li a > .svg-download {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: -3px;
  margin-left: 5px;
  fill: #ffffff;
  opacity: 0.4;
  filter: drop-shadow(1px 1px rgba(255, 255, 255, 0));
  transition: fill 0.3s, opacity 0.3s, filter 0.3s;
}
.site-header .sub-menu li a:before, .site-header .sub-menu li a:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  top: calc(50% - 7px);
  left: -4px;
  background: transparent url(../media/layout/ui/gem.png) left center/24px 14px no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s;
}
.site-header .sub-menu li a:after {
  background-position: right center;
}
.site-header .sub-menu li + li {
  padding-top: 1px;
}
.site-header .sub-menu li + li:before {
  height: calc(100% - 1px);
}
.site-header .sub-menu li + li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  max-width: 100px;
  background: linear-gradient(to right, rgba(79, 84, 90, 0) 0%, #4f545a 20px, #4f545a calc(100% - 20px), rgba(79, 84, 90, 0) 100%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .site-header .sub-menu li + li:after {
    content: none;
  }
}
@media only screen and (min-width: 1025px) {
  .site-header .sub-menu li:hover a, .site-header .sub-menu li:active a, .site-header .sub-menu li:focus a {
    color: #242424;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  }
  .site-header .sub-menu li:hover a > .svg-external, .site-header .sub-menu li:hover a > .svg-download, .site-header .sub-menu li:active a > .svg-external, .site-header .sub-menu li:active a > .svg-download, .site-header .sub-menu li:focus a > .svg-external, .site-header .sub-menu li:focus a > .svg-download {
    opacity: 1;
    fill: #242424;
    filter: drop-shadow(1px 1px rgba(255, 255, 255, 0.5));
  }
  .site-header .sub-menu li:hover:before, .site-header .sub-menu li:active:before, .site-header .sub-menu li:focus:before {
    opacity: 1;
  }
}
.site-header .sub-menu li.active a:before {
  opacity: 1;
}
@media only screen and (min-width: 1025px) {
  .site-header .sub-menu li.active:hover a:after, .site-header .sub-menu li.active:active a:after, .site-header .sub-menu li.active:focus a:after {
    opacity: 1;
  }
}
.site-header__mobile-submenu {
  display: none;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 100%;
  height: 100%;
  max-height: calc(100vh - 50px);
  max-height: calc(calc(var(--ivh, 1vh) * 100) - 50px);
  overflow: hidden;
  width: 100%;
  transition: left 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__mobile-submenu {
    display: flex;
  }
}
.site-header__mobile-submenu .back {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 20px 9px 40px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(79, 84, 90, 0.625);
  margin: 0;
  opacity: 0.4;
  cursor: pointer;
  transition: color 0.3s, filter 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__mobile-submenu .back {
    padding: 13px 20px 13px 40px;
  }
}
.site-header__mobile-submenu .back:hover, .site-header__mobile-submenu .back:active, .site-header__mobile-submenu .back:focus {
  outline: none;
}
.site-header__mobile-submenu .back span {
  position: initial;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  text-transform: uppercase;
  vertical-align: middle;
  transition: color 0.3s, filter 0.3s;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .site-header__mobile-submenu .back span {
    font-size: 15px;
  }
}
.site-header__mobile-submenu .back > svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-right: 8px;
  transition: fill 0.3s, filter 0.3s;
}
.site-header__mobile-submenu .back > svg.svg-profile {
  width: 13px;
}
@media only screen and (max-width: 1024px) {
  .site-header__mobile-submenu .back > svg.svg-profile {
    width: 18px;
  }
}
.site-header__mobile-submenu .back > svg.svg-chevron {
  position: absolute;
  display: block;
  width: 12px;
  height: 9px;
  top: calc(50% - 5px);
  left: 14px;
  transform: rotate(90deg);
  fill: #ffffff;
  margin-left: 2px;
}
.site-header__mobile-submenu .nav {
  flex: 1;
  overflow: auto;
}
.site-header__mobile-submenu .nav .sub-menu {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.site-header__nav > ul > li:not(.site-header__logo) {
  vertical-align: top;
  padding-bottom: 8px;
  box-sizing: content-box;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li:not(.site-header__logo) {
    padding-bottom: 0;
  }
}
.site-header__nav > ul > li:not(.site-header__logo) + li {
  margin-left: 1px;
}
.site-header__nav > ul > li:not(.site-header__logo) > a {
  display: block;
  height: 100%;
  min-width: 120px;
  padding: 7px 15px 8px;
  font-size: 14px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .site-header__nav > ul > li:not(.site-header__logo) > a {
    min-width: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .site-header__nav > ul > li:not(.site-header__logo) > a {
    min-width: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li:not(.site-header__logo) > a {
    background: #303035;
    text-align: left;
    padding: 18px 54px 16px 30px;
    font-size: 15px;
    line-height: 9px;
  }
}
.site-header__nav > ul > li:not(.site-header__logo) > a > .svg-external, .site-header__nav > ul > li:not(.site-header__logo) > a > .svg-download {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: -3px;
  margin-left: 5px;
  fill: #ffffff;
  opacity: 0.4;
  filter: drop-shadow(1px 1px rgba(255, 255, 255, 0));
  transition: fill 0.3s, opacity 0.3s, filter 0.3s;
  z-index: 1;
}
.site-header__nav > ul > li:not(.site-header__logo) > a:before, .site-header__nav > ul > li:not(.site-header__logo) > a:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../media/layout/ui/button-header-bg.jpg) top center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-image-source: url(../media/layout/ui/button-header.png);
  border-image-slice: 68 64 12 24;
  border-image-repeat: round;
  border-top: 0 solid;
  border-right: 32px solid;
  border-bottom: 6px solid;
  border-left: 12px solid;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li:not(.site-header__logo) > a:before, .site-header__nav > ul > li:not(.site-header__logo) > a:after {
    content: none;
  }
}
.site-header__nav > ul > li:not(.site-header__logo) > a:after {
  background: url(../media/layout/ui/button-header-active-bg.jpg) top center/calc(100% + 2px) 100% no-repeat;
  border-image-slice: 3 64 68 24;
  border-top: 3px solid;
  border-bottom: 0 solid;
  opacity: 0;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1025px) {
  .site-header__nav > ul > li:not(.site-header__logo) > a:hover, .site-header__nav > ul > li:not(.site-header__logo) > a:active, .site-header__nav > ul > li:not(.site-header__logo) > a:focus {
    color: #242424;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  }
  .site-header__nav > ul > li:not(.site-header__logo) > a:hover > .svg-chevron, .site-header__nav > ul > li:not(.site-header__logo) > a:hover > .svg-external, .site-header__nav > ul > li:not(.site-header__logo) > a:hover > .svg-download, .site-header__nav > ul > li:not(.site-header__logo) > a:active > .svg-chevron, .site-header__nav > ul > li:not(.site-header__logo) > a:active > .svg-external, .site-header__nav > ul > li:not(.site-header__logo) > a:active > .svg-download, .site-header__nav > ul > li:not(.site-header__logo) > a:focus > .svg-chevron, .site-header__nav > ul > li:not(.site-header__logo) > a:focus > .svg-external, .site-header__nav > ul > li:not(.site-header__logo) > a:focus > .svg-download {
    fill: #242424;
    opacity: 1;
    filter: drop-shadow(1px 1px rgba(255, 255, 255, 0.5));
  }
  .site-header__nav > ul > li:not(.site-header__logo) > a:hover:after, .site-header__nav > ul > li:not(.site-header__logo) > a:active:after, .site-header__nav > ul > li:not(.site-header__logo) > a:focus:after {
    opacity: 1;
  }
}
.site-header__nav > ul > li:not(.site-header__logo).active:before, .site-header__nav > ul > li:not(.site-header__logo).active:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 12px;
  bottom: 2px;
  left: calc(50% - 7px);
  background: url(../media/layout/ui/gem.png) left top/28px 12px no-repeat;
  z-index: 1;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__nav > ul > li:not(.site-header__logo).active:before, .site-header__nav > ul > li:not(.site-header__logo).active:after {
    width: 12px;
    height: 14px;
    bottom: calc(50% - 7px);
    left: 10px;
    background-size: 24px 14px;
  }
}
.site-header__nav > ul > li:not(.site-header__logo).active:after {
  background-position: right top;
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  .site-header__nav > ul > li:not(.site-header__logo).active:hover:after, .site-header__nav > ul > li:not(.site-header__logo).active:active:after, .site-header__nav > ul > li:not(.site-header__logo).active:focus:after {
    outline: none;
    opacity: 1;
  }
}
.site-header__settings .menu-parent {
  height: 100%;
  padding: 0 10px;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .site-header__settings .menu-parent {
    padding: 0;
  }
}
.site-header__settings .menu-parent a {
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .site-header__settings .menu-parent a {
    padding: 11px 54px 12px 30px;
  }
}
.site-header__settings .menu-parent a:hover, .site-header__settings .menu-parent a:active, .site-header__settings .menu-parent a:focus {
  outline: none;
}
.site-header__settings .menu-parent span {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 8px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s, filter 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__settings .menu-parent span {
    vertical-align: middle;
    font-size: 15px;
    line-height: 17px;
    padding: 2px 0 1px;
  }
}
.site-header__settings ul li a > svg {
  display: block;
  width: 13px;
  height: 18px;
  fill: #ffffff;
  transition: fill 0.3s, filter 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__settings ul li a > svg {
    width: 18px;
  }
}
.site-header__settings ul li a > svg.svg-chevron {
  width: 10px;
  height: 8px;
  margin-left: 5px;
}
.site-header__settings > ul > li {
  padding-bottom: 8px;
  box-sizing: content-box;
}
@media only screen and (max-width: 1024px) {
  .site-header__settings > ul > li {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .site-header__settings > ul > li:hover > svg,
  .site-header__settings > ul > li:hover a > svg, .site-header__settings > ul > li:active > svg,
  .site-header__settings > ul > li:active a > svg, .site-header__settings > ul > li:focus > svg,
  .site-header__settings > ul > li:focus a > svg,
  .site-header__settings > ul > li a:hover > svg,
  .site-header__settings > ul > li a:hover a > svg, .site-header__settings > ul > li a:active > svg,
  .site-header__settings > ul > li a:active a > svg, .site-header__settings > ul > li a:focus > svg,
  .site-header__settings > ul > li a:focus a > svg {
    fill: #89c6ff;
    filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
  }
  .site-header__settings > ul > li:hover span, .site-header__settings > ul > li:active span, .site-header__settings > ul > li:focus span,
  .site-header__settings > ul > li a:hover span, .site-header__settings > ul > li a:active span, .site-header__settings > ul > li a:focus span {
    color: #89c6ff;
    filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
  }
}
.site-header__download {
  display: block;
  min-width: 150px;
  height: 34px;
  margin-left: 15px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  background: url(../media/layout/ui/button-gold-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-top: 5px solid;
  border-right: 31px solid;
  border-bottom: 6px solid;
  border-left: 32px solid;
  border-image-source: url(../media/layout/ui/button-gold.png);
  border-image-slice: 10 62 12 64;
  border-image-repeat: stretch;
  cursor: pointer;
  filter: brightness(100%) contrast(100%);
  transition: filter 0.3s;
}
@media only screen and (max-width: 1024px) {
  .site-header__download {
    margin: 10px 30px;
  }
}
.site-header__download:hover, .site-header__download:active, .site-header__download:focus {
  outline: none;
  filter: brightness(120%) contrast(105%);
}
.site-header__close {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .site-header__close {
    display: block;
  }
}

::-webkit-scrollbar {
  width: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1f2636;
  box-shadow: inset 0 0 5px #12171c;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border: 1px solid #282828;
  background: linear-gradient(to bottom, #38383d, #232328);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #3f3f45, #2a2a30);
}

body {
  background: #041326 url(../media/layout/ui/blur-bg.jpg) center center repeat-y;
}
body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #041326 url(../media/layout/ui/blur-bg.jpg) center center repeat-y;
  filter: blur(20px);
}

.content-wrapper {
  max-width: 100%;
  min-height: 100vh;
  min-height: calc(var(--ivh, 1vh) * 100);
  overflow-x: hidden;
}
.content-wrapper main {
  overflow: hidden;
}

.site-footer {
  background-color: rgba(36, 36, 36, 0.7);
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .site-footer {
    text-align: center;
  }
}
.site-footer:before, .site-footer:after {
  content: "";
  position: absolute;
  width: 316px;
  height: 27px;
  background: transparent url(../media/layout/ui/ornament-footer.png) center/316px 27px no-repeat;
  top: -27px;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .site-footer:before, .site-footer:after {
    width: 280px;
    height: 24px;
    top: -24px;
    background-size: 280px 24px;
  }
}
.site-footer:after {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
@media only screen and (max-width: 1024px) {
  .site-footer:after {
    content: none;
  }
}
.site-footer .social-links {
  height: 50px;
  background: transparent url(../media/layout/ui/footer-bg.png) center center/1px 50px repeat-x;
}
.site-footer__content {
  display: flex;
  align-items: flex-end;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  padding: 60px 20px;
}
@media only screen and (max-width: 1200px) {
  .site-footer__content {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-footer__content {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer__content {
    display: block;
  }
}
.site-footer__content a:hover, .site-footer__content a:active, .site-footer__content a:focus {
  text-decoration: underline;
}
.site-footer__links {
  flex: 1;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .site-footer__links {
    padding-right: 0;
  }
}
.site-footer__company {
  display: inline-block;
  margin-bottom: 10px;
}
.site-footer__company img {
  display: block;
  width: 180px;
  height: 47px;
}
.site-footer__contact {
  margin: 20px 0;
}
.site-footer__contact li {
  margin: 5px 0;
}
.site-footer__contact span {
  font-weight: 500;
  text-transform: uppercase;
}
.site-footer__legal p {
  font-size: 14px;
  margin: 0 0 5px;
}
.site-footer__legal li {
  display: inline-block;
}
.site-footer__legal li + li:before {
  content: "|";
  margin: 0 10px;
}
.site-footer__legal li a {
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .site-footer__pictos {
    margin-top: 20px;
  }
}
.site-footer__pictos img {
  height: 85px;
  margin-left: 4px;
}
.site-footer__pictos > .svg-esrb-rp {
  display: inline-block;
  width: 60px;
  height: 90px;
}

#cookie-policy-disclaimer {
  position: relative;
}
#cookie-policy-disclaimer .cookie-wrapper {
  position: fixed;
  bottom: 0;
  background-color: rgba(15, 28, 37, 0.9);
  width: 100%;
  text-align: left;
  padding: 10px;
  z-index: 1000;
}
@media only screen and (max-width: 480px) {
  #cookie-policy-disclaimer .cookie-wrapper {
    padding: 5px;
  }
}
#cookie-policy-disclaimer h2, #cookie-policy-disclaimer p {
  max-width: calc(100% - 50px);
  line-height: 1.2;
  color: #ffffff;
}
#cookie-policy-disclaimer h2 {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 10pt;
  margin: 0;
  padding: 5px 0;
}
@media only screen and (max-width: 767px) {
  #cookie-policy-disclaimer h2 {
    padding: 0 0 5px;
  }
}
#cookie-policy-disclaimer p {
  font-size: 9pt;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #cookie-policy-disclaimer p {
    max-width: 100%;
  }
}
#cookie-policy-disclaimer a {
  text-decoration: underline;
}
#cookie-policy-disclaimer a:hover {
  opacity: 0.7;
}
#cookie-policy-disclaimer .close {
  color: #ffffff;
  font-family: "Roboto", Helvetica, sans-serif;
  line-height: 0;
  font-size: 14pt;
  padding: 14px 9px;
  cursor: pointer;
  border: solid #ffffff 2px;
  float: right;
  margin: 0 0 10px 10px;
}
@media only screen and (max-width: 480px) {
  #cookie-policy-disclaimer .close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 12px 7px;
  }
}
@media only screen and (max-width: 480px) {
  #cookie-policy-disclaimer .close {
    top: 5px;
    right: 5px;
  }
}
#cookie-policy-disclaimer .close:hover {
  background-color: #336699;
}
#cookie-policy-disclaimer .close:active {
  opacity: 0.5;
}

/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.alternating-blade {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .alternating-blade {
    margin: 60px auto;
  }
}
@media only screen and (max-width: 767px) {
  .alternating-blade {
    display: block;
    max-width: 600px;
  }
}
.alternating-blade:first-child {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .alternating-blade:first-child {
    margin-top: 60px;
  }
}
.alternating-blade__image img {
  display: block;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .alternating-blade__image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.alternating-blade__content {
  padding: 20px 40px;
}
@media only screen and (max-width: 767px) {
  .alternating-blade__content {
    padding: 0;
    margin-top: 20px;
  }
}
.alternating-blade__title {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .alternating-blade__title {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }
}
.alternating-blade__description {
  max-width: 490px;
}
.alternating-blade:nth-child(even) {
  text-align: right;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .alternating-blade:nth-child(even) {
    text-align: left;
  }
}

.blade {
  color: #ffffff;
  margin: 0 auto 200px;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .blade {
    text-align: left;
  }
}
.blade__background {
  position: absolute;
  width: 100vw;
  max-width: 1920px;
  height: calc(100% + 180px);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  opacity: 0.5;
}
.blade__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: opacity 0.2s;
}
.blade__background-image.hidden {
  opacity: 0;
}
.blade__header {
  margin: 0 auto 60px;
  max-width: 560px;
}
@media only screen and (max-width: 767px) {
  .blade__content .card--image {
    margin: 0 -20px;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 860px;
  margin: 120px auto 0;
}
@media only screen and (max-width: 767px) {
  .feature-list {
    display: block;
    margin: 60px auto 0;
  }
}
.feature-list .feature-list-item {
  width: calc(50% - 20px);
  margin-bottom: 60px;
  text-align: left;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .feature-list .feature-list-item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}
.feature-list .feature-list-item__icon {
  width: 70px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 340px) {
  .feature-list .feature-list-item__icon {
    width: 40px;
  }
}
.feature-list .feature-list-item__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-list .feature-list-item__content {
  flex: 1;
  padding-left: 20px;
}
.feature-list .feature-list-item__title {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}
.feature-list .feature-list-item__description {
  max-width: 400px;
  margin: 10px auto 0;
}
@media only screen and (max-width: 767px) {
  .feature-list .feature-list-item__description {
    margin: 10px 0 0;
  }
}

.article-snippet {
  display: block;
  height: auto;
  padding: 8px 0;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .article-snippet {
    padding: 6px 0;
  }
}
.article-snippet__image {
  position: absolute;
  top: 8px;
  left: 0;
  width: 30%;
  height: calc(100% - 16px);
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .article-snippet__image {
    width: 32%;
  }
}
@media only screen and (max-width: 767px) {
  .article-snippet__image {
    width: 25%;
  }
}
@media only screen and (max-width: 480px) {
  .article-snippet__image {
    top: 6px;
    height: calc(100% - 12px);
    display: none;
  }
}
.article-snippet__content {
  display: block;
  overflow: hidden;
  width: 78%;
  margin-left: 22%;
  z-index: 1;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  .article-snippet__content {
    width: 81%;
    margin-left: 19%;
  }
}
@media only screen and (max-width: 767px) {
  .article-snippet__content {
    width: 92%;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 480px) {
  .article-snippet__content {
    width: 100%;
    margin: 0;
  }
}
.article-snippet__content:after {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  right: calc(15% - 13px);
  height: 30px;
  width: 27px;
  transform: scaleX(-1);
  background: transparent url(../media/layout/ui/arrow-blue.png) center center/100% auto no-repeat;
  filter: drop-shadow(-2px 2px 2px rgba(36, 36, 36, 0.7));
  transition: right 0.3s;
}
@media only screen and (max-width: 767px) {
  .article-snippet__content:after {
    right: 15px;
  }
}
.article-snippet__content-skew {
  display: block;
  width: 100%;
  margin: 0 0 0 5%;
  color: #ffffff;
  transform: skewX(20deg);
  overflow: hidden;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  .article-snippet__content-skew {
    margin-left: 8%;
  }
}
@media only screen and (max-width: 1024px) {
  .article-snippet__content-skew {
    margin-left: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .article-snippet__content-skew {
    transform: none;
    margin: 0;
  }
}
@supports (-ms-ime-align: auto) {
  .article-snippet__content-skew {
    transform: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article-snippet__content-skew {
    transform: none;
  }
}
.article-snippet__content-skew:before, .article-snippet__content-skew:after {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  height: 200%;
  z-index: 5;
}
@media only screen and (max-width: 480px) {
  .article-snippet__content-skew:before, .article-snippet__content-skew:after {
    content: none;
  }
}
.article-snippet__content-skew:before {
  left: 0;
  width: 5px;
  background: linear-gradient(to bottom, #222528 0, #51575f 20px, #51575f calc(100% - 20px), #222528 100%);
}
.article-snippet__content-skew:after {
  left: 5px;
  width: 2px;
  background: linear-gradient(to bottom, #4a4f56 0, #79828d 20px, #79828d calc(100% - 20px), #4a4f56 100%);
}
.article-snippet__content-wrap {
  display: flex;
  padding: 20px 30% 20px calc(3% + 40px);
  margin-left: -3%;
  line-height: 20px;
  height: 100%;
  min-height: 84px;
  width: 98%;
  justify-content: center;
  flex-direction: column;
  transform: skewX(-20deg);
}
@media only screen and (max-width: 1024px) {
  .article-snippet__content-wrap {
    padding: 20px 30% 20px calc(5% + 40px);
    margin-left: -5%;
  }
}
@media only screen and (max-width: 767px) {
  .article-snippet__content-wrap {
    padding: 20px 90px 20px calc(5% + 40px);
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@media only screen and (max-width: 480px) {
  .article-snippet__content-wrap {
    transform: none;
    width: 100%;
    margin: 0;
    padding: 20px 60px 20px 20px;
  }
}
@supports (-ms-ime-align: auto) {
  .article-snippet__content-wrap {
    transform: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article-snippet__content-wrap {
    transform: none;
  }
}
.article-snippet__content-wrap span {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.article-snippet__content-wrap:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(to right, #242424 75%, rgba(36, 36, 36, 0) calc(100% - 20px));
  filter: blur(20px);
}
@media only screen and (max-width: 767px) {
  .article-snippet__content-wrap:before {
    background: #242424;
    filter: none;
  }
}
@supports (-ms-ime-align: auto) {
  .article-snippet__content-wrap:before {
    background: #242424;
    filter: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article-snippet__content-wrap:before {
    background: #242424;
    filter: none;
  }
}
.article-snippet__tags {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-snippet__title, .article-snippet h4 {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 1.1px;
  margin: 0;
  padding: 0;
}
.article-snippet:before, .article-snippet:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .article-snippet:before, .article-snippet:after {
    height: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .article-snippet:before, .article-snippet:after {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.article-snippet:after {
  top: auto;
  bottom: 0;
}
.article-snippet:hover .article-snippet__content:after {
  right: calc(15% - 20px);
}
@media only screen and (max-width: 767px) {
  .article-snippet:hover .article-snippet__content:after {
    right: 15px;
  }
}
.article-snippet:active .article-snippet__content:after {
  transform: rotate(-180deg) scale(0.95, -0.95);
  filter: drop-shadow(-1px 1px 1.5px rgba(36, 36, 36, 0.8));
}

.article-summary {
  display: flex;
  padding: 8px 0;
  margin-bottom: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .article-summary {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .article-summary {
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 480px) {
  .article-summary {
    padding: 6px 0;
  }
}
.article-summary:before, .article-summary:after {
  content: "";
  position: absolute;
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .article-summary:before, .article-summary:after {
    height: 6px;
  }
}
.article-summary:before {
  top: 0;
  margin-bottom: 20px;
}
.article-summary:after {
  bottom: 0;
  margin-top: 20px;
}
.article-summary__thumbnail {
  flex: 1;
  padding-bottom: 200px;
  max-width: 360px;
  box-shadow: 1px 0 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
  overflow: hidden;
  background: #242424;
}
@media only screen and (max-width: 767px) {
  .article-summary__thumbnail {
    padding-bottom: 56.25%;
  }
}
.article-summary__thumbnail img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
  color: rgba(255, 255, 255, 0.05);
}
.article-summary__content {
  flex: 1;
  padding: 25px;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
          mask-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}
@media only screen and (max-width: 767px) {
  .article-summary__content {
    padding: 20px;
  }
}
.article-summary__content:before, .article-summary__content:after {
  z-index: -1;
  transition: opacity 0.3s;
}
.article-summary__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #dde4e6, #737b7b);
}
.article-summary__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #bddcf8, #6eb4f4);
  opacity: 0;
}
.article-summary__date, .article-summary__title {
  display: block;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.article-summary__date {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 2px;
}
.article-summary__title {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 15px;
}
.article-summary__excerpt {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.article-summary:hover .article-summary__thumbnail img {
  transform: scale(1.1);
}
.article-summary:hover .article-summary__content:after {
  opacity: 1;
}

.articles-slider {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .articles-slider {
    padding: 0;
  }
}
.articles-slider .swiper-wrapper {
  align-items: center;
}
@media only screen and (min-width: 1201px) {
  .articles-slider .swiper-wrapper {
    justify-content: center;
  }
}
.articles-slider .swiper-slide {
  width: 33.3333%;
  padding: 0 20px;
}
@media only screen and (max-width: 1200px) {
  .articles-slider .swiper-slide {
    width: 45%;
    padding: 0 0 0 20px;
  }
  .articles-slider .swiper-slide:last-child {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .articles-slider .swiper-slide {
    width: 80%;
  }
}
@media only screen and (max-height: 420px) {
  .articles-slider .swiper-slide {
    width: 45%;
  }
}
@media only screen and (max-width: 480px) {
  .articles-slider .swiper-slide {
    padding: 0 0 0 15px;
  }
}
.articles-slider .swiper-slide:nth-child(n+4) {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .articles-slider .swiper-slide:nth-child(n+4) {
    display: block;
  }
}
.articles-slider .swiper-slide--cta {
  flex: 1 0 auto;
  width: auto;
}
@media only screen and (min-width: 1025px) {
  .articles-slider .swiper-slide--cta {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .articles-slider .swiper-slide--cta {
    max-width: 80%;
  }
}
@media only screen and (max-height: 420px) {
  .articles-slider .swiper-slide--cta {
    max-width: 45%;
  }
}
.articles-slider__cta {
  max-width: 1160px;
  padding: 0 20px;
  text-align: center;
  margin: 20px auto 0;
}
@media only screen and (max-width: 1200px) {
  .articles-slider__cta {
    display: none;
  }
}

.button {
  display: inline-block;
  overflow: hidden;
  width: auto;
  padding: 9px 30px;
  background: none;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: #ffffff;
  border: transparent;
  text-shadow: 1px 1px 0 #134069;
  cursor: pointer;
  filter: contrast(100%) drop-shadow(0 0 2px #242424);
  transition: text-shadow 0.3s, filter 0.3s;
}
@media only screen and (max-width: 767px) {
  .button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
}
.button:before, .button:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.button:before {
  background: url(../media/layout/ui/button-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-image-source: url(../media/layout/ui/button.png);
  border-image-slice: 16 62 12 20;
  border-image-repeat: stretch;
  border-top: 8px solid;
  border-right: 31px solid;
  border-bottom: 6px solid;
  border-left: 10px solid;
}
.button:after {
  height: calc(100% + 10px);
  top: -5px;
  border: none;
  background-image: none;
  background: radial-gradient(closest-side, rgb(138, 174, 217) 0%, rgba(26, 60, 94, 0) 100%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s;
}
.button span {
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .button:hover:not(.button--disabled):not([disabled]), .button:active:not(.button--disabled):not([disabled]), .button:focus:not(.button--disabled):not([disabled]) {
    outline: none;
    filter: contrast(110%) drop-shadow(0 0 4px #242424);
  }
  .button:hover:not(.button--disabled):not([disabled]):after, .button:active:not(.button--disabled):not([disabled]):after, .button:focus:not(.button--disabled):not([disabled]):after {
    opacity: 0.8;
  }
}
.button--processing {
  animation: fade 3s linear infinite;
  cursor: wait;
  display: none;
}
@media only screen and (min-width: 1025px) {
  .button--processing:hover:not(.button--disabled):not([disabled]) {
    filter: contrast(100%) drop-shadow(0 0 2px #242424);
  }
}
.button--processing:before {
  border-image-source: url(../media/layout/ui/button-processing.png);
}
.button--processing:after {
  background: none;
  opacity: 0;
}
.button--large {
  font-size: 22px;
  line-height: 22px;
  padding: 15px 30px;
}
.button--dark-grey:before, .button--disabled:before, .button:disabled:before {
  background: url(../media/layout/ui/button-dark-grey-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-image-source: url(../media/layout/ui/button-dark-grey.png);
}
.button--dark-grey:after, .button--disabled:after, .button:disabled:after {
  background: radial-gradient(closest-side, rgb(200, 200, 200) 0%, rgba(80, 80, 80, 0) 100%);
}
.button--disabled, .button[disabled] {
  cursor: default;
  pointer-events: none;
}
.button--gold {
  height: 34px;
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.03em;
  line-break: initial;
  color: #242424 !important;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  padding: 0;
  background: url(../media/layout/ui/button-gold-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-top: 5px solid;
  border-right: 31px solid;
  border-bottom: 6px solid;
  border-left: 32px solid;
  border-image-source: url(../media/layout/ui/button-gold.png);
  border-image-slice: 10 62 12 64;
  border-image-repeat: stretch;
  cursor: pointer;
  filter: brightness(100%) contrast(100%) drop-shadow(0 0 2px #242424);
  transition: filter 0.3s;
}
@media only screen and (max-width: 1024px) {
  .button--gold {
    margin: 10px 30px;
  }
}
@media only screen and (min-width: 1025px) {
  .button--gold:hover:not(.button--disabled):not([disabled]), .button--gold:active:not(.button--disabled):not([disabled]), .button--gold:focus:not(.button--disabled):not([disabled]) {
    outline: none;
    filter: brightness(120%) contrast(105%) drop-shadow(0 0 4px #242424);
  }
}
.button--gold:before, .button--gold:after {
  content: none;
  border: none;
}
.button--important {
  color: #242424;
  font-size: 27px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: 0.03em;
  min-height: 60px;
  padding: 15px 55px;
  overflow: hidden;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  filter: brightness(110%) contrast(105%) drop-shadow(0 0 2px #242424);
  transition: filter 0.3s;
}
@media only screen and (max-width: 480px) {
  .button--important {
    transform: scale(0.9);
  }
}
.button--important:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-image-source: url(../media/layout/ui/button-important.png);
  border-image-slice: 28 110 76 204 fill;
  border-image-repeat: stretch;
  border-image-outset: 0;
  border-top: 14px solid;
  border-right: 55px solid;
  border-bottom: 38px solid;
  border-left: 102px solid;
}
.button--important:after {
  top: 5px;
  left: 45px;
  width: calc(100% - 90px);
  height: calc(100% - 10px);
  background-image: none;
  background: radial-gradient(farthest-side, rgb(255, 243, 179) 0%, rgb(241, 216, 63) 75%, rgb(175, 138, 12) 90%);
  opacity: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button--important:after {
    content: none;
  }
}
@media only screen and (min-width: 1025px) {
  .button--important:hover:not(.button--disabled):not([disabled]), .button--important:active:not(.button--disabled):not([disabled]), .button--important:focus:not(.button--disabled):not([disabled]) {
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    filter: brightness(130%) contrast(110%) drop-shadow(0 0 4px #242424);
  }
}
.button--prev span:before {
  content: "< ";
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
.bone-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bone-title:before, .bone-title:after {
  content: "";
  flex: 1;
  display: block;
  height: 37px;
  margin-bottom: 32px;
  background: transparent url(../media/layout/ui/chain-pattern.png) center right repeat-x;
}
@media only screen and (max-width: 767px) {
  .bone-title:before, .bone-title:after {
    content: none;
    display: none;
  }
}
.bone-title:after {
  margin-bottom: 32px;
  transform: scaleX(-1) translateX(1px);
}
.bone-title__wrap {
  display: flex;
  align-items: flex-end;
}
.bone-title__wrap:before, .bone-title__wrap:after {
  content: "";
  display: block;
  height: 123px;
  width: 220px;
  background: transparent url(../media/layout/ui/bone-left.png) center center no-repeat;
}
@media only screen and (max-width: 767px) {
  .bone-title__wrap:before, .bone-title__wrap:after {
    content: none;
    display: none;
  }
}
.bone-title__wrap:before {
  margin-right: -15px;
}
.bone-title__wrap:after {
  margin-left: -13px;
  background: transparent url(../media/layout/ui/bone-right.png) center center no-repeat;
}
.bone-title__plate {
  background: url(../media/layout/ui/title-plate-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-image-source: url(../media/layout/ui/title-plate.png);
  border-image-slice: 30 70 30 70;
  border-image-repeat: stretch;
  border-image-outset: 0;
  border-top: 15px solid;
  border-right: 35px solid;
  border-bottom: 15px solid;
  border-left: 35px solid;
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  min-height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .bone-title__plate {
    font-size: 20px;
    line-height: 20px;
  }
}

.card {
  display: block;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.5));
}
.card:before, .card:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 64px;
  height: 23px;
  background: transparent url(../media/layout/ui/corner.png) center center/64px 23px no-repeat;
  z-index: 1;
}
.card:before {
  left: 0;
  transform: scaleX(-1);
}
@supports (-ms-ime-align: auto) {
  .card:before {
    content: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card:before {
    content: none;
  }
}
.card:after {
  right: 0;
}
@supports (-ms-ime-align: auto) {
  .card:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    width: 100%;
  }
  @media only screen and (max-width: 480px) {
    .card:after {
      height: 6px;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    width: 100%;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 480px), only screen and (-ms-high-contrast: active) and (max-width: 480px) {
  .card:after {
    height: 6px;
  }
}
.card__main-title {
  margin: 0;
  padding: 8px 15px;
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-size: 22px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(to left, #a1a39f 0%, #4e5256 25%, #3e4349 50%, #4e5256 75%, #a1a39f 100%);
}
@media only screen and (max-width: 480px) {
  .card__main-title {
    font-size: 20px;
    line-height: 20px;
  }
}
.card__content {
  border-bottom: 1px solid #4f545a;
  padding: 15px;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 0 calc(100% - 23px), 12px calc(100% - 22px), 30px calc(100% - 18px), 44px calc(100% - 10px), 50px 100%, calc(100% - 50px) 100%, calc(100% - 44px) calc(100% - 10px), calc(100% - 30px) calc(100% - 18px), calc(100% - 12px) calc(100% - 22px), 100% calc(100% - 23px), 100% 0);
          clip-path: polygon(0 0, 0 calc(100% - 23px), 12px calc(100% - 22px), 30px calc(100% - 18px), 44px calc(100% - 10px), 50px 100%, calc(100% - 50px) 100%, calc(100% - 44px) calc(100% - 10px), calc(100% - 30px) calc(100% - 18px), calc(100% - 12px) calc(100% - 22px), 100% calc(100% - 23px), 100% 0);
  background: linear-gradient(135deg, #e7e8dd, #bdcad9);
}
@media only screen and (max-width: 480px) {
  .card__content {
    padding: 20px 20px 30px;
  }
}
.card__content .subscriber-reward {
  width: 600px;
  margin: 0 -15px 10px;
  max-width: calc(100% + 40px);
}
@media only screen and (max-width: 480px) {
  .card__content .subscriber-reward {
    margin-left: -20px;
  }
}
.card__content .subscriber-reward:before {
  content: none;
}
.card__content img {
  display: block;
  width: 100%;
  height: auto;
}
.card__content ol {
  max-width: 250px;
  margin: 20px auto 0;
}
.card__date {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 5px;
}
.card__secondary-title {
  margin: 10px auto;
  font-size: 18px;
  line-height: 18px;
}
.card__description {
  font-family: "Roboto", Helvetica, sans-serif;
  margin: 10px auto;
  font-size: 14px;
  line-height: 18px;
}
.card__comment {
  color: #6f6f6f;
  line-height: 28px;
  padding: 40px 0 40px 40px;
}
@media only screen and (max-width: 767px) {
  .card__comment {
    padding: 30px 0 30px 20px;
  }
}
.card__comment:before {
  content: "“";
  font-size: 62px;
  line-height: 50px;
  position: absolute;
  font-family: Arial;
  font-weight: 700;
  color: rgba(111, 111, 111, 0.6);
  top: 40px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .card__comment:before {
    top: 30px;
    left: -18px;
  }
}
@media only screen and (max-width: 480px) {
  .card__comment:before {
    top: 26px;
    left: -10px;
    font-size: 50px;
  }
}
.card__comment + .card__changes:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(100% + 200px);
  background-color: rgba(121, 130, 141, 0.6);
  left: -100px;
  top: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 120px, rgb(0, 0, 0) 0, calc(100% - 120px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 120px, rgb(0, 0, 0) 0, calc(100% - 120px), rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}
@media only screen and (max-width: 1200px) {
  .card__comment + .card__changes:before {
    width: calc(100% + 160px);
    left: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .card__comment + .card__changes:before {
    width: calc(100% + 80px);
    left: -40px;
  }
}
@media only screen and (max-width: 480px) {
  .card__comment + .card__changes:before {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.card__comment p:first-child {
  margin-top: 0;
}
.card__comment p:last-child {
  margin-bottom: 0;
}
.card__changes {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .card__changes {
    padding: 30px 0;
  }
}
.card__changes li:first-child p:first-child {
  margin-top: 0;
}
.card__changes li:last-child p:last-child {
  margin-bottom: 0;
}
.card__cta {
  margin-top: 20px;
}
.card__featured-item {
  position: absolute;
  height: calc(100% + 20px);
  right: 50px;
  bottom: 1px;
  width: calc(100% - 100px);
  text-align: right;
  overflow: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .card__featured-item {
    -webkit-mask-image: linear-gradient(to bottom, black 150px, transparent 250px);
            mask-image: linear-gradient(to bottom, black 150px, transparent 250px);
    width: calc(100% - 80px);
    right: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .card__featured-item {
    width: calc(100% - 40px);
    right: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .card__featured-item {
    -webkit-mask-image: linear-gradient(to bottom, black 120px, transparent 200px);
            mask-image: linear-gradient(to bottom, black 120px, transparent 200px);
  }
}
.card__featured-item img {
  display: inline-block;
  width: calc(30% + 50px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .card__featured-item img {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .card__featured-item img {
    width: 70%;
  }
}
.card--image {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
.card--image .card__content {
  padding-bottom: 56.25%;
  overflow: hidden;
  background-size: cover;
  background: #4f545a;
}
.card--image .card__content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: transform 0.3s;
}
.card--image .card__content .card__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 70px;
  z-index: 10;
}
.card--image .card__content .card__image-caption:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 150%;
  width: 150%;
  left: -25%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%);
  filter: blur(10px);
}
@media only screen and (max-width: 1024px) {
  .card--image .card__content .card__image-caption {
    padding: 30px 20px;
  }
}
@supports (-ms-ime-align: auto) {
  .card--image .card__content .card__image-caption {
    bottom: 6px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card--image .card__content .card__image-caption {
    bottom: 6px;
  }
}
.card--image .card__content .card__image-caption h3 {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .card--patch-notes-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section {
    margin-left: 0;
    margin-right: 0;
  }
  .card--patch-notes-section:before, .card--patch-notes-section:after {
    content: none;
  }
}
.card--patch-notes-section .divider {
  max-width: 100%;
}
.card--patch-notes-section .card__ornament {
  position: absolute;
  top: -15px;
  left: 30px;
  height: 76px;
  z-index: 10;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section .card__ornament {
    left: 12px;
  }
}
.card--patch-notes-section .card__ornament--behemoth {
  height: 120px;
  top: -37px;
  left: 8px;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section .card__ornament--behemoth {
    left: -10px;
  }
}
.card--patch-notes-section .card__ornament--weapon {
  height: 84px;
  top: -19px;
  left: 26px;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section .card__ornament--weapon {
    left: 8px;
  }
}
.card--patch-notes-section .card__main-title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 8px 20px 8px 120px;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section .card__main-title {
    padding-left: 100px;
  }
}
.card--patch-notes-section .card__content {
  padding: 0 120px;
  text-align: left;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section .card__content {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section .card__content {
    padding: 0 40px;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media only screen and (max-width: 480px) {
  .card--patch-notes-section .card__content {
    padding: 0 20px;
  }
}
.card--patch-notes-section .card__content ul {
  list-style: initial;
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section .card__content ul {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card--patch-notes-section .card__content ul {
    padding-left: 15px;
  }
}
.card--patch-notes-section .card__content ul li:first-child p:first-child {
  margin-top: 0;
}
.card--patch-notes-section .card__content ul li:last-child p:last-child {
  margin-bottom: 0;
}
.card--patch-notes-section .card__content ul li + li {
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .card--patch-notes-section-featured, .card--hunt-pass {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section-featured, .card--hunt-pass {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .card--patch-notes-section-featured:before, .card--patch-notes-section-featured:after, .card--hunt-pass:before, .card--hunt-pass:after {
    content: none;
  }
}
.card--patch-notes-section-featured .divider, .card--hunt-pass .divider {
  max-width: none;
}
.card--patch-notes-section-featured .card__content, .card--hunt-pass .card__content {
  padding: 250px 120px 50px;
  color: #ffffff;
  background: #111418;
  text-align: left;
}
@media only screen and (max-width: 1200px) {
  .card--patch-notes-section-featured .card__content, .card--hunt-pass .card__content {
    padding: 250px 80px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section-featured .card__content, .card--hunt-pass .card__content {
    padding: 200px 40px 50px;
  }
}
@media only screen and (max-width: 480px) {
  .card--patch-notes-section-featured .card__content, .card--hunt-pass .card__content {
    padding: 160px 20px 25px;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.card--patch-notes-section-featured .card__content h3, .card--hunt-pass .card__content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.card--patch-notes-section-featured .card__content h3 + p, .card--hunt-pass .card__content h3 + p {
  margin-top: 10px;
}
.card--patch-notes-section-featured .card__content .card__date, .card--hunt-pass .card__content .card__date {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 480px) {
  .card--patch-notes-section-featured .card__content p:last-child, .card--hunt-pass .card__content p:last-child {
    margin-bottom: 0;
  }
}
.card--patch-notes-section-featured .card__content .button, .card--hunt-pass .card__content .button {
  text-align: right;
}
.card--patch-notes-section-featured .card__background, .card--hunt-pass .card__background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  height: auto;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 150px, rgba(0, 0, 0, 0.5) 250px, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 150px, rgba(0, 0, 0, 0.5) 250px, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section-featured .card__background, .card--hunt-pass .card__background {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 100px, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 100px, rgba(0, 0, 0, 0) 100%);
  }
}
@supports (-ms-ime-align: auto) {
  .card--patch-notes-section-featured .card__background, .card--hunt-pass .card__background {
    -webkit-mask-image: none;
            mask-image: none;
    opacity: 0.4;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card--patch-notes-section-featured .card__background, .card--hunt-pass .card__background {
    -webkit-mask-image: none;
            mask-image: none;
    opacity: 0.4;
  }
}
.card--patch-notes-section-featured .card__cta, .card--hunt-pass .card__cta {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section-featured .card__cta, .card--hunt-pass .card__cta {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .card--patch-notes-section-featured .card__cta .button, .card--hunt-pass .card__cta .button {
    text-align: center;
  }
}
.card--hunt-pass .hunt-pass-icons {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 50;
  pointer-events: none;
}
.card--hunt-pass .hunt-pass-icons:before, .card--hunt-pass .hunt-pass-icons:after {
  content: "";
  width: 75px;
  height: 78px;
  background: transparent url(../media/layout/pages/hunt-pass/badge-elite.png) center center/100% auto no-repeat;
  position: absolute;
  top: -19px;
  left: 115px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .hunt-pass-icons:before, .card--hunt-pass .hunt-pass-icons:after {
    left: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .hunt-pass-icons:before, .card--hunt-pass .hunt-pass-icons:after {
    width: 60px;
    height: 62px;
    left: 18px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass .hunt-pass-icons:before, .card--hunt-pass .hunt-pass-icons:after {
    left: 7px;
  }
}
.card--hunt-pass .hunt-pass-icons:after {
  content: none;
  background-image: url(../media/layout/pages/hunt-pass/badge-basic.png);
  top: -17px;
  left: 190px;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .hunt-pass-icons:after {
    left: 110px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .hunt-pass-icons:after {
    left: 75px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass .hunt-pass-icons:after {
    left: 67px;
  }
}
.card--hunt-pass .card__background {
  filter: blur(10px);
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
}
.card--hunt-pass .card__content {
  padding-right: calc(20px + 50%);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content {
    padding: 100px calc(100px + 30%) 50px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__content {
    padding: 200px 40px 50px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content {
    padding: 200px 20px 30px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass .card__content {
    padding: 150px 10px 20px;
  }
}
.card--hunt-pass .card__content h4 {
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content h4 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content h4 {
    font-size: 16px;
    line-height: 16px;
  }
}
.card--hunt-pass .card__content h3 {
  font-size: 50px;
  line-height: 45px;
  margin-top: 5px;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content h3 {
    font-size: 40px;
    line-height: 37px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content h3 {
    margin-top: 3px;
    font-size: 30px;
    line-height: 28px;
  }
}
.card--hunt-pass .card__content p {
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content p {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content {
    padding: 30% 50px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__content {
    padding: 200px 40px 50px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content {
    padding: 200px 20px 30px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass .card__content {
    padding: 150px 10px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content h4 {
    font-size: 22px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__content h4 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content h4 {
    font-size: 18px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__content h3 {
    font-size: 50px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__content h3 {
    font-size: 40px;
    line-height: 37px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__content h3 {
    margin-top: 3px;
    font-size: 30px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__featured-item {
    height: 100%;
    top: -20px;
    bottom: auto;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 75%);
            mask-image: linear-gradient(to bottom, black 50%, transparent 75%);
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__featured-item {
    -webkit-mask-image: linear-gradient(to bottom, black 150px, transparent 250px);
            mask-image: linear-gradient(to bottom, black 150px, transparent 250px);
    right: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass .card__featured-item {
    -webkit-mask-image: linear-gradient(to bottom, black 120px, transparent 200px);
            mask-image: linear-gradient(to bottom, black 120px, transparent 200px);
  }
}
.card--hunt-pass .card__featured-item img {
  width: 52%;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__featured-item img {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass .card__featured-item img {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass .card__featured-item img {
    width: 90%;
  }
}
.card--hunt-pass .card__cta {
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass .card__cta {
    display: none;
  }
}
.card--hunt-pass-free .hunt-pass-icons:after {
  content: "";
}
.card--hunt-pass-free#cold-front .card__featured-item img {
  width: 62%;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass-free .card__content {
    padding: 30% 50px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass-free .card__content {
    padding: 200px 40px 50px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass-free .card__content {
    padding: 200px 20px 30px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass-free .card__content {
    padding: 150px 10px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass-free .card__content h4 {
    font-size: 22px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass-free .card__content h4 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass-free .card__content h4 {
    font-size: 18px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass-free .card__content h3 {
    font-size: 50px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .card--hunt-pass-free .card__content h3 {
    font-size: 40px;
    line-height: 37px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass-free .card__content h3 {
    margin-top: 3px;
    font-size: 30px;
    line-height: 28px;
  }
}
.card--hunt-pass-free-only .hunt-pass-icons:before {
  content: none;
}
.card--hunt-pass-free-only .hunt-pass-icons:after {
  content: "";
  left: 115px;
}
@media only screen and (max-width: 1024px) {
  .card--hunt-pass-free-only .hunt-pass-icons:after {
    left: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .card--hunt-pass-free-only .hunt-pass-icons:after {
    left: 18px;
  }
}
@media only screen and (max-width: 320px) {
  .card--hunt-pass-free-only .hunt-pass-icons:after {
    left: 7px;
  }
}

@media only screen and (min-width: 1025px) {
  a.card.card--image:hover .card__content img, a.card.card--image:active .card__content img, a.card.card--image:focus .card__content img {
    transform: scale(1.1);
  }
}
.overlay.overlay--choose-your-platform, .download-page {
  overflow: auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  .overlay.overlay--choose-your-platform, .download-page {
    display: block;
    padding: 80px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .overlay.overlay--choose-your-platform, .download-page {
    padding: 60px 20px 20px;
  }
}
.overlay.overlay--choose-your-platform .overlay__bg, .download-page .overlay__bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background: #303035 url("/assets/media/layout/ui/blue-green-white-bg.jpg") center top/cover no-repeat;
  transform: scaleX(-1);
}
.overlay.overlay--choose-your-platform .overlay__bg:before, .overlay.overlay--choose-your-platform .overlay__bg:after, .download-page .overlay__bg:before, .download-page .overlay__bg:after {
  width: 30px;
  right: auto;
  left: 20px;
  top: 30px;
}
@media only screen and (max-width: 480px) {
  .overlay.overlay--choose-your-platform .overlay__wrap, .download-page .overlay__wrap {
    padding: 0;
  }
}
.overlay.overlay--choose-your-platform .overlay__content, .download-page .overlay__content {
  width: 1400px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .overlay.overlay--choose-your-platform .overlay__content .title-block, .download-page .overlay__content .title-block {
    margin-bottom: 20px;
  }
}

.download-page {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .download-page {
    display: block;
    min-height: 0;
  }
}
.download-page__wrap {
  margin: 60px auto;
}
@media only screen and (max-width: 767px) {
  .download-page__wrap {
    margin: 20px auto;
  }
}
.download-page__bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background: #303035 url("/assets/media/layout/ui/blue-green-white-bg.jpg") center top/cover no-repeat;
  transform: scaleX(-1);
}
.download-page .platforms p {
  padding: 0 20px;
}

figure {
  margin: 70px auto;
  text-align: center;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  figure {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 480px) {
  figure {
    margin: 40px auto;
  }
}
.roadmap figure {
  margin: 20px auto 0;
}
figure:before {
  content: "";
}
figure .image {
  display: inline-block;
}
figure .image:before, figure .image:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
}
@media only screen and (max-width: 480px) {
  figure .image:before, figure .image:after {
    height: 6px;
  }
}
figure img, figure video, figure iframe {
  display: block;
  margin: 0 auto;
  padding: 0;
}
figure figcaption {
  margin-top: 10px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}
figure.large, figure.iframe {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
figure.large .image, figure.iframe .image {
  display: block;
}
figure.large img, figure.large video, figure.large iframe, figure.iframe img, figure.iframe video, figure.iframe iframe {
  padding: 0;
  width: 100%;
  max-width: none;
  height: auto;
}
figure.large figcaption, figure.iframe figcaption {
  text-align: left;
  margin-top: 15px;
}
figure.iframe {
  padding-bottom: 56.25%;
}
figure.iframe .image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 21px;
}
@media only screen and (max-width: 480px) {
  figure.iframe .image {
    top: 18px;
  }
}
figure.iframe .image iframe {
  height: calc(100% - 29px);
}
@media only screen and (max-width: 480px) {
  figure.iframe .image iframe {
    height: calc(100% - 24px);
  }
}
figure.naked:before {
  content: none;
}
figure.naked .image:before, figure.naked .image:after {
  content: none;
}

.faq {
  background: #242424;
  padding: 60px 0;
  color: #ffffff;
}
.faq:before {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .faq:before {
    height: 6px;
  }
}
.faq-title {
  font-size: 40px;
  line-height: 40px;
  text-align: center;
}
.faq-title:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  width: calc(100% - 40px);
  max-width: 800px;
  transform: scale(0.5);
  margin: 8px auto 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 480px) {
  .faq-title:after {
    height: 6px;
  }
}
.faq-questions {
  width: calc(100% - 40px);
  max-width: 800px;
  margin: 40px auto;
}
.faq-questions dt {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin-top: 60px;
  letter-spacing: 0.04em;
}
.faq-questions dd {
  margin: 20px auto;
  line-height: 20px;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .faq-questions dd {
    margin: 10px auto 20px;
  }
}
.faq-questions dd a {
  color: #89c6ff;
  font-weight: 700;
}

.hero {
  height: calc(calc(var(--ivh, 1vh) * 100) - 100px);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (min-width: 1920px) {
  .hero {
    height: 900px;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .hero {
    height: calc(var(--ivh, 1vh) * 100);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero {
    height: calc(100vh - 100px);
    z-index: 1;
  }
}
@media only screen and (-ms-high-contrast: none) and (min-width: 1920px), only screen and (-ms-high-contrast: active) and (min-width: 1920px) {
  .hero {
    height: 900px;
  }
}
.hero__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .hero__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
}
.hero__bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(../media/layout/pages/support-a-creator/dauntless-slayers-posed.jpg);
  --mask-top-limit: 400px;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - var(--mask-top-limit)), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - var(--mask-top-limit)), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1920px) {
  .hero__bg {
    z-index: -1;
  }
}
.hero__content {
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .hero__content {
    margin-bottom: 40px;
  }
}
.hero__date, .hero__subhead {
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px #242424;
}
.hero__title {
  margin: 5px auto 20px;
  font-size: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-shadow: 0 0 4px #242424;
}
@media only screen and (max-width: 767px) {
  .hero__title {
    font-size: 30px;
    line-height: 30px;
  }
}
.hero__tagline {
  position: absolute;
  margin: 0;
  bottom: 60px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.05em;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .hero__tagline {
    position: relative;
    bottom: auto;
    font-size: 14px;
    line-height: 16px;
  }
}
.hero--medium {
  height: calc(calc(var(--ivh, 1vh) * 100) * .75);
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .hero--medium {
    display: block;
    height: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero--medium:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    content: "";
    display: block;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 480px), only screen and (-ms-high-contrast: active) and (max-width: 480px) {
  .hero--medium:after {
    height: 6px;
  }
}
.hero--medium .hero__bg {
  --mask-top-limit: 600px;
}
@media only screen and (max-width: 767px) {
  .hero--medium .hero__bg {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    top: 50px;
    --mask-top-limit: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .hero--medium .hero__bg {
    padding-bottom: 56.25%;
  }
}
@media only screen and (max-height: 480px) {
  .hero--medium .hero__bg {
    padding-bottom: 30%;
  }
}
.hero--small {
  height: 400px;
}
@media only screen and (max-width: 767px) {
  .hero--small {
    height: auto;
  }
}
.hero--small .hero__wrap {
  padding-bottom: 0;
}
.hero--small .hero__bg {
  background-position: center center;
  --mask-top-limit: 120px;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) var(--mask-top-limit), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) var(--mask-top-limit), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .hero--small .hero__bg {
    --mask-top-limit: 100px;
    filter: blur(2px);
  }
}
.hero--small .hero__content {
  margin: 120px auto 50px;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .hero--small .hero__content {
    margin: 100px auto 20px;
  }
}
.hero--small .hero__title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 60px;
  line-height: 55px;
  font-weight: 900;
  text-shadow: 0 0 20px black;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .hero--small .hero__title {
    font-size: 50px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .hero--small .hero__title {
    font-size: 40px;
    line-height: 35px;
  }
}
.hero--small .hero__subhead {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  margin: 15px 0 0;
}

.image-comparison__images {
  cursor: w-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.image-comparison__image.image {
  overflow: hidden;
}
.image-comparison__image.image:first-child {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  width: 50%;
  z-index: 10;
}
.image-comparison__image.image:first-child:before, .image-comparison__image.image:first-child:after {
  content: none;
}
.image-comparison__image.image:first-child img {
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);
  width: auto;
  z-index: 0;
}
@media only screen and (max-width: 480px) {
  .image-comparison__image.image:first-child img {
    top: 6px;
    height: calc(100% - 12px);
  }
}
.image-comparison__image.image img {
  pointer-events: none;
}
.image-comparison__separator {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: calc(100% - 16px);
  transform: translateX(-1px);
  z-index: 100;
  opacity: 0.75;
  cursor: col-resize;
  transition: opacity 0.3s;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.33));
}
@media only screen and (max-width: 480px) {
  .image-comparison__separator {
    top: 6px;
    height: calc(100% - 12px);
  }
}
.image-comparison__separator:before, .image-comparison__separator:after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(50% - 25px);
  background: white;
}
.image-comparison__separator:before {
  top: 0;
}
.image-comparison__separator:after {
  bottom: 0;
}
.image-comparison__separator-badge {
  position: absolute;
  top: calc(50% - 25px);
  left: -24px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid white;
}
.image-comparison__separator-badge > svg {
  position: absolute;
  fill: white;
  width: 13px;
  height: 15px;
  top: calc(50% - 7px);
  transition: left 0.3s, right 0.3s;
}
.image-comparison__separator-badge > svg:first-child {
  transform: rotate(-90deg);
  right: 8px;
}
.image-comparison__separator-badge > svg:last-child {
  transform: rotate(90deg);
  left: 8px;
}
.image-comparison:hover .image-comparison__separator-badge > svg:first-child {
  right: 5px;
}
.image-comparison:hover .image-comparison__separator-badge > svg:last-child {
  left: 5px;
}
.image-comparison--active .image-comparison__separator {
  opacity: 0.3;
  transition: left 0s, right 0s;
}

.leaderboard {
  display: flex;
  justify-content: space-between;
  max-width: 880px;
  margin: 40px auto 160px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .leaderboard {
    margin-top: 0px;
    display: block;
  }
}
.leaderboard__sidebar {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  flex-direction: column;
  padding: 55px 20px 20px 40px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__sidebar {
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 0 40px;
    margin-top: -20px;
  }
}
@media only screen and (max-width: 480px) {
  .leaderboard__sidebar {
    margin-top: -40px;
  }
}
.leaderboard__season {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 1;
  color: white;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season {
    padding: 20px 35px 20px 25px;
  }
}
.leaderboard__season > svg {
  position: absolute;
  top: 50%;
  right: 15px;
  fill: white;
  width: 15px;
  height: 13px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .leaderboard__season > svg {
    margin-left: 10px;
  }
}
.leaderboard__seasons {
  margin-bottom: 10px;
  margin-top: -15px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__seasons {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.leaderboard__seasons select {
  opacity: 0;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 10px 30px 10px 10px;
  margin-left: -15px;
  min-width: 185px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__seasons select {
    padding: 20px 35px 20px 20px;
    margin-left: 0;
  }
}
@keyframes skeleton-loading {
  to {
    background-position: right -40px top 0;
  }
}
.leaderboard__seasons.loading:before, .leaderboard__seasons.loading:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  top: 2px;
  border-radius: 4px;
}
.leaderboard__seasons.loading:after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: skeleton-loading 1.5s infinite;
}
.leaderboard__seasons.loading:before, .leaderboard__seasons.loading:after {
  height: calc(100% - 30px);
  width: calc(100% - 20px);
  top: 15px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__seasons.loading:before, .leaderboard__seasons.loading:after {
    height: calc(100% - 40px);
    top: 20px;
  }
}
.leaderboard__seasons.loading .leaderboard__season {
  opacity: 0;
}
.leaderboard__season-infos {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 0 10px;
    border: solid 1px rgba(255, 255, 255, 0.1);
  }
}
.leaderboard__season-infos li {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos li + li {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .leaderboard__season-infos li + li {
    margin-left: 20px;
  }
}
.leaderboard__season-infos li .label, .leaderboard__season-infos li .value {
  font-size: 14px;
  line-height: 14px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos li .label, .leaderboard__season-infos li .value {
    font-size: 12px;
    line-height: 12px;
  }
}
.leaderboard__season-infos li .label {
  text-transform: lowercase;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos li .label {
    text-transform: none;
  }
}
.leaderboard__season-infos li .value {
  margin: 5px 0 15px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos li .value {
    margin-bottom: 0;
  }
}
.leaderboard__season-infos li .value .date {
  display: inline-block;
  min-width: 40px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__season-infos li .value .date {
    min-width: 35px;
  }
}
@keyframes skeleton-loading {
  to {
    background-position: right -40px top 0;
  }
}
.leaderboard__season-infos li .value .date.loading:before, .leaderboard__season-infos li .value .date.loading:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  top: 2px;
  border-radius: 4px;
}
.leaderboard__season-infos li .value .date.loading:after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: skeleton-loading 1.5s infinite;
}
.leaderboard__main {
  flex-grow: 1;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__main {
    padding-right: 0;
  }
}
@keyframes skeleton-loading {
  to {
    background-position: right -40px top 0;
  }
}
.leaderboard__main.loading .name span:before, .leaderboard__main.loading .name span:after,
.leaderboard__main.loading .level span:before,
.leaderboard__main.loading .level span:after,
.leaderboard__main.loading .time-left span:before,
.leaderboard__main.loading .time-left span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  top: 2px;
  border-radius: 4px;
}
.leaderboard__main.loading .name span:after,
.leaderboard__main.loading .level span:after,
.leaderboard__main.loading .time-left span:after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: skeleton-loading 1.5s infinite;
}
.leaderboard__header, .leaderboard__entry {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 1px 0;
}
@media only screen and (max-width: 480px) {
  .leaderboard__header, .leaderboard__entry {
    padding: 10px 0;
  }
}
.leaderboard__header {
  opacity: 0.5;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .leaderboard__header {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.75px;
  }
}
@media only screen and (max-width: 480px) {
  .leaderboard__header {
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.5px;
  }
}
@media only screen and (max-width: 480px) {
  .leaderboard__header .rank {
    opacity: 0;
  }
}
.leaderboard__header .rank:after {
  content: none;
}
.leaderboard__header .level {
  white-space: nowrap;
  display: flex;
  justify-content: center;
}
.leaderboard__header .time-left {
  display: flex;
  justify-content: center;
}
.leaderboard__entry {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .leaderboard__entry {
    align-items: flex-start;
  }
}
.leaderboard__entry:nth-of-type(odd) {
  background: rgba(137, 198, 255, 0.04);
}
.leaderboard__entry:nth-of-type(1):before, .leaderboard__entry:nth-of-type(2):before, .leaderboard__entry:nth-of-type(3):before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}
.leaderboard__entry:nth-of-type(1) ::-moz-selection {
  background: rgba(255, 213, 0, 0.7);
}
.leaderboard__entry:nth-of-type(1) ::selection {
  background: rgba(255, 213, 0, 0.7);
}
.leaderboard__entry:nth-of-type(1):before {
  background: linear-gradient(to right, rgba(255, 213, 0, 0.2), rgba(255, 213, 0, 0) 100px);
}
.leaderboard__entry:nth-of-type(2) ::-moz-selection {
  background: rgba(255, 255, 255, 0.3);
}
.leaderboard__entry:nth-of-type(2) ::selection {
  background: rgba(255, 255, 255, 0.3);
}
.leaderboard__entry:nth-of-type(2):before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(100, 100, 100, 0) 80px);
}
.leaderboard__entry:nth-of-type(3) ::-moz-selection {
  background: rgb(114, 42, 9);
}
.leaderboard__entry:nth-of-type(3) ::selection {
  background: rgb(114, 42, 9);
}
.leaderboard__entry:nth-of-type(3):before {
  background: linear-gradient(to right, rgba(114, 42, 9, 0.2), rgba(114, 42, 9, 0) 60px);
}
.leaderboard__entry .rank {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
}
.leaderboard__entry .rank:after {
  content: ".";
}
.leaderboard__entry .rank:before {
  font-size: 20px;
  position: absolute;
  left: 15px;
}
@media only screen and (max-width: 480px) {
  .leaderboard__entry .rank:before {
    left: calc(50% - 8px);
    top: 18px;
  }
}
.leaderboard__entry .level {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
}
@media only screen and (max-width: 480px) {
  .leaderboard__entry .level {
    font-size: 18px;
    line-height: 18px;
  }
}
.leaderboard__entry .time-left {
  line-height: 20px;
}
@media only screen and (max-width: 480px) {
  .leaderboard__entry .time-left {
    font-size: 16px;
    line-height: 18px;
  }
}
.leaderboard__entry--up .rank:before {
  content: "▴";
  color: green;
}
.leaderboard__entry--down .rank:before {
  content: "▾";
  color: red;
}
.leaderboard .rank,
.leaderboard .name,
.leaderboard .level,
.leaderboard .time-left {
  flex-shrink: 0;
  padding: 0 10px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .leaderboard .rank,
  .leaderboard .name,
  .leaderboard .level,
  .leaderboard .time-left {
    padding: 0 5px;
  }
}
.leaderboard .rank span,
.leaderboard .name span,
.leaderboard .level span,
.leaderboard .time-left span {
  display: inline-block;
}
.leaderboard .rank {
  width: 80px;
  padding-right: 0;
}
@media only screen and (max-width: 480px) {
  .leaderboard .rank {
    width: 50px;
  }
}
.leaderboard .name {
  flex: 1;
  text-align: left;
  overflow: hidden;
}
.leaderboard .name .guild-name {
  display: block;
  width: 100%;
  max-width: 180px;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.leaderboard .name .guild-tag {
  display: block;
  max-width: 50px;
  opacity: 0.75;
  font-size: 12px;
  line-height: 12px;
  margin-top: 4px;
}
.leaderboard .level {
  width: 100px;
}
@media only screen and (max-width: 480px) {
  .leaderboard .level {
    width: 40px;
  }
}
.leaderboard .level span {
  min-width: 30px;
}
.leaderboard .time-left {
  width: 120px;
}
@media only screen and (max-width: 480px) {
  .leaderboard .time-left {
    width: 80px;
    padding-right: 10px;
  }
}
.leaderboard .time-left span {
  min-width: 40px;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before, .loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.pangar-animation {
  width: 219.5px;
  height: 75px;
  background: url(/assets/media/layout/ui/pangar-animation-strip-bw.png);
  background-size: auto 100%;
  animation: play 3s steps(52) infinite;
  opacity: 0.8;
  margin: 10px auto 20px;
  left: -15px;
}

@keyframes play {
  100% {
    background-position: -22821px;
  }
}
.name-tag {
  display: inline-block;
  padding: 4px 20px;
  border: 1px solid #4f545a;
  box-shadow: inset 1px 1px 0 #ffffff;
  background: linear-gradient(to left, #ffffff, #bdbdbd);
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
  z-index: 10;
}
.name-tag span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.name-tag:before, .name-tag:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: -2px;
  width: 26px;
  height: 28px;
  background: transparent url(../media/layout/ui/gem.png) left center/52px 28px no-repeat;
}
.name-tag:before {
  left: -13px;
}
.name-tag:after {
  right: -13px;
}
@media only screen and (max-width: 767px) {
  .name-tag:before {
    left: -10px;
  }
  .name-tag:after {
    right: -10px;
  }
}

.ornament, .hunt-pass__rewards-title:before, .hunt-pass__ff-title:before, .article__content table thead:before, .article__content figure:before, figure:before {
  display: block;
  height: 13px;
  background: transparent url(../media/layout/ui/ornament.png) center bottom/109px 13px no-repeat;
  z-index: 5;
}
@media only screen and (max-width: 480px) {
  .ornament, .hunt-pass__rewards-title:before, .hunt-pass__ff-title:before, .article__content table thead:before, .article__content figure:before, figure:before {
    height: 10px;
    background: transparent url(../media/layout/ui/ornament.png) center bottom/84px 10px no-repeat;
  }
}
.ornament--solid, .article__content figure.large:before, figure.large:before, figure.iframe:before {
  height: 21px;
  background: transparent url(../media/layout/ui/ornament-solid.png) center bottom/223px 21px no-repeat;
}
@media only screen and (max-width: 480px) {
  .ornament--solid, .article__content figure.large:before, figure.large:before, figure.iframe:before {
    height: 18px;
    background: transparent url(../media/layout/ui/ornament-solid.png) center bottom/191px 18px no-repeat;
  }
}
.ornament--feathers, .hunt-pass__rewards-title:before, .hunt-pass__ff-title:before {
  height: 28px;
  background: transparent url(../media/layout/ui/ornament-feathers.png) center bottom/325px 28px no-repeat;
  margin-bottom: -5px;
}
@media only screen and (max-width: 480px) {
  .ornament--feathers, .hunt-pass__rewards-title:before, .hunt-pass__ff-title:before {
    margin-bottom: -4px;
    height: 24px;
    background: transparent url(../media/layout/ui/ornament-feathers.png) center bottom/280px 24px no-repeat;
  }
}
.ornament--medalion {
  height: 144px;
  background: transparent url(../media/layout/ui/ornament-medalion.png) center bottom/351px 144px no-repeat;
}
.ornament--medalion img {
  display: block;
  height: 144px;
  width: auto;
  margin: 0 auto;
}
.ornament--medalion + * {
  margin-top: -4px;
  z-index: 1;
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay__bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #242424;
  opacity: 0.95;
  cursor: pointer;
}
.overlay__bg:before, .overlay__bg:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 21px;
  background-color: #ffffff;
  top: 30px;
  right: 30px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1024px) {
  .overlay__bg:before, .overlay__bg:after {
    top: 24px;
    right: 14px;
  }
}
.overlay__bg:after {
  transform: rotate(-45deg);
}
.overlay__wrap {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  max-width: 1440px;
  transform: translateY(-40px);
  transition: transform 0.3s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .overlay__wrap {
    margin: 0;
  }
}
.overlay__content iframe, .overlay__content picture {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}
.overlay__content .pangar-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .overlay__content .pangar-animation {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
.overlay--media .card:before, .overlay--media .card:after {
  content: none;
}
.overlay--media .card__content {
  padding: 0;
  padding-bottom: 56.25%;
  -webkit-clip-path: none;
          clip-path: none;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.overlay--media .card__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@supports (-ms-ime-align: auto) {
  .overlay--media .card__content img {
    height: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .overlay--media .card__content img {
    height: auto;
  }
}
.overlay--media .overlay__content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.overlay--hunt-pass .overlay__wrap {
  max-width: 540px;
}
.overlay--hunt-pass .card__header .ornament, .overlay--hunt-pass .card__header .hunt-pass__rewards-title:before, .overlay--hunt-pass .card__header .hunt-pass__ff-title:before, .overlay--hunt-pass .card__header .article__content table thead:before, .article__content table .overlay--hunt-pass .card__header thead:before, .overlay--hunt-pass .card__header figure:before {
  top: 5px;
}
.overlay--hunt-pass .card__content {
  padding: 0;
  padding-bottom: 100%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.overlay--hunt-pass .card__content video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@supports (-ms-ime-align: auto) {
  .overlay--hunt-pass .card__content video {
    height: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .overlay--hunt-pass .card__content video {
    height: auto;
  }
}
.overlay--hunt-pass .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #242424;
  margin: 0;
  font-size: 5px;
}
.overlay--hunt-pass .overlay__content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.overlay--weapon .overlay__wrap {
  width: auto;
  max-width: 100%;
}
@media only screen and (max-width: 960px) {
  .overlay--weapon .overlay__wrap {
    max-width: 600px;
    margin-top: 20px;
  }
}
@media only screen and (max-height: 480px) {
  .overlay--weapon .overlay__wrap {
    max-width: 360px;
  }
}
@media only screen and (max-height: 600px) {
  .overlay--weapon .overlay__content {
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding-top: 20px;
  }
}
.overlay--weapon .overlay__content:before, .overlay--weapon .overlay__content:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  display: block;
}
@media only screen and (max-width: 480px) {
  .overlay--weapon .overlay__content:before, .overlay--weapon .overlay__content:after {
    height: 6px;
  }
}
.overlay--weapon .weapon-overlay {
  display: flex;
}
@media only screen and (max-width: 960px) {
  .overlay--weapon .weapon-overlay {
    flex-direction: column;
    padding-top: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .overlay--weapon .weapon-overlay {
    padding-top: 32px;
  }
}
.overlay--weapon .weapon-overlay__title {
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  padding: 6px 20px 6px 100px;
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(to right, #373c41 60%, #616971 100%);
  z-index: 10;
}
@media only screen and (max-width: 960px) {
  .overlay--weapon .weapon-overlay__title {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .overlay--weapon .weapon-overlay__title {
    padding: 5px 10px 5px 70px;
    font-size: 22px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 350px) {
  .overlay--weapon .weapon-overlay__title {
    font-size: 19px;
  }
}
@media only screen and (max-height: 480px) {
  .overlay--weapon .weapon-overlay__title {
    padding: 5px 10px 5px 70px;
    width: 100%;
    font-size: 19px;
    line-height: 22px;
  }
}
.overlay--weapon .weapon-overlay__title .medallion {
  position: absolute;
  top: -27px;
  left: 15px;
  height: 80px;
  width: 80px;
  background-size: 100%;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .overlay--weapon .weapon-overlay__title .medallion {
    top: -15px;
    left: 5px;
    height: 60px;
    width: 60px;
  }
}
@media only screen and (max-height: 480px) {
  .overlay--weapon .weapon-overlay__title .medallion {
    top: -15px;
    left: 5px;
    height: 60px;
    width: 60px;
  }
}
.overlay--weapon .weapon-overlay__video {
  flex-shrink: 1;
}
.overlay--weapon .weapon-overlay__video video {
  display: block;
  width: 100%;
}
.overlay--weapon .weapon-overlay__content {
  flex-shrink: 0;
  width: 360px;
  background: linear-gradient(135deg, #e7e8dd, #bdcad9);
  padding: 75px 35px 35px;
}
@media only screen and (max-width: 960px) {
  .overlay--weapon .weapon-overlay__content {
    padding: 35px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .overlay--weapon .weapon-overlay__content {
    padding: 20px;
  }
}
@media only screen and (max-height: 480px) {
  .overlay--weapon .weapon-overlay__content {
    display: none;
  }
}
.overlay--weapon .weapon-overlay__stats {
  width: 100%;
}
.overlay--weapon .weapon-overlay__stats .label {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 10px;
  white-space: nowrap;
}
.overlay--weapon .weapon-overlay__stats .value {
  width: 100%;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .overlay--weapon .weapon-overlay__stats .value {
    padding: 3px 0;
  }
}
.overlay--weapon .weapon-overlay__stats .progress-bar__progress {
  transition: width 0.3s;
}
.overlay--weapon .weapon-overlay__description {
  font-size: 14px;
  line-height: 18px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 480px) {
  .overlay--weapon .weapon-overlay__description {
    margin: 10px 0 0;
  }
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay.active .overlay__wrap {
  transform: translateY(0);
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  width: 30px;
  height: 28px;
  opacity: 0.6;
  background: none;
  transition: opacity 0.3s;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: transparent url(../media/layout/ui/gem.png) left center/48px 28px no-repeat;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover, .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:active, .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: none;
  opacity: 1;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-position: right center;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:hover, .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:active, .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:focus {
  opacity: 1;
}

.partner {
  width: 16.6666%;
  padding: 20px;
}
@media only screen and (max-width: 1200px) {
  .partner {
    padding: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .partner {
    width: 19.23%;
  }
}
@media only screen and (max-width: 767px) {
  .partner {
    width: 23.8095%;
    padding: 10px;
  }
}
@media only screen and (max-width: 550px) {
  .partner {
    width: 31.25%;
    padding: 10px 0 0 10px;
  }
}
@media only screen and (max-width: 400px) {
  .partner {
    width: 45.4545%;
  }
}
.partner__thumbnail {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 100%;
  background-size: cover;
  overflow: hidden;
}
.partner__thumbnail:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
}
.partner__thumbnail img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.partner__thumbnail:hover, .partner__thumbnail:active, .partner__thumbnail:focus {
  border-color: #89c6ff;
}
.partner__thumbnail:hover img, .partner__thumbnail:active img, .partner__thumbnail:focus img {
  transform: scale(1.1);
}
.partner__live {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #c09b17 0%, #f2e52d 50%, #c09b17 100%);
  z-index: 5;
  padding: 0 20px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.partner--live .partners__partner-live {
  opacity: 1;
}
.partner__name {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 17px;
  white-space: nowrap;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}
.partner__links {
  text-align: center;
  margin: 10px 0 5px;
}
.partner__links a {
  padding: 2px;
}
.partner__links a > svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}
.partner__links a:hover > svg, .partner__links a:active > svg, .partner__links a:focus > svg {
  fill: #89c6ff;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
.partner__creator-code {
  color: #ffffff;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 10px 0 30px;
  padding-left: 34px;
  overflow: hidden;
  cursor: pointer;
}
.partner__creator-code svg {
  position: absolute;
  top: calc(50% - 13px);
  left: 5px;
  height: 24px;
  width: 24px;
  fill: #ffffff;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.partner__creator-code svg .tick, .partner__creator-code svg .arrow {
  transition: opacity 0.3s;
}
.partner__creator-code--copied svg .arrow {
  opacity: 0;
}
.partner__creator-code--copied svg .tick {
  opacity: 1 !important;
}
.partner__creator-code--copied .partner__creator-code-value {
  color: #10b907;
}
.partner__creator-code-label {
  font-size: 12px;
  line-height: 12px;
  opacity: 0.5;
  transition: transform 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.partner__creator-code-value {
  display: block;
  font-size: 15px;
  line-height: 12px;
  height: 14px;
  width: 100%;
  margin-top: 3px;
  transition: transform 0.3s, color 0.3s;
  background: none;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
  pointer-events: none;
}
.partner__creator-code:hover svg {
  opacity: 1;
}
.partner__creator-code:hover .partner__creator-code-label {
  transform: translateY(-10px);
}
.partner__creator-code:hover .partner__creator-code-value {
  transform: translateY(-8px);
}
.partner.live .partners__partner-live {
  opacity: 1;
}

.platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 20px;
  padding: 0;
}
@media only screen and (max-width: 620px) {
  .platforms {
    width: calc(100% - 10px);
    max-width: 260px;
    padding: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-height: 600px) {
  .platforms {
    width: calc(100% + 80px);
    max-width: none;
    margin: 0 -40px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .platforms {
    width: calc(100% - 10px);
    max-width: 260px;
    margin: 0 auto;
  }
}
.platforms .platform {
  display: block;
  width: 140px;
  padding-bottom: 140px;
  margin: 0 10px;
  text-align: center;
}
@media only screen and (max-width: 860px) {
  .platforms .platform {
    width: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 620px) {
  .platforms .platform {
    width: calc(50% - 6px);
    padding-bottom: calc(50% - 6px);
    margin: 0 3px 6px;
  }
}
@media only screen and (max-height: 600px) {
  .platforms .platform {
    width: 110px;
    padding-bottom: 110px;
    margin: 0 5px;
  }
}
@media only screen and (max-width: 480px) {
  .platforms .platform {
    width: calc(50% - 6px);
    padding-bottom: calc(50% - 6px);
    margin: 0 3px 6px;
  }
}
.platforms .platform__button {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: filter 0.3s, box-shadow 0.3s, transform 0.3s;
  background: url(../media/layout/ui/button-gold-square-bg.jpg) center/calc(100% + 2px) calc(100% + 2px) no-repeat;
  border-image-source: url(../media/layout/ui/button-gold-square.jpg);
  border-image-slice: 30 30;
  border-top: 15px solid;
  border-right: 15px solid;
  border-bottom: 15px solid;
  border-left: 15px solid;
  box-shadow: 4px 4px 22px rgba(0, 0, 0, 0.6);
}
.platforms .platform__button:hover, .platforms .platform__button:focus {
  outline: none;
  filter: brightness(125%) contrast(110%);
}
.platforms .platform__button:active {
  outline: none;
  box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.7);
  filter: brightness(110%) contrast(102.5%);
}
.platforms .platform__wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: filter 0.3s;
}
@media only screen and (max-width: 767px) {
  .platforms .platform__wrap {
    width: calc(100% + 20px);
    left: -10px;
  }
}
.platforms .platform__wrap > svg {
  display: inline-block;
  fill: #000000;
  width: 100%;
  height: calc(100% - 24px);
  max-height: 70px;
  filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.55));
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .platforms .platform__wrap > svg {
    height: calc(100% - 30px);
  }
}
@media only screen and (max-width: 480px) {
  .platforms .platform__wrap > svg {
    height: calc(100% - 20px);
  }
}
.platforms .platform__name {
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  color: #000000;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.55);
  margin: 10px 0 0;
}
@media only screen and (max-width: 1024px) {
  .platforms .platform__name {
    font-size: 14px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 620px) {
  .platforms .platform__name {
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -1px;
    margin-top: 5px;
  }
}
@media only screen and (max-height: 600px) {
  .platforms .platform__name {
    margin-top: 10px;
    letter-spacing: -1px;
  }
}
@media only screen and (max-width: 480px) {
  .platforms .platform__name {
    line-height: 12px;
    margin-top: 5px;
  }
}
.platforms .platform--switch .platform__name {
  margin-top: 5px;
}

.podium-step {
  max-width: 220px;
  min-width: 180px;
  font-family: "Roboto", Helvetica, sans-serif;
  transform-origin: 100% 100%;
  margin: 40px 20px 0;
  width: calc(33.33% - 20px);
}
@media only screen and (max-width: 767px) {
  .podium-step {
    order: inherit !important;
    width: 200px;
  }
}
.podium-step:nth-child(1) {
  order: 2;
}
.podium-step:nth-child(2) {
  order: 1;
}
.podium-step:nth-child(3) {
  order: 3;
}
.podium-step__rank {
  position: absolute;
  pointer-events: none;
  width: 64px;
  height: 70px;
  top: -40px;
  left: calc(50% - 32px);
  background: transparent url(../../assets/media/layout/ui/badge.png) center center no-repeat;
  text-align: center;
  line-height: 70px;
  font-size: 30px;
  font-weight: 700;
  z-index: 100;
}
.podium-step__guild-name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin: 5px auto;
}
.podium-step__guild-tag, .podium-step__label {
  font-size: 14px;
  line-height: 14px;
  opacity: 0.75;
}
.podium-step__guild-tag {
  max-width: 80px;
  margin: 0 auto;
}
.podium-step__label {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 15px;
  padding-top: 15px;
}
.podium-step__level {
  font-size: 60px;
  line-height: 60px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  max-width: 100px;
  margin: 0 auto;
}
.podium-step__time-left {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  max-width: 50px;
  margin: 0 auto;
}
.podium-step .card__content {
  padding: 25px 20px;
  background: transparent url(../../assets/media/layout/ui/podium-bg.jpg) center/cover;
}
.podium-step--first {
  filter: hue-rotate(205deg) brightness(1.2);
}
@media only screen and (max-width: 767px) {
  .podium-step--first {
    margin-left: 0;
    margin-right: 10px;
  }
}
.podium-step--second {
  filter: saturate(0.1);
  transform: scale(0.9) !important;
}
@media only screen and (max-width: 767px) {
  .podium-step--second {
    transform-origin: 0 100%;
    margin-right: 5px;
  }
}
.podium-step--second .podium-step__rank {
  filter: brightness(0.9);
}
.podium-step--third {
  filter: hue-rotate(165deg);
  transform: scale(0.85) !important;
  transform-origin: 0 100%;
}
@media only screen and (max-width: 767px) {
  .podium-step--third {
    margin-right: -5px;
    margin-left: 4px;
  }
}
.podium-step--third .podium-step__rank {
  filter: brightness(0.8);
}
@keyframes skeleton-loading {
  to {
    background-position: right -40px top 0;
  }
}
.podium-step--loading .card__content > div > *:not(.podium-step__label):before, .podium-step--loading .card__content > div > *:not(.podium-step__label):after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  top: 2px;
  border-radius: 4px;
}
.podium-step--loading .card__content > div > *:not(.podium-step__label):after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: skeleton-loading 1.5s infinite;
}
.podium-step--loading .card__content > div > .podium-step__level:before, .podium-step--loading .card__content > div > .podium-step__level:after {
  height: calc(100% - 18px);
  top: 9px;
}

.popup-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
}
.popup-wrapper .button {
  margin-top: 25px;
}
.popup-wrapper .card {
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.popup-wrapper .card__content {
  padding-bottom: 30px;
}
.popup-wrapper p {
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
}
.popup-wrapper p a {
  text-decoration: underline;
}
.popup-wrapper p a:hover {
  text-decoration: none;
}
.popup-wrapper .popup {
  display: block;
}

main.general-error #general-error {
  display: block;
}

main.transaction-error #transaction-error {
  display: block;
}

#processing-screen .processing {
  animation: fade 5s linear infinite;
  width: 100vw;
  height: 100vh;
}
#processing-screen .processing p {
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  text-align: center;
  top: calc(50% + 57.5px);
  left: 0;
  transform: translateY(-50%);
}
#processing-screen #processing-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -29.5px 0 0 -128px;
}
#processing-screen #processing-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  margin: -37.5px 0 0 -37.5px;
  animation: spin 5s linear infinite;
}

main.processing #processing-screen {
  display: block;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
#transaction-complete .transaction-complete {
  background-image: url(/assets/media/layout/ui/thank-you-logo.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 80vw;
  height: 100vh;
  display: block;
  margin: 0 auto;
}
#transaction-complete .transaction-complete p {
  margin: 0;
  font-size: 18pt;
  padding: 15px 75px;
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: linear-gradient(to right, rgba(15, 21, 28, 0), rgba(15, 21, 28, 0.75), rgba(15, 21, 28, 0));
}
#transaction-complete .transaction-complete p:before, #transaction-complete .transaction-complete p:after {
  position: absolute;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}
#transaction-complete .transaction-complete p:before {
  top: 0;
}
#transaction-complete .transaction-complete p:after {
  bottom: 0;
}

main.transaction-complete #transaction-complete {
  display: block;
}

.preview-block {
  max-width: 640px;
  margin: 0 auto;
  color: white;
  position: relative;
  background: #333333;
  cursor: pointer;
}
.preview-block:before {
  content: "";
  position: absolute;
  display: block;
  height: 13px;
  width: 100%;
  background: transparent url(../media/layout/ui/ornament.png) center bottom/109px 13px no-repeat;
  z-index: 5;
  top: -13px;
}
.preview-block__content {
  max-height: 200px;
  overflow: hidden;
  display: block;
  padding: 10px 20px;
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent);
          mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent);
  transition: max-height 0s;
}
@media only screen and (max-width: 480px) {
  .preview-block__content {
    padding: 10px 0;
  }
}
.preview-block__read-more, .preview-block__read-less {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 8px;
  padding: 15px 10px;
  font-weight: bold;
  text-shadow: 0 0 3px black;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}
.preview-block__read-more p, .preview-block__read-less p {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.preview-block__read-less {
  display: none;
}
.preview-block.active {
  cursor: default;
}
.preview-block.active .preview-block__content {
  max-height: 10000px;
  -webkit-mask-image: none;
          mask-image: none;
  padding-bottom: 60px;
  transition: max-height 2s;
}
.preview-block.active .preview-block__read-more {
  display: none;
}
.preview-block.active .preview-block__read-less {
  display: block;
}

.progress-bar {
  height: 16px;
  border: 1px solid #ffffff;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .progress-bar {
    height: 20px;
  }
}
.progress-bar__progress {
  background: linear-gradient(45deg, #0bacf2, #0b78d3);
  height: 100%;
}
@media only screen and (min-width: 1025px) {
  .progress-bar__progress {
    transition: width 0.3s;
  }
}

.g-recaptcha > div {
  margin: 20px auto;
}

.reward {
  padding: 0 10px;
  width: 17% !important;
}
@media only screen and (max-width: 1024px) {
  .reward {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .reward {
    width: 60% !important;
    padding-left: 0 15px;
  }
}
@media only screen and (max-height: 400px) {
  .reward {
    width: 17% !important;
  }
}
.reward__wrap {
  background: rgba(255, 255, 255, 0.3);
  padding-bottom: 132.55%;
}
.reward__wrap:before, .reward__wrap:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .reward__wrap:before, .reward__wrap:after {
    height: 6px;
  }
}
.reward__wrap:after {
  top: auto;
  bottom: 0;
}
.reward__number {
  position: absolute;
  top: 8px;
  left: 0;
  width: 50px;
  height: 29px;
  padding-right: 12px;
  font-size: 18px;
  line-height: 29px;
  font-weight: 700;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  background: transparent url(../media/layout/ui/card-number.png) top left/100% 100% no-repeat;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .reward__number {
    width: 40px;
    height: 23px;
    line-height: 23px;
    padding-right: 6px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .reward__number {
    top: 6px;
    width: 50px;
    height: 29px;
    padding-right: 12px;
    font-size: 18px;
    line-height: 29px;
  }
}
@media only screen and (max-height: 400px) {
  .reward__number {
    width: 40px;
    height: 23px;
    line-height: 23px;
    padding-right: 6px;
    font-size: 14px;
  }
}
.reward__image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}
.reward__image img {
  display: block;
  width: 100%;
}
.reward__amount {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 5px #ffffff;
}
@media only screen and (max-width: 1024px) {
  .reward:first-child .reward__image, .reward:last-child .reward__image {
    align-items: flex-end;
    justify-content: center;
  }
}
@media only screen and (max-width: 1024px) {
  .reward:first-child .reward__image img, .reward:last-child .reward__image img {
    width: calc(100% + 70px);
  }
}
.reward--highlight {
  width: 32% !important;
  padding: 0 30px;
}
@media only screen and (max-width: 1024px) {
  .reward--highlight {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .reward--highlight {
    width: 80% !important;
  }
}
@media only screen and (max-height: 400px) {
  .reward--highlight {
    width: 32% !important;
  }
}
.reward--highlight .reward__number {
  width: 73px;
  height: 42px;
  line-height: 42px;
  padding-right: 16px;
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  .reward--highlight .reward__number {
    font-size: 25px;
    width: 60px;
    height: 35px;
    line-height: 35px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .reward--highlight .reward__number {
    width: 73px;
    height: 42px;
    line-height: 42px;
    padding-right: 16px;
    font-size: 30px;
  }
}
@media only screen and (max-height: 400px) {
  .reward--highlight .reward__number {
    font-size: 25px;
    width: 60px;
    height: 35px;
    line-height: 35px;
    padding-right: 10px;
  }
}
.reward--highlight .reward__image img {
  width: calc(100% + 80px);
  margin-left: -40px;
  max-height: 100%;
}
@media only screen and (max-width: 1024px) {
  .reward--highlight .reward__image img {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
.reward--prestige {
  margin-left: 41.5%;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .reward--prestige {
    margin-left: 0;
  }
}
.reward--prestige-filler {
  width: 0 !important;
}
@media only screen and (max-width: 767px) {
  .reward--prestige-filler {
    display: none;
  }
}
.reward--video {
  cursor: pointer;
}
.reward--video:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 75px;
  width: 75px;
  background: transparent url(../media/layout/ui/play-button.svg) center center/75px no-repeat;
  z-index: 5;
  opacity: 0.8;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.reward--video:hover:after {
  opacity: 1;
}

.social-links ul {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1120px;
  font-size: 0;
  line-height: 0;
}
.social-links li {
  display: inline-block;
  margin-left: -8px;
}
@media only screen and (max-width: 767px) {
  .social-links li {
    margin-left: 0;
  }
}
.social-links a {
  display: block;
  padding: 0 16px 0 8px;
}
@media only screen and (max-width: 767px) {
  .social-links a {
    padding: 0 10px;
  }
}
.social-links a > svg {
  display: block;
  fill: #ffffff;
  height: 50px;
  width: 20px;
  transition: fill 0.3s, filter 0.3s;
}
.social-links a > svg.svg-facebook {
  width: 16px;
}
.social-links a > svg.svg-instagram {
  width: 17px;
}
.social-links a > svg.svg-discord {
  width: 17px;
}
.social-links a > svg.svg-twitch {
  width: 17px;
}
.social-links a:hover > svg, .social-links a:active > svg, .social-links a:focus > svg {
  fill: #89c6ff;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
.social-links--dark {
  margin-bottom: 25px;
}
.social-links--dark a {
  padding: 0 10px;
}
.social-links--dark a > svg {
  fill: #303035;
  height: 25px;
}
.social-links--dark a:hover > svg, .social-links--dark a:active > svg, .social-links--dark a:focus > svg {
  fill: #134069;
  filter: drop-shadow(0 0 10px rgba(58, 88, 136, 0.5));
}

.title-block {
  margin-bottom: 35px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1200px) {
  .title-block {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .title-block {
    -webkit-mask-image: none;
            mask-image: none;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.title-block:before, .title-block:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 5;
}
@media only screen and (max-width: 480px) {
  .title-block:before, .title-block:after {
    height: 6px;
  }
}
.title-block:before {
  top: 23px;
}
@media only screen and (max-width: 480px) {
  .title-block:before {
    top: 20px;
  }
}
.title-block:after {
  bottom: 0;
}
.ornament + .title-block__title, .hunt-pass__rewards-title:before + .title-block__title, .hunt-pass__ff-title:before + .title-block__title, .article__content table thead:before + .title-block__title, figure:before + .title-block__title {
  margin-top: 3px;
}
@media only screen and (max-width: 480px) {
  .ornament + .title-block__title, .hunt-pass__rewards-title:before + .title-block__title, .hunt-pass__ff-title:before + .title-block__title, .article__content table thead:before + .title-block__title, figure:before + .title-block__title {
    margin-top: 1px;
  }
}
.title-block__date {
  width: calc(100% + 80px);
  max-width: 520px;
  margin: -5px auto 0;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 35px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 520px) {
  .title-block__date {
    margin: -5px -40px 0;
    max-width: none;
  }
}
@media only screen and (max-width: 480px) {
  .title-block__date {
    margin-top: -4px;
    font-size: 14px;
    line-height: 25px;
  }
}
@supports (-ms-ime-align: auto) {
  .title-block__date {
    display: flex;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-block__date {
    display: flex;
  }
}
.title-block__date span {
  display: block;
  height: 38px;
  background: radial-gradient(circle, #303035, #616971 100%);
  border-top: 3px solid #7c838a;
  -webkit-clip-path: polygon(0 100%, 0 calc(100% - 3px), 13px calc(100% - 3px), 31px calc(100% - 5px), 48px calc(100% - 8px), 61px calc(100% - 17px), 71px calc(100% - 26px), 80px 0, calc(100% - 80px) 0, calc(100% - 71px) calc(100% - 26px), calc(100% - 61px) calc(100% - 17px), calc(100% - 48px) calc(100% - 8px), calc(100% - 31px) calc(100% - 5px), calc(100% - 13px) calc(100% - 3px), 100% calc(100% - 3px), 100% 100%);
          clip-path: polygon(0 100%, 0 calc(100% - 3px), 13px calc(100% - 3px), 31px calc(100% - 5px), 48px calc(100% - 8px), 61px calc(100% - 17px), 71px calc(100% - 26px), 80px 0, calc(100% - 80px) 0, calc(100% - 71px) calc(100% - 26px), calc(100% - 61px) calc(100% - 17px), calc(100% - 48px) calc(100% - 8px), calc(100% - 31px) calc(100% - 5px), calc(100% - 13px) calc(100% - 3px), 100% calc(100% - 3px), 100% 100%);
}
@media only screen and (max-width: 480px) {
  .title-block__date span {
    height: 28px;
  }
}
@supports (-ms-ime-align: auto) {
  .title-block__date span {
    flex: 1;
    background: radial-gradient(circle, #303035, #5d646c 100%);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-block__date span {
    flex: 1;
    background: radial-gradient(circle, #303035, #5d646c 100%);
  }
}
.title-block__date:before, .title-block__date:after {
  content: "";
  position: absolute;
  height: 37px;
  width: 101px;
  top: 0;
  background: transparent url(../media/layout/ui/corner.png) center center/101px 37px no-repeat;
  z-index: 10;
}
@media only screen and (max-width: 480px) {
  .title-block__date:before, .title-block__date:after {
    height: 28px;
    background-size: 78px 28px;
  }
}
@supports (-ms-ime-align: auto) {
  .title-block__date:before, .title-block__date:after {
    position: relative;
    top: 0;
    background: transparent url(../media/layout/ui/corner-edge.png) center center/101px 37px no-repeat;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-block__date:before, .title-block__date:after {
    position: relative;
    top: 0;
    background: transparent url(../media/layout/ui/corner-edge.png) center center/101px 37px no-repeat;
  }
}
.title-block__date:before {
  left: 0;
  transform: rotate(-180deg);
}
@supports (-ms-ime-align: auto) {
  .title-block__date:before {
    transform: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-block__date:before {
    transform: none;
  }
}
.title-block__date:after {
  right: 0;
  transform: scaleY(-1);
}
@supports (-ms-ime-align: auto) {
  .title-block__date:after {
    transform: scaleX(-1);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-block__date:after {
    transform: scaleX(-1);
  }
}
.title-block--date {
  margin: 0;
}
@media only screen and (max-width: 1600px) {
  .title-block--date {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 1400px) {
  .title-block--date {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 1200px) {
  .title-block--date {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.title-block--date:before {
  top: 60px;
}
@media only screen and (max-width: 480px) {
  .title-block--date:before {
    top: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .title-block--date .ornament--feathers, .title-block--date .hunt-pass__rewards-title:before, .title-block--date .hunt-pass__ff-title:before {
    height: 19px;
    background-size: 225px 19px;
  }
}
.title-block--date .title-block__title {
  font-size: 40px;
  line-height: 45px;
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .title-block--date .title-block__title {
    font-size: 35px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .title-block--date .title-block__title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 480px) {
  .title-block--date .title-block__title {
    font-size: 25px;
    line-height: 28px;
    padding: 10px 20px;
  }
}
.title-block__title {
  text-align: center;
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #242424;
  padding: 13px 15px;
}
@media only screen and (max-width: 1024px) {
  .title-block__title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .title-block__title {
    padding: 13px 25px;
  }
}
@media only screen and (max-width: 480px) {
  .title-block__title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.04em;
  }
}
.title-block__title span {
  display: inline-block;
  max-width: 920px;
}
.title-block--blade, .title-block--blade-bottom {
  margin: 0;
  -webkit-mask-image: none;
          mask-image: none;
}
@media only screen and (max-width: 1200px) {
  .title-block--blade, .title-block--blade-bottom {
    margin-bottom: 0;
  }
}
.title-block--blade {
  top: -21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .title-block--blade {
    transform: none;
    width: calc(100% + 160px);
    left: -80px;
  }
}
@media only screen and (max-width: 480px) {
  .title-block--blade {
    top: -18px;
  }
}
.title-block--blade:before {
  top: 21px;
}
@media only screen and (max-width: 480px) {
  .title-block--blade:before {
    top: 18px;
  }
}
.title-block--blade:after {
  content: none;
}
.title-block--blade .title-block__title {
  display: block;
  margin: 8px auto 0;
  width: calc(100% - 40px);
  max-width: 1120px;
  background: none;
  padding: 9px 127px;
}
@media only screen and (max-width: 1024px) {
  .title-block--blade .title-block__title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .title-block--blade .title-block__title {
    font-size: 22px;
    line-height: 22px;
    padding: 9px 20px;
    background-color: #242424;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .title-block--blade .title-block__title {
    margin: 6px auto 0;
  }
}
.title-block--blade .title-block__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-left: 127px solid;
  border-right: 127px solid;
  border-top: 2px solid;
  border-bottom: 46px solid;
  border-image-source: url(../media/layout/ui/title-block-bg.png);
  border-image-slice: 4 254 92 fill;
  border-image-repeat: round;
}
@media only screen and (max-width: 767px) {
  .title-block--blade .title-block__title:before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .title-block--blade .title-block__title:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 100%;
    bottom: -6px;
    left: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .title-block--blade .title-block__title:after {
    height: 6px;
  }
}
.title-block--blade-bottom {
  top: auto;
  bottom: 0;
}
.title-block--blade-bottom:before {
  content: none;
}
.title-block--blade-bottom:after {
  bottom: 0;
}
.title-block--blade-bottom .title-block__title {
  display: block;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  margin: 8px auto 0;
  width: calc(100% - 40px);
  max-width: 1120px;
  background: none;
  padding: 14px 101px 10px;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  color: #242424;
}
@media only screen and (max-width: 480px) {
  .title-block--blade-bottom .title-block__title {
    padding-top: 20px;
    margin: 0;
    background: #79828d;
  }
}
.title-block--blade-bottom .title-block__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-left: 101px solid transparent;
  border-right: 101px solid transparent;
  border-top: 37px solid transparent;
  border-bottom: 1px solid transparent;
  border-image-source: url(../media/layout/ui/title-block-bottom-bg.png);
  border-image-slice: 73 202 1 fill;
  border-image-repeat: stretch;
  z-index: -1;
}
@media only screen and (max-width: 480px) {
  .title-block--blade-bottom .title-block__title:before {
    content: none;
    border: none;
  }
}
@media only screen and (max-width: 480px) {
  .title-block--blade-bottom .title-block__title:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) and (max-width: 480px) {
  .title-block--blade-bottom .title-block__title:after {
    height: 6px;
  }
}

.social-sharing {
  text-align: right;
  margin: 50px auto 0;
}
.social-sharing__element {
  display: none;
}
.social-sharing__element > p.social-share-text {
  display: inline-block;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #134069;
  padding: 0;
  margin: 0;
}
.social-sharing__element .button img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 15px;
  margin: -5px 5px 0 -4px;
  z-index: 1;
}
.social-sharing__element .button svg {
  display: inline-block;
  fill: #fff;
  height: 17px;
  width: 18px;
}
.social-sharing__fallback .button {
  margin-left: 10px;
}
.social-sharing__fallback .button svg, .social-sharing__fallback .button span {
  vertical-align: bottom;
}

.news .social-sharing,
.patch-notes--legacy .social-sharing {
  max-width: 640px;
  padding: 0 20px;
}

.patch-notes .social-sharing {
  margin: 0 auto 0;
}

.patch-notes--legacy .social-sharing {
  margin: 50px auto 0;
}

.page-404 {
  display: flex;
  height: 100vh;
  height: calc(var(--ivh, 1vh) * 100);
  min-height: 600px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .page-404 {
    min-height: 370px;
  }
}
@media only screen and (max-height: 400px) {
  .page-404 {
    min-height: 530px;
  }
}
.page-404 .wrap {
  width: calc(100% - 40px);
  max-width: 400px;
}
@media only screen and (max-height: 400px) {
  .page-404 .wrap {
    max-width: 335px;
  }
}
.page-404 .wrap > img {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .article {
    margin-top: 50px;
  }
}
.article__cover {
  height: 500px;
}
@media only screen and (max-width: 1024px) {
  .article__cover {
    height: 50vh;
    height: calc(calc(var(--ivh, 1vh) * 100) * .5);
  }
}
@media only screen and (max-width: 767px) {
  .article__cover {
    height: 25vh;
    height: calc(calc(var(--ivh, 1vh) * 100) * .25);
  }
}
.article__cover .cover {
  height: 150%;
}
@media only screen and (max-width: 767px) {
  .article__cover .cover {
    height: calc(100% + 61px);
  }
}
@media only screen and (max-width: 480px) {
  .article__cover .cover {
    height: calc(100% + 43px);
  }
}
@supports (-ms-ime-align: auto) {
  .article__cover .cover {
    height: calc(100% + 60px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article__cover .cover {
    height: calc(100% + 60px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article__cover .cover__image {
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.article--old .article__cover {
  height: 330px;
}
@media only screen and (max-width: 1200px) {
  .article--old .article__cover {
    height: 220px;
  }
}
@media only screen and (max-width: 1024px) {
  .article--old .article__cover {
    height: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .article--old .article__cover {
    height: 200px;
  }
}
.article--old .article__cover .cover {
  height: calc(100% + 66px);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 100px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 100px), rgba(0, 0, 0, 0) 100%);
}
.article--old .article__cover .cover__image--blurred {
  display: none;
}
.article__header {
  z-index: 5;
}
.article__container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .article__container {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .article__container {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .article__container .article__card {
    filter: none;
  }
}
.article__container .article__card .card__content {
  padding: 0;
}
.article__container .article__card .card__content video {
  max-width: 100%;
}
.article__container .article__card .card__content .extra-margin-top-bottom {
  margin: 15px 0;
}
.article__container .article__card a:not(.button) {
  font-weight: 500;
  color: #134069;
}
.article__content {
  background: linear-gradient(135deg, #e7e8dd, #bdcad9);
  padding: 0;
  padding-top: 1px;
  margin-top: -1px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .article__content {
    margin-bottom: 40px;
  }
}
.article__content p, .article__content h2, .article__content h3, .article__content h4, .article__content figure, .article__content figcaption, .article__content ul, .article__content ol, .article__content table, .article__content video {
  max-width: 640px;
  margin: 25px auto;
  padding: 0 20px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .article__content p, .article__content h2, .article__content h3, .article__content h4, .article__content figure, .article__content figcaption, .article__content ul, .article__content ol, .article__content table, .article__content video {
    margin: 20px auto;
    padding: 0 20px;
  }
}
.article__content figure video {
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .article__content figure video {
    padding: 0;
  }
}
.article__content h2 {
  display: block;
  margin-top: 70px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .article__content h2 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content h2 {
    margin-top: 40px;
  }
}
.article__content h2:after {
  content: "";
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: block;
  height: 4px;
  margin: 10px auto 0;
  width: calc(100% - 40px);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 480px) {
  .article__content h2:after {
    height: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content h2:after {
    height: 4px;
  }
}
.article__content h3 {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 1.1px;
  margin-top: 50px;
}
.article__content h4 {
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.85px;
  margin-top: 50px;
}
.article__content ul, .article__content ol {
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .article__content ul, .article__content ol {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content ul, .article__content ol {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content ul ul, .article__content ul ol, .article__content ol ul, .article__content ol ol {
    padding-left: 20px;
  }
}
.article__content ul {
  list-style: disc;
}
@media only screen and (max-width: 480px) {
  .article__content ul {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content ul p {
    padding: 0;
  }
}
.article__content ul ul {
  list-style: circle;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .article__content ul ul {
    margin-left: 0;
    padding-right: 0;
  }
}
.article__content h2 img, .article__content h3 img, .article__content h4 img {
  width: auto;
  height: auto;
  display: inline;
  vertical-align: middle;
}
.article__content p > img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 70px auto;
}
.article__content p.signature > img {
  padding: 0;
  margin: 75px 0 0;
}
.article__content > *:first-child:not(blockquote) {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .article__content > *:first-child:not(blockquote) {
    margin-top: 20px;
  }
}
.article__content figure {
  margin: 70px auto;
  text-align: center;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  .article__content figure {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 480px) {
  .article__content figure {
    margin: 40px auto;
  }
}
.article__content figure:before {
  content: "";
}
.article__content figure .image {
  display: inline-block;
}
.article__content figure .image:before, .article__content figure .image:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
}
@media only screen and (max-width: 480px) {
  .article__content figure .image:before, .article__content figure .image:after {
    height: 6px;
  }
}
.article__content figure img, .article__content figure video, .article__content figure iframe {
  display: block;
  margin: 0 auto;
}
.article__content figure figcaption {
  margin-top: 10px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}
.article__content figure.large {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.article__content figure.large .image {
  display: block;
}
.article__content figure.large img, .article__content figure.large video, .article__content figure.large iframe {
  padding: 0;
  width: 100%;
  max-width: none;
  height: auto;
}
.article__content figure.large figcaption {
  text-align: left;
  margin-top: 15px;
}
.article__content figure.iframe {
  width: 600px;
  padding-bottom: 337px;
}
@media only screen and (max-width: 767px) {
  .article__content figure.iframe {
    width: 100%;
    padding-bottom: 56.25%;
  }
}
.article__content figure.iframe.large {
  width: 100%;
  padding-bottom: 56.25%;
}
.article__content figure.iframe .image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 13px;
}
@media only screen and (max-width: 480px) {
  .article__content figure.iframe .image {
    top: 18px;
  }
}
.article__content figure.iframe .image iframe {
  height: calc(100% - 29px);
}
@media only screen and (max-width: 480px) {
  .article__content figure.iframe .image iframe {
    height: calc(100% - 24px);
  }
}
.article__content figure.naked:before {
  content: none;
}
.article__content figure.naked .image:before, .article__content figure.naked .image:after {
  content: none;
}
.article__content .button--gold, .article__content a.button--gold {
  font-weight: 700;
}
.article__content blockquote {
  padding: 40px 0;
  margin: 0 auto 80px;
  color: #ffffff;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: #134069 url(../media/layout/pages/news/article-aether-effect.jpg) center center/100% auto no-repeat;
}
@media only screen and (max-width: 1024px) {
  .article__content blockquote {
    margin: 0 auto 50px;
    background-size: cover;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .article__content blockquote {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 480px) {
  .article__content blockquote {
    padding: 10px 0;
  }
}
.article__content blockquote p {
  margin: 10px auto;
  max-width: 680px;
  padding: 0 40px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .article__content blockquote p {
    padding: 0 20px;
  }
}
.article__content blockquote p a {
  color: #89c6ff;
}
.article__content blockquote p a:hover {
  color: rgba(17, 182, 230, 0.54);
}
.article__content blockquote a {
  color: white !important;
  text-decoration: underline;
}
.article__content blockquote em {
  font-style: normal;
}
.article__content blockquote.quote {
  margin: 30px auto;
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .article__content blockquote.quote {
    padding-top: 80px;
    font-size: 20px;
  }
}
.article__content blockquote.quote:first-child {
  margin-top: 0;
}
.article__content blockquote.quote p {
  padding: 0 100px;
  text-align: center;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .article__content blockquote.quote p {
    padding: 0 20px;
    text-align: left;
    max-width: 640px;
  }
}
.article__content blockquote.quote p:last-of-type:before, .article__content blockquote.quote p:first-of-type:after {
  position: absolute;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 150px;
  line-height: 120px;
  filter: drop-shadow(0 0 7px #11b6e6);
}
@media only screen and (max-width: 767px) {
  .article__content blockquote.quote p:last-of-type:before, .article__content blockquote.quote p:first-of-type:after {
    font-size: 100px;
    line-height: 90px;
  }
}
.article__content blockquote.quote p:last-of-type:before {
  content: "“";
  top: -35px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .article__content blockquote.quote p:last-of-type:before {
    top: -45px;
  }
}
.article__content blockquote.quote p:first-of-type:after {
  content: "”";
  top: 100%;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .article__content blockquote.quote p:first-of-type:after {
    top: calc(100% + 2px);
  }
}
.article__content table {
  max-width: 640px;
  width: calc(100% - 40px);
  margin: 65px auto;
  border-collapse: collapse;
}
@media only screen and (max-width: 480px) {
  .article__content table {
    margin-top: 60px;
  }
}
.article__content table thead th {
  background: linear-gradient(to bottom, #3a3a3e, #28282d);
  border: 2px solid #58585b;
  border-right: none;
  border-left: none;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 17px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 9px;
  padding-bottom: 9px;
}
@media only screen and (max-width: 480px) {
  .article__content table thead th {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
  }
}
.article__content table thead th:first-child {
  border-left: 2px solid #58585b;
}
.article__content table thead th:last-child {
  border-right: 2px solid #58585b;
}
.article__content table thead:before, .article__content table thead:after {
  content: "";
  position: absolute;
  width: 100%;
}
.article__content table thead:before {
  top: -21px;
}
@media only screen and (max-width: 480px) {
  .article__content table thead:before {
    top: -16px;
  }
}
.article__content table thead:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  top: -8px;
}
@media only screen and (max-width: 480px) {
  .article__content table thead:after {
    height: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .article__content table thead:after {
    top: -6px;
  }
}
.article__content table th, .article__content table td {
  padding: 12px 20px;
  text-align: center;
  line-height: 16px;
}
@media only screen and (max-width: 480px) {
  .article__content table th, .article__content table td {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.article__content table th:first-child, .article__content table td:first-child {
  text-align: left;
  padding-left: 30px;
}
@media only screen and (max-width: 480px) {
  .article__content table th:first-child, .article__content table td:first-child {
    padding-left: 15px;
  }
}
.article__content table th:last-child, .article__content table td:last-child {
  text-align: right;
  padding-right: 30px;
}
@media only screen and (max-width: 480px) {
  .article__content table th:last-child, .article__content table td:last-child {
    padding-right: 15px;
  }
}
.article__content table tbody tr:nth-child(even) td {
  background: rgba(57, 57, 61, 0.1);
}
.article__content table tbody:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .article__content table tbody:after {
    height: 6px;
  }
}
.article hr {
  max-width: 500px;
  margin: 60px auto;
}
.article__footer {
  padding: 30px 20px;
  font-style: italic;
  max-width: 840px;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  .article__footer {
    padding-top: 10px;
  }
}
.article__related {
  margin: 60px -150px;
}
@media only screen and (max-width: 1200px) {
  .article__related {
    margin: 60px auto 90px;
  }
}
.article__related-cta {
  text-align: center;
}
.article--legal .article__header {
  margin-top: 100px;
}
.article--legal .article__content blockquote {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  background: none;
  color: #242424;
  padding: 0;
}
.article--legal .article__content blockquote p {
  text-align: left;
  padding: 0 60px;
}
.article--legal .article__content blockquote p:before, .article--legal .article__content blockquote p:after {
  content: none;
}
.article--patch-notes .article__cover {
  height: 350px;
}
@media only screen and (max-width: 1024px) {
  .article--patch-notes .article__cover {
    height: 25vh;
    height: calc(calc(var(--ivh, 1vh) * 100) * .25);
  }
}
@media only screen and (max-width: 767px) {
  .article--patch-notes .article__cover {
    height: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .article--patch-notes .article__cover {
    height: 100px;
  }
}
.article--patch-notes .article__cover .cover {
  height: calc(100% + 300px);
}
@media only screen and (max-width: 1400px) {
  .article--patch-notes .article__cover .cover {
    height: calc(100% + 250px);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 250px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 250px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 1200px) {
  .article--patch-notes .article__cover .cover {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 100px), rgba(0, 0, 0, 0) calc(100% - 100px));
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 100px), rgba(0, 0, 0, 0) calc(100% - 100px));
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article--patch-notes .article__cover .cover {
    height: calc(100% + 60px);
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .article--patch-notes .article__cover .cover {
    height: calc(100% + 60px);
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .article--patch-notes .article__cover .cover__image {
    width: 100%;
    height: auto;
  }
}
@media (-ms-high-contrast: none) and (max-width: 1230px), (-ms-high-contrast: active) and (max-width: 1230px) {
  .article--patch-notes .article__cover .cover__image {
    height: 100%;
    width: auto;
  }
}
@media (-ms-high-contrast: none) and (max-width: 767px), (-ms-high-contrast: active) and (max-width: 767px) {
  .article--patch-notes .article__cover .cover__image {
    width: 100%;
    height: auto;
  }
}
@media (-ms-high-contrast: none) and (max-width: 640px), (-ms-high-contrast: active) and (max-width: 640px) {
  .article--patch-notes .article__cover .cover__image {
    height: 100%;
    width: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .article--patch-notes .article__cover .cover__image--blurred {
    display: none;
  }
}
.article--patch-notes .article__container {
  display: flex;
  flex-direction: row;
  max-width: 1160px;
}
@media only screen and (max-width: 1024px) {
  .article--patch-notes .article__container {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .article--patch-notes .article__container {
    max-width: 100%;
  }
}
.article--patch-notes .article__content {
  background: none;
}
@media only screen and (max-width: 767px) {
  .article--patch-notes .article__content {
    margin-bottom: 0;
  }
}
.article--patch-notes .article__content ul p {
  margin: 10px auto;
}
.article--patch-notes .article__content h2 {
  padding-top: 70px;
  margin-top: -50px;
  margin-bottom: 40px;
}
.article--patch-notes .article__content h3 {
  margin-top: -45px;
  padding-top: 70px;
}
.article--patch-notes .article__content > *:first-child:not(blockquote) {
  margin: 0 auto;
}
.article--patch-notes .known-issues {
  margin: 60px auto 0;
  padding: 0 45px;
}
@media only screen and (max-width: 767px) {
  .article--patch-notes .known-issues {
    padding: 0;
    margin: 60px auto 0;
  }
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1920px;
  height: 200%;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1920px) {
  .cover {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .cover {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.cover__wrap {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .cover__wrap {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) calc(50% - 960px), rgb(0, 0, 0) calc(50% - 660px), rgb(0, 0, 0) calc(50% + 660px), rgba(0, 0, 0, 0) calc(50% + 960px));
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) calc(50% - 960px), rgb(0, 0, 0) calc(50% - 660px), rgb(0, 0, 0) calc(50% + 660px), rgba(0, 0, 0, 0) calc(50% + 960px));
  }
}
.cover__image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media only screen and (max-width: 1024px) {
  .cover__image--blurred {
    display: none;
  }
}
@supports (-ms-ime-align: auto) {
  .cover__image--blurred {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cover__image--blurred {
    display: none;
  }
}
.cover__image--blurred img {
  filter: blur(20px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0));
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0));
}
@media only screen and (max-width: 1920px) {
  .cover__image--blurred img {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0));
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0));
  }
}

.patch-notes:not(.content) {
  flex: 1 1 auto;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .patch-notes:not(.content) {
    max-width: 900px;
    margin: 0 auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .patch-notes:not(.content) {
    max-width: 920px;
    margin: 0 auto;
  }
}
.patch-notes h2 {
  text-align: center;
  color: #ffffff;
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.patch-notes h2:after {
  content: "";
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: block;
  height: 4px;
  margin: 10px auto 0;
  width: calc(100% - 40px);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 480px) {
  .patch-notes h2:after {
    height: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .patch-notes h2:after {
    height: 4px;
  }
}
.patch-notes__category {
  margin-top: -10px;
  padding-top: 70px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 480px) {
  .patch-notes__category {
    padding-bottom: 40px;
  }
}
.patch-notes__category h2 {
  padding-bottom: 40px;
}
.patch-notes .card {
  padding-top: 90px;
  margin-top: -90px;
}
.patch-notes .card + .card {
  margin-top: -30px;
}
@media only screen and (max-width: 480px) {
  .patch-notes .card + .card {
    margin-top: -50px;
  }
}
.patch-notes--legacy {
  max-width: 920px;
  margin: 0 auto;
}
.patch-notes--legacy:before {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  margin: 60px auto 1px;
  z-index: 10;
}
@media only screen and (max-width: 480px) {
  .patch-notes--legacy:before {
    height: 6px;
  }
}
@media only screen and (max-width: 1024px) {
  .patch-notes--legacy:before {
    margin-top: 0;
  }
}
.patch-notes--legacy .card {
  padding-top: 0;
  margin: 0 auto 60px;
  max-width: 920px;
}
.patch-notes--legacy .article__content {
  padding-top: 0;
}
.patch-notes--legacy .article__content blockquote {
  margin-bottom: 20px;
}
.patch-notes--legacy .article__content h2 {
  color: #242424;
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-weight: 400;
  margin-top: -20px;
}
.patch-notes--legacy .article__content .article-snippet {
  max-width: 600px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .patch-notes #known-issues .article-snippet {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .patch-notes #known-issues .article-snippet {
    margin-left: 0;
    margin-right: 0;
  }
}

.patch-notes-list {
  width: 100%;
  height: 50px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}
@media only screen and (max-width: 1200px) {
  .patch-notes-list {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.patch-notes-list__content {
  width: 100%;
  height: 100%;
}
.patch-notes-list__item {
  width: auto;
  min-width: 85px;
  display: block;
}
.patch-notes-list__item a {
  display: flex;
  line-height: 16px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  transition: background-color 0.3s;
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  align-items: flex-start;
  background-color: #3b3b40;
  color: #ffffff;
}
.patch-notes-list__item a:hover, .patch-notes-list__item a:active, .patch-notes-list__item a:focus {
  background-color: #53535b;
}
.patch-notes-list__item:nth-child(even) a {
  background-color: #212128;
}
.patch-notes-list__item:nth-child(even) a:hover, .patch-notes-list__item:nth-child(even) a:active, .patch-notes-list__item:nth-child(even) a:focus {
  background-color: #0a0a0c;
}
.patch-notes-list__item-version {
  font-weight: 700;
}
.patch-notes-list__item-date {
  font-size: 12px;
}
.patch-notes-list__item--current a, .patch-notes-list__item--current:hover a, .patch-notes-list__item--current:active a, .patch-notes-list__item--current:focus a, .patch-notes-list__item--current:nth-child(even) a, .patch-notes-list__item--current:nth-child(even):hover a, .patch-notes-list__item--current:nth-child(even):active a, .patch-notes-list__item--current:nth-child(even):focus a {
  color: #242424;
  background-color: #89c6ff;
}

.patch-notes-nav {
  flex: 0 0 auto;
  width: 260px;
  padding: 0 20px 0 60px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  list-style: none;
  margin-top: 140px;
}
@media only screen and (max-width: 1024px) {
  .patch-notes-nav {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .patch-notes-nav {
    display: none;
  }
}
.patch-notes-nav__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}
.patch-notes-nav__category {
  font-size: 14px;
  line-height: 14px;
  color: gray;
}
.patch-notes-nav__category:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  top: 3px;
  left: -10px;
  background: transparent url(../media/layout/ui/gem.png) left center/24px 14px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, left 0.3s;
}
.patch-notes-nav__category-name {
  padding: 4px 0;
  display: block;
  transition: color 0.15s;
}
.patch-notes-nav__category-name:hover {
  color: #bfbfbf;
}
.patch-notes-nav__category.active:before {
  opacity: 1;
  visibility: visible;
  left: -20px;
}
.patch-notes-nav__category.active .patch-notes-nav__category-name {
  color: #ffffff;
}
.patch-notes-nav__category.active .patch-notes-nav__children {
  max-height: 500px;
}
.patch-notes-nav__children {
  max-height: 0;
  overflow: hidden;
  padding-left: 10px;
  transition: max-height 0.15s;
}
.patch-notes-nav__child-name {
  display: block;
  padding: 4px 0;
  transition: color 0.15s;
}
.patch-notes-nav__child-name:hover {
  color: #bfbfbf;
}
.patch-notes-nav__child.active {
  color: #ffffff;
}
.patch-notes-nav__child.active .patch-notes-nav__child-name:hover {
  color: #ffffff;
}
.patch-notes-nav--sticky .patch-notes-nav__container {
  position: fixed;
  top: 150px;
  width: 180px;
}
.patch-notes-nav--sticky-bottom .patch-notes-nav__container {
  position: absolute;
  top: auto;
  bottom: 80px;
}

.accounts {
  min-height: 100vh;
  min-height: calc(var(--ivh, 1vh) * 100);
  padding: 50px 0;
}
.accounts .account-link-message img {
  height: 40px;
  width: 35px;
  transform: rotate(180deg);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.accounts .username:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 25px;
  width: 25px;
  margin-right: 5px;
}
.accounts .username--dauntless:before {
  background-image: url("/assets/media/layout/ui/dauntless-logo.png");
  background-size: contain;
}
.accounts .username--epic:before {
  background-image: url("/assets/media/layout/ui/epic-logo.png");
  background-size: contain;
  width: 22px;
}
.accounts .input-logo {
  background-color: #9b9e99;
  display: inline-block;
}
.accounts .input-logo img {
  height: 25px;
  width: 22px;
  padding: 5px;
  vertical-align: middle;
  box-sizing: content-box;
  float: left;
}
.accounts .input-logo input {
  display: inline-block;
  width: 200px;
  margin: 0;
}

.account-ui {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 50px auto;
}
@media only screen and (max-width: 1024px) {
  .account-ui {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 767px) {
  .account-ui {
    margin: 20px auto;
  }
}
@media only screen and (max-width: 480px) {
  .account-ui {
    margin: 20px auto 0;
    padding: 0;
  }
}
.account-ui:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: radial-gradient(closest-side, #577d8b, transparent);
  width: 1040px;
  height: 1100px;
  right: -320px;
  top: -330px;
}
@media only screen and (max-width: 1024px) {
  .account-ui:before {
    content: none;
  }
}
.account-ui:after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: transparent url(../media/layout/pages/accounts/embermane.png) top center no-repeat;
  width: 1196px;
  height: 888px;
  right: -200px;
  top: 0;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .account-ui:after {
    content: none;
  }
}
.account-ui__card {
  max-width: 600px;
  z-index: 5;
}
@media only screen and (max-width: 1024px) {
  .account-ui__card {
    margin: 0 auto;
  }
}
.account-ui a, .account-ui .more-info-toggle {
  color: #336699;
  font-weight: 700;
}
.account-ui .button {
  margin: 25px auto;
  color: #ffffff;
}
.account-ui__background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: auto;
  position: absolute;
}
.account-ui__background img {
  display: block;
  max-height: 1080px;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  margin: 0 auto;
}
.account-ui__content {
  text-align: center;
  margin-bottom: 25px;
}
.account-ui__content--processing .button {
  display: none;
}
.account-ui__content--processing .button--processing {
  display: inline-block;
}
.account-ui__content--centered {
  text-align: center;
}
.account-ui__content--epic-linking + .account-ui__footer.logged-out {
  display: block;
}
.account-ui__content--epic-linking.account-ui__content--logged-in .logged-in {
  display: block;
}
.account-ui__content--epic-linking.account-ui__content--logged-in .logged-out, .account-ui__content--epic-linking.account-ui__content--logged-in + .logged-out {
  display: none;
}
.account-ui__content--epic-linking .account-ui__feedback {
  text-align: center;
}
.account-ui__content--epic-linking .username--epic::before {
  content: none;
}
.account-ui__content .login-errors {
  display: none;
}
.account-ui__content .login-errors.has-error {
  display: block;
}
.account-ui__content .login-errors.has-error__expired-token #login__expired-token, .account-ui__content .login-errors.has-error__invalid-token #login__invalid-token, .account-ui__content .login-errors.has-error__unexpected-error #login__unexpected-error {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 13pt;
}
.account-ui__content .login-errors.has-error__expired-token p {
  display: none;
}
.account-ui__content .login-errors.has-error hr {
  margin: 25px auto;
}
.account-ui__content .login-errors.has-error h3 {
  letter-spacing: 0;
}
.account-ui__content p {
  text-align: center;
}
.account-ui__title {
  font-size: 20px;
  margin: 0;
  text-align: left;
}
.account-ui__title--centered {
  text-align: center;
}
.account-ui__subtext {
  text-align: left;
  margin: 0;
}
.account-ui__input {
  width: 100%;
  height: 35px;
  border: none;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 1px rgba(0, 0, 0, 0.5);
  padding: 0 10px;
  margin: 10px auto 0;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .account-ui__input {
    font-size: 16px;
    height: 40px;
  }
}
.account-ui__input--number {
  width: 67px;
  padding-right: 0;
}
.account-ui__input--number + .account-ui__input--number {
  margin-left: 5px;
}
.account-ui__input--radio, .account-ui__input--checkbox {
  box-shadow: none;
  width: auto;
  float: left;
  margin: 5px 0 0;
  height: auto;
}
.account-ui__input--error {
  border: solid 2px #ff0000;
}
.account-ui__input--warning {
  border: solid 2px #b40000;
}
.account-ui__input--success {
  border: solid 2px #008000;
}
.account-ui .more-info__toggle {
  color: #336699;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0;
}
.account-ui .more-info {
  display: none;
}
.account-ui select {
  border-radius: 0;
}
.account-ui__label {
  font-family: "Roboto", Helvetica, sans-serif;
  display: block;
  font-size: 16px;
}
.account-ui__label--radio, .account-ui__label--checkbox {
  text-align: left;
  margin: 0 0 25px 20px;
}
.account-ui__label--disclaimer {
  font-size: 10px;
  line-height: 10px;
  display: inline-block;
}
.account-ui__feedback {
  font-size: 10pt;
  margin: 5px 0;
  text-align: left;
  line-height: 1.5;
  display: none;
}
.account-ui__feedback a {
  color: inherit;
  text-decoration: underline;
}
.account-ui__feedback a:hover {
  text-decoration: none;
}
.account-ui__feedback--error {
  color: #ff0000;
}
.account-ui__feedback--error-general {
  text-align: center;
  font-weight: 700;
}
.account-ui__feedback--success {
  color: #008000;
}
.account-ui__feedback--warning {
  color: #b40000;
}
.account-ui__group {
  text-align: left;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .account-ui__group {
    width: 100%;
  }
}
.account-ui__group--float-left {
  float: left;
}
.account-ui__group--float-right {
  float: right;
}
.account-ui__group label {
  margin-top: 20px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .account-ui__group label {
    margin-top: 10px;
  }
}
.account-ui__group input,
.account-ui__group select {
  margin-top: 5px;
}
.account-ui__footer {
  padding-bottom: 10px;
}
.account-ui__footer hr {
  margin-bottom: 20px;
}
.account-ui__footer p:not(.disclaimer) {
  margin: 0;
}
.account-ui__my-account-section, .account-ui__content {
  margin-bottom: 75px;
}
.account-ui__my-account-section p, .account-ui__my-account-section h2, .account-ui__my-account-section ul, .account-ui__my-account-section ol, .account-ui__content p, .account-ui__content h2, .account-ui__content ul, .account-ui__content ol {
  padding-left: 50px;
  padding-right: 50px;
}
.account-ui__my-account-section p, .account-ui__my-account-section ul, .account-ui__my-account-section ol, .account-ui__content p, .account-ui__content ul, .account-ui__content ol {
  text-align: left;
}
.account-ui__my-account-section ul, .account-ui__content ul {
  list-style-type: disc;
  padding: 0 50px 25px;
  text-align: left;
}
.account-ui__my-account-section ul li, .account-ui__content ul li {
  margin-left: 20px;
}
.account-ui__my-account-section ul li > ul, .account-ui__content ul li > ul {
  padding: 5px 0;
  list-style-type: circle;
}
.account-ui__my-account-section input, .account-ui__content input {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 480px) {
  .account-ui__my-account-section input, .account-ui__content input {
    width: 100%;
  }
}
.account-ui__my-account-section .username::before, .account-ui__content .username::before {
  content: none;
}
.account-ui__my-account-section.temporarily-unavailable > *:not(.temporarily-unavailable):not(h4),
.account-ui__my-account-section .temporarily-unavailable,
.account-ui__my-account-section .account-linking-info, .account-ui__content.temporarily-unavailable > *:not(.temporarily-unavailable):not(h4),
.account-ui__content .temporarily-unavailable,
.account-ui__content .account-linking-info {
  display: none;
}
.account-ui__email-preference .email-preference,
.account-ui .temporarily-unavailable--no-character .system-error,
.account-ui .temporarily-unavailable #balance__refresh {
  display: none;
}
.account-ui .temporarily-unavailable .temporarily-unavailable,
.account-ui .temporarily-unavailable--no-character #balance__refresh, .account-ui__email-preference.subscribed .email-preference--subscribed, .account-ui__email-preference.unsubscribed .email-preference--unsubscribed {
  display: block;
}
.account-ui__unexpected-error {
  padding: 50px 0;
}
.account-ui__unexpected-error p, .account-ui__unexpected-error h4 {
  text-align: center;
}
.account-ui__table {
  width: 100%;
  text-align: left;
  padding: 25px 50px 0;
}
.account-ui__table tr {
  width: 100%;
  padding-bottom: 15px;
}
.account-ui__table td {
  min-width: 40%;
  padding-bottom: 15px;
  vertical-align: top;
}
.account-ui__table td p {
  padding: 0 0 20px;
  margin: 0;
}
.account-ui__table td span + br + .button {
  margin-top: 10px;
}
.account-ui__table td:first-of-type {
  font-weight: 700;
}
.account-ui__table td:first-of-type small {
  font-weight: 400;
  color: #404040;
}
.account-ui__table td input, .account-ui__table td select {
  margin-top: 0;
}
.account-ui__table td .g-recaptcha > div {
  margin: 0;
}
.account-ui img.reward-image {
  margin: 50px auto 35px;
  width: 288px;
  max-width: 100%;
}
.account-ui .disclaimer {
  font-size: 75%;
  line-height: 1.25;
  font-style: italic;
}
.account-ui .platinum-balance .amount {
  font-weight: bold;
  vertical-align: top;
}
.account-ui .platinum-balance .amount:before {
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  background: transparent url(../media/layout/ui/platinum.png) center center/100% 100% no-repeat;
  vertical-align: bottom;
  margin-right: 5px;
  filter: drop-shadow(0 0 5px #ffffff);
}
.account-ui .login-expired {
  display: none;
}
.account-ui .email-preference ul {
  padding-bottom: 0;
}

.login-expired .login-expired {
  display: block;
}

@media only screen and (max-width: 480px) {
  .accounts .account-ui__my-account-section p, .accounts .account-ui__my-account-section h2, .accounts .account-ui__my-account-section > ul {
    padding: 0;
  }
  .accounts .account-ui__table {
    padding: 25px 0;
  }
  .accounts .account-ui__table td {
    display: block;
  }
  .accounts .account-ui__table td:first-of-type {
    padding: 0;
  }
}
#verification-success .card__content,
#verification-success .card__content--no-top-padding {
  padding-top: 0;
}

#newsletter-unsubscribe-success, #newsletter-unsubscribe-fail, #newsletter-unsubscribe-no-code, #newsletter-unsubscribe-legacy-unsubscribe {
  display: none;
}

main.account-linking .logged-in__dauntless {
  display: none;
}
main.account-linking .account-ui__content--logged-in .logged-out__dauntless {
  display: none;
}
main.account-linking .account-ui__content--logged-in .logged-in__dauntless {
  display: block;
}

.community-intro {
  padding-top: 370px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .community-intro {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .community-intro {
    padding: 0;
    height: auto;
  }
}
@supports (-ms-ime-align: auto) {
  .community-intro {
    padding-bottom: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .community-intro {
    padding-bottom: 0;
  }
}
.community-intro__cover {
  position: absolute;
  width: 100%;
  height: calc(100% + 200px);
  top: 0;
}
@media only screen and (max-width: 767px) {
  .community-intro__cover {
    position: relative;
    height: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .community-intro__cover {
    height: 200px;
  }
}
@supports (-ms-ime-align: auto) {
  .community-intro__cover {
    height: 400px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .community-intro__cover {
    height: 400px;
  }
}
.community-intro__cover .cover {
  height: 100%;
}
.community-intro__cover .cover__wrap {
  height: 100%;
}
.community-intro__cover .cover__image {
  -o-object-position: top;
     object-position: top;
}
.community-intro__title, .community-intro__description {
  max-width: 1120px;
  margin: 0 auto;
}
@supports (-ms-ime-align: auto) {
  .community-intro__title, .community-intro__description {
    max-width: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .community-intro__title, .community-intro__description {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .community-intro__title {
    margin-top: -100px;
  }
}
.community-intro__title .title-block {
  margin: 0;
}
.community-intro__description {
  background: linear-gradient(135deg, #e7e8dd, #bdcad9);
  padding: 20px 20px 28px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 480px) {
  .community-intro__description {
    padding: 10px 10px 16px;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.community-intro__description p {
  max-width: 550px;
  margin: 0 auto;
}
.community-intro__description:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .community-intro__description:after {
    height: 6px;
  }
}

.community-videos {
  display: flex;
  margin: 100px auto;
  width: 100%;
  max-width: 1160px;
  padding: 0 10px;
}
@media only screen and (max-width: 1024px) {
  .community-videos {
    margin: 60px auto;
  }
}
@media only screen and (max-width: 767px) {
  .community-videos {
    display: block;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 480px) {
  .community-videos {
    padding: 0;
  }
}
.community-videos__main-featured {
  width: 66.66%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .community-videos__main-featured {
    width: 100%;
  }
}
.community-videos__secondary-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33.33%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .community-videos__secondary-featured {
    width: 100%;
    flex-direction: row;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .community-videos__secondary-featured {
    margin-top: 10px;
  }
}
.community-videos__secondary-featured .community-videos__thumbnail {
  height: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  .community-videos__secondary-featured .community-videos__thumbnail {
    height: auto;
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 480px) {
  .community-videos__secondary-featured .community-videos__thumbnail {
    width: calc(50% - 5px);
  }
}
.community-videos__secondary-featured .community-videos__thumbnail:after {
  width: 60px;
  height: 60px;
  background-size: 60px;
}
@media only screen and (max-width: 1024px) {
  .community-videos__secondary-featured .community-videos__thumbnail:after {
    height: 50px;
    width: 50px;
    background-size: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .community-videos__secondary-featured .community-videos__thumbnail:after {
    height: 40px;
    width: 40px;
    background-size: 40px;
  }
}
.community-videos__thumbnail {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  cursor: pointer;
}
.community-videos__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.community-videos__thumbnail:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 150px;
  background: transparent url(../media/layout/ui/play-button.svg) center center/150px no-repeat;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .community-videos__thumbnail:after {
    height: 100px;
    width: 100px;
    background-size: 100px;
  }
}
@media only screen and (max-width: 480px) {
  .community-videos__thumbnail:after {
    height: 75px;
    width: 75px;
    background-size: 75px;
  }
}
.community-videos__thumbnail:hover img, .community-videos__thumbnail:active img, .community-videos__thumbnail:focus img {
  transform: scale(1.1);
}

.live-streams {
  width: 100%;
  margin: 100px auto 0;
  -webkit-mask-image: linear-gradient(to right, transparent calc(50% - (1160px / 2) - 200px), rgb(0, 0, 0) calc(50% - (1160px / 2)), rgb(0, 0, 0) calc(50% + (1160px / 2)), transparent calc(50% + (1160px / 2) + 200px));
          mask-image: linear-gradient(to right, transparent calc(50% - (1160px / 2) - 200px), rgb(0, 0, 0) calc(50% - (1160px / 2)), rgb(0, 0, 0) calc(50% + (1160px / 2)), transparent calc(50% + (1160px / 2) + 200px));
}
@media only screen and (max-width: 1200px) {
  .live-streams {
    -webkit-mask-image: none;
            mask-image: none;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .live-streams {
    padding: 0;
    margin: 100px auto 0;
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 480px) {
  .live-streams {
    width: calc(100% - 10px);
  }
}
@media only screen and (min-width: 768px) {
  .live-streams .title-block:before {
    content: none;
  }
  .live-streams .title-block__title {
    margin-top: 0;
  }
}
.live-streams__streams {
  max-width: 1160px;
  margin: 0 auto;
}
.live-streams__stream {
  width: 25%;
  padding: 0 5px;
}
@media only screen and (max-width: 1200px) {
  .live-streams__stream {
    width: 24%;
  }
}
@media only screen and (max-width: 1024px) {
  .live-streams__stream {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .live-streams__stream {
    width: 47%;
  }
}
@media only screen and (max-width: 480px) {
  .live-streams__stream {
    width: 85%;
    padding: 0 0 0 15px;
  }
}
.live-streams__stream span {
  display: block;
}
.live-streams__stream-thumbnail {
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 56.25%;
  background-size: cover;
  overflow: hidden;
  transition: border-color 0.3s;
}
.live-streams__stream-thumbnail .loader {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  margin: 0;
  font-size: 2px;
  transform: translate(-50%, -50%);
}
.live-streams__stream-thumbnail img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.live-streams__stream-live {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #c09b17 0%, #f2e52d 50%, #c09b17 100%);
  z-index: 5;
  padding: 0 20px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
}
.live-streams__stream-details {
  display: block;
  margin-top: 10px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  transition: color 0.3s;
}
.live-streams__stream-title {
  font-size: 17px;
  line-height: 17px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-streams__stream-name {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.live-streams__stream:hover .live-streams__stream-thumbnail, .live-streams__stream:active .live-streams__stream-thumbnail, .live-streams__stream:focus .live-streams__stream-thumbnail {
  border-color: #89c6ff;
}
.live-streams__stream:hover .live-streams__stream-thumbnail img, .live-streams__stream:active .live-streams__stream-thumbnail img, .live-streams__stream:focus .live-streams__stream-thumbnail img {
  transform: scale(1.1);
}
.live-streams__stream:hover .live-streams__stream-details, .live-streams__stream:active .live-streams__stream-details, .live-streams__stream:focus .live-streams__stream-details {
  color: #89c6ff;
}
.live-streams__cta {
  width: 100%;
  padding-bottom: 56.25%;
}
.live-streams__cta .wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}
.live-streams--loading .live-streams__stream-title:before,
.live-streams--loading .live-streams__stream-name:before {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 12px;
  margin: 5px 0;
}
.live-streams--loading .live-streams__stream-live {
  display: none;
}
.live-streams--loading .live-streams__stream-thumbnail .loader {
  display: block;
}
.live-streams--loading .live-streams__stream-name {
  width: 25%;
}

.twitch-rewards {
  max-width: 1560px;
  margin: 100px auto;
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .twitch-rewards {
    margin: 80px auto;
  }
}
@media only screen and (max-width: 767px) {
  .twitch-rewards {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 560px) {
  .twitch-rewards {
    padding: 0;
  }
}
.twitch-rewards__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1200px) {
  .twitch-rewards__background {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@media only screen and (max-width: 560px) {
  .twitch-rewards__background {
    position: relative;
    height: auto;
  }
}
.twitch-rewards__background:before, .twitch-rewards__background:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
@media only screen and (max-width: 480px) {
  .twitch-rewards__background:before, .twitch-rewards__background:after {
    height: 6px;
  }
}
.twitch-rewards__background:after {
  top: auto;
  bottom: 0;
}
@media only screen and (max-width: 560px) {
  .twitch-rewards__background:after {
    content: none;
  }
}
.twitch-rewards__background img {
  display: inline-block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 1201px) {
  .twitch-rewards__background img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media only screen and (max-width: 560px) {
  .twitch-rewards__background img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.twitch-rewards__card {
  width: 100%;
  padding: 0 20px;
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (max-width: 560px) {
  .twitch-rewards__card {
    padding: 0;
    margin-top: -21px;
  }
}
.twitch-rewards__card .card {
  max-width: 350px;
}
@media only screen and (max-width: 1400px) {
  .twitch-rewards__card .card {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .twitch-rewards__card .card {
    margin-left: 0;
  }
}
@media only screen and (max-width: 560px) {
  .twitch-rewards__card .card {
    max-width: 100%;
  }
}

.partners {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
  margin: 0 auto 100px;
  -webkit-mask-image: linear-gradient(to right, transparent calc(50% - (1160px / 2) - 200px), rgb(0, 0, 0) calc(50% - (1160px / 2)), rgb(0, 0, 0) calc(50% + (1160px / 2)), transparent calc(50% + (1160px / 2) + 200px));
          mask-image: linear-gradient(to right, transparent calc(50% - (1160px / 2) - 200px), rgb(0, 0, 0) calc(50% - (1160px / 2)), rgb(0, 0, 0) calc(50% + (1160px / 2)), transparent calc(50% + (1160px / 2) + 200px));
}
@media only screen and (max-width: 1200px) {
  .partners {
    -webkit-mask-image: none;
            mask-image: none;
    padding: 100px 20px 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .partners {
    padding: 80px 0 0;
    margin: 0 auto 80px;
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .partners {
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 480px) {
  .partners {
    width: calc(100% - 10px);
  }
}
@media only screen and (min-width: 768px) {
  .partners .title-block:before {
    content: none;
  }
  .partners .title-block__title {
    margin-top: 0;
  }
}
.partners__swiper {
  max-width: 1160px;
  margin: 0 auto;
}
.partners__swiper .swiper-wrapper {
  -webkit-overflow-scrolling: touch;
}
.partners__swiper-pagination {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .partners__swiper-pagination {
    display: none;
  }
}

.partner-program__perks {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: calc(var(--ivh, 1vh) * 100);
}
@media only screen and (max-width: 1024px) {
  .partner-program__perks {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 0;
  }
}
@media only screen and (max-width: 767px) {
  .partner-program__perks {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.partner-program__perks:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../media/layout/pages/home/squad-goals/squad_goals.jpg) center center/cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), transparent 100%);
}
@media only screen and (max-width: 480px) {
  .partner-program__perks:before {
    content: none;
  }
}
.partner-program__perks .title-block {
  width: 100%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .partner-program__perks .title-block {
    margin-bottom: 20px;
  }
}
.partner-program__perks .partner-program__card {
  align-items: flex-end;
}
@media only screen and (max-width: 1024px) {
  .partner-program__perks .partner-program__card {
    align-items: center;
  }
}
.partner-program__perk {
  display: flex;
}
.partner-program__perk + .partner-program__perk {
  margin-top: 30px;
}
.partner-program__perk-picto > svg {
  width: 30px;
  height: 30px;
}
.partner-program__perk-picto > svg.svg-social-promotion {
  height: 25px;
}
.partner-program__perk-picto > svg.svg-in-game-items {
  height: 27px;
}
.partner-program__perk-details {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 20px;
}
.partner-program__perk-title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.partner-program__perk-description {
  line-height: 20px;
}
.partner-program__conditions {
  margin-bottom: 250px;
}
@media only screen and (max-width: 1024px) {
  .partner-program__conditions {
    margin-top: -20px;
    margin-bottom: 100px;
  }
}
.partner-program__conditions ul {
  list-style: disc;
  padding-left: 20px;
}
.partner-program__conditions ul li + li {
  margin-top: 10px;
}
.partner-program__conditions .partner-program__card:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: radial-gradient(closest-side, #577d8b, transparent);
  width: 1040px;
  height: 1100px;
  right: -320px;
  top: -330px;
}
@media only screen and (max-width: 1024px) {
  .partner-program__conditions .partner-program__card:before {
    content: none;
  }
}
.partner-program__conditions .partner-program__card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: transparent url(../media/layout/pages/community/koshai.png) top center no-repeat;
  width: 1457px;
  height: 907px;
  right: -200px;
  top: -200px;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .partner-program__conditions .partner-program__card:after {
    content: none;
  }
}
.partner-program__conditions .partner-program__card .card__content {
  background: linear-gradient(135deg, #e7e8dd, rgba(189, 202, 217, 0.7));
}
.partner-program__card {
  display: flex;
  flex-direction: column;
  max-width: 1160px;
  padding: 0;
  margin: 60px auto;
}
@media only screen and (max-width: 1024px) {
  .partner-program__card {
    align-items: center;
    margin: 20px auto;
  }
}
.partner-program__card .card {
  max-width: 500px;
  z-index: 10;
  margin: 0 20px;
}
@media only screen and (max-width: 1200px) {
  .partner-program__card .card {
    margin: 0 5%;
  }
}
@media only screen and (max-width: 767px) {
  .partner-program__card .card {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .partner-program__card .card {
    margin: 0;
  }
}
.partner-program__card .card__content {
  padding: 40px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .partner-program__card .card__content {
    padding: 20px 20px 40px;
  }
}
.partner-program__card .card__content h5, .partner-program__card .card__content .escalation__blade .captions .caption__title, .escalation__blade .captions .partner-program__card .card__content .caption__title {
  margin: 0 0 20px;
}
.partner-program__cta {
  text-align: center;
  margin-top: 20px;
}

.escalation .hero {
  height: calc(calc(var(--ivh, 1vh) * 100) * .75);
}
@media only screen and (max-width: 767px) {
  .escalation .hero {
    display: block;
    height: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .escalation .hero:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    content: "";
    display: block;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 480px), only screen and (-ms-high-contrast: active) and (max-width: 480px) {
  .escalation .hero:after {
    height: 6px;
  }
}
.escalation .hero__bg {
  background-image: url(../media/layout/pages/escalation/escalation-tutorial-slate.jpg);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1024px) {
  .escalation .hero__bg {
    background-position: 85% 0;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero__bg {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    top: 50px;
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 480px) {
  .escalation .hero__bg {
    padding-bottom: 56.25%;
  }
}
@media only screen and (max-height: 480px) {
  .escalation .hero__bg {
    padding-bottom: 30%;
  }
}
.escalation .hero#boss {
  height: calc(calc(var(--ivh, 1vh) * 100) - 100px);
}
@media only screen and (max-width: 767px) {
  .escalation .hero#boss {
    display: block;
    height: auto;
  }
}
.escalation .hero#boss .hero__bg {
  background-image: url(../media/layout/pages/escalation/malkarion.jpg);
}
@media only screen and (max-width: 1024px) {
  .escalation .hero#boss .hero__bg {
    background-position: 70% 0;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero#boss .hero__bg {
    top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .escalation .hero#boss .hero__bg {
    padding-bottom: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero#boss .hero__content {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation .hero__wrap {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero__wrap {
    padding-bottom: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .escalation .hero__wrap {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation .hero__content {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero__content {
    margin-bottom: 0;
  }
}
.escalation .hero__date {
  font-weight: 700;
  font-size: 14px;
}
.escalation .hero__title {
  display: inline-block;
  margin: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .escalation .hero__title {
    text-shadow: 0 0 5px #242424;
  }
}
.escalation .hero__title:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  height: 4px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - 50px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - 50px), rgba(0, 0, 0, 0) 100%);
  margin: 5px -40px;
  opacity: 0.8;
}
@media only screen and (max-width: 480px) {
  .escalation .hero__title:after {
    height: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero__title:after {
    margin: 5px 0;
  }
}
@media only screen and (max-width: 480px) {
  .escalation .hero__title:after {
    height: 4px;
  }
}
.escalation .hero__description {
  max-width: 800px;
  text-align: left;
  padding: 0 40px;
  line-height: 24px;
  margin: 10px auto 20px;
}
@media only screen and (max-width: 1024px) {
  .escalation .hero__description {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .escalation .hero__description {
    padding: 0 20px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .escalation .hero__description {
    text-shadow: 0 0 5px #242424;
  }
}
.escalation .hero__description a {
  color: #89c6ff;
  font-weight: 700;
}
.escalation .hero + .escalation__blade {
  margin-top: -80px;
}
@media only screen and (max-width: 1024px) {
  .escalation .hero + .escalation__blade {
    margin-top: 0;
  }
}
.escalation__blade {
  display: flex;
  flex-direction: row;
  color: #ffffff;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade {
    margin-bottom: 60px;
  }
}
.escalation__blade:nth-child(even):before, .escalation__blade:nth-child(even):after {
  content: "";
  position: absolute;
  width: 100vw;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(10px);
}
@media only screen and (min-width: 1201px) {
  .escalation__blade:nth-child(even):before, .escalation__blade:nth-child(even):after {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (min-width: 1920px) {
  .escalation__blade:nth-child(even):before, .escalation__blade:nth-child(even):after {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 400px, rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 400px, rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade:nth-child(even):before, .escalation__blade:nth-child(even):after {
    content: none;
  }
}
.escalation__blade:nth-child(even):before {
  height: calc(100% + 80px);
  top: -40px;
  background: linear-gradient(to bottom, rgba(19, 117, 163, 0), rgba(19, 117, 163, 0.8) 50%, rgba(19, 117, 163, 0));
  z-index: 0;
}
.escalation__blade:nth-child(even):after {
  height: calc(40% + 30px);
  top: calc(30% - 15px);
  background: linear-gradient(to bottom, rgba(137, 224, 234, 0), rgba(137, 224, 234, 0.2) 50%, rgba(137, 224, 234, 0));
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .escalation__blade:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .escalation__blade:nth-child(odd) .escalation__blade-picture {
    margin-left: 0;
    margin-right: 5%;
  }
}
.escalation__blade > * {
  padding: 0 20px;
  z-index: 5;
}
.escalation__blade-content {
  width: 45%;
  z-index: 5;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade-content {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade-content {
    padding: 0;
  }
}
.escalation__blade-content-title {
  margin-top: 0;
  margin-bottom: 20px;
}
.escalation__blade-content-secondary-title {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 5px;
  margin-top: 30px;
}
.escalation__blade-content-description {
  margin: 0;
}
.escalation__blade-picture {
  display: flex;
  width: 50%;
  margin-left: 5%;
  justify-content: center;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade-picture {
    width: 100%;
    margin: 40px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade-picture {
    display: block;
    width: auto;
    padding: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .escalation__blade-picture img {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade-picture img {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade-picture img {
    display: block;
    max-width: calc(100% + 40px);
  }
}
.escalation__blade .button {
  margin-top: 20px;
}
.escalation__blade .captions .caption {
  padding: 25px 20px;
  z-index: 5;
}
.escalation__blade .captions .caption:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  border: 2px #ffffff solid;
  background: linear-gradient(45deg, #535766, #000000);
  opacity: 0.6;
  z-index: 0;
  box-sizing: border-box;
}
.escalation__blade .captions .caption:after {
  content: "";
  position: absolute;
  top: calc(100% - 40px);
  left: 100%;
  height: 2px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 1200px) {
  .escalation__blade .captions .caption:after {
    width: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .escalation__blade .captions .caption:after {
    width: 2px;
    height: 20px;
    top: 100%;
    left: 50%;
  }
}
.escalation__blade .captions .caption__title {
  margin: 0 auto 5px;
}
.escalation__blade .captions .caption__copy {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}
.escalation__blade .captions .caption:last-child {
  margin-top: 20px;
}
@media only screen and (max-width: 480px) {
  .escalation__blade .captions .caption:last-child {
    margin-top: 0;
  }
}
.escalation__blade .captions .caption:last-child:after {
  top: 40px;
  width: 40px;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade .captions .caption:last-child:after {
    width: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .escalation__blade .captions .caption:last-child:after {
    width: 2px;
    height: 20px;
    top: -20px;
  }
}
.escalation__blade#lantern {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 20px;
  min-height: 300px;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#lantern {
    padding: 0 20px;
  }
}
.escalation__blade#lantern .escalation__blade-picture img {
  position: absolute;
  top: -50px;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#lantern .escalation__blade-picture img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#lantern .escalation__blade-picture img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.escalation__blade#amps {
  margin: 20px auto 60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#amps {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#amps {
    margin-bottom: 70px;
  }
}
.escalation__blade#amps .escalation__blade-picture img {
  margin-top: -60px;
  margin-bottom: -60px;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#amps .escalation__blade-picture img {
    margin-right: -40px;
    margin-top: -40px;
    margin-bottom: -20px;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#amps .escalation__blade-picture img {
    margin-top: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#amps .escalation__blade-picture img {
    max-width: 120%;
    margin-right: 0;
    margin-top: -60px;
    left: -10%;
  }
}
.escalation__blade#talents .escalation__blade-picture img {
  margin: -60px auto 0;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#talents .escalation__blade-picture img {
    margin-left: -40px;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#talents .escalation__blade-picture img {
    margin-top: -20px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#talents .escalation__blade-picture img {
    max-width: 110%;
    left: -5%;
  }
}
.escalation__blade#score {
  margin: 60px auto 100px;
}
@media only screen and (max-width: 480px) {
  .escalation__blade#score {
    margin-bottom: 60px;
  }
}
.escalation__blade#score .escalation__blade-picture {
  justify-content: flex-start;
  width: 53%;
  padding-left: 40px;
  padding-right: 0;
  margin-right: 2%;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#score .escalation__blade-picture {
    width: 55%;
    padding-left: 20px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#score .escalation__blade-picture {
    width: 600px;
    max-width: 100%;
    margin-top: 40px;
    padding: 0;
  }
}
.escalation__blade#score .escalation__blade-picture .captions {
  width: 100%;
  padding-right: 200px;
}
@media only screen and (max-width: 767px) {
  .escalation__blade#score .escalation__blade-picture .captions {
    padding-right: 180px;
  }
}
@media only screen and (max-width: 480px) {
  .escalation__blade#score .escalation__blade-picture .captions {
    padding-right: 0;
  }
}
.escalation__blade#score .escalation__blade-picture img {
  position: absolute;
  top: calc(50% - 140px);
  right: -285px;
  z-index: 0;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#score .escalation__blade-picture img {
    right: -265px;
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#score .escalation__blade-picture img {
    max-width: none;
    right: -285px;
  }
}
@media only screen and (max-width: 480px) {
  .escalation__blade#score .escalation__blade-picture img {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    width: 159%;
    left: -17%;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#mounting {
    margin-top: 20px;
  }
}
.escalation__blade#mounting .escalation__blade-picture {
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#mounting .escalation__blade-picture {
    justify-content: flex-start;
  }
}
.escalation__blade#mounting .escalation__blade-picture img {
  margin-right: -100%;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#mounting .escalation__blade-picture img {
    margin-right: calc(-100% - 60px);
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#mounting .escalation__blade-picture img {
    margin-right: 0;
    width: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#mounting .escalation__blade-picture img {
    max-width: none;
    width: 200%;
    left: -10%;
  }
}
.escalation__blade#legendaries {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#legendaries {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#legendaries .escalation__blade-picture img {
    margin-left: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#legendaries .escalation__blade-picture img {
    margin-left: 0;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#ultra-armour {
    margin-bottom: 0;
  }
}
.escalation__blade#ultra-armour .escalation__blade-picture img {
  margin: -120px 0 0 -100px;
}
@media only screen and (max-width: 1200px) {
  .escalation__blade#ultra-armour .escalation__blade-picture img {
    transform-origin: center bottom;
    margin-right: -40px;
  }
}
@media only screen and (max-width: 1024px) {
  .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: -60px;
    width: 120%;
    left: -10%;
  }
}
.escalation__types {
  padding-top: 43px;
}
.escalation__types-tabs {
  display: flex;
  position: absolute;
  width: 100%;
  max-width: 1160px;
  padding: 4px 20px 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 50;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 480px) {
  .escalation__types-tabs {
    padding: 4px 2px 0;
  }
}
.escalation__types-tabs:before, .escalation__types-tabs:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 5px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1920px) {
  .escalation__types-tabs:before, .escalation__types-tabs:after {
    max-width: 1920px;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  }
}
.escalation__types-tabs:before {
  z-index: 10;
  border-top: 1px solid #737278;
  border-bottom: 1px solid #4a4e56;
  background: #4a4e56;
}
.escalation__types-tabs:after {
  height: 45px;
  z-index: 1;
  background-color: transparent;
  margin-bottom: 5px;
  transition: background-color 0.3s;
}
.escalation__types-tab {
  flex: 1;
  max-width: 110px;
  height: 35px;
  z-index: 5;
  margin: 0 2px 6px;
  border: 1px solid #413f44;
  background: #2d2c31;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.escalation__types-tab img {
  display: block;
  width: 25px;
  height: 25px;
  top: 0;
  filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.4));
  transition: top 0.15s;
}
.escalation__types-tab--upcoming {
  cursor: default;
  opacity: 0.5;
}
.escalation__types-tab--active {
  border-color: #737278;
  border-bottom: 1px solid #4a4e56;
  background: linear-gradient(to bottom, #5d5b60, #4a4e56);
  z-index: 20;
}
.escalation__types-tab--active img {
  top: 2px;
}
.escalation__types--sticky .escalation__types-tabs {
  position: fixed;
  top: 50px;
}
.escalation__types--sticky .escalation__types-tabs:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.escalation__types--hidden .escalation__types-tabs {
  opacity: 0;
  visibility: hidden;
}
.escalation__type {
  display: none;
}
.escalation__type--active {
  display: block;
}
.escalation__type#shock #boss .hero__bg {
  background-position: 66% 0;
}
.escalation__type#blaze:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #160505;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
.escalation__type#blaze .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(45, 19, 18, 0), rgba(45, 19, 18, 0.8) 50%, rgba(45, 19, 18, 0));
}
.escalation__type#blaze .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(70, 25, 23, 0), #461917 50%, rgba(70, 25, 23, 0));
}
.escalation__type#blaze #boss .hero__bg {
  background-position: 66% 0;
}
.escalation__type#umbral:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #0a0212;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
.escalation__type#umbral .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(49, 8, 70, 0), rgba(49, 8, 70, 0.8) 50%, rgba(49, 8, 70, 0));
}
.escalation__type#umbral .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(61, 10, 90, 0), #3d0a5a 50%, rgba(61, 10, 90, 0));
}
.escalation__type#umbral #boss .hero__bg {
  background-position: 50% 0;
}
.escalation__type#umbral .escalation__blade#ultra-armour .escalation__blade-picture img {
  margin-top: -60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__type#umbral .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__type#umbral .escalation__blade#ultra-armour .escalation__blade-picture img {
    left: -20%;
    margin-top: 0;
    max-width: 140%;
    width: 140%;
  }
}
.escalation__type#terra:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #002114;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
.escalation__type#terra .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(28, 120, 77, 0), rgba(28, 120, 77, 0.8) 50%, rgba(28, 120, 77, 0));
}
.escalation__type#terra .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(38, 151, 96, 0), #269760 50%, rgba(38, 151, 96, 0));
}
.escalation__type#terra #boss .hero__bg {
  background-position: 30% 0;
}
.escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
  margin-top: -60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
    left: -20%;
    margin-top: 0;
    max-width: 140%;
    width: 140%;
  }
}
.escalation__type#terra:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #117226;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
.escalation__type#terra .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(23, 145, 49, 0), rgba(23, 145, 49, 0.8) 50%, rgba(23, 145, 49, 0));
}
.escalation__type#terra .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(43, 168, 69, 0), #2ba845 50%, rgba(43, 168, 69, 0));
}
.escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
  margin-top: -60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__type#terra .escalation__blade#ultra-armour .escalation__blade-picture img {
    left: -20%;
    margin-top: 0;
    max-width: 140%;
    width: 140%;
  }
}
.escalation__type#frost:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #05468c;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
@media only screen and (max-width: 1024px) {
  .escalation__type#frost .hero#boss .hero__bg {
    background-position: 50% 0;
  }
}
.escalation__type#frost .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(67, 116, 188, 0), rgba(67, 116, 188, 0.8) 50%, rgba(67, 116, 188, 0));
}
.escalation__type#frost .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(121, 162, 195, 0), #79a2c3 50%, rgba(121, 162, 195, 0));
}
.escalation__type#frost .escalation__blade#ultra-armour .escalation__blade-picture img {
  margin-top: -60px;
}
@media only screen and (max-width: 1024px) {
  .escalation__type#frost .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__type#frost .escalation__blade#ultra-armour .escalation__blade-picture img {
    left: -20%;
    margin-top: 0;
    max-width: 140%;
    width: 140%;
  }
}
.escalation__type#radiant {
  color: #242424;
  text-shadow: 0 0 4px #ffffff;
}
.escalation__type#radiant:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  top: -150px;
  background: #e0d7d8;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px);
}
@media only screen and (max-width: 1024px) {
  .escalation__type#radiant .hero#boss .hero__bg {
    background-position: 50% 0;
  }
}
.escalation__type#radiant .hero__title,
.escalation__type#radiant .hero__description,
.escalation__type#radiant .escalation__blade,
.escalation__type#radiant .hero__date,
.escalation__type#radiant .hero__subhead {
  color: #242424;
  text-shadow: 0 0 4px #ffffff;
}
.escalation__type#radiant .escalation__blade:nth-child(even):before {
  background: linear-gradient(to bottom, rgba(255, 217, 134, 0), rgba(255, 217, 134, 0.8) 50%, rgba(255, 217, 134, 0));
}
.escalation__type#radiant .escalation__blade:nth-child(even):after {
  background: linear-gradient(to bottom, rgba(255, 217, 134, 0), #ffd986 50%, rgba(255, 217, 134, 0));
}
.escalation__type#radiant .escalation__blade#ultra-armour .escalation__blade-picture img {
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .escalation__type#radiant .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .escalation__type#radiant .escalation__blade#ultra-armour .escalation__blade-picture img {
    margin-top: 0;
  }
}

.gauntlet .hero__bg {
  background-image: url(../media/layout/pages/gauntlet/hero-background.webp);
}
@media only screen and (max-width: 767px) {
  .gauntlet .hero__bg {
    background-image: url(../media/layout/pages/gauntlet/hero-background-mobile.webp);
  }
}
.gauntlet .hero__description {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .gauntlet .hero__description {
    text-align: left;
  }
}
.gauntlet .hero--small .hero__content {
  max-width: 640px;
  padding: 0 20px 40px;
}
@media only screen and (max-width: 767px) {
  .gauntlet .hero--small .hero__content {
    max-width: 600px;
  }
}
.gauntlet-podium__steps {
  width: 100%;
  display: flex;
  justify-content: center;
  vertical-align: bottom;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 767px) {
  .gauntlet-podium__steps {
    justify-content: flex-start;
    margin: 0 auto 30px;
  }
}
.gauntlet-podium__last-updated {
  font-size: 12px;
  line-height: 14px;
  opacity: 0.3;
  font-style: italic;
  letter-spacing: 1px;
}
.gauntlet-podium__last-updated .date {
  display: inline-block;
  min-width: 80px;
}
@keyframes skeleton-loading {
  to {
    background-position: right -40px top 0;
  }
}
.gauntlet-podium__last-updated .date.loading:before, .gauntlet-podium__last-updated .date.loading:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(255, 255, 255, 0.25);
  left: 0;
  top: 2px;
  border-radius: 4px;
}
.gauntlet-podium__last-updated .date.loading:after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: skeleton-loading 1.5s infinite;
}
.gauntlet-podium__cta {
  margin-top: 20px;
}
.gauntlet .arenas {
  margin: 140px auto 60px;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas {
    margin: 140px -20px 60px;
  }
}
.gauntlet .arenas__pagination {
  display: flex;
  padding: 20px;
  line-height: 34px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -110px;
  height: 110px;
}
@media only screen and (max-width: 480px) {
  .gauntlet .arenas__pagination {
    margin-bottom: 0;
  }
}
.gauntlet .arenas__pagination .swiper-pagination-bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 3px solid white;
  border-right: 3px solid white;
  border-radius: 0;
  width: 60px;
  height: 34px;
  margin: 0 10px;
  background: none;
}
.gauntlet .arenas__pagination .swiper-pagination-bullet:before, .gauntlet .arenas__pagination .swiper-pagination-bullet:after {
  content: "";
  width: 100%;
  height: 100%;
  border-left: 3px solid white;
  border-right: 3px solid white;
  position: absolute;
  top: 0;
  left: -3px;
  transform: rotate(60deg);
}
.gauntlet .arenas__pagination .swiper-pagination-bullet:after {
  transform: rotate(-60deg);
}
.gauntlet .arenas__pagination .swiper-pagination-bullet > svg {
  display: block;
  fill: white;
  width: 90%;
  height: 90%;
}
.gauntlet .arenas__pagination .swiper-pagination-bullet > svg.svg-chest {
  width: 70%;
  height: 70%;
}
.gauntlet .arenas__button {
  position: absolute;
  top: 29px;
  background-image: url(../../assets/media/layout/ui/arrow-grey.png);
  background-size: auto 40px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100px;
  height: calc(100% - 29px);
  cursor: pointer;
  z-index: 100;
  opacity: 0.75;
  transform-origin: center center;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 1024px) {
  .gauntlet .arenas__button {
    background-size: auto 30px;
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas__button {
    display: none;
  }
}
.gauntlet .arenas__button:hover {
  opacity: 1;
}
.gauntlet .arenas__button--prev {
  left: -100px;
}
@media only screen and (max-width: 1400px) {
  .gauntlet .arenas__button--prev {
    left: 0;
  }
}
.gauntlet .arenas__button--next {
  transform: rotate(180deg);
  right: -100px;
}
@media only screen and (max-width: 1400px) {
  .gauntlet .arenas__button--next {
    right: 0;
  }
}
.gauntlet .arenas .arena {
  padding-bottom: 56.25%;
  height: 0;
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas .arena {
    padding-bottom: 0;
    height: auto;
  }
}
.gauntlet .arenas .arena .card {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .gauntlet .arenas .arena .card {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas .arena .card {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
  }
}
.gauntlet .arenas .arena .card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100% - 29px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas .arena .card__content {
    height: auto;
  }
}
.gauntlet .arenas .arena .card__content h3, .gauntlet .arenas .arena .card__content p {
  display: block;
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
}
.gauntlet .arenas .arena .card__background {
  -webkit-mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 450px, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 450px, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1200px) {
  .gauntlet .arenas .arena .card__background {
    -webkit-mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 400px, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 400px, rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 1024px) {
  .gauntlet .arenas .arena .card__background {
    -webkit-mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 350px, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, black 250px, rgba(0, 0, 0, 0.5) 350px, rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .gauntlet .arenas .arena .card__background {
    -webkit-mask-image: linear-gradient(to bottom, black 100px, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, black 100px, rgba(0, 0, 0, 0) 100%);
  }
}

.hero-section__bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  height: calc(100% + 200px);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 500px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 500px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1920px) {
  .hero-section__bg {
    width: 1920px;
    left: calc(50% - 960px);
  }
}
@media only screen and (max-width: 1024px) {
  .hero-section__bg {
    height: calc(100% + 40px);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
  }
}
.hero-section__bg-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 1920px) {
  .hero-section__bg-image {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 1024px) {
  .hero-section__bg-image {
    background-position: center top;
  }
}
.hero-section__content {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 580px);
  max-width: 1160px;
  color: #ffffff;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
@media only screen and (max-width: 1260px) {
  .hero-section__content {
    left: 40px;
    max-width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 767px) {
  .hero-section__content {
    left: 20px;
    bottom: 50px;
    max-width: calc(100% - 40px);
  }
}
.hero-section__content h5, .hero-section__content .escalation__blade .captions .caption__title, .escalation__blade .captions .hero-section__content .caption__title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  margin: 0 auto;
  filter: drop-shadow(0 0 5px 10px rgb(0, 0, 0));
}
@media only screen and (max-width: 767px) {
  .hero-section__content h5, .hero-section__content .escalation__blade .captions .caption__title, .escalation__blade .captions .hero-section__content .caption__title {
    font-size: 15px;
    line-height: 15px;
  }
}
.hero-section__content h2 {
  font-size: 35px;
  line-height: 35px;
  margin: 5px auto 20px;
  filter: drop-shadow(0 0 5px 10px rgb(0, 0, 0));
}
@media only screen and (max-width: 767px) {
  .hero-section__content h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.hero-section--main {
  max-height: 750px;
  height: calc(100vh - 200px);
  min-height: 250px;
}
@media only screen and (max-width: 1200px) {
  .hero-section--main {
    max-height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section--main {
    max-height: 400px;
  }
}
@media only screen and (max-height: 450px) {
  .hero-section--main {
    height: 100vh;
    max-height: 100%;
  }
}
.hero-section--secondary {
  height: 230px;
}
.hero-section--secondary:before {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media only screen and (max-width: 480px) {
  .hero-section--secondary:before {
    height: 6px;
  }
}
@media only screen and (min-width: 1920px) {
  .hero-section--secondary:before {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  }
}
.hero-section--secondary .hero-section__content {
  bottom: 40px;
}

.home-hero--double .hero-section--main {
  height: calc(100vh - 300px);
}

.latest {
  display: flex;
  justify-content: space-between;
  max-width: 1260px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .latest {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .latest {
    padding: 0;
  }
}
.latest__section {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .latest__section {
    display: block;
  }
}
.latest__section--patch {
  width: calc(70% - 60px);
}
@media only screen and (max-width: 1200px) {
  .latest__section--patch {
    width: calc(70% - 40px);
  }
}
@media only screen and (max-width: 1024px) {
  .latest__section--patch {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .latest__section--patch .card--patch-notes-section-featured {
    margin: 0;
  }
}
.latest__section--patch .card--patch-notes-section-featured .card__background {
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 60px, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 60px, rgba(0, 0, 0, 0) 100%);
}
.latest__section--news {
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .latest__section--news {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .latest__section-content .articles-slider {
    height: 100%;
  }
  .latest__section--news .latest__section-content .articles-slider .swiper-wrapper {
    display: block;
  }
  .latest__section--news .latest__section-content .articles-slider .swiper-slide {
    width: 100%;
    height: calc(50% - 10px);
    padding: 0;
  }
  .latest__section--news .latest__section-content .articles-slider .swiper-slide:nth-child(n+3) {
    display: none;
  }
  .latest__section--news .latest__section-content .articles-slider .swiper-slide + .swiper-slide {
    margin-top: 20px;
  }
  .latest__section--news .latest__section-content .articles-slider__cta {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .latest__section--news .latest__section-content .articles-slider .swiper-slide {
    padding: 0 20px 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .latest__section--news .latest__section-content .articles-slider .swiper-slide {
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .latest__section--news .latest__section-content .articles-slider .swiper-slide:last-child {
    display: flex;
    align-items: center;
  }
}
.latest__section--news .card {
  flex: 0;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .latest__section--news .card {
    flex: 1 0 auto;
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .card:before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .latest__section--news .card:before {
    content: none;
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .card:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    width: 100%;
    bottom: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 480px) {
  .latest__section--news .card:after {
    height: 6px;
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .card__content {
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
    height: calc(100% - 16px);
    -webkit-clip-path: none;
            clip-path: none;
    border: none;
    background: #111418;
  }
}
@media only screen and (max-width: 767px) {
  .latest__section--news .card__content {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .card__content img {
    position: absolute;
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.1) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.1) 100%);
  }
}
@media only screen and (min-width: 1025px) {
  .latest__section--news .card__content .card__image-caption {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .latest__section--news .card__content .card__image-caption:before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .latest__section--news .card__content .card__image-caption {
    padding: 30px 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .latest__section--news .card__content .card__image-caption {
    padding: 30px 10px 10px;
  }
}
.latest__section-title {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #242424;
  white-space: nowrap;
}
@media only screen and (max-width: 480px) {
  .latest__section-title {
    margin-bottom: 10px;
    padding: 0 20px;
  }
}
.latest__section-title a {
  color: rgba(137, 198, 255, 0.75);
  font-size: 14px;
  line-height: 16px;
  margin-left: 5px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .latest__section-title a {
    display: none;
  }
}
.latest__section-title a:hover, .latest__section-title a:focus, .latest__section-title a:active {
  color: #89c6ff;
  transition: color 0.3s;
}
.latest__section-link {
  position: absolute;
  top: 0;
  right: 0;
  color: #89c6ff;
}
.latest__section-content {
  flex: 1 0 auto;
}

.squad-goals {
  min-height: 620px;
  max-height: calc(100vh - 50px);
  max-height: calc(calc(var(--ivh, 1vh) * 100) - 50px);
}
@media only screen and (max-width: 767px) {
  .squad-goals {
    min-height: 0;
    height: 100vh;
    margin-bottom: 0;
  }
}
.squad-goals:before {
  content: "";
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding-bottom: 56.25%;
  pointer-events: none;
  z-index: -1;
}
.squad-goals .divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.squad-goals__image {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: calc(100% - 8px);
  background: url(../media/layout/pages/home/squad-goals/squad_goals.jpg) center no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 250px), rgba(0, 0, 0, 0.05) calc(100% - 20px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 250px), rgba(0, 0, 0, 0.05) calc(100% - 20px), rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .squad-goals__image {
    background-image: url(../media/layout/pages/home/squad-goals/squad_goals-mobile.jpg);
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.squad-goals__cta {
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
}

.videos-slider {
  max-height: 700px;
}
.videos-slider:before {
  content: "";
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding-bottom: 56.25%;
  max-height: 620px;
  pointer-events: none;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .videos-slider:before {
    padding-bottom: 0;
  }
}
.videos-slider .title-block {
  position: absolute;
  top: -21px;
  width: 100%;
  left: 0;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .videos-slider .title-block {
    position: relative;
    top: auto;
  }
}
.videos-slider .videos-slider__videos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .videos-slider .videos-slider__videos {
    position: relative;
    height: auto;
    top: auto;
  }
}
.videos-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.videos-slider .swiper-slide video {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .videos-slider .swiper-slide video {
    display: none;
  }
}
.videos-slider .swiper-slide img {
  display: none;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .videos-slider .swiper-slide img {
    display: block;
  }
}
.videos-slider__infos {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .videos-slider__infos {
    position: relative;
  }
}
.videos-slider__infos .title-block {
  position: relative;
  top: auto;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .videos-slider__infos .title-block {
    transform: none;
  }
}
@media only screen and (max-width: 480px) {
  .videos-slider__infos .title-block {
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .videos-slider__infos .title-block__title {
    width: calc(100% + 200px);
    left: -100px;
    padding-left: 120px;
    padding-right: 120px;
  }
}
.videos-slider__infos .title-block span {
  display: none;
}
.videos-slider__infos .title-block span.active {
  display: block;
}
.videos-slider__pagination {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .videos-slider__pagination {
    display: none;
    margin-bottom: 0;
    margin-top: -36px;
  }
}

#home > section {
  margin-bottom: 70px;
  z-index: 1;
}
#home > section.home-intro {
  margin-bottom: 0;
}
#home > section.latest-news {
  margin-top: -60px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #home > section.latest-news {
    margin-top: -20px;
  }
}
@supports (-ms-ime-align: auto) {
  #home > section.squad-goals {
    margin-bottom: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #home > section.squad-goals {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #home > section.squad-goals {
    margin-bottom: 0;
  }
}

.main-featured {
  max-height: calc(calc(var(--ivh, 1vh) * 100) - 300px);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-featured {
    max-height: calc(100vh - 300px);
  }
}
@media only screen and (max-width: 1200px) {
  .main-featured {
    max-height: calc(calc(var(--ivh, 1vh) * 100) - 250px);
  }
}
@media only screen and (max-width: 1200px) and (-ms-high-contrast: none), only screen and (max-width: 1200px) and (-ms-high-contrast: active) {
  .main-featured {
    max-height: calc(100vh - 250px);
  }
}
@media only screen and (max-width: 767px) {
  .main-featured {
    min-height: 320px;
    height: calc(calc(var(--ivh, 1vh) * 100) * .6);
  }
}
@media only screen and (max-width: 767px) and (-ms-high-contrast: none), only screen and (max-width: 767px) and (-ms-high-contrast: active) {
  .main-featured {
    max-height: 60vh;
  }
}
.main-featured:before {
  content: "";
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding-bottom: 56.25%;
  pointer-events: none;
  z-index: -1;
}
.main-featured__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1920px;
  height: calc(100% + 300px);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1920px) {
  .main-featured__images {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1200px) {
  .main-featured__images {
    height: calc(100% + 200px);
  }
}
@media only screen and (max-width: 1024px) {
  .main-featured__images {
    height: calc(100% + 150px);
  }
}
@media only screen and (max-width: 767px) {
  .main-featured__images {
    height: 100%;
    -webkit-mask-image: none;
            mask-image: none;
    overflow: hidden;
  }
}
.main-featured__images .wrap {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .main-featured__images .wrap {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) calc(50% - 960px), rgb(0, 0, 0) calc(50% - 660px), rgb(0, 0, 0) calc(50% + 660px), rgba(0, 0, 0, 0) calc(50% + 960px));
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) calc(50% - 960px), rgb(0, 0, 0) calc(50% - 660px), rgb(0, 0, 0) calc(50% + 660px), rgba(0, 0, 0, 0) calc(50% + 960px));
  }
}
.main-featured__image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-featured__image {
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    border-right: 5px solid #242424;
    border-left: 5px solid #242424;
  }
}
@media only screen and (max-width: 767px) {
  .main-featured__image--blurred {
    display: none;
  }
}
@supports (-ms-ime-align: auto) {
  .main-featured__image--blurred {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-featured__image--blurred {
    display: none;
  }
}
.main-featured__image--blurred img {
  filter: blur(20px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0)), linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0) calc(50% - 140px), rgba(0, 0, 0, 0) calc(50% + 140px), rgb(0, 0, 0));
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0)), linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0) calc(50% - 140px), rgba(0, 0, 0, 0) calc(50% + 140px), rgb(0, 0, 0));
}
@media only screen and (max-width: 1500px) {
  .main-featured__image--blurred img {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0)), linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0) calc(50% - 400px), rgba(0, 0, 0, 0) calc(50% + 400px), rgb(0, 0, 0));
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 400px), rgb(0, 0, 0)), linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0) calc(50% - 400px), rgba(0, 0, 0, 0) calc(50% + 400px), rgb(0, 0, 0));
  }
}
.main-featured__content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  max-width: 600px;
  padding: 0 20px;
  overflow: visible;
}
@media only screen and (max-width: 1024px) {
  .main-featured__content {
    left: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main-featured__content {
    right: 20px;
    text-align: center;
  }
}
.main-featured__type, .main-featured__title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.main-featured__type {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .main-featured__type {
    font-size: 16px;
    line-height: 16px;
  }
}
.main-featured__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .main-featured__title {
    margin-bottom: 10px;
  }
}
.main-featured--dark .main-featured__type,
.main-featured--dark .main-featured__title {
  color: #ffffff;
  text-shadow: 0 0 5px #134069;
}

.pinned-categories {
  width: 100%;
  max-width: 1650px;
  height: 300px;
  padding: 5px 20px;
  margin: 50px auto 0;
  background-color: #242424;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 20px, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) calc(100% - 20px));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 20px, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) calc(100% - 20px));
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1500px) {
  .pinned-categories {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@media only screen and (max-width: 1200px) {
  .pinned-categories {
    height: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .pinned-categories {
    height: auto;
    padding: 0;
    background-color: transparent;
  }
}
@supports (-ms-ime-align: auto) {
  .pinned-categories {
    padding: 5px 20px;
    max-width: 1450px;
  }
  @media only screen and (max-width: 767px) {
    .pinned-categories {
      padding: 0;
    }
  }
  .pinned-categories:before, .pinned-categories:after {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242424;
    z-index: 5;
  }
  @media only screen and (max-width: 767px) {
    .pinned-categories:before, .pinned-categories:after {
      content: none;
    }
  }
  .pinned-categories:after {
    left: auto;
    right: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories {
    padding: 5px 20px;
    max-width: 1450px;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 767px), only screen and (-ms-high-contrast: active) and (max-width: 767px) {
  .pinned-categories {
    padding: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories:before, .pinned-categories:after {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242424;
    z-index: 5;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 767px), only screen and (-ms-high-contrast: active) and (max-width: 767px) {
  .pinned-categories:before, .pinned-categories:after {
    content: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories:after {
    left: auto;
    right: 0;
  }
}
.pinned-categories__category {
  position: absolute;
  overflow: hidden;
  top: 5px;
  height: calc(100% - 10px);
  width: calc(50% + 150px);
  border: 1px solid #4f545a;
  background: #134069;
  transform: skewX(25deg);
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .pinned-categories__category {
    width: calc(50% + 100px);
  }
}
@media only screen and (max-width: 767px) {
  .pinned-categories__category {
    position: relative;
    display: block;
    top: auto;
    height: calc(20vh + 4px);
    height: calc((calc(var(--ivh, 1vh) * 100) * .2) + 4px);
    min-height: 135px;
    width: 100%;
    border: none;
    background-color: #242424;
    transform: none;
  }
  .pinned-categories__category + .pinned-categories__category {
    height: calc(20vh - 4px);
    height: calc((calc(var(--ivh, 1vh) * 100) * .2) - 4px);
  }
  .pinned-categories__category + .pinned-categories__category .pinned-categories__images {
    padding-top: 0;
  }
  .pinned-categories__category + .pinned-categories__category .pinned-categories__content {
    text-align: right;
    left: auto;
    right: 20px;
  }
  .pinned-categories__category + .pinned-categories__category .pinned-categories__content + .button {
    left: auto;
    right: 20px;
  }
}
@supports (-ms-ime-align: auto) {
  @media only screen and (min-width: 768px) {
    .pinned-categories__category {
      width: calc(50% + 100px);
    }
  }
}
@media only screen and (-ms-high-contrast: none) and (min-width: 768px), only screen and (-ms-high-contrast: active) and (min-width: 768px) {
  .pinned-categories__category {
    width: calc(50% + 100px);
  }
}
@media only screen and (min-width: 768px) {
  .pinned-categories__category:nth-child(1) {
    right: calc(50% + 5px);
  }
  .pinned-categories__category:nth-child(1) .pinned-categories__wrap {
    left: 75px;
    padding-right: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .pinned-categories__category:nth-child(1) .pinned-categories__wrap {
    padding-right: 75px;
  }
}
@media only screen and (min-width: 768px) {
  .pinned-categories__category:nth-child(1) .pinned-categories__image--blurred {
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  }
}
@media only screen and (min-width: 768px) {
  .pinned-categories__category:nth-child(2) {
    left: 50%;
  }
  .pinned-categories__category:nth-child(2) .pinned-categories__wrap {
    left: -75px;
    padding-left: 150px;
  }
  .pinned-categories__category:nth-child(2) .pinned-categories__image--blurred {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  }
}
.pinned-categories__category .pinned-categories__content {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__category .pinned-categories__content {
    display: block;
  }
}
.pinned-categories__category:hover .pinned-categories__image {
  transform: scale(1.1);
}
@supports (-ms-ime-align: auto) {
  .pinned-categories__category:hover .pinned-categories__image {
    transform: scale(1);
    opacity: 0.75;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories__category:hover .pinned-categories__image {
    transform: scale(1);
    opacity: 0.75;
  }
}
.pinned-categories__wrap {
  transform: skewX(-25deg);
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__wrap {
    transform: none;
    height: 100%;
  }
}
.pinned-categories__wrap:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, rgba(36, 36, 36, 0.5), rgba(36, 36, 36, 0));
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__wrap:before {
    bottom: 3px;
    height: 80%;
  }
}
.pinned-categories__image, .pinned-categories__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__image, .pinned-categories__images {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .pinned-categories__images {
    height: 100%;
    padding: 4px 0;
    background-color: #242424;
  }
}
.pinned-categories__image {
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__image .cover-image {
    display: block;
    border-top: 1px solid #4f545a;
    border-bottom: 1px solid #4f545a;
  }
}
@supports (-ms-ime-align: auto) {
  .pinned-categories__image {
    transition: opacity 0.3s;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories__image {
    transition: opacity 0.3s;
  }
}
.pinned-categories__image--blurred {
  filter: blur(10px);
}
@media only screen and (max-width: 1200px) {
  .pinned-categories__image--blurred {
    display: none;
  }
}
@supports (-ms-ime-align: auto) {
  .pinned-categories__image--blurred {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pinned-categories__image--blurred {
    display: none;
  }
}
.pinned-categories__titles {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__titles {
    display: none;
  }
}
.pinned-categories__titles .container {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.pinned-categories__titles .container > * {
  width: 50%;
  min-width: 0;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__titles .container > * {
    padding: 0 10px 5px;
  }
}
.pinned-categories__titles .container > *:first-child {
  width: 50%;
}
.pinned-categories__titles .container > *:last-child {
  padding-left: 95px;
}
@media only screen and (max-width: 1200px) {
  .pinned-categories__titles .container > *:last-child {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pinned-categories__titles .container > *:last-child {
    padding-left: 30px;
  }
}
.pinned-categories__content {
  color: #ffffff;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__content {
    position: absolute;
    bottom: 64px;
    left: 20px;
    width: calc(100% - 40px);
    max-height: calc(100% - 84px);
    overflow: hidden;
  }
  .pinned-categories__content > * {
    display: block;
  }
}
.pinned-categories__content + .button {
  display: none;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__content + .button {
    position: absolute;
    display: inline-block;
    bottom: 24px;
    left: 20px;
    min-height: 0;
  }
}
.pinned-categories__type, .pinned-categories__title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
}
.pinned-categories__type {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__type {
    font-size: 11px;
    line-height: 11px;
  }
}
.pinned-categories__title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.85px;
}
@media only screen and (max-width: 767px) {
  .pinned-categories__title {
    font-size: 20px;
    line-height: 18px;
  }
}

.secondary-featured {
  width: 100%;
  max-width: 1160px;
  padding: 0 10px;
  margin: 0 auto 140px;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .secondary-featured {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .secondary-featured {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .secondary-featured {
    display: none;
  }
}
.secondary-featured ul {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .secondary-featured ul {
    display: block;
  }
}
.secondary-featured ul li {
  flex: 1;
  display: block;
  min-width: 0;
  padding: 0 10px;
}
@media only screen and (max-width: 1024px) {
  .secondary-featured ul li:nth-child(3) {
    display: none;
  }
}

.filters-bar {
  width: 100%;
  height: 40px;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .filters-bar {
    z-index: 50;
  }
}
.filters-bar__wrap {
  width: 100%;
  height: 40px;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  z-index: 50;
  transition: opacity 0.3s, filter 0.3s;
}
.filters-bar__wrap:before, .filters-bar__wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.filters-bar__wrap:before {
  background-color: rgba(42, 44, 70, 0.7);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .filters-bar__wrap:before {
    background-color: rgba(42, 44, 70, 0.95);
  }
}
.filters-bar__wrap:after {
  background: linear-gradient(to left, rgba(42, 44, 70, 0) calc(50% - 820px), rgba(42, 44, 70, 0.7) calc(50% - 620px), rgba(42, 44, 70, 0.7) calc(50% + 620px), rgba(42, 44, 70, 0) calc(50% + 820px));
}
@media only screen and (max-width: 767px) {
  .filters-bar__wrap:after {
    background: rgba(42, 44, 70, 0.95);
  }
}
.filters-bar.sticky {
  z-index: 50;
}
.filters-bar.sticky .filters-bar__wrap {
  position: fixed;
  top: 50px;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .filters-bar.sticky .filters-bar__wrap:before {
    opacity: 1;
  }
  .filters-bar.sticky .filters-bar__wrap:after {
    opacity: 0;
  }
}
.filters-bar.sticky-bottom .filters-bar__wrap {
  opacity: 0;
}
.filters-bar__container {
  width: 1160px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 14px;
  z-index: 1;
}
.filters-bar__burger {
  display: inline-block;
  padding: 13px 20px;
  margin-left: -30px;
  font-size: 0;
  cursor: pointer;
}
@media only screen and (max-width: 1230px) {
  .filters-bar__burger {
    margin-left: 0;
  }
}
.filters-bar__burger > svg {
  margin-right: 9px;
  height: 14px;
  width: 21px;
  fill: #ffffff;
  vertical-align: middle;
  transition: fill 0.3s, filter 0.3s;
}
.filters-bar__burger span {
  display: none;
  color: #ffffff;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
  transition: color 0.3s, filter 0.3s;
}
.filters-bar__burger span.inactive {
  display: inline-block;
}
.filters-bar__burger:hover > svg, .filters-bar__burger:active > svg, .filters-bar__burger:focus > svg {
  fill: #89c6ff;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
.filters-bar__burger:hover span, .filters-bar__burger:active span, .filters-bar__burger:focus span {
  color: #89c6ff;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
@media only screen and (max-width: 767px) {
  .filters-bar.active .filters-bar__wrap {
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0));
  }
}
.filters-bar.active .filters-bar__burger span.inactive {
  display: none;
}
.filters-bar.active .filters-bar__burger span.active {
  display: inline-block;
}

.filters {
  pointer-events: none;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 10;
  width: 190px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1230px) {
  .filters {
    width: 170px;
  }
}
@media only screen and (max-width: 1200px) {
  .filters {
    z-index: 50;
  }
}
@media only screen and (max-width: 767px) {
  .filters {
    position: absolute;
    top: -30px;
    left: -20px;
    width: 100%;
    height: calc(100vh - 90px);
    height: calc(calc(var(--ivh, 1vh) * 100) - 90px);
    padding: 10px 20px 20px;
    transition: background-color 0.3s, opacity 0.3s;
  }
}
@media only screen and (min-width: 768px) {
  .filters.sticky {
    position: fixed;
    top: 110px;
  }
}
@media only screen and (min-width: 1025px) {
  .filters.sticky {
    top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .filters.sticky {
    position: fixed;
    top: 90px;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .filters.sticky-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .filters.sticky-bottom {
    opacity: 0;
    pointer-events: none;
  }
}
.filters__title {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.2s 0.2s, transform 0.2s 0.2s;
}
.filters__categories {
  padding: 14px 0 14px 20px;
  margin: 0 0 0 -20px;
  max-height: calc(100vh - 150px);
  max-height: calc(calc(var(--ivh, 1vh) * 100) - 150px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .filters__categories {
    padding: 4px 0 4px 20px;
    margin: 10px 0 0 -20px;
  }
}
.filters__category {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.15s 0.15s, transform 0.15s 0.15s;
}
.filters__category:nth-child(20) {
  transition: opacity 0.15s 0s, transform 0.15s 0s;
}
.filters__category:nth-child(19) {
  transition: opacity 0.15s 0.0136363636s, transform 0.15s 0.0136363636s;
}
.filters__category:nth-child(18) {
  transition: opacity 0.15s 0.0272727273s, transform 0.15s 0.0272727273s;
}
.filters__category:nth-child(17) {
  transition: opacity 0.15s 0.0409090909s, transform 0.15s 0.0409090909s;
}
.filters__category:nth-child(16) {
  transition: opacity 0.15s 0.0545454545s, transform 0.15s 0.0545454545s;
}
.filters__category:nth-child(15) {
  transition: opacity 0.15s 0.0681818182s, transform 0.15s 0.0681818182s;
}
.filters__category:nth-child(14) {
  transition: opacity 0.15s 0.0818181818s, transform 0.15s 0.0818181818s;
}
.filters__category:nth-child(13) {
  transition: opacity 0.15s 0.0954545455s, transform 0.15s 0.0954545455s;
}
.filters__category:nth-child(12) {
  transition: opacity 0.15s 0.1090909091s, transform 0.15s 0.1090909091s;
}
.filters__category:nth-child(11) {
  transition: opacity 0.15s 0.1227272727s, transform 0.15s 0.1227272727s;
}
.filters__category:nth-child(10) {
  transition: opacity 0.15s 0.1363636364s, transform 0.15s 0.1363636364s;
}
.filters__category:nth-child(9) {
  transition: opacity 0.15s 0.15s, transform 0.15s 0.15s;
}
.filters__category:nth-child(8) {
  transition: opacity 0.15s 0.1636363636s, transform 0.15s 0.1636363636s;
}
.filters__category:nth-child(7) {
  transition: opacity 0.15s 0.1772727273s, transform 0.15s 0.1772727273s;
}
.filters__category:nth-child(6) {
  transition: opacity 0.15s 0.1909090909s, transform 0.15s 0.1909090909s;
}
.filters__category:nth-child(5) {
  transition: opacity 0.15s 0.2045454545s, transform 0.15s 0.2045454545s;
}
.filters__category:nth-child(4) {
  transition: opacity 0.15s 0.2181818182s, transform 0.15s 0.2181818182s;
}
.filters__category:nth-child(3) {
  transition: opacity 0.15s 0.2318181818s, transform 0.15s 0.2318181818s;
}
.filters__category:nth-child(2) {
  transition: opacity 0.15s 0.2454545455s, transform 0.15s 0.2454545455s;
}
.filters__category:nth-child(1) {
  transition: opacity 0.15s 0.2590909091s, transform 0.15s 0.2590909091s;
}
.filters__category a {
  display: block;
  padding: 4px 20px 4px 30px;
}
@media only screen and (max-width: 1230px) {
  .filters__category a {
    padding: 4px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .filters__category a {
    padding: 9px 20px;
  }
}
.filters__category a:before, .filters__category a:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  top: calc(50% - 8px);
  left: 10px;
  background: transparent url(../media/layout/ui/gem.png) left center/24px 14px no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 1230px) {
  .filters__category a:before, .filters__category a:after {
    left: 0;
  }
}
.filters__category a:after {
  background-position: right center;
}
.filters__category a.active:before {
  opacity: 1;
}
.filters__category a.active:hover:after, .filters__category a.active:active:after, .filters__category a.active:focus:after {
  opacity: 1;
}
.filters__category a span {
  transition: color 0.3s, filter 0.3s;
}
.filters__category a:hover span, .filters__category a:active span, .filters__category a:focus span {
  color: #89c6ff;
  filter: drop-shadow(0 0 10px rgba(17, 182, 230, 0.54));
}
.filters-bar.active + .articles-list .filters {
  pointer-events: all;
}
@media only screen and (max-width: 767px) {
  .filters-bar.active + .articles-list .filters {
    background-color: rgba(42, 44, 70, 0.95);
  }
  .filters-bar.active + .articles-list .filters.sticky-bottom {
    pointer-events: none;
  }
}
.filters-bar.active + .articles-list .filters__category {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.15s, transform 0.15s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(1) {
  transition: opacity 0.15s 0s, transform 0.15s 0s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(2) {
  transition: opacity 0.15s 0.0136363636s, transform 0.15s 0.0136363636s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(3) {
  transition: opacity 0.15s 0.0272727273s, transform 0.15s 0.0272727273s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(4) {
  transition: opacity 0.15s 0.0409090909s, transform 0.15s 0.0409090909s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(5) {
  transition: opacity 0.15s 0.0545454545s, transform 0.15s 0.0545454545s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(6) {
  transition: opacity 0.15s 0.0681818182s, transform 0.15s 0.0681818182s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(7) {
  transition: opacity 0.15s 0.0818181818s, transform 0.15s 0.0818181818s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(8) {
  transition: opacity 0.15s 0.0954545455s, transform 0.15s 0.0954545455s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(9) {
  transition: opacity 0.15s 0.1090909091s, transform 0.15s 0.1090909091s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(10) {
  transition: opacity 0.15s 0.1227272727s, transform 0.15s 0.1227272727s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(11) {
  transition: opacity 0.15s 0.1363636364s, transform 0.15s 0.1363636364s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(12) {
  transition: opacity 0.15s 0.15s, transform 0.15s 0.15s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(13) {
  transition: opacity 0.15s 0.1636363636s, transform 0.15s 0.1636363636s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(14) {
  transition: opacity 0.15s 0.1772727273s, transform 0.15s 0.1772727273s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(15) {
  transition: opacity 0.15s 0.1909090909s, transform 0.15s 0.1909090909s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(16) {
  transition: opacity 0.15s 0.2045454545s, transform 0.15s 0.2045454545s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(17) {
  transition: opacity 0.15s 0.2181818182s, transform 0.15s 0.2181818182s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(18) {
  transition: opacity 0.15s 0.2318181818s, transform 0.15s 0.2318181818s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(19) {
  transition: opacity 0.15s 0.2454545455s, transform 0.15s 0.2454545455s;
}
.filters-bar.active + .articles-list .filters__category:nth-child(20) {
  transition: opacity 0.15s 0.2590909091s, transform 0.15s 0.2590909091s;
}
.filters-bar.active + .articles-list .filters__title {
  opacity: 0.44;
  transform: translateX(0);
  transition: opacity 0.2s;
}
.filters-bar.active + .articles-list .filters__categories {
  overflow: auto;
}

.articles-list {
  width: 100%;
  max-width: 1160px;
  margin: 30px auto 100px;
  padding: 0 20px;
  transition: padding-left 0.3s 0.15s;
}
.articles-list__filters {
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1230px) {
  .articles-list__filters {
    left: 20px;
  }
}
.articles-list__articles {
  z-index: 10;
  padding-top: 1px;
}
.articles-list__articles .article-summary {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: translateX(40px);
  transition: opacity 0.3s, transform 0.3s;
}
.articles-list__articles .article-summary:nth-child(-n+4), .articles-list__articles .article-summary--visible {
  position: relative;
  pointer-events: all;
  opacity: 1;
  height: auto;
  transform: translateX(0);
}
.articles-list__category {
  padding-top: 120px;
}
.articles-list__category .article-summary {
  position: relative;
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
@media only screen and (max-width: 767px) {
  .articles-list__category:not(:first-child) {
    margin-top: -60px;
  }
}
.articles-list__category:first-child {
  margin-top: -121px;
}
.articles-list__see-more {
  position: absolute;
  width: 100%;
  text-align: center;
  right: 0;
  bottom: -64px;
  transition: width 0.3s 0.15s;
}
@media only screen and (max-width: 1200px) {
  .articles-list__see-more {
    bottom: -54px;
  }
}
.articles-list.fully-visible {
  margin-bottom: 60px;
}
.articles-list.fully-visible .articles-list__see-more {
  display: none;
}
@media only screen and (min-width: 768px) {
  .filters-bar.active + .articles-list {
    padding-left: 190px;
    transition: padding-left 0.3s;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .filters-bar.active + .articles-list {
    padding-left: 210px;
  }
}
@media only screen and (min-width: 768px) {
  .filters-bar.active + .articles-list .articles-list__see-more {
    width: calc(100% - 190px);
    transition: width 0.3s;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .filters-bar.active + .articles-list .articles-list__see-more {
    padding-left: 190px;
  }
}

.news-roadmap {
  height: 450px;
  z-index: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .news-roadmap {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .news-roadmap {
    height: 240px;
    margin-bottom: 20px;
  }
}
.news-roadmap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 100%;
  background: transparent url(../media/layout/pages/news/roadmap-bg-desktop.png) center center/auto 100% no-repeat;
  z-index: 0;
  max-width: 1920px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1500px) {
  .news-roadmap:before {
    background: transparent url(../media/layout/pages/news/roadmap-bg.png) center center/auto 100% no-repeat;
  }
}
.news-roadmap__container {
  width: calc(100% - 40px);
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.news-roadmap__container:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: transparent url(../media/layout/pages/news/airship.png) top center/100% auto no-repeat;
  width: 1582px;
  height: 654px;
  right: -750px;
  top: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgb(255, 255, 255) 200px, rgb(255, 255, 255) calc(100% - 670px), rgba(255, 255, 255, 0) 100%);
          mask-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgb(255, 255, 255) 200px, rgb(255, 255, 255) calc(100% - 670px), rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 1024px) {
  .news-roadmap__container:before {
    width: 1100px;
    height: 460px;
    right: -540px;
  }
}
@media only screen and (max-width: 767px) {
  .news-roadmap__container:before {
    width: 770px;
    right: -460px;
  }
}
.news-roadmap__content {
  text-transform: uppercase;
  padding: 0 20px;
}
@media only screen and (max-width: 1260px) {
  .news-roadmap__content {
    padding-left: 40px;
  }
}
.news-roadmap__content--new:before {
  content: "!";
  position: absolute;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  display: block;
  top: 3px;
  left: -18px;
  font-size: 33px;
  font-weight: 700;
  height: 60px;
  width: 30px;
  padding: 11px;
  background: transparent url(../media/layout/ui/new-flag.png) center center/30px 60px no-repeat;
  box-sizing: border-box;
}
@media only screen and (max-width: 1260px) {
  .news-roadmap__content--new:before {
    left: 2px;
  }
}
.news-roadmap__last-update {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 16px;
}
.news-roadmap__title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 auto 30px;
  letter-spacing: inherit;
  text-shadow: 0 0 10px #ffffff;
}

main#categories {
  padding-top: 50px;
}
main#categories .articles-list__articles .article-summary {
  height: auto;
}
main#categories .articles-list:before, main#categories .articles-list:after {
  position: fixed;
}
@supports (-ms-ime-align: auto) {
  main#categories .articles-list:before, main#categories .articles-list:after {
    position: absolute;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  main#categories .articles-list:before, main#categories .articles-list:after {
    position: absolute;
  }
}
main#categories .articles-list:before {
  top: -350px;
}
main#categories .articles-list:after {
  top: -320px;
}

.download-page {
  padding: 50px 0;
}
.download-page .download-ui {
  min-height: calc(100vh - 100px);
  min-height: calc(calc(var(--ivh, 1vh) * 100) - 100px);
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.download-page .download-ui a, .download-page .download-ui .more-info-toggle {
  color: #336699;
  font-weight: 700;
}
.download-page .download-ui__content {
  padding: 35px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .download-page .download-ui__content {
    padding: 10px;
  }
}
.download-page .download-ui__content--logged-out {
  padding-top: 0;
}
.download-page .download-ui .card__content {
  background: linear-gradient(135deg, #e7e8dd, rgba(189, 202, 217, 0.7));
}
.download-page .download-ui__progress {
  display: none;
}
.download-page .download-ui__progress--downloading {
  display: block;
}
.download-page .download-ui__progress .status {
  position: relative;
  text-align: left;
  padding: 0 5px;
  font-size: 10pt;
  color: #ffffff;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
}
.download-page .download-ui__progress .downloading,
.download-page .download-ui__progress .complete {
  display: none;
}
.download-page .download-ui__progress--downloading .downloading, .download-page .download-ui__progress--complete .complete {
  display: block;
}
.download-page .download-ui__progress--complete .downloading {
  display: none;
}
.download-page .download-ui__progress-bar {
  display: block;
  box-shadow: inset 0 0 7px #000000;
  width: 100%;
  margin: 25px 0;
  position: relative;
}
.download-page .download-ui__percent-complete {
  height: 100%;
  width: 0;
  display: block;
  background-color: #4e9dec;
  background: linear-gradient(to bottom, #4e9dec, #356aa0);
  position: absolute;
}

.hunt-pass__intro, .support-a-creator__intro, .trials__intro, .escalation__intro {
  height: calc(calc(var(--ivh, 1vh) * 100) - 100px);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (min-width: 1920px) {
  .hunt-pass__intro, .support-a-creator__intro, .trials__intro, .escalation__intro {
    height: 900px;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro, .support-a-creator__intro, .trials__intro, .escalation__intro {
    height: calc(var(--ivh, 1vh) * 100);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hunt-pass__intro, .support-a-creator__intro, .trials__intro, .escalation__intro {
    height: calc(100vh - 100px);
    z-index: 1;
  }
}
@media only screen and (-ms-high-contrast: none) and (min-width: 1920px), only screen and (-ms-high-contrast: active) and (min-width: 1920px) {
  .hunt-pass__intro, .support-a-creator__intro, .trials__intro, .escalation__intro {
    height: 900px;
  }
}
.hunt-pass__intro-wrap, .support-a-creator__intro-wrap, .trials__intro-wrap, .escalation__intro-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro-wrap, .support-a-creator__intro-wrap, .trials__intro-wrap, .escalation__intro-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
}
.hunt-pass__intro-bg, .support-a-creator__intro-bg, .trials__intro-bg, .escalation__intro-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(../media/layout/pages/support-a-creator/dauntless-slayers-posed.jpg);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 400px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1920px) {
  .hunt-pass__intro-bg, .support-a-creator__intro-bg, .trials__intro-bg, .escalation__intro-bg {
    z-index: -1;
  }
}
.hunt-pass__intro-content, .support-a-creator__intro-content, .trials__intro-content, .escalation__intro-content {
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro-content, .support-a-creator__intro-content, .trials__intro-content, .escalation__intro-content {
    margin-bottom: 40px;
  }
}
.hunt-pass__intro-date, .support-a-creator__intro-date, .trials__intro-date, .escalation__intro-date {
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px #242424;
}
.hunt-pass__intro-title, .support-a-creator__intro-title, .trials__intro-title, .escalation__intro-title {
  margin: 5px auto 20px;
  font-size: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-shadow: 0 0 4px #242424;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro-title, .support-a-creator__intro-title, .trials__intro-title, .escalation__intro-title {
    font-size: 30px;
    line-height: 30px;
  }
}
.hunt-pass__intro-title--large, .support-a-creator__intro-title--large, .trials__intro-title--large, .escalation__intro-title--large {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 120px;
  line-height: 100px;
  font-weight: 900;
  text-shadow: 0 0 20px black;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__intro-title--large, .support-a-creator__intro-title--large, .trials__intro-title--large, .escalation__intro-title--large {
    font-size: 100px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro-title--large, .support-a-creator__intro-title--large, .trials__intro-title--large, .escalation__intro-title--large {
    font-size: 60px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__intro-title--large, .support-a-creator__intro-title--large, .trials__intro-title--large, .escalation__intro-title--large {
    font-size: 50px;
    line-height: 45px;
  }
}
.hunt-pass__intro-tagline, .support-a-creator__intro-tagline, .trials__intro-tagline, .escalation__intro-tagline {
  position: absolute;
  margin: 0;
  bottom: 60px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.05em;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__intro-tagline, .support-a-creator__intro-tagline, .trials__intro-tagline, .escalation__intro-tagline {
    position: relative;
    bottom: auto;
    font-size: 14px;
    line-height: 16px;
  }
}

.hunt-pass__tracks, .hunt-pass__early-bird {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (min-width: 1201px) {
  .hunt-pass__tracks, .hunt-pass__early-bird {
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__tracks, .hunt-pass__early-bird {
    width: calc(100% - 20px);
    display: block;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hunt-pass__tracks, .hunt-pass__early-bird {
    z-index: 10;
  }
}
.hunt-pass__track {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track + .hunt-pass__track {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track + .hunt-pass__track {
    margin-top: 60px;
  }
}
.hunt-pass__track .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hunt-pass__track .card:after {
    position: relative;
  }
}
.hunt-pass__track:first-child {
  margin-right: 40px;
}
@media only screen and (max-width: 1200px) {
  .hunt-pass__track:first-child {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__track:first-child {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track:first-child {
    margin-right: 0;
  }
}
.hunt-pass__track:last-child {
  margin-left: 40px;
}
@media only screen and (max-width: 1200px) {
  .hunt-pass__track:last-child {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__track:last-child {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track:last-child {
    margin-left: 0;
  }
}
.hunt-pass__track .card__header:before {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  display: block;
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track .card__header:before {
    height: 6px;
  }
}
.hunt-pass__track-badge {
  position: absolute;
  width: 75px;
  top: -20px;
  left: 20px;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__track-badge {
    width: 60px;
    top: -15px;
  }
}
.hunt-pass__track-badge img {
  display: block;
  width: 100%;
}
.hunt-pass__track-visual {
  padding-bottom: 56.25%;
}
.hunt-pass__track-visual-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.hunt-pass__track-visual-background .bg {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: transparent url(/assets/media/layout/pages/hunt-pass/background.jpg) center center/cover no-repeat;
  filter: blur(20px);
}
.hunt-pass__track-visual-discount {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 10px;
  border: 2px solid #f70000;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(to bottom, #f70000, #860000);
}
.hunt-pass__track .card__content {
  flex: 1 1 auto;
  padding: 30px 58px 50px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__track .card__content {
    padding: 20px 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track .card__content {
    padding: 20px 20px 40px;
  }
}
.hunt-pass__track .card__content p:first-child {
  margin-top: 0;
}
.hunt-pass__track .card__content p:last-child {
  margin-bottom: 0;
}
.hunt-pass__track-instructions {
  position: absolute;
  bottom: 20px;
  left: 80px;
  width: calc(100% - 160px);
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track-instructions {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 20px auto 0;
    width: calc(100% - 100px);
    font-size: 16px;
    line-height: 16px;
  }
}
.hunt-pass__track-instructions .original-price {
  opacity: 0.5;
  text-decoration: line-through;
}
.hunt-pass__track-timer {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
  text-shadow: 0 0 5px rgb(0, 0, 0);
  opacity: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track-timer {
    top: 10px;
    right: 10px;
  }
}
.hunt-pass__track-timer--active {
  opacity: 1;
}
.hunt-pass__track-timer time {
  display: none;
}
.hunt-pass__track--basic {
  margin: 100px auto !important;
  width: calc(100% - 40px);
  max-width: 720px;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__track--basic {
    margin: 60px auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track--basic {
    width: calc(100% - 20px);
    margin: 40px auto !important;
  }
}
@media only screen and (min-width: 768px) {
  .hunt-pass__track--basic .hunt-pass__track-visual {
    padding-bottom: 28.125%;
  }
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap > * {
  position: absolute;
  height: 60%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap > * {
    height: 40%;
  }
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
  top: 20%;
  left: 4%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .transmog-stone {
  top: 30%;
  left: 23%;
  height: 40%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .vault-coin {
  top: 35%;
  right: 24%;
  height: 30%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .dye {
  top: 30%;
  right: 7%;
  height: 40%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .aetherspark {
  height: 50%;
  left: 18%;
  top: 12%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .patrol-key {
  height: 50%;
  top: 12%;
  left: 66%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .armour-set {
  height: 130%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5%;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
  top: 18%;
  right: 5%;
  width: 17%;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
    width: 22.5%;
  }
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote img {
  display: block;
  height: 100%;
  width: auto;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote:after {
  content: "";
  position: absolute;
  top: calc(55% - 37px);
  left: calc(50% - 37px);
  height: 75px;
  width: 75px;
  background: transparent url(../media/layout/ui/play-button.svg) center center/75px no-repeat;
  z-index: 5;
  opacity: 0.8;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote:hover:after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
    top: 10%;
    left: 10%;
  }
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .transmog-stone {
    top: 50%;
    left: 5%;
    height: 30%;
  }
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .vault-coin {
    top: 18%;
    right: 6%;
    height: 25%;
  }
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
    top: 48%;
    right: 6%;
  }
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .aetherspark {
    height: 37%;
    left: 7%;
    top: 17%;
  }
  .hunt-pass__track--basic .hunt-pass__track-visual-wrap .patrol-key {
    height: 40%;
    left: 72%;
    top: 8%;
  }
}
.hunt-pass__track--elite .hunt-pass__track-visual-wrap {
  position: absolute;
  top: -50px;
  height: calc(100% - 20px);
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .hunt-pass__track--elite .hunt-pass__track-visual-wrap {
    top: -20px;
  }
}
.hunt-pass__track--elite .hunt-pass__track-visual-wrap img {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.hunt-pass__track--elite:first-child .hunt-pass__track-visual-wrap img {
  margin-right: 10px;
}
.hunt-pass__track--early-bird {
  margin: 0 !important;
}
.hunt-pass__track--early-bird .hunt-pass__track-visual {
  padding-bottom: 25%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__track--early-bird .hunt-pass__track-visual {
    padding-bottom: 33.33%;
  }
}
.hunt-pass__track--early-bird .hunt-pass__track-visual-background .bg {
  filter: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hunt-pass__rewards, .hunt-pass__ff {
  margin: 130px auto 60px;
}
.hunt-pass__rewards-bg, .hunt-pass__ff-bg {
  position: absolute;
  background: transparent url(/assets/media/layout/pages/hunt-pass/background.jpg) center center/cover no-repeat;
  z-index: 0;
  top: 50px;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: calc(100% - 75px);
  transform: translateX(-50%);
  filter: blur(30px);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hunt-pass__rewards-bg, .hunt-pass__ff-bg {
    height: 100%;
    top: 0;
  }
}
.hunt-pass__rewards-wrap, .hunt-pass__ff-wrap {
  width: calc(100% - 100px);
  max-width: 1160px;
  z-index: 0;
  margin: 0 auto;
  padding: 8px 0;
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__rewards-wrap, .hunt-pass__ff-wrap {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-wrap, .hunt-pass__ff-wrap {
    width: 100%;
  }
}
.hunt-pass__rewards-wrap:before, .hunt-pass__rewards-wrap:after, .hunt-pass__ff-wrap:before, .hunt-pass__ff-wrap:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  position: absolute;
  left: 50%;
  width: calc(100vw - 80px);
  max-width: 1600px;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
@media only screen and (max-width: 480px) {
  .hunt-pass__rewards-wrap:before, .hunt-pass__rewards-wrap:after, .hunt-pass__ff-wrap:before, .hunt-pass__ff-wrap:after {
    height: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-wrap:before, .hunt-pass__rewards-wrap:after, .hunt-pass__ff-wrap:before, .hunt-pass__ff-wrap:after {
    -webkit-mask-image: none;
            mask-image: none;
    width: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hunt-pass__rewards-wrap:before, .hunt-pass__rewards-wrap:after, .hunt-pass__ff-wrap:before, .hunt-pass__ff-wrap:after {
    width: 100vw;
    max-width: none;
  }
}
.hunt-pass__rewards-wrap:before, .hunt-pass__ff-wrap:before {
  top: 0;
}
.hunt-pass__rewards-wrap:after, .hunt-pass__ff-wrap:after {
  bottom: 0;
}
.hunt-pass__rewards-title, .hunt-pass__ff-title {
  margin: 40px auto 20px;
  text-shadow: 1px 1px 3px rgba(36, 36, 36, 0.8);
}
.hunt-pass__rewards-title:before, .hunt-pass__ff-title:before {
  content: "";
  position: absolute;
  top: -70px;
  width: 325px;
  left: calc(50% - 163px);
  z-index: 0;
}
.hunt-pass__rewards-title:after, .hunt-pass__ff-title:after {
  content: "";
  position: absolute;
  top: -110px;
  left: calc(50% - 45px);
  z-index: 1;
  width: 90px;
  height: 93px;
  background: transparent url(/assets/media/layout/pages/hunt-pass/badge-elite.png) center center/100% 100% no-repeat;
  z-index: 1;
}
.hunt-pass__rewards-blurb, .hunt-pass__ff-blurb {
  font-size: 18px;
  line-height: 20px;
  text-shadow: 1px 1px 3px rgba(36, 36, 36, 0.8);
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-blurb, .hunt-pass__ff-blurb {
    font-size: 16px;
    line-height: 18px;
    padding: 0 20px;
  }
}
.hunt-pass__rewards-blurb p, .hunt-pass__ff-blurb p {
  margin: 10px auto;
}
.hunt-pass__rewards-slider, .hunt-pass__ff-slider {
  margin: 60px 0;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__rewards-slider, .hunt-pass__ff-slider {
    margin: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-slider, .hunt-pass__ff-slider {
    margin-bottom: 20px;
  }
}
.hunt-pass__rewards-slider-wrap, .hunt-pass__ff-slider-wrap {
  overflow: hidden;
  padding: 0 10px;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__rewards-slider-wrap, .hunt-pass__ff-slider-wrap {
    padding: 0;
  }
}
.hunt-pass__rewards-slider .swiper-wrapper, .hunt-pass__ff-slider .swiper-wrapper {
  align-items: center;
}
.hunt-pass__rewards-swiper, .hunt-pass__ff-swiper {
  margin-right: -10px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__rewards-swiper, .hunt-pass__ff-swiper {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-swiper, .hunt-pass__ff-swiper {
    padding-left: 20px;
    padding-bottom: 40px;
  }
}
.hunt-pass__rewards-pagination, .hunt-pass__ff-pagination {
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__rewards-pagination, .hunt-pass__ff-pagination {
    display: none;
  }
}
@media only screen and (max-width: 320px) {
  .hunt-pass__rewards-pagination, .hunt-pass__ff-pagination {
    transform: scale(0.9);
  }
}
.hunt-pass__rewards-nav, .hunt-pass__ff-nav {
  position: absolute;
  border: none;
  background: none;
  padding: 40px 10px;
  top: calc(50% - 95px);
  cursor: pointer;
  filter: drop-shadow(2px 2px 2px rgba(36, 36, 36, 0.7));
  z-index: 10;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1320px) {
  .hunt-pass__rewards-nav, .hunt-pass__ff-nav {
    padding: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__rewards-nav, .hunt-pass__ff-nav {
    display: none;
  }
}
.hunt-pass__rewards-nav:before, .hunt-pass__ff-nav:before {
  content: "";
  display: block;
  width: 28px;
  height: 32px;
  background: transparent url(../media/layout/ui/arrow-grey.png) center center/100% no-repeat;
  transition: transform 0.3s;
}
.hunt-pass__rewards-nav:hover:before, .hunt-pass__ff-nav:hover:before {
  transform: translateX(-3px);
}
.hunt-pass__rewards-nav:active, .hunt-pass__ff-nav:active {
  transform: scale(0.96);
  filter: drop-shadow(1px 1px 1.5px rgba(36, 36, 36, 0.8));
}
.hunt-pass__rewards-nav--prev, .hunt-pass__ff-nav--prev {
  right: 100%;
}
.hunt-pass__rewards-nav--next, .hunt-pass__ff-nav--next {
  left: 100%;
}
.hunt-pass__rewards-nav--next:before, .hunt-pass__ff-nav--next:before {
  transform: scaleX(-1);
}
.hunt-pass__rewards-nav--next:hover:before, .hunt-pass__ff-nav--next:hover:before {
  transform: scaleX(-1) translateX(-3px);
}
.hunt-pass__rewards-nav.swiper-button-disabled, .hunt-pass__ff-nav.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.hunt-pass__lore {
  text-align: center;
  padding: 100px 0;
  margin: 60px auto 20px;
  background: transparent url(/assets/media/layout/pages/hunt-pass/aether.png) center center no-repeat;
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__lore {
    padding: 60px 0;
    margin: 60px auto;
    background: transparent url(/assets/media/layout/pages/hunt-pass/aether.png) center center/auto 100% no-repeat;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass__lore {
    padding: 20px 0;
  }
}
.hunt-pass__lore-quote {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
  font-size: 26px;
  line-height: 28px;
  font-weight: 400;
  padding: 20px 0;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__lore-quote {
    width: calc(100% - 40px);
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
  }
}
.hunt-pass__lore-quote p {
  padding: 0 115px;
  text-align: left;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__lore-quote p {
    padding: 0 20px;
  }
}
.hunt-pass__lore-quote p:last-of-type:before, .hunt-pass__lore-quote p:first-of-type:after {
  position: absolute;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 150px;
  line-height: 120px;
  font-style: normal;
  filter: drop-shadow(0 0 7px #11b6e6);
}
@media only screen and (max-width: 767px) {
  .hunt-pass__lore-quote p:last-of-type:before, .hunt-pass__lore-quote p:first-of-type:after {
    font-size: 100px;
    line-height: 90px;
  }
}
.hunt-pass__lore-quote p:last-of-type:before {
  content: "“";
  top: -35px;
  left: 0;
}
.hunt-pass__lore-quote p:first-of-type:after {
  content: "”";
  top: 100%;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__lore-quote p:first-of-type:after {
    top: calc(100% + 2px);
    right: 40px;
  }
}
.hunt-pass__cta {
  text-align: center;
  margin-bottom: -50px;
}
.hunt-pass__cta:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: radial-gradient(closest-side, #577d8b, transparent);
  width: 1000px;
  height: 1200px;
  right: calc(50% - 500px);
  bottom: calc(20% - 500px);
}
.hunt-pass__cta img {
  width: calc(100% - 120px);
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .hunt-pass__cta img {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__cta img {
    width: 100%;
  }
}
.hunt-pass__cta-wraper {
  position: absolute;
  width: 100%;
  padding: 0 20px;
  bottom: 90px;
}
.hunt-pass__cta-title {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  color: #ffffff;
  font-weight: bold;
  font-size: 50px;
  line-height: 50px;
  text-shadow: 1px 1px 3px rgba(36, 36, 36, 0.8);
}
@media only screen and (max-width: 1024px) {
  .hunt-pass__cta-title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass__cta-title {
    display: none;
  }
}
.hunt-pass__cta .button {
  margin: 0 auto;
}
.hunt-pass__early-bird {
  margin: 60px auto;
}
.hunt-pass#searing_talons .hunt-pass__track--basic .hunt-pass__track-visual-wrap .dye {
  top: 30%;
  right: 7%;
  height: 40%;
}
.hunt-pass#searing_talons .hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
  height: 140%;
  top: auto;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .hunt-pass#searing_talons .hunt-pass__track--basic .hunt-pass__track-visual-wrap .dye {
    top: 48%;
    right: 6%;
  }
}
.hunt-pass#relics_and_ruin .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens {
  top: 17%;
  right: 20%;
  height: 70%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#relics_and_ruin .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens {
    top: 7%;
    right: 9%;
    height: 42%;
  }
}
.hunt-pass#relics_and_ruin .hunt-pass__track--elite:last-child .hunt-pass__track-visual-wrap img {
  width: calc(100% + 80px);
  left: -10px;
  top: -30px;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#relics_and_ruin .hunt-pass__track--elite:last-child .hunt-pass__track-visual-wrap img {
    left: -30px;
  }
}
.hunt-pass#clear_skies .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens, .hunt-pass#strange_horizons .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens {
  top: 17%;
  right: 20%;
  height: 70%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#clear_skies .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens, .hunt-pass#strange_horizons .hunt-pass__track--basic .hunt-pass__track-visual-wrap .bounty-tokens {
    top: 7%;
    right: 9%;
    height: 42%;
  }
}
@media only screen and (max-width: 767px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual {
    padding-bottom: 26.25%;
  }
}
@media only screen and (max-width: 480px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual {
    padding-bottom: 50%;
  }
}
.hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap img {
  height: 100%;
}
@media only screen and (max-width: 480px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap img {
    height: 80%;
  }
}
.hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
  top: 0%;
  left: 36%;
}
@media only screen and (max-width: 480px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
    top: 10%;
    left: 30%;
  }
}
.hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .vault-coin {
  top: 0%;
  left: 8%;
}
@media only screen and (max-width: 480px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .vault-coin {
    top: 10%;
    left: -2%;
  }
}
.hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .patrol-chest {
  top: 0%;
  left: 65%;
}
@media only screen and (max-width: 480px) {
  .hunt-pass#farslayers_fall .hunt-pass__track--basic .hunt-pass__track-visual-wrap .patrol-chest {
    top: 10%;
    left: 63%;
  }
}
.hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .armour-set {
  height: 120%;
  bottom: -12%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .armour-set {
    height: 80%;
    bottom: 8%;
  }
}
.hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
  height: 50%;
  top: 44%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .platinum {
    left: 2%;
    top: 58%;
    height: 40%;
  }
}
.hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
  top: 28%;
  right: 4%;
}
@media only screen and (max-width: 767px) {
  .hunt-pass#cold_front .hunt-pass__track--basic .hunt-pass__track-visual-wrap .emote {
    top: 50%;
    right: 3%;
  }
}

.hunt-passes {
  max-width: 1160px;
  margin: 60px auto 120px;
  padding: 0 20px;
}
@media only screen and (max-width: 480px) {
  .hunt-passes {
    padding: 0;
    margin-bottom: 60px;
  }
}
.hunt-passes .card {
  margin: 80px auto;
}
@media only screen and (max-width: 480px) {
  .hunt-passes .card {
    margin: 60px auto;
  }
}
.hunt-passes .card:first-child {
  margin-top: 0;
}

.landing {
  height: 100vh;
  height: calc(var(--ivh, 1vh) * 100);
  width: 100vw;
  overflow: hidden;
}
.landing video {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 120px), rgba(0, 0, 0, 0.5) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 120px), rgba(0, 0, 0, 0.5) 100%);
}
.landing video.active {
  opacity: 0.5;
}
.landing__website-link {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 54px;
  padding: 20px;
  opacity: 0.4;
  z-index: 100;
  line-height: 0;
  transition: opacity 0.3s;
  filter: drop-shadow(0 0 6px #134069);
}
@media only screen and (max-width: 767px) {
  .landing__website-link {
    height: 40px;
    padding: 10px;
  }
}
.landing__website-link span {
  display: inline-block;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .landing__website-link span {
    font-size: 14px;
    line-height: 20px;
  }
}
.landing__website-link > svg {
  fill: #ffffff;
  width: 12px;
  height: 10px;
  transform: rotate(-90deg);
  vertical-align: middle;
  margin-left: 2px;
}
@media only screen and (max-width: 767px) {
  .landing__website-link > svg {
    width: 8px;
    height: 7px;
  }
}
.landing__website-link:hover {
  opacity: 0.75;
}
.landing .home-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  height: 100%;
  transition: opacity 0.3s;
  padding: 50px 0;
}
@media only screen and (max-height: 500px) {
  .landing .home-intro {
    padding: 0;
  }
}
.landing .home-intro.visible--b {
  justify-content: space-between;
}
.landing .home-intro:before {
  content: none;
}
.landing .home-intro__branding, .landing .home-intro__actions {
  top: auto;
  bottom: auto;
  position: relative;
  align-items: center;
}
.landing .home-intro__branding {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .landing .home-intro__branding {
    transform: translateX(-50%);
  }
}
@media only screen and (max-height: 400px) {
  .landing .home-intro__branding h2 {
    display: none;
  }
}
.landing .home-intro__actions {
  margin-top: 100px;
}
@media only screen and (max-width: 1200px) {
  .landing .home-intro__actions {
    margin-top: 60px;
  }
}
@media only screen and (max-height: 600px) {
  .landing .home-intro__actions {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .landing .home-intro__actions {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .landing .home-intro__actions {
    margin-top: 20px;
  }
}
@media only screen and (max-height: 400px) {
  .landing .home-intro__actions {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .landing .home-intro__logo {
    margin-top: 0;
    width: 100%;
    padding-bottom: 25%;
  }
}
@media only screen and (max-height: 750px) {
  .landing .home-intro__logo {
    margin-top: 0;
    width: 100%;
    padding-bottom: 25%;
  }
}
@media only screen and (max-height: 550px) {
  .landing .home-intro__logo {
    padding-bottom: 18%;
  }
}
@media only screen and (max-height: 320px) {
  .landing .home-intro__logo {
    padding-bottom: 12%;
  }
}
.landing__legal {
  position: absolute;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
  padding: 0 20px 20px;
  opacity: 0.4;
  font-size: 10px;
  line-height: 10px;
}
@media only screen and (max-width: 767px) {
  .landing__legal {
    padding: 0 10px 10px;
  }
}
.landing__legal ul li {
  display: inline;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .landing__legal ul li {
    font-size: 11px;
    line-height: 11px;
  }
}
.landing__legal ul li + li:before {
  content: "|";
  margin: 0 5px 0 4px;
}
.landing__legal p {
  margin: 5px 0 0;
}
.landing__legal .prime-gaming {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .landing__legal .prime-gaming {
    display: none;
  }
}
.landing__legal .prime-gaming p {
  margin: 0;
}
.landing__legal .prime-gaming p:last-child {
  color: #89c6ff;
}
.landing .site-header {
  z-index: 10;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .landing .site-header {
    transition: opacity 0.3s;
  }
}
.landing .site-header:before {
  content: none;
}
.landing .site-header > ul, .landing .site-header > ul > li {
  padding: 0;
  height: auto;
  border: none;
}
@media only screen and (max-width: 1024px) {
  .landing .site-header > ul > li.active .sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
  .landing .site-header > ul > li.active .site-header__close {
    opacity: 1;
    pointer-events: all;
  }
}
.landing .site-header__settings .menu-parent {
  padding: 0;
  opacity: 0.4;
  padding: 20px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .landing .site-header__settings .menu-parent {
    padding: 10px;
  }
}
.landing .site-header__settings .menu-parent a {
  padding: 0;
}
.landing .site-header__settings .sub-menu {
  position: absolute;
  display: block;
  top: 66px;
  left: 20px;
  max-height: calc(calc(var(--ivh, 1vh) * 100) - 66px);
  width: auto;
  border-top: 1px solid #4f545a;
}
@media only screen and (max-width: 1024px) {
  .landing .site-header__settings .sub-menu {
    left: 0;
    border-top: none;
    transform: translateX(-100%);
    transition: transform 0.3s, opacity 0.3s;
  }
  .landing .site-header__settings .sub-menu li:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .landing .site-header__settings .sub-menu {
    top: 40px;
    max-height: calc(calc(var(--ivh, 1vh) * 100) - 40px);
  }
}
@media only screen and (max-height: 480px) {
  .landing .site-header__settings .sub-menu {
    overflow: auto;
    overflow-x: hidden;
  }
}
.landing .site-header ul li a > svg {
  height: 26px;
  width: 26px;
}
@media only screen and (max-width: 767px) {
  .landing .site-header ul li a > svg {
    height: 20px;
    width: 20px;
  }
}
.landing .site-header ul li a span, .landing .site-header ul li a > .svg-chevron {
  display: none;
}
@media only screen and (max-width: 480px) {
  .landing {
    padding-bottom: 20px;
  }
}
.landing .description {
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  line-height: 24px;
  padding: 0 20px;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: bold;
  filter: drop-shadow(0 0 6px #242424);
}
@media only screen and (max-width: 767px) {
  .landing .description {
    font-size: 16px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .landing .description {
    font-size: 14px;
    line-height: 16px;
  }
}
@media only screen and (max-height: 320px) {
  .landing .description {
    font-size: 14px;
    line-height: 16px;
  }
}
.landing .description span {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}
.landing .description .cta {
  display: block;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 50px;
  margin: 10px auto 40px;
}
@media only screen and (max-width: 767px) {
  .landing .description .cta {
    display: block;
    font-size: 30px;
    line-height: 30px;
    margin: 10px auto 30px;
  }
}
@media only screen and (max-height: 550px) {
  .landing .description .cta {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-height: 320px) {
  .landing .description .cta {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms {
    max-width: 100%;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform {
    width: 50px;
    padding-bottom: 50px;
    margin: 0 2px 0 3px;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform__button {
    border-image-slice: 14 14 fill;
    border-top: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid transparent;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform__wrap > svg {
    height: calc(100% - 10px);
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform__name {
    display: none;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform__comingsoon--countdown {
    opacity: 1;
    height: auto;
    top: 100%;
    margin-top: 2px;
    font-size: 12px;
    line-height: 12px;
    padding: 0;
  }
}
@media only screen and (max-height: 500px) {
  .landing .platforms .platform--mobile {
    display: none;
  }
}
.landing .ab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.landing .ab.visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
  transition: opacity 0.3s, visibility 0.3s;
}

.home-intro {
  min-height: calc(100vh + 40px);
  min-height: calc(calc(var(--ivh, 1vh) * 100) + 40px);
  padding-top: 50px;
}
.home-intro__branding {
  position: absolute;
  bottom: calc(50% - 50px);
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  padding: 0 20px;
  max-width: 620px;
  text-align: center;
  color: #ffffff;
  filter: drop-shadow(0 0 6px #134069);
}
@media only screen and (max-width: 1024px) {
  .home-intro__branding {
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .home-intro__branding {
    top: 60px;
    transform: translateX(-50%);
  }
}
@media only screen and (max-height: 500px) {
  .home-intro__branding {
    bottom: auto;
    top: 60px;
    transform: translateX(-50%);
  }
}
.home-intro__branding h2 {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .home-intro__branding h2 {
    font-size: 26px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .home-intro__branding h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-height: 500px) {
  .home-intro__branding h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
.home-intro__logo {
  width: 100%;
  margin: 10px auto 0;
  padding-bottom: 36.6666%;
}
@media only screen and (max-height: 500px) {
  .home-intro__logo {
    margin-top: 0;
    width: 100%;
    padding-bottom: 18.3333%;
  }
}
.home-intro__logo > svg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  fill: #ffffff;
  width: 100%;
  height: 100%;
}
.home-intro__logo--ja {
  margin-top: 40px;
}
.home-intro__actions {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 60px;
  width: 100%;
}
@media only screen and (max-height: 400px) {
  .home-intro__actions {
    bottom: 50px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .home-intro__actions {
    display: block;
    text-align: center;
  }
}
.home-intro__actions .button {
  margin: 10px auto 0;
}
@media only screen and (max-height: 500px) {
  .home-intro__actions .button {
    transform: scale(0.9);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .home-intro__actions .button {
    display: table;
  }
}
@media only screen and (max-height: 500px) {
  .home-intro__actions .button + .button {
    margin: 5px auto 0;
  }
}

.game {
  background: #0f1c25;
}
.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  min-height: 100vh;
  padding: 100px 0;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .game-section {
    padding: 60px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .game-section {
    padding: 50px 20px;
  }
}
.game-section__title {
  font-size: 60px;
  line-height: 60px;
  margin-top: 0;
  z-index: 10;
  padding: 0 20px;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
@media only screen and (max-height: 900px) {
  .game-section__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .game-section__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .game-section__title {
    margin-top: 20px;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .game-section__title {
    font-size: 30px;
    line-height: 30px;
  }
}
.game-section__description {
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 10;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .game-section__description {
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .game-section__description {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }
}
.game-section__video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}
.game .weapons {
  width: 100%;
  max-width: 1260px;
  height: 440px;
  margin-top: 40px;
}
@media only screen and (max-height: 850px) {
  .game .weapons {
    flex: 0 1 auto;
    height: 350px;
  }
}
@media only screen and (max-width: 1200px) {
  .game .weapons {
    height: 370px;
  }
}
@media only screen and (max-width: 1024px) {
  .game .weapons {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons {
    flex: 0 1 auto;
    height: 350px;
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .game .weapons {
    height: 350px;
  }
}
@media only screen and (max-width: 360px) {
  .game .weapons {
    height: 400px;
  }
}
.game .weapons__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}
@media only screen and (max-width: 767px) {
  .game .weapons__content {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.game .weapons__weapon {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 400px);
  margin: 0 -200px;
  padding: 20px 0 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.2s, visibility 0.2s 0.2s;
  border-top: 2px solid #79828d;
  border-bottom: 2px solid #79828d;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
  text-align: left;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .game .weapons__weapon {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 150px, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
    width: calc(100% + 300px);
    margin: 0 -150px;
  }
}
@media only screen and (max-width: 1024px) {
  .game .weapons__weapon {
    -webkit-mask-image: none;
            mask-image: none;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons__weapon {
    align-items: center;
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
  }
}
.game .weapons__weapon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 150%;
  top: -25%;
  background-color: rgba(0, 0, 0, 0.75);
}
.game .weapons__weapon--active {
  opacity: 1;
  visibility: visible;
}
.game .weapons__weapon-title {
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .game .weapons__weapon-title {
    margin-bottom: 10px;
  }
}
.game .weapons__weapon-stats {
  width: 100%;
  max-width: 350px;
  margin: 20px 0;
}
@media only screen and (max-height: 850px) {
  .game .weapons__weapon-stats {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons__weapon-stats {
    max-width: 100%;
    margin: 10px 0 0;
  }
}
.game .weapons__weapon-stats .label {
  width: 100px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.024em;
}
.game .weapons__weapon-description {
  width: 100%;
  margin: 20px 0 0;
}
@media only screen and (max-height: 850px) {
  .game .weapons__weapon-description {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-height: tablet) {
  .game .weapons__weapon-description {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 480px) {
  .game .weapons__weapon-description {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }
}
.game .weapons__weapon-content, .game .weapons__weapon-images {
  flex: 1 0 auto;
  max-width: 30%;
  width: 100%;
}
@media only screen and (max-height: 850px) {
  .game .weapons__weapon-content, .game .weapons__weapon-images {
    flex: 0 0 auto;
    padding: 0 40px 20px;
    max-width: 35%;
  }
}
@media only screen and (max-width: 1200px) {
  .game .weapons__weapon-content, .game .weapons__weapon-images {
    max-width: 45%;
    padding: 0 0 0 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .game .weapons__weapon-content, .game .weapons__weapon-images {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons__weapon-content, .game .weapons__weapon-images {
    flex: 0 0 auto;
    padding: 60px 40px 80px;
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .game .weapons__weapon-content, .game .weapons__weapon-images {
    padding: 40px 20px 60px;
  }
}
.game .weapons__weapon-images {
  height: 100%;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
  max-width: 20%;
}
@media only screen and (max-height: 850px) {
  .game .weapons__weapon-images {
    max-width: 15%;
  }
}
@media only screen and (max-width: 1200px) {
  .game .weapons__weapon-images {
    max-width: 20%;
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .game .weapons__weapon-images {
    max-width: 40%;
    padding: 0 40px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons__weapon-images {
    display: none;
  }
}
.game .weapons__weapon-images img {
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  height: auto;
  width: calc(100% - 20px);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}
@media only screen and (max-width: 1024px) {
  .game .weapons__weapon-images img {
    width: calc(100% - 60px);
  }
}
.game .weapons__weapon-images img.weapons__weapon-image--1 {
  position: relative;
  width: 100%;
  left: auto;
}
.game .weapons__weapon-images .weapons__weapon-image--1 {
  opacity: 1;
}
.game .weapons__weapon-images .weapons__weapon-image--2 {
  opacity: 0;
}
.game .weapons__weapon-images .weapons__weapon-image--3 {
  opacity: 0;
}
.game .weapons__weapon-images--2 .weapons__weapon-image--1 {
  opacity: 0;
}
.game .weapons__weapon-images--2 .weapons__weapon-image--2 {
  opacity: 1;
}
.game .weapons__weapon-images--2 .weapons__weapon-image--3 {
  opacity: 0;
}
.game .weapons__weapon-images--3 .weapons__weapon-image--1 {
  opacity: 0;
}
.game .weapons__weapon-images--3 .weapons__weapon-image--2 {
  opacity: 0;
}
.game .weapons__weapon-images--3 .weapons__weapon-image--3 {
  opacity: 1;
}
.game .weapons__icons {
  position: absolute;
  width: 100%;
  bottom: -45px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 767px) {
  .game .weapons__icons {
    bottom: -30px;
  }
}
@media only screen and (max-width: 480px) {
  .game .weapons__icons {
    bottom: -20px;
  }
}
.game .weapons__icons .swiper-wrapper {
  justify-content: center;
}
.game .weapons__icon {
  width: 90px;
  height: 90px;
  padding: 15px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .game .weapons__icon {
    width: 60px;
    height: 60px;
    padding: 4px;
  }
}
@media only screen and (max-width: 480px) {
  .game .weapons__icon {
    width: 40px;
    height: 40px;
    padding: 1px;
  }
}
.game .weapons__icon img {
  display: block;
  width: 100%;
  transition: transform 0.3s;
  transform-origin: center center;
}
.game .weapons__icon:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 14px;
  background: transparent url();
}
.game .weapons__icon:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .game .weapons__icon:hover img {
    transform: none;
  }
}
.game .weapons__icon--active img, .game .weapons__icon--active:hover img {
  transform: scale(1.5);
}
@media only screen and (max-width: 767px) {
  .game .weapons__icon--active img, .game .weapons__icon--active:hover img {
    transform: scale(1.4);
  }
}
@media only screen and (max-width: 767px) {
  .game .weapons__icon--active img, .game .weapons__icon--active:hover img {
    transform: scale(1.3);
  }
}
.game__intro {
  z-index: 10;
  transition: opacity 0.2s, visibility 0.2s;
}
.game__intro.inactive {
  opacity: 0;
  visibility: hidden;
}
.game__intro-logo {
  z-index: 10;
  fill: #ffffff;
  filter: drop-shadow(0 0 20px rgb(0, 0, 0));
}
@media only screen and (max-width: 480px) {
  .game__intro-logo {
    max-width: calc(100% - 80px);
  }
}
.game__intro-logo svg {
  fill: #ffffff;
}
.game__intro .game-section__description {
  filter: drop-shadow(0 0 20px rgb(0, 0, 0));
}
.game__intro-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
.game__intro-background img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 135%;
  transform: translateX(-50%);
}
.game__intro-background img:first-child {
  position: fixed;
}
@media only screen and (max-width: 767px) {
  .game__intro-background img:first-child {
    position: absolute;
  }
}
.game__weapons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .game__weapons {
    margin-top: calc(35% + 70px);
  }
}
@media only screen and (max-width: 767px) {
  .game__weapons video {
    display: none;
  }
}
.game__custom-coop {
  height: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, #151e3c 60%, #0f1418 100%);
  z-index: 15;
}
.game__custom-coop:before {
  position: absolute;
  top: 5%;
  left: 25%;
  content: "";
  width: 50%;
  padding-bottom: 36%;
  background: transparent url(../media/layout/pages/game/armoursmith-icon.png) center/100% auto no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.03;
}
@media only screen and (max-width: 767px) {
  .game__custom-coop:before {
    top: 10%;
    left: 12.5%;
    width: 75%;
    padding-bottom: 54%;
  }
}
.game__custom-coop .game-section__content {
  margin-bottom: 20px;
}
.game__custom-coop .game-section__content > div {
  width: 100%;
  transition: opacity 0.2s, visibility 0.2s;
}
.game__custom-coop .game-section__content-custom {
  position: absolute;
  top: 0;
  left: 0;
}
.game__custom-coop .game-section__content-coop {
  opacity: 0;
  visibility: hidden;
}
.game__custom-coop--coop .game-section__content-custom {
  opacity: 0;
  visibility: hidden;
}
.game__custom-coop--coop .game-section__content-coop {
  opacity: 1;
  visibility: visible;
}
.game .lineup {
  width: 60%;
  max-width: 1460px;
  margin-top: 60px;
}
@media only screen and (max-width: 1900px) {
  .game .lineup {
    max-width: 80%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1600px) {
  .game .lineup {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .game .lineup {
    max-width: 100%;
    width: calc(100% - 40px);
  }
}
@media only screen and (max-height: 800px) {
  .game .lineup {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .game .lineup {
    max-width: 100%;
    width: 100%;
  }
}
.game .lineup__border {
  position: absolute;
  top: 30px;
  width: 100%;
  height: 70%;
}
@media only screen and (min-width: 1920px) {
  .game .lineup__border {
    top: 45px;
  }
}
@media only screen and (max-width: 1200px) {
  .game .lineup__border {
    top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .game .lineup__border {
    top: 20px;
  }
}
.game .lineup__border > div {
  position: absolute;
  background-color: rgba(137, 198, 255, 0.4);
  transition-property: width, height;
  transition-duration: 0.075s;
}
.game .lineup__border-top, .game .lineup__border-bottom {
  width: 0;
  height: 1px;
}
.game .lineup__border-top {
  left: 0;
  top: 0;
  transition-delay: 0.225s;
}
.game .lineup__border-bottom {
  right: 0;
  bottom: 0;
  transition-delay: 0.075s;
}
.game .lineup__border-right, .game .lineup__border-left {
  width: 1px;
  height: 0;
}
.game .lineup__border-right {
  top: 1px;
  right: 0;
  transition-delay: 0.15s;
}
.game .lineup__border-left {
  bottom: 1px;
  left: 0;
  transition-delay: 0s;
}
.game .lineup__platforms {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  justify-content: space-around;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .game .lineup__platforms {
    padding: 0;
  }
}
.game .lineup__platform {
  width: 92px;
  height: 92px;
  transform: rotate(45deg);
  border: 2px solid white;
  background: #151e3c;
  opacity: 0;
  transition-property: opacity, visibility;
  transition-duration: 0.2s;
}
@media only screen and (max-width: 1900px) {
  .game .lineup__platform {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .game .lineup__platform {
    width: 40px;
    height: 40px;
  }
}
.game .lineup__platform > svg {
  position: absolute;
  top: 25%;
  left: 25%;
  fill: #ffffff;
  opacity: 0;
  width: 50%;
  height: 50%;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}
.game .lineup__platform:nth-child(4) {
  transition-delay: 0.1875s;
}
.game .lineup__platform:nth-child(4) > svg:nth-child(4) {
  opacity: 1;
}
.game .lineup__platform:nth-child(3) {
  transition-delay: 0.225s;
}
.game .lineup__platform:nth-child(3) > svg:nth-child(3) {
  opacity: 1;
}
.game .lineup__platform:nth-child(2) {
  transition-delay: 0.2625s;
}
.game .lineup__platform:nth-child(2) > svg:nth-child(2) {
  opacity: 1;
}
.game .lineup__platform:nth-child(1) {
  transition-delay: 0.3s;
}
.game .lineup__platform:nth-child(1) > svg:nth-child(1) {
  opacity: 1;
}
.game .lineup__slayers {
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .game .lineup__slayers {
    padding: 0;
  }
}
@media only screen and (max-width: 400px) {
  .game .lineup__slayers {
    padding-top: 10px;
  }
}
.game .lineup__slayer {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  padding: 0 40px;
  margin-bottom: -8%;
}
@media only screen and (max-width: 1500px) {
  .game .lineup__slayer {
    padding: 0 10px;
  }
}
.game .lineup__slayer img {
  display: block;
  width: 150%;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 95%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 95%);
}
@media only screen and (max-width: 767px) {
  .game .lineup__slayer img {
    width: 200%;
  }
}
.game .lineup--active .lineup__border-top {
  width: 100%;
  transition-delay: 0s;
}
.game .lineup--active .lineup__border-right {
  height: calc(100% - 2px);
  transition-delay: 0.075s;
}
.game .lineup--active .lineup__border-bottom {
  width: 100%;
  transition-delay: 0.15s;
}
.game .lineup--active .lineup__border-left {
  height: calc(100% - 2px);
  transition-delay: 0.225s;
}
.game .lineup--active .lineup__platform {
  opacity: 1;
  visibility: visible;
}
.game .lineup--active .lineup__platform:nth-child(1) {
  transition-delay: 0.1875s;
}
.game .lineup--active .lineup__platform:nth-child(2) {
  transition-delay: 0.225s;
}
.game .lineup--active .lineup__platform:nth-child(3) {
  transition-delay: 0.2625s;
}
.game .lineup--active .lineup__platform:nth-child(4) {
  transition-delay: 0.3s;
}
.game__outro {
  z-index: 5;
  padding-right: 0;
  padding-left: 0;
}
.game__loading {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  background: #041326;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 50px;
  height: 100vh;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  transition: opacity 0.4s 0.75s ease-out, visibility 0.4s 0.75s ease-out;
}
@keyframes moving-gradient {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
.game__loading .loading-progress {
  position: absolute;
  width: 0;
  height: 1px;
  top: 50%;
  right: 0;
  left: auto;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.25) 33.33%, white 66.66%, rgba(255, 255, 255, 0.25) 100%);
  background-size: 300% 100%;
  animation: moving-gradient 2s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 100px);
          mask-image: linear-gradient(90deg, transparent 0, black 100px);
  transition: width 0.5s ease-in;
}

body.loading {
  height: 100vh;
  overflow: hidden;
}
body.loading .game section {
  opacity: 0;
}
body.loading .game section.game__loading {
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
body.loading .game section.game__loading .loading-progress {
  -webkit-mask-image: linear-gradient(90deg, black calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, black calc(100% - 60px), transparent 100%);
  left: 0;
  right: auto;
  width: var(--progress);
  transition: width 0.3s ease-in-out;
}

main.store {
  padding-top: 75px;
}

.store#store {
  padding-top: 50px;
}
.store__blade--merch-partners {
  padding: 50px 50px 150px;
}
@media only screen and (max-width: 767px) {
  .store__blade--merch-partners {
    padding: 50px 15px 100px;
  }
}
.store__blade--hunt-pass {
  text-align: center;
  padding: 75px 0 50px;
}
.store__blade--hunt-pass:before, .store__blade--hunt-pass:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.store__blade--hunt-pass:before {
  background: transparent url(../media/layout/pages/store/hunt_pass-bg.jpg) center center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .store__blade--hunt-pass:before {
    background-image: url(../media/layout/pages/store/hunt_pass-bg-mobile.jpg);
  }
}
.store__blade--hunt-pass:after {
  width: 1160px;
  max-width: 1120px;
  height: calc(100% - 150px);
  left: 50%;
  bottom: 0;
  top: auto;
  transform: translateX(-50%);
  background: transparent url(../media/layout/pages/store/hunt_pass-items.png) center bottom/100% auto no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 250px), transparent 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 250px), transparent 100%);
}
@media only screen and (max-width: 1200px) {
  .store__blade--hunt-pass:after {
    max-width: 985px;
  }
}
@media only screen and (max-width: 1024px) {
  .store__blade--hunt-pass:after {
    max-width: 728px;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade--hunt-pass:after {
    background-image: url(../media/layout/pages/store/hunt_pass-items-mobile.png);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 200px), transparent 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 200px), transparent 100%);
    max-width: 441px;
  }
}
@media only screen and (max-width: 480px) {
  .store__blade--hunt-pass:after {
    max-width: 100%;
    width: 100%;
  }
}
.store__blade--hunt-pass .title-block {
  z-index: 1;
}
.store__blade--hunt-pass .content {
  z-index: 1;
  padding-top: 300px;
}
@media only screen and (max-width: 1200px) {
  .store__blade--hunt-pass .content {
    padding-top: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .store__blade--hunt-pass .content {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade--hunt-pass .content {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 480px) {
  .store__blade--hunt-pass .content {
    padding-top: 50px;
  }
}
.store__blade--hunt-pass .content h2 {
  color: #ffffff;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.75);
}
.store__blade--supporter-packs {
  background-image: url(/assets/media/layout/pages/store/supporter-pack-ramsguard-right.png), url(/assets/media/layout/pages/store/supporter-pack-ramsguard-left.png), url(/assets/media/layout/pages/store/supporter-pack-bg.jpg);
  background-size: auto calc(100% - 25px), auto calc(100% - 25px), cover;
  background-position: calc(50% + 375px) bottom, calc(50% + 75px) bottom, center bottom;
  background-repeat: no-repeat;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .store__blade--supporter-packs {
    background-size: auto 250px, auto 250px, cover;
    background-position: calc(100% - 25px) 15px, 40px 15px, center;
  }
}
@media only screen and (max-width: 480px) {
  .store__blade--supporter-packs {
    background-size: auto 250px, auto 250px, cover;
    background-position: right 15px, left 15px, center;
  }
}
.store__blade--supporter-packs .card {
  left: -225px;
  width: 350px;
  margin: 75px auto;
}
@media only screen and (max-width: 1200px) {
  .store__blade--supporter-packs .card {
    left: initial;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade--supporter-packs .card {
    width: 90%;
    margin: 230px auto 25px;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade--supporter-packs .card {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .store__blade--supporter-packs .card {
    width: 100%;
  }
}
.store__blade--collectors-edition {
  margin: 70px auto 20px;
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition {
    margin-top: 40px;
  }
}
.store__blade--collectors-edition:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  height: calc(100% - 40px);
  top: 20px;
  background: transparent url(/assets/media/layout/pages/store/ce-bg.jpg) center/cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition:before {
    background: none;
  }
}
.store__blade--collectors-edition .container {
  display: flex;
  max-width: 1160px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition .container {
    display: block;
    padding: 0;
  }
}
.store__blade--collectors-edition .transmog {
  flex: 1 1 auto;
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition .transmog:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 200px, rgb(0, 0, 0) calc(100% - 200px), rgba(0, 0, 0, 0) 100%);
    background: transparent url(/assets/media/layout/pages/store/ce-bg-mobile.jpg) center/cover no-repeat;
  }
}
.store__blade--collectors-edition .transmog img {
  display: block;
  max-height: 670px;
  height: 100%;
  width: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .store__blade--collectors-edition .transmog img {
    max-height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .store__blade--collectors-edition .transmog img {
    max-height: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition .transmog img {
    max-height: 369px;
  }
}
@media only screen and (max-width: 480px) {
  .store__blade--collectors-edition .transmog img {
    max-height: 300px;
  }
}
.store__blade--collectors-edition .card-container {
  flex: 1 1 auto;
}
@media only screen and (max-width: 767px) {
  .store__blade--collectors-edition .card-container {
    margin-top: 50px;
  }
}
.store__blade--collectors-edition .card-container .card {
  max-width: 380px;
  margin: -40px auto 0;
}
.store__blade ul {
  justify-content: flex-start;
  display: flex;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.store__blade ul li {
  width: 50%;
  min-width: 300px;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .store__blade ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .store__blade ul li {
    width: 100%;
    padding: 0;
    min-width: 0;
  }
}

main#media {
  width: 100%;
}
main#media .media-section {
  padding: 75px 0 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main#media .media-section .title-block {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}
main#media .media-section__background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  filter: blur(10px);
  opacity: 0.7;
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1200px) {
  main#media .media-section__background {
    display: none;
  }
}
main#media .media-section:first-of-type .media-section__background {
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100%);
}
main#media .media-section:last-of-type {
  padding-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  main#media .media-section:last-of-type {
    padding-bottom: 20px;
  }
}
main#media .media-section:last-of-type .media-section__background {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 300px);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 300px);
}
main#media .media-section__wrapper {
  margin: 30px auto 0;
  padding: 0 10px;
  width: 100%;
  max-width: 1160px;
}
@media only screen and (max-width: 767px) {
  main#media .media-section__wrapper {
    display: block;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 480px) {
  main#media .media-section__wrapper {
    padding: 0;
  }
}
main#media .media-section__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  padding: 1px;
}
main#media .media-section__caption:before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  height: 175%;
  width: 150%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%);
  filter: blur(10px);
}
main#media .media-section__caption h4 {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
  color: #ffffff;
  text-shadow: 0px 0px 3px black;
}
main#media .media-section__main-featured {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  main#media .media-section__main-featured {
    margin-bottom: 0;
    width: 100%;
  }
}
main#media .media-section__main-featured .media-section__thumbnail {
  padding-top: 40%;
}
@media only screen and (max-width: 480px) {
  main#media .media-section__main-featured .media-section__thumbnail {
    padding-top: calc(56.25% - 10px);
  }
}
main#media .media-section__main-featured h4 {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  main#media .media-section__main-featured h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  main#media .media-section__main-featured h4 {
    font-size: 14px;
    padding: 10px 20px;
  }
}
main#media .media-section__secondary-featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 10px;
  width: 100%;
}
main#media .media-section__secondary-featured h4 {
  font-size: 14px;
  line-height: 1;
  padding: 5px 30px;
}
@media only screen and (max-width: 1024px) {
  main#media .media-section__secondary-featured h4 {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  main#media .media-section__secondary-featured h4 {
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 767px) {
  main#media .media-section__secondary-featured h4 {
    padding: 10px 20px;
  }
}
main#media .media-section__secondary-featured .media-section__thumbnail {
  width: calc(25% - 7.5px);
  padding-top: calc(14% - 7.5px);
  margin-top: 10px;
  margin-right: 10px;
}
main#media .media-section__secondary-featured .media-section__thumbnail:nth-of-type(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  main#media .media-section__secondary-featured .media-section__thumbnail {
    width: calc(50% - 5px);
    padding-top: calc(28% - 10px);
  }
  main#media .media-section__secondary-featured .media-section__thumbnail:nth-of-type(4n) {
    margin-right: 10px;
  }
  main#media .media-section__secondary-featured .media-section__thumbnail:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  main#media .media-section__secondary-featured .media-section__thumbnail {
    width: 100%;
    padding-top: calc(56.25% - 10px);
    margin-right: 0;
  }
  main#media .media-section__secondary-featured .media-section__thumbnail:nth-of-type(2n), main#media .media-section__secondary-featured .media-section__thumbnail:nth-of-type(4n) {
    margin-right: 0;
  }
}
main#media .media-section__secondary-featured .media-section__thumbnail:after {
  width: 60px;
  height: 60px;
  background-size: 60px;
}
@media only screen and (max-width: 1024px) {
  main#media .media-section__secondary-featured .media-section__thumbnail:after {
    height: 50px;
    width: 50px;
    background-size: 50px;
  }
}
@media only screen and (max-width: 480px) {
  main#media .media-section__secondary-featured .media-section__thumbnail:after {
    height: 75px;
    width: 75px;
    background-size: 75px;
  }
}
main#media .media-section__thumbnail {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  cursor: pointer;
}
main#media .media-section__thumbnail span {
  position: absolute;
  display: block;
  width: 100%;
}
main#media .media-section__thumbnail span:not(.media-section__caption) {
  top: 0;
  height: 100%;
}
main#media .media-section__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  main#media .media-section__thumbnail img {
    width: 100%;
    height: auto;
  }
}
main#media .media-section__thumbnail:first-child img {
  -o-object-position: top center;
     object-position: top center;
}
main#media .media-section__thumbnail:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  background: transparent url(../media/layout/ui/play-button.svg) center center/100px no-repeat;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  main#media .media-section__thumbnail:after {
    height: 100px;
    width: 100px;
    background-size: 100px;
  }
}
@media only screen and (max-width: 480px) {
  main#media .media-section__thumbnail:after {
    height: 75px;
    width: 75px;
    background-size: 75px;
  }
}
main#media .media-section__thumbnail:hover img, main#media .media-section__thumbnail:active img, main#media .media-section__thumbnail:focus img {
  transform: scale(1.1);
}
main#media .media-section.media-section__images .media-section__thumbnail:after {
  content: none;
}
main#media .media-images-slider {
  height: 100%;
  overflow: hidden;
}
main#media .media-images-slider .swiper-slide {
  height: 100%;
  background: #242424;
}
main#media .media-images-slider .swiper-slide .loader, main#media .media-images-slider .swiper-slide .download {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: scale(0.4) translate(-50%, -50%);
}
main#media .media-images-slider .swiper-slide .download {
  display: block;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
main#media .media-images-slider .swiper-slide .download > svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
}
main#media .media-images-slider .swiper-slide img.swiper-lazy-loading {
  opacity: 0;
}
main#media .media-images-slider .swiper-slide img.swiper-lazy-loading + .loader {
  display: block;
}
main#media .media-images-slider .swiper-slide.swiper-slide-active img.swiper-lazy-loaded + .loader + .download {
  opacity: 0.1;
  transition: opacity 0.3s;
}
main#media .media-images-slider .swiper-slide:hover, main#media .media-images-slider .swiper-slide:active, main#media .media-images-slider .swiper-slide:focus {
  outline: none;
}
main#media .media-images-slider .swiper-slide:hover img.swiper-lazy-loaded + .loader + .download, main#media .media-images-slider .swiper-slide:active img.swiper-lazy-loaded + .loader + .download, main#media .media-images-slider .swiper-slide:focus img.swiper-lazy-loaded + .loader + .download {
  opacity: 0.6;
}
main#media .media-images-slider .swiper-pagination {
  bottom: 2px;
  color: #ffffff;
  font-size: 12px;
  text-shadow: 0 0 5px #242424;
}
main#media .swiper-navigation {
  height: 100%;
  width: 80px;
  background: none;
  top: auto;
  bottom: 0;
  left: 0;
  filter: drop-shadow(2px 2px 5px #242424);
}
main#media .swiper-navigation img {
  position: absolute;
  display: block;
  top: calc(50% - 20px);
  left: calc(50% - 17px);
  width: 35px;
  height: 40px;
  transition: transform 0.3s;
}
main#media .swiper-navigation:hover, main#media .swiper-navigation:Active, main#media .swiper-navigation:focus {
  outline: none;
}
main#media .swiper-navigation:hover img {
  transform: translateX(-5px);
}
main#media .swiper-navigation.swiper-button-next {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

main.legal a {
  color: #336699;
  text-decoration: underline;
}
main.legal .article__content h2 {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.25;
}
main.legal .article__content h2:after {
  content: none;
}

.support-a-creator .hero__bg {
  background: none;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
}
.support-a-creator .hero__bg .base, .support-a-creator .hero__bg .blurred {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: calc(100% + 140px);
  left: -70px;
  position: absolute;
  background-size: cover;
  background-position: top center;
  background-image: url(../media/layout/pages/support-a-creator/dauntless-slayers-posed.jpg);
}
.support-a-creator .hero__bg .blurred {
  filter: blur(40px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(100% - 600px), rgb(0, 0, 0) calc(100% - 200px));
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(100% - 600px), rgb(0, 0, 0) calc(100% - 200px));
}
@media only screen and (max-width: 767px) {
  .support-a-creator .hero__wrap {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .support-a-creator .hero__content {
    margin-bottom: 0;
  }
}
.support-a-creator .hero__description {
  max-width: 800px;
  text-align: justify;
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .support-a-creator .hero__description {
    text-align: left;
  }
}
.support-a-creator .hero__description a {
  color: #89c6ff;
  font-weight: 700;
}
.support-a-creator__featured {
  margin-top: -80px;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__featured {
    margin-top: 60px;
  }
}
.support-a-creator__featured .title-block:before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__featured .title-block:before {
    display: block;
  }
}
.support-a-creator__featured .title-block__title {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__featured .title-block__title {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .support-a-creator__featured .title-block__title {
    margin-top: 6px;
  }
}
.support-a-creator__featured-partners {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__featured-partners {
    padding: 0 5px;
  }
}
.support-a-creator__featured .partner {
  width: 20%;
  padding: 0 10px;
}
@media only screen and (max-width: 1024px) {
  .support-a-creator__featured .partner {
    width: 25%;
  }
  .support-a-creator__featured .partner:nth-child(n+9) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .support-a-creator__featured .partner {
    width: 33.33%;
    padding: 0 5px;
  }
  .support-a-creator__featured .partner:nth-child(n+7) {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .support-a-creator__featured .partner {
    width: 50%;
  }
  .support-a-creator__featured .partner:nth-child(n+5) {
    display: none;
  }
}
.support-a-creator__how-to {
  max-width: 900px;
  width: 100%;
  padding: 0 10px;
  margin: 60px auto;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__how-to {
    padding: 0;
    margin: 40px auto;
  }
}
.support-a-creator__how-to .card__content {
  text-align: left;
  padding: 20px 20px 0;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__how-to .card__content {
    padding: 1px 20px 0;
  }
}
.support-a-creator__how-to .card__content ol {
  padding: 0 60px;
  list-style: none;
  counter-reset: ol_counter;
  margin: 20px auto;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__how-to .card__content ol {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 480px) {
  .support-a-creator__how-to .card__content ol {
    padding: 0 20px;
  }
}
.support-a-creator__how-to .card__content ol li {
  counter-increment: ol_counter;
  margin: 5px 0;
}
.support-a-creator__how-to .card__content ol li:before {
  content: counter(ol_counter);
  font-weight: 700;
  opacity: 0.7;
  margin-right: 10px;
}
.support-a-creator__how-to-instructions {
  max-width: 600px;
  margin: 0 auto;
}
.support-a-creator__how-to-image {
  margin: 40px -20px 0;
}
@media only screen and (max-width: 767px) {
  .support-a-creator__how-to-image {
    margin-top: 0;
  }
}
.support-a-creator__how-to-image img {
  display: block;
  width: 100%;
}

#support-a-creator .card__content h4,
main.support-a-creator .card__content h4 {
  margin-bottom: 0;
}
#support-a-creator .creator-name, #support-a-creator #results,
main.support-a-creator .creator-name,
main.support-a-creator #results {
  cursor: copy;
  padding-top: 1px;
  display: inline;
  white-space: pre;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 30px;
}
#support-a-creator .creator-name:before,
main.support-a-creator .creator-name:before {
  content: "\a";
}
#support-a-creator .search-box__user,
main.support-a-creator .search-box__user {
  background-image: url(/assets/media/layout/ui/search-user.png);
  background-position: 5px 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  padding-left: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#support-a-creator #search-results,
#support-a-creator #no-results,
main.support-a-creator #search-results,
main.support-a-creator #no-results {
  display: none;
}
#support-a-creator #search-box:not(.searching) + #search-results #results:empty + #no-results,
main.support-a-creator #search-box:not(.searching) + #search-results #results:empty + #no-results {
  display: block;
}
#support-a-creator .support-a-creator-section__info,
main.support-a-creator .support-a-creator-section__info {
  text-align: left;
}
#support-a-creator .support-a-creator-section a,
main.support-a-creator .support-a-creator-section a {
  color: #336699;
  font-weight: 700;
}

main#list.support-a-creator {
  width: 700px;
  max-width: 100%;
  margin: 20px auto 40px;
}

#creator-list, #search-results {
  margin: 40px auto;
}

@media only screen and (max-width: 767px) {
  .trials .hero {
    display: block;
    height: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trials .hero:after {
    display: block;
    height: 8px;
    margin: 0;
    background-image: url(../media/layout/ui/divider.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    content: "";
    display: block;
  }
}
@media only screen and (-ms-high-contrast: none) and (max-width: 480px), only screen and (-ms-high-contrast: active) and (max-width: 480px) {
  .trials .hero:after {
    height: 6px;
  }
}
.trials .hero__bg {
  background-image: url(../media/layout/pages/trials/lady_lucks_trials.jpg);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 600px), rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .trials .hero__bg {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    top: 50px;
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 150px), rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 767px) {
  .trials .hero__wrap {
    padding-bottom: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trials .hero__wrap {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .trials .hero__content {
    margin-bottom: 0;
  }
}
.trials .hero__date {
  font-weight: 700;
  font-size: 14px;
}
.trials .hero__title {
  display: inline-block;
  margin: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trials .hero__title {
    text-shadow: 0 0 5px #242424;
  }
}
.trials .hero__title:after {
  display: block;
  height: 8px;
  margin: 0;
  background-image: url(../media/layout/ui/divider.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-sizing: border-box;
  content: "";
  height: 4px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - 50px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 50px, rgb(0, 0, 0) calc(100% - 50px), rgba(0, 0, 0, 0) 100%);
  margin: 5px -40px;
  opacity: 0.8;
}
@media only screen and (max-width: 480px) {
  .trials .hero__title:after {
    height: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .trials .hero__title:after {
    margin: 5px 0;
  }
}
@media only screen and (max-width: 480px) {
  .trials .hero__title:after {
    height: 4px;
  }
}
.trials .hero__description {
  max-width: 800px;
  text-align: left;
  padding: 0 20px;
  line-height: 20px;
  margin: 10px auto 20px;
}
@media only screen and (max-width: 1024px) {
  .trials .hero__description {
    text-align: left;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trials .hero__description {
    text-shadow: 0 0 5px #242424;
  }
}
.trials .hero__description a {
  color: #89c6ff;
  font-weight: 700;
}
.trials__trial {
  margin-top: -80px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trials__trial {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .trials__trial {
    margin-top: 80px;
  }
}
.trials__rewards {
  padding: 1px 0;
  margin: 140px auto 0;
  background: transparent url(../media/layout/ui/wooden-pattern.jpg) repeat;
}
@media only screen and (max-width: 767px) {
  .trials__rewards {
    margin: 80px auto 0;
  }
}
.trials__rewards-header {
  text-align: center;
  color: #ffffff;
}
.trials__rewards-title {
  margin-top: -73px;
}
@media only screen and (max-width: 767px) {
  .trials__rewards-title {
    margin-top: -30px;
  }
}
.trials__rewards-intro {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  max-width: 700px;
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  .trials__rewards-intro {
    margin: 20px auto 40px;
    padding: 0 20px;
  }
}
.trials__rewards-gameplay {
  display: flex;
  margin: 80px auto 120px;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .trials__rewards-gameplay {
    display: block;
    padding: 0 20px;
    margin: 60px auto 80px;
  }
}
@media only screen and (max-width: 767px) {
  .trials__rewards-gameplay {
    margin: 60px auto;
    padding: 0 10px;
  }
}
.trials__rewards-gameplay .card {
  max-width: 500px;
  margin-right: 80px;
}
@media only screen and (max-width: 1024px) {
  .trials__rewards-gameplay .card {
    margin: 0 auto 40px;
  }
}
.trials__rewards-gameplay .card__content {
  padding: 20px 40px 40px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .trials__rewards-gameplay .card__content {
    padding: 10px 30px 30px;
  }
}
.trials__rewards-gameplay-example {
  text-align: center;
  filter: drop-shadow(0 0 30px rgba(52, 243, 255, 0.8));
}
.trials__rewards-gameplay-example img {
  display: inline-block;
  width: 100%;
  max-width: 476px;
}
.trials__showcase {
  display: block;
  max-width: 1920px;
  margin: 40px auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: w-resize;
}
.trials__showcase-prestige, .trials__showcase-normal {
  width: 100%;
  overflow: hidden;
}
.trials__showcase-prestige img, .trials__showcase-normal img {
  display: block;
  width: 100vw;
  height: auto;
  left: 0;
  max-width: 1920px;
}
.trials__showcase-normal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
}
.trials__showcase-normal img {
  position: absolute;
}
.trials__showcase-separator {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 40px, rgb(0, 0, 0) calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgb(0, 0, 0) 40px, rgb(0, 0, 0) calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
}
.trials__showcase-separator .normal, .trials__showcase-separator .prestige {
  position: absolute;
  top: -25px;
  width: calc(50% + 25px);
  overflow: hidden;
  height: calc(100% + 50px);
}
.trials__showcase-separator .normal {
  right: 50%;
  border-right: 1px solid #ffffff;
  box-shadow: inset 0 0 12px 6px rgb(123, 226, 234);
}
.trials__showcase-separator .prestige {
  left: calc(50% - 2px);
  border-left: 2px solid #ffffff;
  box-shadow: inset 0 0 12px 6px rgb(246, 242, 160);
}
.trials__showcase .reward-level {
  position: absolute;
  display: block;
  border: 2px solid #303035;
  border-radius: 2px;
  background: #ffffff;
  margin: 0 20px;
  padding: 1px;
  top: 40px;
  right: 50%;
  z-index: 20;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .trials__showcase .reward-level {
    top: 20px;
    margin: 0 15px;
  }
}
.trials__showcase .reward-level span {
  display: block;
  padding: 6px 20px;
  font-size: 17px;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #cbedef 0, #acd2db 100%);
}
@media only screen and (max-width: 480px) {
  .trials__showcase .reward-level span {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 15px;
  }
}
.trials__showcase .reward-level--prestige {
  left: 50%;
  right: auto;
}
.trials__showcase .reward-level--prestige span {
  background: linear-gradient(45deg, #f8f5ba 0, #f5e289 100%);
}

.trial-summary {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 60px auto;
}
@media only screen and (max-width: 480px) {
  .trial-summary {
    width: 100%;
  }
}
.trial-summary__header {
  text-align: left;
  padding: 15px 20px 20px 190px;
  background: linear-gradient(to left, #a1a39f 0%, #4e5256 25%, #3e4349 50%, #4e5256 75%, #a1a39f 100%);
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .trial-summary__header {
    padding: 15px 20px;
  }
}
.trial-summary__tabs {
  display: flex;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 148px;
}
@media only screen and (max-width: 767px) {
  .trial-summary__tabs {
    left: 72px;
  }
}
.trial-summary__tab {
  z-index: 5;
  border: 2px solid #303035;
  border-bottom: none;
  background: #ffffff;
  padding: 1px 1px 0;
  border-radius: 1px;
  line-height: 14px;
  transform: skewX(25deg);
}
@media only screen and (max-width: 480px) {
  .trial-summary__tab {
    bottom: calc(100% + 6px);
  }
}
.trial-summary__tab:not(.active) {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.15s;
}
@media only screen and (max-width: 420px) {
  .trial-summary__tab:not(.active) div:before {
    content: "➡";
    font-style: none;
  }
  .trial-summary__tab:not(.active) span {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .trial-summary__tab:first-child:not(.active) div:before {
    content: "⬅";
  }
}
.trial-summary__tab div {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #8a8a89, #c8c8c7);
  padding: 7px 20px 6px;
}
.trial-summary__tab:first-child div {
  padding: 7px 20px 6px 25px;
}
.trial-summary__tab span {
  display: inline-block;
  color: #242424;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  transform: skewX(-25deg);
}
.trial-summary__tab span + span {
  margin-left: 4px;
}
@media only screen and (max-width: 480px) {
  .trial-summary__tab span + span {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .trial-summary__tab-label {
    display: none !important;
  }
}
.trial-summary__tab--nextup div {
  padding-right: 20px;
  padding-left: 20px;
}
.trial-summary__behemoth-head {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -95px;
  left: 0px;
  z-index: 10;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .trial-summary__behemoth-head {
    left: -11px;
    width: 133px;
    height: 133px;
    top: -64px;
  }
}
.trial-summary__behemoth-head img {
  display: block;
  width: 100%;
}
.trial-summary__behemoth-name {
  font-family: "Marcellus", Palatino, "Times New Roman", serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .trial-summary__behemoth-name {
    padding-left: 87px;
  }
}
.trial-summary__intro {
  font-size: 14px;
  line-height: 14px;
  font-style: italic;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .trial-summary__intro {
    display: none;
  }
}
.trial-summary__toggle-mods {
  display: none;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .trial-summary__toggle-mods {
    display: block;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .trial-summary__toggle-mods {
    position: relative;
    bottom: 0;
  }
}
.trial-summary__toggle-mods .hide {
  display: none;
}
.trial-summary__mods {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .trial-summary__mods {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 120px), rgba(0, 0, 0, 0) calc(100% - 40px));
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) calc(100% - 120px), rgba(0, 0, 0, 0) calc(100% - 40px));
  }
}
.trial-summary__content {
  padding: 40px 80px 20px;
}
@media only screen and (max-width: 1024px) {
  .trial-summary__content {
    padding: 40px 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .trial-summary__content {
    padding: 30px 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .trial-summary__content {
    padding: 20px 0;
  }
}
.trial-summary__content--show .trial-summary__toggle-mods {
  display: none;
}
.trial-summary__content--show .trial-summary__mods {
  -webkit-mask-image: none;
          mask-image: none;
}
.trial-summary__content--show .trial-summary__mod:nth-child(n+3) {
  display: flex;
}
.trial-summary__mod {
  width: 50%;
  padding: 0 20px 0 0;
  display: flex;
  text-align: left;
  font-size: 16px;
  line-height: 16px;
  min-height: 65px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .trial-summary__mod {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .trial-summary__mod:nth-child(n+3) {
    display: none;
  }
}
.trial-summary__mod-thumbnail {
  width: 96px;
}
.trial-summary__mod-thumbnail img {
  position: absolute;
  display: block;
  width: 100%;
  top: -17px;
  left: 0;
}
.trial-summary__mod-content {
  flex: 1;
  padding-top: 4px;
}
.trial-summary__mod-title, .trial-summary__mod-dauntless {
  font-family: "Roboto Condensed", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trial-summary__mod-dauntless {
  font-size: 12px;
  opacity: 0.5;
}
.trial-summary__mod-description {
  margin-top: 5px;
  line-height: 18px;
}
.trial-summary__mod--dauntless .trial-summary__mod-thumbnail {
  filter: drop-shadow(0 0 10px #ff0000);
}
.trial-summary .week-content--nextup {
  display: none;
}