@charset "UTF-8";
/*----------------------------------------------------------------------------*    $ MENU
\*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*	$ UNDERLINES
\*----------------------------------------------------------------------------*/
/*
*    makes underlying line from 1px high gradient image
*
*   1px height is achieved by forcing the gradient to
*   repeat only horizontally
*/
.menu-cart-item:hover .menu-cart-option {
  background-position: 0 100%;
  background-size: 100% 1px;
  background-repeat: repeat-x;
  cursor: pointer; }

/**
 * solid color underline generator
 * accepts:
 *  underline color
 *  [underline color on hover]
 *	[color]
 *	[color on hover]
 *
 */
/*----------------------------------------------------------------------------*	$ PX TO EM
\*----------------------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeInWithTransform {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes fadeOutWithTransform {
  from {
    opacity: 1;
    transform: translateY(0px); }
  to {
    opacity: 0;
    transform: translateY(20px); } }

@keyframes fadeInWithTransformTriangle {
  from {
    opacity: 0;
    transform: translateY(15px) scaleX(0.73); }
  to {
    opacity: 1;
    transform: translateY(0px) scaleX(0.73); } }

@keyframes fadeOutWithTransformTriangle {
  from {
    opacity: 1;
    transform: translateY(0px) scaleX(0.73); }
  to {
    opacity: 0;
    transform: translateY(15px) scaleX(0.73); } }

@keyframes progress {
  from {
    width: 0; }
  to {
    width: 100%; } }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes loader {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideAndFadeInLupka {
  from {
    opacity: 0;
    left: calc(60% - 38px); }
  to {
    left: 15%;
    opacity: 1; } }

@keyframes slideAndFadeIn {
  from {
    opacity: 0;
    transform: translateX(200px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }

@keyframes notify {
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.4, 0.4, 1);
    transform: scale3d(0.4, 0.4, 1); }
  80% {
    box-shadow: inset 0 0 0 2px rgba(111, 148, 182, 0.8);
    opacity: 0.1; }
  100% {
    box-shadow: inset 0 0 0 2px rgba(111, 148, 182, 0.8);
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1); } }

.menu-overlay {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0; }
  .menu-overlay.is-visible {
    display: block;
    animation: fadeIn .45s forwards;
    animation-delay: .1s; }
  .menu-overlay.is-hidden {
    display: block;
    animation: fadeOut .25s forwards; }

.menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 56px;
  width: 100%;
  color: #ccc;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent; }
  .menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 56px;
    background: url(../img/bg.jpg) repeat-x top center rgba(26, 26, 26, 0.9);
    z-index: -1; }

.menu-spacer {
  height: 56px;
  padding-top: 0; }

.menu__logo {
  display: block;
  position: relative;
  z-index: 10;
  float: left;
  width: 34px;
  height: 34px;
  margin-right: 29px;
  padding-top: 7px;
  line-height: 52px; }

.menu__logo-icon {
  width: 34px;
  height: 34px;
  fill: #fff; }

.menu__list-shadow {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  height: 7px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
  opacity: 0; }
  .is-moved .menu__list-shadow {
    opacity: 1; }

.menu__container {
  box-sizing: border-box;
  position: relative;
  height: 56px;
  padding-top: 4px;
  margin-left: 2%;
  margin-right: 2%; }

.menu-link__dropdown-icon {
  position: absolute;
  right: 19px;
  top: 21px;
  height: 6px;
  width: 6px;
  fill: #ccc;
  vertical-align: middle;
  transition: opacity .2s ease-in-out; }
  .menu-item:hover .menu-link__dropdown-icon,
  .is-expanded .menu-link__dropdown-icon {
    fill: #fff; }
  .is-loading .menu-link__dropdown-icon {
    opacity: 0; }

.menu-item {
  display: block;
  float: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 52px; }
  .menu-item.has-submenu {
    position: relative; }

.menu-item--animated {
  transition: transform .2s, opacity .2s;
  transition-delay: .15s; }
  .menu--search-expanded .menu-item--animated {
    opacity: 0;
    transform: scale(0.8); }

.menu-item--other {
  padding-left: 14px;
  padding-right: 14px; }

.menu-item__count {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 2px;
  line-height: 14px;
  font-size: 11px;
  text-align: left;
  opacity: .6; }
  .is-expanded .menu-item__count,
  .menu-item:hover .menu-item__count {
    opacity: 1; }
  .menu-item:hover .is-disabled .menu-item__count {
    opacity: .6; }
  .menu-item__count.is-highlighted {
    font-weight: 600;
    color: #fff;
    opacity: 1;
    background: #d92400; }

.menu-item__count--cart {
  left: 37px; }
  .menu-item__count--cart.is-highlighted {
    font-weight: 600;
    background: #80ab00; }
  .menu-item__count--cart:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 35px #80ab00; }
  .is-notifying .menu-item__count--cart:before {
    animation: notify 0.5s ease-out forwards; }

.menu-icon-svg {
  display: inline-block;
  margin-right: 2px;
  margin-top: -2px;
  height: 16px;
  width: 16px;
  fill: #ccc;
  vertical-align: middle;
  transform-origin: top center; }
  .menu-icon-svg.is-invisible {
    opacity: 0; }
  .is-expanded .menu-icon-svg,
  .menu-item:hover .menu-icon-svg {
    fill: #fff; }
  .menu-item:hover .is-disabled .menu-icon-svg {
    fill: #ccc; }

.menu-icon-svg--search {
  width: 15px;
  height: 15px; }

.menu-triangle {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0;
  right: 13px;
  left: auto;
  z-index: 3; }
  .is-expanded .menu-triangle {
    display: block;
    opacity: 0;
    animation: fadeInWithTransformTriangle .1s forwards;
    animation-delay: 450ms; }
  .is-expanded.animation-mode--short .menu-triangle {
    animation-delay: 0s; }
  .is-collapsed .menu-triangle {
    display: none;
    animation: fadeOutWithTransformTriangle .1s forwards; }

.menu-triangle--centered {
  right: 50%;
  margin-right: -9px; }

.menu-triangle--others {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #f2f2f2; }

.menu-link {
  display: block;
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  cursor: pointer;
  text-transform: uppercase;
  color: #ccc;
  letter-spacing: .25px;
  text-decoration: none; }
  .is-expanded .menu-link, .menu-link:hover {
    color: #fff; }
  .menu-link.is-disabled {
    cursor: default;
    opacity: 0.7; }
    .menu-link.is-disabled:hover {
      color: #ccc; }

.menu-link--cart {
  z-index: 10; }

.menu-link--icon {
  font-size: 0; }

.menu-link--anonymous {
  color: #de8ae5; }
  .is-expanded .menu-link--anonymous, .menu-link--anonymous:hover {
    color: #f9b2ff; }

.menu-link--last {
  padding-right: 0; }

.menu-link__image {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  margin-top: -2px;
  border-radius: 50%;
  vertical-align: middle; }

.menu-main {
  float: left; }
  .menu-main .menu-link {
    padding-right: 29px;
    padding-left: 17px; }

.menu-tray {
  float: right; }
  .menu-tray .menu-link {
    padding-right: 21px;
    padding-left: 21px; }
  .menu-tray .menu-link--last {
    padding-right: 0; }

.menu-fonts-preloader {
  position: absolute;
  left: -999px;
  top: -999px;
  width: 1px;
  height: 1px;
  font-family: 'Lato GOG Latin','Lato GOG';
  opacity: 0; }

.menu-submenu {
  display: none;
  position: absolute;
  z-index: 2;
  left: 1px;
  top: 52px;
  width: 230px;
  padding-bottom: 8px;
  padding-top: 8px;
  color: #4c4c4c;
  font-size: 13px;
  line-height: normal;
  background: #fff;
  transform-origin: 50% 0;
  letter-spacing: normal;
  cursor: default; }
  .is-expanded.animation-mode--long .menu-submenu {
    display: block;
    animation: fadeInWithTransform .2s forwards; }
  .is-expanded.animation-mode--short .menu-submenu {
    display: block;
    animation: fadeIn .05s forwards; }
  .menu-submenu:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px 5px rgba(0, 0, 0, 0.15); }
  .menu-submenu:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    z-index: -1; }

.menu-submenu--wide:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 918px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px 5px rgba(0, 0, 0, 0.15); }

.menu-submenu-item {
  cursor: pointer;
  font-weight: 400;
  position: relative; }
  .menu-submenu-item:last-child {
    margin-bottom: 0; }
  .menu-submenu-item.is-active .menu-submenu-link, .menu-submenu-item.menu-submenu-item--hover:hover .menu-submenu-link {
    color: #000;
    background: #e6e6e6; }

.menu-submenu-item--static {
  position: static; }

.menu-submenu-item__label {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  right: 5px;
  min-width: 48px;
  height: 18px;
  padding: 0 3px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  font-size: 12px;
  line-height: 18px;
  text-align: center; }

.menu-submenu-item--with-wallet {
  position: relative; }

.menu-submenu-link {
  display: block;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8px;
  padding-right: 15px;
  margin: 0 8px;
  border-radius: 3px;
  font-size: 14px;
  color: #4c4c4c;
  text-decoration: none; }
  .is-active .menu-submenu-link,
  .menu-submenu-item--hover:hover .menu-submenu-link {
    color: #000;
    background: #e6e6e6; }

.menu-submenu-link--featured {
  font-weight: 600; }

.menu-submenu-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  height: 8px;
  margin-top: -4px;
  fill: #cdcdcd;
  pointer-events: none; }
  .menu-submenu-icon + .menu-submenu-icon {
    display: none;
    right: 12px; }
  .menu-submenu-item--hover:hover .menu-submenu-icon,
  .is-active .menu-submenu-icon {
    fill: #000; }
    .menu-submenu-item--hover:hover .menu-submenu-icon + .menu-submenu-icon,
    .is-active .menu-submenu-icon + .menu-submenu-icon {
      display: block; }

.menu-submenu-item--hover:hover .menu-submenu-icon--little-nightmares,
.is-active .menu-submenu-icon--little-nightmares {
  fill: #ad7600; }

.menu-submenu-item--hover:hover .menu-submenu-icon--outlast,
.is-active .menu-submenu-icon--outlast {
  fill: #2c8320; }

.menu-submenu-item--hover:hover .menu-submenu-icon--horror-sale,
.is-active .menu-submenu-icon--horror-sale {
  fill: #ae0e0e; }

.menu-submenu-item--hover:hover .menu-submenu-icon--gwent,
.is-active .menu-submenu-icon--gwent {
  fill: #00907a; }

.menu-submenu-item--hover:hover .menu-submenu-icon--rpg-week,
.is-active .menu-submenu-icon--rpg-week {
  fill: #266db6; }

.menu-submenu-item--hover:hover .menu-submenu-icon--deep-silver-sale,
.is-active .menu-submenu-icon--deep-silver-sale {
  fill: #266db6; }

.menu-submenu-item--hover:hover .menu-submenu-icon--weekly-sale,
.is-active .menu-submenu-icon--weekly-sale {
  fill: #b38300; }

.menu-submenu-item--hover:hover .menu-submenu-icon--may-the-4th-sale,
.is-active .menu-submenu-icon--may-the-4th-sale {
  fill: #266db6; }

.menu-submenu-item--hover:hover .menu-submenu-icon--guardians-of-the-galaxy,
.is-active .menu-submenu-icon--guardians-of-the-galaxy {
  fill: #5d2598; }

.menu-submenu-item--hover:hover .menu-submenu-icon--full-throttle,
.is-active .menu-submenu-icon--full-throttle {
  fill: #c71800; }

.menu-submenu-separator {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 7px;
  background: #e6e6e6; }

@media (min-width: 68.75em) {
  .menu__container {
    width: 1060px;
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 47.5em) {
  .menu__container {
    margin: 0 1%; } }

@media (max-width: 31.25em) {
  .menu__container {
    margin: 0 10px; } }

@media (min-width: 37.5em) {
  .menu-products {
    max-height: 100%;
    margin-top: 0;
    margin-left: -8px;
    margin-right: -8px; }
  .menu-category-item {
    margin-bottom: 16px; }
    .menu-category-item:last-child {
      margin-bottom: 0; }
  .menu-inside-category__column {
    display: block;
    width: 196px;
    float: left;
    margin-left: 8px;
    margin-right: 8px; } }

@media (max-width: 58.125em) {
  .menu-inside-category__column {
    width: calc(50% - 16px); }
  .menu-inside-category__column--expendable {
    display: none; } }

@media (max-width: 46em) {
  .menu-is-expanded {
    overflow: hidden;
    height: 100%; }
    .menu-is-expanded body {
      overflow: hidden;
      height: 100%; }
  .menu-tray .menu-link {
    padding-right: 14px;
    padding-left: 14px; }
  .menu-tray .menu-link--last {
    padding-right: 0; }
  .menu__logo {
    padding-top: 4px;
    margin-left: 10px;
    margin-right: 0;
    transition: transform 200ms, opacity 200ms; }
    .menu--search-expanded .menu__logo {
      opacity: 0;
      transform: scale(0.8); }
  .menu-overlay {
    display: none; }
    .menu-overlay.is-visible {
      display: none;
      animation: none; }
    .menu-overlay.is-hidden {
      display: none;
      animation: none; }
  .menu-icon-svg {
    height: 16px; }
  .menu-item__count--cart {
    left: 27px; }
  .menu-item__count--friends {
    left: 27px; }
  .menu-item__count--bell {
    left: 27px; }
  .menu-item__count {
    font-size: 10px; }
  .menu {
    height: 50px;
    line-height: 44px; }
    .menu::before {
      height: 50px;
      background-color: #1a1a1a; }
  .menu-item {
    line-height: 46px; }
    .menu-item.has-submenu {
      position: static; }
  .menu--expanded {
    height: 100%; }
  .menu__container {
    position: static;
    height: 50px;
    margin: 0;
    line-height: 44px; }
  .menu-lite-link {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 15px;
    font-size: 10px;
    color: #e6e6e6;
    transition: transform 200ms, opacity 200ms; }
    .menu--search-expanded .menu-lite-link {
      opacity: 0;
      transform: scale(0.8); }
  .menu-lite__submenu {
    left: 0;
    right: 0;
    bottom: 0;
    top: 50px;
    width: auto;
    border-top: 1px solid #333;
    text-align: center;
    background: #1a1a1a; }
  .menu-spacer {
    height: 50px; } }

@media (max-width: 46em) {
  .menu-submenu-link {
    padding-right: 8px; }
  .menu-submenu-link--lite {
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 43px;
    font-size: 16px;
    font-weight: 400;
    color: #fff; }
  .is-expanded .menu-submenu {
    display: block;
    animation: fadeIn 150ms forwards; }
  .is-expanded.animation-mode--long .menu-submenu {
    animation: fadeIn 150ms forwards; }
  .is-expanded.animation-mode--short .menu-submenu {
    animation: fadeIn 150ms forwards; }
  .is-collapsed .menu-submenu {
    display: block;
    animation: fadeOut 150ms forwards; } }

.menu-header {
  box-sizing: border-box;
  position: relative;
  height: 69px;
  padding: 0 15px;
  padding-top: 14px;
  border-bottom: 1px solid #e6e6e6;
  background: #f2f2f2;
  line-height: normal; }

.menu-header__items {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #262626; }

.menu-header__btn {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -18px;
  padding: 0;
  width: 180px;
  color: #4c4c4c;
  font-weight: 600;
  background: #e6e6e6;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15); }
  .menu-header__btn:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }
  .menu-header__btn:hover {
    background: #f3f3f3; }

.menu-header__label {
  display: inline-block;
  margin: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #9a9a9a; }

.menu-hamburger {
  display: inline-block;
  position: relative;
  top: 15px;
  width: 17px;
  height: 16px;
  margin-right: 5px;
  cursor: pointer;
  vertical-align: top;
  transition: .5s ease-in-out; }

.menu-hamburger__line {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  transition: .25s all ease-in-out; }
  .menu-hamburger__line:nth-child(1) {
    top: 0; }
  .menu-hamburger__line:nth-child(2) {
    top: 7px; }
  .menu-hamburger__line:nth-child(3) {
    top: 14px; }
  .is-expanded .menu-hamburger__line:nth-child(1) {
    top: 7px;
    width: 20px;
    transform: rotate(135deg); }
  .is-expanded .menu-hamburger__line:nth-child(2) {
    left: -30px;
    opacity: 0; }
  .is-expanded .menu-hamburger__line:nth-child(3) {
    top: 7px;
    width: 20px;
    transform: rotate(-135deg); }

.menu-anonymous__submenu {
  display: none;
  left: -162px;
  right: auto;
  width: 500px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400; }

.menu-anonymous-header {
  margin-bottom: 10px; }

.menu-anonymous-header__separator {
  display: inline-block;
  width: 4%;
  text-align: center; }

.menu-anonymous-header__btn {
  padding: 0;
  line-height: 36px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15); }
  .menu-anonymous-header__btn:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }

.menu-anonymous-header__btn--create-account {
  width: 48%;
  background: #e6e6e6; }
  .menu-anonymous-header__btn--create-account:hover {
    background: #f3f3f3; }

.menu-anonymous-header__btn--sign-in {
  width: 48%;
  color: #fff;
  background: linear-gradient(to bottom, #985fb2 0%, #713b8d 100%); }
  .menu-anonymous-header__btn--sign-in:hover {
    background: #713b8d; }

.menu-anonymous__shelf {
  position: relative;
  left: 50%;
  width: 532px;
  max-width: 532px;
  margin-left: -266px; }

.menu-anonymous__about {
  padding: 0 30px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center; }

.menu-anonymous__features-header {
  margin-bottom: 0;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  overflow: hidden; }

.menu-anonymous__features-header-in {
  display: inline-block;
  position: relative; }
  .menu-anonymous__features-header-in:before, .menu-anonymous__features-header-in:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 500px;
    background: #e5e5e5; }
  .menu-anonymous__features-header-in:after {
    content: '';
    position: absolute;
    left: 100%;
    height: 1px;
    width: 500px;
    margin-left: 20px;
    background: #e5e5e5; }
  .menu-anonymous__features-header-in:before {
    right: 100%;
    margin-right: 20px; }

@media (max-width: 46em) {
  .menu-lite-anonymous {
    position: absolute;
    top: calc(100% - 90px);
    left: 0;
    right: 0;
    height: 100%;
    background: #fff;
    transition: transform 650ms cubic-bezier(0.76, -0.005, 0.255, 1);
    transform: translateY(0); }
    .menu-lite-anonymous.is-swiped {
      transition: none; }
  .menu-link--anonymous {
    box-sizing: border-box;
    height: 100px;
    padding-top: 30px;
    background: #1a1a1a;
    color: #cb96e6;
    font-size: 16px;
    border-top: none; }
    .menu-link--anonymous:active {
      background: rgba(26, 26, 26, 0.95);
      border-radius: 0; }
    .is-expanded .menu-link--anonymous {
      color: #cb96e6; }
  .menu-triangle--anonymous {
    top: 89px;
    left: 50%;
    bottom: auto;
    right: auto; }
  .menu-anonymous__submenu {
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 30px; }
    .is-expanded .menu-anonymous__submenu {
      animation: none; }
  .menu-anonymous__shelf {
    position: static;
    max-width: 100%;
    margin: auto; }
  .menu-anonymous__about-header {
    padding: 0px; }
  .menu-anonymous-header {
    height: auto;
    padding: 10px; }
  .menu-anonymous__about-header {
    padding: 0 10px;
    line-height: 22px; }
  .menu-anonymous__about-description {
    padding: 0 10px;
    font-size: 11px;
    line-height: 18px; }
  .menu-anonymous-header {
    display: flex;
    justify-content: space-between; }
  .menu-anonymous-header__separator {
    line-height: 36px; }
  .menu-anonymous__features-header {
    font-size: 12px; }
  .menu-features-slider__timer {
    display: none; } }

@media (max-width: 20em) {
  .menu-anonymous__shelf {
    display: none; } }

.menu-features-slider {
  position: relative;
  min-height: 90px;
  padding: 0 65px;
  padding-bottom: 25px; }

.menu-features-slider__timer {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(168, 108, 182, 0.3); }

.menu-features-slider__timer-section {
  float: left;
  position: relative;
  box-sizing: border-box;
  width: 33.33%;
  height: 5px;
  border-right: 1px solid #fff; }
  .menu-features-slider__timer-section:last-child {
    border-right: none; }
  .menu-features-slider__timer-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #a86cb6; }
  .menu-features-slider__timer-section.is-on:before {
    animation: progress 5s linear forwards; }
  .menu-features-slider__timer-section.is-done:before {
    animation: none;
    width: 100%; }
  .menu-features-slider__timer-section.is-on.is-paused:before {
    animation-play-state: paused; }

.menu-features-slider__slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 65px;
  right: 65px;
  height: 90px;
  text-align: left;
  line-height: 96px;
  opacity: 0;
  transition: opacity .5s ease-in-out; }
  .menu-features-slider__slide.is-active {
    opacity: 1;
    position: relative;
    left: 0;
    right: 0; }

.menu-features-slider__slide-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 21px; }

.menu-features-slider__nav {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 5px; }

.menu-features-slider__nav--left {
  left: 10px; }

.menu-features-slider__nav--right {
  right: 10px; }

.menu-features-slider__nav-icon {
  height: 14px;
  fill: #808080; }

.menu-features-slider__slide-image {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -27px; }

.menu-features-slider__slide-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  vertical-align: top; }

.menu-features-slider__slide-icon--slide1 {
  stroke: #007db8; }

.menu-features-slider__slide-icon--slide2 {
  stroke: #a90000;
  height: 15px; }

.menu-features-slider__slide-icon--slide3 {
  stroke: #7d00c9; }

.menu-features-slider__slide-highlight--slide1 {
  color: #007db8; }

.menu-features-slider__slide-highlight--slide2 {
  color: #a90000; }

.menu-features-slider__slide-highlight--slide3 {
  color: #7d00c9; }

@media (max-width: 46em) {
  .menu-features-slider {
    padding-left: 35px;
    padding-right: 35px; }
  .menu-features-slider__nav {
    top: 38px;
    margin: 0;
    z-index: 30; }
  .menu-features-slider__nav--left {
    left: 10px; }
  .menu-features-slider__nav--right {
    right: 10px; }
  .menu-features-slider__slide-text {
    font-size: 12px;
    line-height: 18px;
    text-align: center; }
  .menu-features-slider__slide {
    padding-left: 0;
    padding-top: 0;
    left: 35px;
    right: 35px; } }

.menu-account__submenu {
  left: 1px;
  right: auto;
  padding-top: 0px; }
  .menu-account--language-and-currency-is-visible .menu-account__submenu:before {
    width: 446px; }

.menu-account__header-text {
  display: inline-block;
  position: relative;
  text-align: left;
  line-height: 42px; }

.menu-account__user {
  padding: 14px 15px 0 70px;
  margin-bottom: 7px; }

.menu-account__user-avatar {
  box-sizing: border-box;
  position: absolute;
  left: 15px;
  top: 12px;
  width: 45px;
  height: 45px;
  border: 1px solid #b3b3b2;
  border-radius: 50%; }

.menu-account__user-header {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #9a9a9a; }

.menu-account__user-name {
  font-size: 16px;
  font-weight: 600;
  color: #262626; }

@media (max-width: 57.5em) {
  .menu-username {
    display: none; } }

@media (max-width: 46em) {
  .menu-lite-account {
    position: absolute;
    top: calc(100% - 90px);
    left: 0;
    right: 0;
    height: 100%;
    background: #fff;
    transition: transform 650ms cubic-bezier(0.76, -0.005, 0.255, 1);
    transform: translateY(0); }
    .menu-lite-account.is-swiped {
      transition: none; }
  .menu-account-link {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 34px; }
    .menu-account-link:active {
      background: #e6e6e6; }
  .menu-account {
    position: absolute;
    top: calc(100% - 90px);
    left: 0;
    right: 0;
    height: 100%;
    background: #fff;
    transition: transform 650ms cubic-bezier(0.76, -0.005, 0.255, 1);
    transform: translateY(0); }
    .menu-account.has-submenu {
      position: absolute; }
    .menu-account.is-swiped {
      transition: none; }
  .menu-triangle--account {
    top: 91px;
    left: 50%;
    bottom: auto;
    right: auto; }
  .menu-account__list {
    padding-top: 15px;
    background: #fff; }
  .menu-account__submenu {
    display: block;
    position: static;
    width: 100%;
    font-size: 16px;
    line-height: 30px; }
    .is-expanded .menu-account__submenu,
    .is-expanded.animation-mode--long .menu-account__submenu {
      animation: none; }
  .menu-account__user {
    background: #1a1a1a;
    height: 100px;
    padding: 0;
    padding-top: 30px;
    margin-bottom: 0;
    border-bottom: none; }
  .menu-account__user-name {
    font-size: 16px;
    color: #ddd;
    text-align: center; }
  .menu-account__user-in {
    display: inline-block;
    position: relative;
    padding-left: 60px;
    text-align: left;
    line-height: 42px; }
  .menu-account__user-avatar {
    top: 0;
    left: 0;
    border: none; } }

.menu-language-and-currency {
  box-sizing: border-box;
  display: none;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0;
  width: 216px;
  height: 100%;
  border-left: 1px solid #e6e6e6;
  font-size: 14px;
  font-weight: 400;
  background: url("../img/lang-and-currency-bg.png") no-repeat 0 0;
  background-color: #f2f2f2;
  opacity: 0; }
  .menu-language-and-currency.is-visible {
    display: block;
    animation: fadeIn .15s ease-in-out forwards; }

.menu-language-and-currency__header {
  margin: 0 0 10px 0;
  padding-left: 15px;
  padding-right: 15px; }

.menu-language-and-currency__apply {
  display: block;
  color: #007ed9;
  font-weight: 600;
  padding-left: 15px; }

.menu .menu-language-and-currency__tick {
  display: none;
  position: absolute;
  top: 4px;
  left: 5px;
  font-size: 8px; }

.menu-language-and-currency__list {
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Lato GOG Latin', 'Arial'; }

.menu-language-and-currency__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px; }
  .menu-language-and-currency__list-item.is-active {
    font-weight: 600;
    color: #007ed9; }
    .menu-language-and-currency__list-item.is-active .menu-language-and-currency__tick {
      display: block; }

.menu-language-and-currency__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42px;
  border-top: 1px solid #e6e6e6;
  line-height: 42px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out; }
  .menu-language-and-currency__footer.is-visible {
    opacity: 1; }

.menu-language {
  box-sizing: border-box;
  padding-top: 78px; }

.menu-language--unpersonalized-account {
  padding-top: 8px; }

/*----------------------------------------------------------------------------*    $ PRODUCT STATE INNER ELEMENTS VISIBILITY
\*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*    $ PRODUCT STATE MIXINS
\*----------------------------------------------------------------------------*/
.menu-product-state-holder .product-status__in-cart {
  display: none; }

.menu-product-state-holder .product-state__is-owned {
  display: none; }

.menu-product-state-holder .product-state__is-free {
  display: none; }

.menu-product-state-holder .product-state__discount {
  display: none; }

.menu-product-state-holder .product-state__is-tba {
  display: none; }

.menu-product-state-holder.is-buyable .product-state__price {
  display: block; }

.menu-product-state-holder.is-owned .product-state__is-owned {
  display: inline-block; }

.menu-product-state-holder.is-owned .product-state__price {
  display: none; }

.menu-product-state-holder.is-free .product-state__is-free {
  display: inline-block; }

.menu-product-state-holder.is-free .product-state__price {
  display: none; }

.menu-product-state-holder.is-in-cart .product-status__in-cart {
  display: block;
  visibility: visible !important;
  position: static !important; }

.menu-product-state-holder.is-in-cart .product-state__is-free {
  display: none; }

.menu-product-state-holder.is-in-cart .product-state__is-owned {
  display: none; }

.menu-product-state-holder.is-in-cart .product-state__price {
  display: none; }

.menu-product-state-holder.is-tba .product-state__is-tba {
  display: block; }

.menu-product-state-holder.is-tba .product-state__price {
  display: none; }

.menu-product-state-holder.is-discounted .product-state__discount {
  display: inline-block; }

.menu-product-state-holder.is-price-btn-hidden .product-state__price-btn {
  display: none; }

.menu-product-state-holder.is-price-btn-hidden .product-state__discount {
  display: none; }

.menu-product-state-holder.is-owned:hover .product-state__is-owned {
  display: none; }

.menu-product-state-holder.is-owned:hover .product-status__in-cart {
  display: none; }

.menu-product-state-holder.is-owned:hover .product-state__price {
  display: block; }

.menu-product-state-holder.is-owned.is-free:hover .product-state__is-owned {
  display: none; }

.menu-product-state-holder.is-owned.is-free:hover .product-status__in-cart {
  display: none; }

.menu-product-state-holder.is-owned.is-free:hover .product-state__price {
  display: none; }

.menu-product-state-holder.is-owned.is-free:hover .product-state__is-free {
  display: inline-block; }

.menu-product-state-holder.is-in-cart:hover .product-state__is-owned {
  display: none; }

.menu-product-state-holder.is-in-cart:hover .product-status__in-cart {
  display: block;
  visibility: visible !important;
  position: static !important; }

.menu-product-state-holder.is-in-cart:hover .product-state__price {
  display: none; }

.menu-product {
  box-sizing: border-box;
  position: relative;
  height: 70px;
  padding: 5px;
  padding-left: 105px;
  border-bottom: 1px solid #e6e6e6; }
  .menu-product.is-last {
    margin-bottom: -1px; }
  .menu-product.is-buyable:hover .price-btn--active {
    background: linear-gradient(to bottom, #9fbf00, #80ab00);
    color: #fff; }
  .menu-product:hover {
    background: #f2f2f2; }

.menu-product--grid {
  box-sizing: border-box;
  position: relative;
  height: auto;
  padding: 0;
  border: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15); }
  .menu-product--grid:hover {
    background: transparent; }

.menu-product__image {
  position: absolute;
  left: 5px;
  top: 5px; }
  .menu-product--grid .menu-product__image {
    height: 110px;
    position: static;
    display: block; }

.menu-product__image--tall {
  height: 272px; }

.menu-product__link {
  display: block; }

.menu-product__picture {
  position: relative;
  min-height: 110px;
  max-height: 272px;
  background: url(../img/img-load.gif) center center no-repeat rgba(217, 217, 217, 0.2); }

.menu-product__loader-title {
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  right: 0;
  padding: 0 20px;
  font-size: 11px;
  color: #333;
  text-align: center;
  z-index: -1; }

.menu-product__flags {
  display: inline-block; }
  .menu-product--grid .menu-product__flags {
    position: absolute;
    bottom: 44px;
    left: 7px;
    transition: opacity .2s ease-in-out;
    opacity: 0; }
  .menu-product.menu-product--grid:hover .menu-product__flags {
    opacity: 1; }

.menu-product__flag {
  position: relative;
  display: inline-block;
  padding: 0 3px;
  margin-left: 3px;
  vertical-align: 2px;
  font-size: 7px;
  font-weight: 600;
  line-height: 11px;
  color: #fff;
  background: #999;
  border-radius: 2px; }

.menu-product__flag--in-dev {
  background: #bb946e; }

.menu-product__is-wishlisted {
  position: absolute;
  bottom: 6px;
  right: 7px;
  height: 10px;
  width: 10px;
  fill: #fff; }

.menu-product__content {
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  line-height: 60px; }
  .menu-product--grid .menu-product__content {
    height: 36px;
    line-height: 36px;
    background: #e1e1e1; }
  .menu-product--grid.is-owned .menu-product__content {
    background: #d2d2d2; }
  .menu-product--grid:hover .menu-product__content {
    background: #e5e5e5; }

.menu-product__content-in {
  display: inline-block;
  vertical-align: middle;
  line-height: normal; }
  .menu-product--grid .menu-product__content-in {
    vertical-align: baseline; }

.menu-product__title {
  font-size: 14px;
  color: #4c4c4c; }

.menu-product__details {
  color: #b3b3b3;
  font-size: 12px; }

.menu-product__rating {
  position: absolute;
  top: 5px;
  right: 28%;
  line-height: 60px;
  color: #d6d6d6;
  font-size: 12px; }

.menu-product__movie-label {
  position: static;
  display: inline-block;
  width: auto;
  line-height: 36px;
  font-weight: 600;
  font-size: 11px;
  color: #808080; }

.menu-product__os {
  position: absolute;
  top: 5px;
  right: 19%;
  width: 45px;
  line-height: 60px;
  opacity: .7;
  color: #4c4c4c; }
  .menu-product--grid .menu-product__os {
    display: inline-block;
    position: static;
    width: auto;
    line-height: 36px;
    opacity: 1; }

.menu-product__os-icon {
  margin-right: 2px; }

.menu-product .menu-product__price-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -11.5px;
  text-align: center;
  cursor: pointer; }
  .menu-language-ru-ru .menu-product--grid .menu-product .menu-product__price-btn {
    width: 70px; }
  .menu-language-ru-ru .menu-product--grid .menu-product .menu-product__price-btn {
    width: 70px; }

.menu-product.menu-product--grid .menu-product__price-btn {
  bottom: 7px;
  top: auto;
  right: 6px;
  margin: 0; }

.is-owned .menu-product__price-btn-text span {
  visibility: hidden;
  position: absolute; }

.is-owned .menu-product__price-btn-text .price-btn__text--owned {
  visibility: visible;
  position: static; }

.menu-product.is-owned:hover .menu-product__price-btn-text span {
  visibility: visible;
  position: static; }

.menu-product.is-owned:hover .menu-product__price-btn-text .price-btn__text--owned {
  visibility: hidden;
  position: absolute; }

.menu-product__price-btn-text--join .price-btn__text--owned {
  visibility: hidden;
  position: absolute; }

.is-owned .menu-product__price-btn-text--join span {
  visibility: hidden;
  position: absolute; }

.is-owned .menu-product__price-btn-text--join .price-btn__text--owned {
  visibility: visible;
  position: static; }

.menu-product.is-owned:hover .menu-product__price-btn-text--join span {
  visibility: hidden;
  position: absolute; }

.menu-product.is-owned:hover .menu-product__price-btn-text--join .price-btn__text--owned {
  visibility: visible;
  position: static; }

.menu-product__discount {
  position: absolute;
  top: 50%;
  right: 77px;
  margin-top: -11.5px; }
  .menu-prices-in-pln .menu-product__discount {
    right: 84px; }
  .menu-language-de-de .menu-product__discount {
    right: 84px; }
  .menu-language-pt-br .menu-product__discount {
    right: 92px; }
  .menu-product--grid .menu-product__discount {
    bottom: 7px;
    top: auto;
    right: 66px;
    margin: 0; }
  .menu-language-pt-br .menu-product--grid .menu-product__discount {
    right: 83px; }
  .menu-language-de-de .menu-product--grid .menu-product__discount {
    right: 75px; }
  .menu-prices-in-pln .menu-product--grid .menu-product__discount {
    right: 75px; }
  .menu-prices-in-brl .menu-product__discount,
  .menu-prices-in-dkk .menu-product__discount,
  .menu-prices-in-nok .menu-product__discount,
  .menu-prices-in-sek .menu-product__discount {
    right: 74px; }
  .menu-language-ru-ru .menu-product__discount {
    right: 79px; }

@media (max-width: 56.25em) {
  .menu-product__rating {
    display: none; } }

@media (max-width: 46em) {
  .menu-product__os {
    display: none; }
  .menu-product__image {
    display: none; }
  .menu-product {
    padding-left: 5px; }
  .menu-product__content {
    padding-left: 0;
    padding-right: 65px; }
  .menu-product {
    height: auto; } }

.menu-store__submenu {
  left: 1px; }

.menu-store__submenu--category-expanded:before {
  width: 946px; }

.menu-custom-category-link {
  font-weight: 600; }

.menu-custom-category-link--little-nightmares {
  color: #ad7600; }
  .menu-submenu-item.is-active .menu-custom-category-link--little-nightmares,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--little-nightmares {
    color: #ad7600; }

.menu-custom-category-link--weekly-sale {
  color: #b38300; }
  .menu-submenu-item.is-active .menu-custom-category-link--weekly-sale,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--weekly-sale {
    color: #b38300; }

.menu-custom-category-link--deep-silver-sale {
  color: #6e3f98; }
  .menu-submenu-item.is-active .menu-custom-category-link--deep-silver-sale,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--deep-silver-sale {
    color: #6e3f98; }

.menu-custom-category-link--rpg-week {
  color: #266db6; }
  .menu-submenu-item.is-active .menu-custom-category-link--rpg-week,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--rpg-week {
    color: #266db6; }

.menu-custom-category-link--may-the-4th-sale {
  color: #266db6; }
  .menu-submenu-item.is-active .menu-custom-category-link--may-the-4th-sale,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--may-the-4th-sale {
    color: #266db6; }

.menu-custom-category-link--horror-sale {
  color: #ae0e0e; }
  .menu-submenu-item.is-active .menu-custom-category-link--horror-sale,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--horror-sale {
    color: #ae0e0e; }

.menu-custom-category-link--gwent {
  color: #00907a; }
  .menu-submenu-item.is-active .menu-custom-category-link--gwent,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--gwent {
    color: #00907a; }

.menu-custom-category-link--outlast-2 {
  color: #2c8320; }
  .menu-submenu-item.is-active .menu-custom-category-link--outlast-2,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--outlast-2 {
    color: #2c8320; }

.menu-custom-category-link--guardians-of-the-galaxy {
  color: #5d2598; }
  .menu-submenu-item.is-active .menu-custom-category-link--guardians-of-the-galaxy,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--guardians-of-the-galaxy {
    color: #5d2598; }

.menu-custom-category-link--full-throttle {
  color: #c71800; }
  .menu-submenu-item.is-active .menu-custom-category-link--full-throttle,
  .menu-submenu-item.menu-submenu-item--hover:hover .menu-custom-category-link--full-throttle {
    color: #c71800; }

.menu-inside-category {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0 48px;
  padding-bottom: 10px;
  font-weight: 400;
  vertical-align: middle;
  transition: background-image .8s ease-in-out; }

.menu-category-btn {
  box-sizing: border-box;
  height: 40px;
  text-transform: uppercase;
  margin-top: 17px;
  margin-right: 2px;
  line-height: 40px;
  font-weight: 400;
  background: linear-gradient(to bottom, rgba(204, 204, 204, 0.2) 0%, rgba(204, 204, 204, 0.2) 4%, rgba(217, 217, 217, 0.2) 100%);
  color: #4c4c4c; }
  .menu-category-btn:hover {
    background: linear-gradient(to top, rgba(204, 204, 204, 0.55) 0%, rgba(204, 204, 204, 0.55) 4%, rgba(217, 217, 217, 0.55) 100%); }

.menu-inside-category__title {
  margin-top: 0;
  margin-bottom: 17px;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8); }

.menu-section-layer {
  display: none;
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 0;
  width: 716px;
  height: 100%;
  min-height: 469px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover; }
  .menu-section-layer.is-visible {
    display: flex;
    flex-direction: column;
    justify-content: center; }

.menu-section-layer--all {
  background-color: #f2f2f2;
  background-image: url("../img/cat-all.jpg"); }

.menu-section-layer--action {
  background-color: #e2daf2;
  background-image: url("../img/cat-action.jpg"); }

.menu-section-layer--star-wars {
  background-color: #75859c;
  background-image: url("../img/cat-sw-bg.jpg"); }

.menu-section-layer--strategy {
  background-color: #f2daef;
  background-image: url("../img/cat-strategy.jpg"); }

.menu-section-layer--adventure {
  background-color: #f2e2da;
  background-image: url("../img/cat-adventure.jpg"); }

.menu-section-layer--role-playing {
  background-color: #f2dada;
  background-image: url("../img/cat-rpg.jpg?s"); }

.menu-section-layer--indie {
  background-color: #daeaf2;
  background-image: url("../img/cat-indie.jpg"); }

.menu-section-layer--shooter {
  background-color: #e2f2da;
  background-image: url("../img/cat-shooter.jpg"); }

.menu-section-layer--simulation {
  background-color: #dae2f2;
  background-image: url("../img/cat-sim.jpg"); }

.menu-section-layer--sports {
  background-color: #daeff2;
  background-image: url("../img/cat-sports.jpg"); }

.menu-section-layer--movies {
  background-color: #f2deda;
  background-image: url("../img/cat-movies.jpg"); }

.menu-section-layer--weekly_sale {
  background-color: #ced2e3;
  background-image: url("../img/cat-weekly-sale.jpg"); }

.menu-section-layer--may_the_4th_sale {
  background-color: #ced2e3;
  background-image: url("../img/cat-star-wars-sale.jpg"); }

.menu-section-layer--deep_silver_sale {
  background-color: #ced2e3;
  background-image: url("../img/cat-deep-silver-sale.jpg"); }

.menu-section-layer--rpg_week {
  background-color: #ced2e3;
  background-image: url("../img/cat-rpg-week.jpg"); }

.menu-section-layer--horror_sale {
  background-color: #ced2e3;
  background-image: url("../img/cat-horror-sale.jpg"); }

.menu-section-layer--on-sale-now {
  background-color: #f2ecda;
  background-image: url("../img/cat-sale.jpg"); }

.menu-section-layer--new-releases {
  background-color: #daf2ed;
  background-image: url("../img/cat-new.jpg"); }

.menu-section-layer--bestsellers {
  background-color: #f2daee;
  background-image: url("../img/cat-best.jpg"); }

@media (max-width: 58.125em) {
  .menu-section-layer {
    width: 505px; }
  .menu-store__submenu--category-expanded:before {
    width: 730px; } }

@media (max-width: 62.1875em) {
  .menu-store__submenu {
    left: -63px; } }

.menu-custom-category {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 774px; }

.menu-custom-category__bg-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 774px;
  overflow: hidden; }

.menu-custom-category__bg {
  display: block;
  width: 774px;
  height: 516px; }

.menu-custom-category__bg--gwent {
  display: block;
  width: 757px;
  height: 516px; }

.menu-custom-category__bg--little-nightmares {
  display: block;
  width: 716px;
  height: 496px; }

.menu-custom-category__bg--outlast {
  display: block;
  width: 716px;
  height: 496px; }

.menu-custom-category__bg--guardians-of-the-galaxy {
  display: block;
  width: 716px;
  height: 496px; }

.menu-custom-category__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10; }

.menu-custom-category__content {
  box-sizing: border-box;
  position: relative;
  width: 358px;
  height: 419px;
  padding-top: 202px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400; }

.menu-custom-category__description {
  width: 265px;
  margin: 0;
  margin: auto;
  margin-bottom: 20px;
  line-height: 21px; }

.menu-custom-category__logo {
  display: block;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%) translateY(-50%); }

.menu-custom-category__price {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 100;
  min-height: 40px;
  transform: translateX(-50%);
  padding-right: 150px;
  text-align: left;
  color: #fff; }

.menu-custom-category__price--pre-order {
  padding-right: 180px;
  padding-top: 0; }

.menu-custom-category__price-old {
  display: inline-block;
  font-size: 11px;
  text-decoration: line-through; }

.menu-custom-category__price-final {
  display: inline-block;
  font-size: 18px;
  font-weight: bold; }

.menu-custom-category__price-regular {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px; }

.menu-custom-category__price-btn {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  height: 40px;
  width: 135px;
  border-radius: 3px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.71), 0px 0px 51px 0px rgba(211, 255, 0, 0.27), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.15);
  background: linear-gradient(to bottom, #9fbf00 0%, #80ab00 100%); }
  .menu-custom-category__price--pre-order .menu-custom-category__price-btn {
    width: 165px; }
  .menu-custom-category__price-btn:hover {
    background: linear-gradient(to bottom, #b9d91a 0%, #9ac51a 100%); }

.menu-custom-category__join-btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 100;
  cursor: pointer;
  height: 40px;
  min-width: 120px;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.71), 0px 0px 51px 0px rgba(211, 255, 0, 0.27), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.15);
  background: linear-gradient(to bottom, #9fbf00 0%, #80ab00 100%); }
  .menu-custom-category__join-btn:hover {
    background: linear-gradient(to bottom, #b9d91a 0%, #9ac51a 100%); }

.menu-custom-category__join-btn-content--join-now {
  display: inline-block; }
  .is-owned .menu-custom-category__join-btn .menu-custom-category__join-btn-content--join-now {
    display: none; }

.menu-custom-category__join-btn-content--owned {
  display: none; }
  .is-owned .menu-custom-category__join-btn-content--owned {
    display: inline-block; }

.menu-custom-category__price-btn-content--buy-now {
  display: inline-block; }
  .is-in-cart .menu-custom-category__price-btn-content--buy-now {
    display: none; }
  .is-owned .menu-custom-category__price-btn .menu-custom-category__price-btn-content--buy-now {
    display: none; }
  .is-owned .menu-custom-category__price-btn:hover .menu-custom-category__price-btn-content--buy-now {
    display: inline-block; }
  .is-in-cart .menu-custom-category__price-btn:hover .menu-custom-category__price-btn-content--buy-now {
    display: none; }

.menu-custom-category__price-btn-content--owned {
  display: none; }
  .is-owned .menu-custom-category__price-btn-content--owned {
    display: inline-block; }
  .is-in-cart .menu-custom-category__price-btn-content--owned {
    display: none; }
  .is-owned .menu-custom-category__price-btn:hover .menu-custom-category__price-btn-content--owned {
    display: none; }

.menu-custom-category__price-btn-content--in-cart {
  display: none; }
  .is-in-cart .menu-custom-category__price-btn-content--in-cart {
    display: inline-block; }

.menu-custom-category__price-btn-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  height: 20px;
  width: 20px;
  fill: #fff; }

@media (max-width: 58.75em) {
  .menu-custom-category__bg {
    max-width: 774px;
    margin-left: -130px; }
  .menu-custom-category__bg-container {
    width: 505px; }
  .menu-custom-category {
    width: 500px; } }

@media (max-width: 46em) {
  .menu-custom-category-link--full-throttle {
    color: #da2d2d; }
  .menu-custom-category-link--little-nightmares {
    color: #d99400; }
  .menu-custom-category-link--guardians-of-the-galaxy {
    color: #a66dda; } }

.menu-collection {
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15); }

.menu-collection__link {
  display: block; }

.menu-collection__picture {
  position: relative;
  min-height: 110px;
  background: url(../img/img-load.gif) center center no-repeat rgba(217, 217, 217, 0.2); }
  .menu-collection:hover .menu-collection__picture {
    opacity: .95; }
  .menu-collection__picture.is-super-tall {
    max-height: 330px; }
  .menu-collection__picture.is-tall {
    max-height: 272px; }

.menu-collection__column {
  position: absolute;
  width: 50%;
  height: 100%; }

.menu-collection__column--left {
  left: 0; }

.menu-collection__column--right {
  right: 0; }

.menu-collection__image {
  display: block;
  width: 100%;
  height: 50%; }
  .is-super-tall .menu-collection__image {
    width: 100%;
    height: 330px; }
  .is-tall .menu-collection__image {
    width: 100%;
    height: 272px; }

.menu-collection__loader-title {
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  right: 0;
  padding: 0 20px;
  font-size: 11px;
  color: #333;
  text-align: center;
  z-index: -1; }

.menu-collection__name {
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  color: #5b5b5b;
  padding-left: 8px;
  padding-right: 6px;
  background: #e1e1e1; }
  .menu-collection:hover .menu-collection__name {
    background: #e5e5e5; }

.menu-collection__more {
  display: block;
  font-size: 14px;
  line-height: 55px;
  text-align: center;
  color: #fff; }
  .menu-section-layer--action .menu-collection__more {
    background: #1a1731; }
  .menu-section-layer--adventure .menu-collection__more {
    background: #311726; }
  .menu-section-layer--indie .menu-collection__more {
    background: #0c4338; }
  .menu-section-layer--role-playing .menu-collection__more {
    background: #311717; }
  .menu-section-layer--shooter .menu-collection__more {
    background: #092f2e; }
  .menu-section-layer--simulation .menu-collection__more {
    background: #4b230e; }
  .menu-section-layer--sports .menu-collection__more {
    background: #392052; }
  .menu-section-layer--strategy .menu-collection__more {
    background: #30113e; }

.menu-cart__submenu {
  left: -401px;
  width: 500px;
  padding-bottom: 0;
  padding-top: 0; }

.menu-cart-empty {
  padding: 40px;
  padding-bottom: 99px;
  padding-top: 70px;
  position: relative;
  z-index: 10;
  text-align: center;
  color: #808080;
  background: #fff; }

.menu-cart-empty__header {
  position: relative;
  padding-top: 50px;
  margin-bottom: 15px;
  color: #569a3e;
  font-size: 14px;
  font-weight: 700; }

.menu-cart-empty__line {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  width: 180px;
  height: 1px;
  border: none;
  background: #e5e5e5; }

.menu-cart-empty__header-icon {
  position: absolute;
  top: 0;
  left: 50%;
  height: 30px;
  margin-left: -15px;
  fill: #569a3e; }

.menu-cart-empty__description {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400; }

.menu-cart-empty__btn {
  background: #e6e6e6;
  color: #4c4c4c;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 10px; }
  .menu-cart-empty__btn:hover {
    background: #f3f3f3; }
  .menu-cart-empty__btn:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }

.menu-cart-empty__btn--wishlist {
  background: #f5e6c0; }
  .menu-cart-empty__btn--wishlist:hover {
    background: #f8efd6; }

.menu-cart__products-list {
  max-height: 452px; }

.menu-cart__products-list-in {
  position: relative; }

.menu .menu-cart__btn {
  float: right;
  margin-top: 2px;
  padding: 0;
  width: 180px; }

.menu-cart__total-price {
  float: right;
  margin-right: 10px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700; }

.menu-cart-items {
  display: inline-block;
  max-width: 200px;
  vertical-align: middle;
  line-height: normal; }

.menu-cart-items__header {
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #9a9a9a; }

.menu-cart-items__count {
  font-size: 14px;
  font-weight: 600;
  color: #262626; }

.menu-cart-item {
  position: relative;
  opacity: 1;
  transition: opacity .2s ease-in-out, background .15s ease-in-out;
  background: #fff; }
  .menu-cart-item:hover {
    background: #f2f2f2; }
  .menu-cart-item.is-removed {
    opacity: .5; }

.menu-cart-item__options {
  font-size: 12px; }

.menu-cart-option {
  font-weight: 400;
  margin-right: 1em;
  color: #999;
  position: relative;
  white-space: nowrap; }
  .menu-cart-item:hover .menu-cart-option {
    background-image: linear-gradient(to right, #b3b3b3, #b3b3b3); }

.menu-cart-option__icon {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5.5px;
  width: 11px;
  height: 11px; }

.menu-cart-option__icon--wishlisted {
  fill: #ffb54d; }

.menu-cart-option__icon--owned {
  fill: #bfbfbf; }

.menu-cart-option--wishlisted {
  color: #ffb54d;
  padding-left: 14px; }
  .menu-cart-item:hover .menu-cart-option--wishlisted {
    background: none; }

.menu-cart-option--owned {
  padding-left: 14px; }
  .menu-cart-item:hover .menu-cart-option--owned {
    background: none; }

.menu-cart-option--add-to-wishlist {
  opacity: 0;
  transition: opacity .15s ease-in-out; }
  .menu-cart-item:hover .menu-cart-option--add-to-wishlist {
    opacity: 1; }

.menu-cart-item .menu-cart-item__discount {
  right: 75px; }

.menu-cart-item__title {
  max-width: 250px;
  margin-bottom: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.menu-cart-item__wrapper {
  position: relative;
  width: 100%;
  padding: 0 526px;
  margin-left: -526px;
  transition: transform 0.3s ease-in-out; }
  .menu-cart-item__wrapper.is-swping {
    transition: none; }

.menu-cart-item__price {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -8px;
  color: #4c4c4c; }

.menu-cart-item__wishlist {
  box-sizing: border-box;
  display: none;
  position: absolute;
  left: -200%;
  top: 0;
  bottom: 0;
  width: 200%;
  padding-right: 25px;
  background: #ffa200;
  color: #fff;
  font-size: 16px;
  font-weight: 16px;
  line-height: 71px;
  font-weight: 600;
  text-align: right; }

.menu-cart-item__wishlist-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  fill: #fff; }

.menu-cart-item__wishlist--disabled {
  opacity: .25; }

.menu-cart-item__remove {
  box-sizing: border-box;
  display: none;
  position: absolute;
  right: -200%;
  top: 0;
  bottom: 0;
  width: 200%;
  padding-left: 25px;
  background: #a91314;
  color: #fff;
  font-size: 16px;
  font-weight: 16px;
  line-height: 71px;
  font-weight: 600;
  text-align: left; }

.menu-cart-item__remove-icon {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 15px;
  height: 16px;
  margin-left: 2px;
  fill: #fff; }

@media (max-width: 46em) {
  .menu-cart {
    transition: transform 200ms, opacity 200ms; }
    .menu--search-expanded .menu-cart {
      opacity: 0;
      transform: scale(0.8); }
  .menu-cart__submenu {
    left: 0;
    right: 0;
    bottom: 0;
    top: 50px;
    width: 100%;
    max-height: 100%; }
  .menu-cart-item {
    padding-left: 105px;
    transition: transform .3s ease-in-out; }
    .menu-cart-item.is-swping {
      transition: none; }
  .menu-cart-item__image {
    display: block; }
  .menu-cart__total-price {
    float: none;
    line-height: normal; }
  .menu-cart-item__title {
    padding-left: 15px; }
  .menu-cart-item__title {
    margin-bottom: 0;
    overflow: hidden;
    max-height: 32px; }
  .menu-cart-item__discount {
    visibility: hidden;
    position: absolute; }
  .menu-cart-item__options {
    display: none; }
  .menu-cart__products-list {
    max-height: 100%; }
  .menu-cart-item__title {
    white-space: normal;
    text-overflow: clip;
    overflow: visible; }
  .menu-cart-item__wishlist,
  .menu-cart-item__remove {
    display: block; }
  .menu-cart-empty__btn {
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px; }
  .menu-cart-empty__btn--wishlist {
    margin-left: 5px;
    margin-right: 5px; }
  .menu-cart__btn {
    width: 150px; } }

.menu-search {
  display: none;
  left: 0;
  right: 0;
  top: 4px;
  width: auto;
  padding-bottom: 0;
  padding-top: 0px;
  background: none;
  box-shadow: none; }
  .is-expanded .menu-search {
    display: block;
    animation: none; }
  .is-expanded.animation-mode--long .menu-search {
    display: block;
    animation: none; }
  .is-expanded.animation-mode--short .menu-search {
    display: block;
    animation: none; }
  .is-collapsed .menu-search {
    display: block;
    animation: none; }
  .menu-search:before {
    box-shadow: none; }

.menu-link--search {
  transition: opacity 0ms ease-in-out;
  transition-delay: .15s;
  opacity: 1; }
  .menu--search-expanded .menu-link--search {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: 0s; }

.menu-search-toolbar {
  box-sizing: border-box;
  position: relative;
  height: 52px;
  width: 100%;
  padding-left: 15%;
  line-height: 52px; }

.menu-search-loader__ball {
  position: absolute;
  left: 20%;
  top: 50%;
  margin-top: -2px;
  margin-left: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #404040;
  opacity: 0; }
  .is-loading .menu-search-loader__ball {
    animation: loader .3s none;
    animation-iteration-count: infinite;
    animation-direction: alternate; }

.menu-search-loader__ball + .menu-search-loader__ball {
  left: 40%; }
  .is-loading .menu-search-loader__ball + .menu-search-loader__ball {
    animation-delay: .1s; }

.menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball {
  left: 60%; }
  .is-loading .menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball {
    animation-delay: .2s; }

.menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball {
  left: 80%; }
  .is-loading .menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball + .menu-search-loader__ball {
    animation-delay: .3s; }

.menu-search-icon {
  position: absolute;
  left: 0;
  top: 18px;
  height: 16px;
  fill: #fff; }
  .is-expanded .menu-search-icon {
    animation: slideAndFadeInLupka .35s both;
    animation-delay: .05s;
    opacity: 1; }
  .is-collapsed .menu-search-icon {
    animation: fadeOut .15s both;
    animation-delay: .05s; }

.menu-search-input {
  display: inline-block;
  position: relative;
  width: 42%;
  height: 100%;
  vertical-align: top; }

.menu-search-input__clear {
  position: absolute;
  right: 0;
  top: 19px;
  z-index: 10;
  padding-left: 5px;
  padding-right: 5px;
  border: 1px solid #595959;
  border-radius: 3px;
  line-height: 14px;
  font-size: 11px;
  color: #191a1a;
  background: #595959;
  cursor: pointer; }
  .menu-search-input__clear.is-loading {
    color: transparent;
    background: transparent; }
  .is-expanded .menu-search-input__clear {
    animation: slideAndFadeIn .35s both;
    animation-delay: .1s; }
  .is-collapsed .menu-search-input__clear {
    animation: fadeOut .15s both;
    animation-delay: .1s; }

.menu-search-input__field {
  box-sizing: border-box;
  position: absolute;
  left: 28px;
  top: 17px;
  width: calc(100% - 28px);
  height: 22px;
  padding: 0;
  border: none;
  border-bottom: 1px solid #404040;
  font-size: 14px;
  color: #e5e5e5;
  vertical-align: middle;
  background: none; }
  .menu-search-input__field:focus {
    outline: none; }
  .is-expanded .menu-search-input__field {
    animation: slideAndFadeIn .35s both;
    animation-delay: .1s; }
  .is-collapsed .menu-search-input__field {
    animation: fadeOut .15s both;
    animation-delay: .1s; }

.menu-search-toolbar__results-count {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  vertical-align: top; }
  .menu-search-toolbar__results-count .menu-triangle {
    display: none; }
  .menu-search-toolbar__results-count.is-active {
    color: white; }
    .menu-search-toolbar__results-count.is-active .menu-triangle {
      display: block; }
  .is-expanded .menu-search-toolbar__results-count {
    animation: slideAndFadeIn .35s both;
    animation-delay: .15s; }
  .is-collapsed .menu-search-toolbar__results-count {
    animation: fadeOut .15s both;
    animation-delay: .15s; }

.is-expanded .menu-search-toolbar__results-count + .menu-search-toolbar__results-count {
  animation-delay: .2s; }

.menu-search-toolbar__close {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  color: #ccc;
  opacity: .5;
  font-size: 0; }
  .menu-search-toolbar__close:hover {
    opacity: 1; }
  .is-expanded .menu-search-toolbar__close {
    animation: fadeIn .35s both; }
  .is-collapsed .menu-search-toolbar__close {
    animation: fadeOut .35s both; }

.menu-search__no-results {
  position: absolute;
  z-index: 10;
  top: 52px;
  left: 60px;
  right: 60px;
  height: 370px;
  line-height: 370px;
  text-align: center;
  background: #fff;
  animation: fadeIn .3s both; }
  .is-collapsed .menu-search__no-results {
    animation: fadeOut .3s both; }

.menu-search-empty {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  text-align: center;
  color: #808080;
  width: 440px; }

.menu-search-empty__header {
  position: relative;
  padding-top: 50px;
  margin-bottom: 15px;
  color: #808080;
  font-size: 14px;
  font-weight: 700; }

.menu-search-empty__line {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  width: 180px;
  height: 1px;
  border: none;
  background: #e5e5e5; }

.menu-search-empty__header-icon {
  position: absolute;
  top: 0;
  left: 50%;
  height: 34px;
  width: 45px;
  margin-left: -22.5px;
  fill: #808080; }

.menu-search-empty__description {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400; }

.menu-search-empty__btn {
  background: #e6e6e6;
  color: #4c4c4c;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15); }
  .menu-search-empty__btn:hover {
    background: #f3f3f3; }
  .menu-search-empty__btn:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }

.menu-search__results {
  position: absolute;
  top: 52px;
  left: 60px;
  right: 60px;
  overflow: hidden;
  background: #fff;
  animation: fadeIn .3s both; }
  .is-collapsed .menu-search__results {
    animation: fadeOut .3s both; }
  .menu-search__results .list--rows {
    background: #fff; }

.menu-search__results-list {
  max-height: 536px; }

.menu-search__results-rows {
  padding-bottom: 1px; }

.menu-search__results-more {
  display: block;
  margin: 0 16px;
  margin-top: 11px;
  margin-bottom: 9px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to bottom, rgba(204, 204, 204, 0.2) 0%, rgba(204, 204, 204, 0.2) 4%, rgba(217, 217, 217, 0.2) 100%);
  color: #4c4c4c; }
  .menu-search__results-more:hover {
    background: linear-gradient(to top, rgba(204, 204, 204, 0.55) 0%, rgba(204, 204, 204, 0.55) 4%, rgba(217, 217, 217, 0.55) 100%); }
  .menu-search__results-more:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }

.menu-search__result {
  background: #fff; }
  .menu-search__result.is-last {
    margin-bottom: -1px; }
  .menu-search__result.is-focused {
    background: #f2f2f2; }
  .menu-search__result.is-animated {
    animation: fadeIn .25s both;
    animation-delay: .3s; }
    .menu-search__result.is-animated + .menu-search__result {
      animation-delay: .35s; }
    .menu-search__result.is-animated + .menu-search__result + .menu-search__result {
      animation-delay: .4s; }
    .menu-search__result.is-animated + .menu-search__result + .menu-search__result + .menu-search__result {
      animation-delay: .45s; }
    .menu-search__result.is-animated + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result {
      animation-delay: .5s; }
    .menu-search__result.is-animated + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result {
      animation-delay: .55s; }
    .menu-search__result.is-animated + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result + .menu-search__result {
      animation-delay: .6s; }

.menu-search__product {
  padding: 5px;
  padding-right: 15px;
  border-top: none;
  border-bottom: 1px solid #e6e6e6; }
  .menu-search__product.product-row--has-action:hover, .menu-search__product.product-row--has-card:hover, .menu-search__product:hover {
    background: #f2f2f2; }
  .menu-search__product.is-owned {
    background: transparent; }
  .menu-search__product.is-focused {
    background: #f2f2f2; }
  .list--rows .menu-search__product .product-row__title {
    display: inline-block;
    margin-top: 0;
    vertical-align: middle; }
  .list--rows .menu-search__product .product-row__discount {
    right: 77px;
    top: 0;
    position: absolute;
    line-height: 70px; }
  .menu-search__product .product-row__price {
    line-height: 60px; }
  .menu-search__product .product-row__discount {
    line-height: 60px; }

.menu-search__product-title {
  margin-top: 0;
  text-transform: capitalize;
  line-height: normal; }
  .is-owned .menu-search__product-title {
    opacity: .7; }

.menu-search__product-details {
  display: inline-block;
  max-width: 350px; }

.menu-search__product-rating {
  position: absolute;
  top: 50%;
  right: 24.69%;
  margin-top: -7px; }

.menu-search__product-os {
  position: absolute;
  top: 50%;
  right: 13.35%;
  margin-top: -8px;
  width: 35px; }

.menu-search__product-content {
  position: relative;
  float: left;
  padding-left: 10px;
  line-height: 60px;
  width: calc(100% - 110px); }

.menu-search__product-content-in {
  display: inline-block;
  vertical-align: middle;
  line-height: normal; }

.menu-search__product-os {
  vertical-align: top; }
  .list--rows .menu-search__product-os {
    vertical-align: top; }

.menu-search__product-subtitle {
  font-size: 12px;
  color: #808080;
  font-weight: 400; }

.menu-search__product-rating {
  color: #aeaeae; }

.highlighted {
  background: #ffef8b; }

@media (max-width: 46em) {
  .menu-search {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    max-height: 100%; }
  .menu-search-toolbar {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0; }
  .menu-search-input {
    width: calc(100% - 25px); }
  .menu-search-input__field {
    font-size: 16px; }
    .menu-search-input__field:focus {
      font-size: 16px; }
  .menu-search-toolbar__results-count {
    display: none; }
  .menu-search-icon {
    position: absolute;
    height: 12.5px;
    top: 22px; }
    .is-expanded .menu-search-icon {
      animation: slideAndFadeInLupkaMobile 500ms both;
      animation-delay: 50ms; }
  .menu-search__no-results {
    left: 0;
    right: 0;
    bottom: 0;
    height: auto; }
  .menu-search-empty {
    width: auto;
    padding-left: 10px;
    padding-right: 10px; }
  .menu-search__product-os {
    display: none; }
  .menu-search__product-image {
    display: none; }
  .menu-search__product-price {
    display: none; }
  .menu-search__product-discount {
    display: none; }
  .product-state-holder.is-discounted .product-state__discount {
    display: none; }
  .menu-search__product-content {
    width: 100%;
    padding-left: 0;
    line-height: 40px; }
  .menu-search__results {
    left: 0;
    right: 0;
    bottom: 0; }
  .menu-search__results-list {
    max-height: 100%; } }

@media (max-width: 57.5em) {
  .menu-search__product-rating {
    display: none; }
  .menu-search__product-os {
    right: 20px; } }

@media (max-width: 48.75em) {
  .menu-search__product-rating {
    display: none; } }

.menu-notifications {
  transition: transform 200ms, opacity 200ms; }
  .menu--search-expanded .menu-notifications {
    opacity: 0;
    transform: scale(0.8); }

.menu-notifications__submenu {
  left: -342px;
  max-height: 500px;
  width: 500px;
  padding-bottom: 0;
  padding-top: 0px; }

.menu-notifications-empty {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  height: 372px;
  padding: 40px;
  padding-top: 70px;
  text-align: center;
  color: #808080;
  background: #fff; }

.menu-notifications-empty__header {
  position: relative;
  padding-top: 50px;
  margin-bottom: 15px;
  color: #a62121;
  font-size: 14px;
  font-weight: 700; }

.menu-notifications-empty__line {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  width: 180px;
  height: 1px;
  border: none;
  background: #e5e5e5; }

.menu-notifications-empty__header-icon {
  position: absolute;
  top: 0;
  left: 50%;
  height: 34px;
  width: 45px;
  margin-left: -22.5px;
  fill: #a62121; }

.menu-notifications-empty__description {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400; }

.menu-notifications-empty__btn {
  background: #e6e6e6;
  color: #4c4c4c;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px; }
  .menu-notifications-empty__btn:hover {
    background: #f3f3f3; }
  .menu-notifications-empty__btn:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); }

.menu-header-notifications.has-unread-notifications .menu-header-notifications__btn--mark-all-as-read, .menu-header-notifications.has-unread-notifications
.menu-header-notifications--has-unread-notifications {
  display: inline-block; }

.menu-header-notifications.has-unread-notifications .menu-header-notifications--no-unread-notifications {
  display: none; }

.menu-notifications__list {
  max-height: 422px; }

.menu-notifications__list-in {
  position: relative; }

.menu-notification {
  display: block;
  position: relative;
  height: 53px;
  padding-top: 11px;
  padding-left: 64px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 20px; }
  .menu-notification.is-read:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5); }
  .menu-notification:not(.is-special):hover {
    background: #f2f2f2; }
  .menu-notification:last-child {
    border-bottom: none; }

.menu-notification__special-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: none; }
  .menu-notification:hover .menu-notification__special-bg {
    opacity: .8; }

.menu-notification__title {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 600; }
  .menu-notification.is-special .menu-notification__title {
    color: #fff; }

.menu-notification__description {
  display: inline-block;
  font-weight: 300;
  font-size: 12px;
  color: #611992; }
  .menu-notification.is-special .menu-notification__description {
    color: #d9d9d9; }
  .menu-notification.is-read .menu-notification__description {
    color: #262626; }
  .menu-notification__description > b {
    font-weight: 400; }

.menu-notification__label {
  display: none; }

.menu-notification.is-new-chat-message .menu-notification__label--new-chat-message {
  display: inline; }

.menu-notification.is-new-invite .menu-notification__label--new-invite {
  display: inline; }

.menu-notification.is-new-friend .menu-notification__label--new-friend {
  display: inline; }

.menu-notification__date {
  margin-left: 5px;
  font-size: 12px;
  color: #ccc;
  opacity: 0;
  transition: opacity .35s ease-in-out; }
  .menu-notification:hover .menu-notification__date {
    opacity: 1; }

.menu-notification__icon {
  position: absolute;
  left: 38px;
  top: 32px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #8f26a8 0%, #471285 74%, #471285 100%); }

.menu-notification__icon-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  fill: #fff; }

.menu-notification__avatar {
  position: absolute;
  left: 14px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%; }

@media (max-width: 46em) {
  .menu-notifications__submenu {
    left: 0;
    right: 0;
    bottom: 0;
    top: 50px;
    width: 100%;
    max-height: 100%; }
  .menu-notifications__list {
    max-height: 100%; } }

.menu-prices-in-usd ._price:before {
  content: "$ "; }

.menu-prices-in-usd ._price:after {
  content: " $"; }

.menu-prices-in-eur ._price:before {
  content: "€ "; }

.menu-prices-in-eur ._price:after {
  content: " €"; }

.menu-prices-in-gbp ._price:before {
  content: "£ "; }

.menu-prices-in-gbp ._price:after {
  content: " £"; }

.menu-prices-in-rub ._price:before {
  content: "₽ "; }

.menu-prices-in-rub ._price:after {
  content: " ₽"; }

.menu-prices-in-aud ._price:before {
  content: "A$ "; }

.menu-prices-in-aud ._price:after {
  content: " A$"; }

.menu-prices-in-pln ._price:before {
  content: "zł "; }

.menu-prices-in-pln ._price:after {
  content: " zł"; }

.menu-prices-in-cad ._price:before {
  content: "C$ "; }

.menu-prices-in-cad ._price:after {
  content: " C$"; }

.menu-prices-in-sek ._price:before {
  content: "kr "; }

.menu-prices-in-sek ._price:after {
  content: " kr"; }

.menu-prices-in-nok ._price:before {
  content: "kr "; }

.menu-prices-in-nok ._price:after {
  content: " kr"; }

.menu-prices-in-dkk ._price:before {
  content: "kr "; }

.menu-prices-in-dkk ._price:after {
  content: " kr"; }

.menu-prices-in-chf ._price:before {
  content: "fr. "; }

.menu-prices-in-chf ._price:after {
  content: " fr."; }

.menu-prices-in-brl ._price:before {
  content: "R$ "; }

.menu-prices-in-brl ._price:after {
  content: " R$"; }

.menu-curr-symbol-after ._price:before {
  display: none; }

.menu-curr-symbol-after ._price:after {
  display: inline; }

.menu-curr-symbol-before ._price:before {
  display: inline; }

.menu-curr-symbol-before ._price:after {
  display: none; }

@media (min-width: 46.0625em) and (max-width: 56.25em) {
  .hide-in-grouped-mode {
    display: none !important; } }

@media (min-width: 56.3125em) {
  .hide-in-normal-mode {
    display: none !important; } }

@media (max-width: 46em) {
  .hide-in-lite-mode {
    display: none !important; } }
