/* styleguide */
/* styleguide v2 starts
(please use this section for new features) */
/* Grayscale */
/* UI */
/* UI-backgrounds */
/* Font */
/* styleguide v2 ends */
/* primary colors */
/* shadows */
/* opacity */
/* transition */
/* filter colors */
/* inne */
@media not print {
  body,
  .mobile-body {
    font-family: 'proxima-nova', Corbel, Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #000;
  }
}
@keyframes revealAnimation {
  from {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}
@keyframes rocketProcessing {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -12600px 0px;
  }
}
@keyframes pulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -135% 0%;
  }
}
@keyframes appearIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loadingDots {
  0% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
}
.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.overflow--hidden {
  overflow: hidden !important;
}
.loading-dots {
  display: inline;
}
.loading-dots:after {
  display: inline-block;
  animation: loadingDots 2s infinite;
  content: '.';
  width: 1em;
  text-align: left;
}
.reveal-animation {
  visibility: hidden;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  animation-name: revealAnimation;
  animation-duration: 1s;
}
.rocket-loader__overlay {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 245, 245, 0.9);
}
.rocket-loader__container {
  background: #1185ed;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .rocket-loader__container {
    width: 75%;
    max-width: 540px;
    height: 35%;
  }
}
.rocket-loader__rocket {
  animation-duration: 1050ms;
  animation-timing-function: steps(63);
  animation-iteration-count: infinite;
  width: 200px;
  height: 150px;
  animation-name: rocketProcessing;
  background: url(/img/loaders/rocket_loader.svg);
  margin: 0 auto;
}
.w--15 {
  width: 25%;
}
.w--25 {
  width: 25%;
}
.w--50 {
  width: 50%;
}
.w--75 {
  width: 75%;
}
.w--90 {
  width: 90%;
}
.w--100 {
  width: 100%;
}
.h--25 {
  height: 25%;
}
.h--50 {
  height: 50%;
}
.h--75 {
  height: 75%;
}
.h--100 {
  height: 100%;
}
.d__flex {
  display: flex;
}
.d__flex--wrap {
  flex-wrap: wrap;
}
.d__flex--sb {
  justify-content: space-between;
}
.d__flex--sa {
  justify-content: space-between;
}
@supports (justify-content: space-around) {
  .d__flex--sa {
    justify-content: space-around;
  }
}
.d__flex--start {
  align-self: flex-start;
}
.d__flex--self-center {
  align-self: center;
}
.d__flex--left {
  justify-self: flex-start;
}
.d__flex--right {
  justify-self: flex-end;
}
.d__flex--center {
  justify-content: center;
  align-items: center;
}
.d__flex--bottom {
  align-items: flex-end;
}
.d__flex--top {
  align-items: flex-start;
}
.d__flex--start {
  justify-content: flex-start;
}
.d__flex--end {
  justify-content: flex-end;
}
.d__flex--self {
  align-items: center;
}
.d__flex--column {
  flex-direction: column;
}
.d__grid {
  display: grid;
  grid-template-rows: 1fr;
  column-gap: 10px;
}
.d__grid img {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.d__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.d__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.d__block {
  display: block;
}
.d__relative {
  position: relative;
}
.d__square {
  display: flex;
}
.d__square:after {
  content: '';
  height: 0;
  padding-bottom: 100%;
  width: 100%;
}
.d__box {
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 10px;
}
.img--responsive {
  max-width: 100%;
}
.img--circle {
  border-radius: 50%;
}
.img--displate {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  align-self: start;
}
.background--grey {
  background: #d2d2d2;
}
.background--lightGrey {
  background: #f5f5f5;
}
@media (max-width: 992px) {
  .mobile-hidden {
    display: none !important;
  }
}
.heading,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.heading--light,
h1--light,
h2--light,
h3--light,
h4--light,
h5--light,
h6--light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.heading--center,
h1--center,
h2--center,
h3--center,
h4--center,
h5--center,
h6--center {
  text-align: center;
}
.heading--capitalize,
h1--capitalize,
h2--capitalize,
h3--capitalize,
h4--capitalize,
h5--capitalize,
h6--capitalize {
  text-transform: capitalize;
}
.heading--uppercase,
h1--uppercase,
h2--uppercase,
h3--uppercase,
h4--uppercase,
h5--uppercase,
h6--uppercase {
  text-transform: uppercase;
}
h1,
.heading-1 {
  font-size: 28px;
  line-height: 36px;
}
@media (min-width: 992px) {
  h1,
  .heading-1 {
    font-size: 42px;
    line-height: 50px;
  }
}
h2,
.heading-2 {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 992px) {
  h2,
  .heading-2 {
    font-size: 36px;
    line-height: 44px;
  }
}
h3,
.heading-3 {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 992px) {
  h3,
  .heading-3 {
    font-size: 28px;
    line-height: 36px;
  }
}
h4,
.heading-4 {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  h4,
  .heading-4 {
    font-size: 22px;
    line-height: 30px;
  }
}
h5,
.heading-5 {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  h5,
  .heading-5 {
    font-size: 18px;
    line-height: 26px;
  }
}
h6,
.heading-6 {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  h6,
  .heading-6 {
    font-size: 16px;
    line-height: 24px;
  }
}
.text,
.product-details__info .info__header .header-text {
  /* default */
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--left {
  text-align: left;
}
.text--cross {
  text-decoration: line-through;
}
.text--bold,
.text strong,
.text b {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.text--light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.text--extra-big {
  font-size: 26px;
  line-height: 37px;
}
.text--big {
  font-size: 18px;
  line-height: 26px;
}
.text--large {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .text--large {
    font-size: 22px;
    line-height: 30px;
  }
}
.text--small {
  font-size: 14px;
  line-height: 22px;
}
.text--tiny {
  font-size: 12px;
  line-height: 20px;
}
.text__paragraph {
  margin: 15px 0;
}
.text--cyan {
  color: #00efd2;
}
.text--blue {
  color: #1185ed;
}
.text--darkgrey {
  color: #6e6e6e;
}
.text--grey {
  color: #d2d2d2;
}
.text--red {
  color: #ff1744;
}
.text--white {
  color: #ffffff;
}
.text--black {
  color: #000;
}
.text--no-break {
  white-space: nowrap;
}
.text--line-height-reset {
  line-height: unset;
}
.text--truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text--capitalize {
  text-transform: capitalize;
}
.text--uppercase {
  text-transform: uppercase;
}
.link,
a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 24px;
  cursor: pointer;
}
.link:hover,
a:hover {
  color: #000;
  text-decoration: underline;
}
.link:focus,
a:focus,
.link:visited,
a:visited,
.link:active,
a:active {
  color: inherit;
  outline: none;
}
.link--light,
a--light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.link--blue,
a--blue {
  color: #1185ed;
}
.link--blue:hover,
a--blue:hover {
  color: #1185ed;
}
.link--blue:focus,
a--blue:focus,
.link--blue:visited,
a--blue:visited,
.link--blue:active,
a--blue:active {
  color: #1185ed;
}
.link--white,
a--white {
  color: #ffffff;
}
.link--white:hover,
a--white:hover,
.link--white:focus,
a--white:focus,
.link--white:visited,
a--white:visited,
.link--white:active,
a--white:active {
  color: #ffffff;
}
.link--button,
a--button {
  border: 0;
  background: transparent;
}
.link--button:active,
a--button:active,
.link--button:focus,
a--button:focus {
  outline: none;
}
.link--button:hover,
a--button:hover {
  text-decoration: none;
}
.link--light,
a--light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list,
.mobile-body .list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 15px 0;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.list__item,
.mobile-body .list__item {
  padding-left: 10px;
}
.list__paragraph,
.mobile-body .list__paragraph,
.list p,
.mobile-body .list p {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list__paragraph:not(:first-of-type),
.mobile-body .list__paragraph:not(:first-of-type),
.list p:not(:first-of-type),
.mobile-body .list p:not(:first-of-type) {
  margin: 10px 0;
}
.list--break .list__item,
.mobile-body .list--break .list__item {
  word-break: break-word;
}
.list--stylized,
.mobile-body .list--stylized {
  list-style-type: none;
  padding: 0;
}
@media (min-width: 992px) {
  .list--stylized,
  .mobile-body .list--stylized {
    padding-left: 4px;
  }
}
.list--stylized .list__item,
.mobile-body .list--stylized .list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 6px 0;
}
.list--light,
.mobile-body .list--light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list__ordered--alpha,
.mobile-body .list__ordered--alpha {
  list-style-type: lower-alpha;
}
.list__ordered--decimal,
.mobile-body .list__ordered--decimal {
  list-style-type: decimal;
}
.list__ordered--roman,
.mobile-body .list__ordered--roman {
  list-style-type: upper-roman;
}
.list__ordered--checkmarks,
.mobile-body .list__ordered--checkmarks {
  list-style-type: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list__ordered--checkmarks .list__item,
.mobile-body .list__ordered--checkmarks .list__item {
  position: relative;
}
.list__ordered--checkmarks .list__item:before,
.mobile-body .list__ordered--checkmarks .list__item:before {
  content: '';
  position: absolute;
  background: url('/img/icons/checkmark_circle.svg');
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 0;
  left: -20px;
}
.list__ordered--checkmarks .list__item--active,
.mobile-body .list__ordered--checkmarks .list__item--active {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.list__ordered--checkmarks .list__item--active:before,
.mobile-body .list__ordered--checkmarks .list__item--active:before {
  background: url('/img/icons/checkmark.svg');
  background-size: cover;
}
.list__ordered--checkmarks .list__item--active-light,
.mobile-body .list__ordered--checkmarks .list__item--active-light {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list__ordered--checkmarks .list__item--active-light:before,
.mobile-body .list__ordered--checkmarks .list__item--active-light:before {
  background: url('/img/icons/checkmark.svg');
  background-size: cover;
}
.list__ordered--arrows,
.mobile-body .list__ordered--arrows {
  list-style-type: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list__ordered--arrows .list__item,
.mobile-body .list__ordered--arrows .list__item {
  position: relative;
}
.list__ordered--arrows .list__item:before,
.mobile-body .list__ordered--arrows .list__item:before {
  content: '';
  position: absolute;
  background: url('/img/icons/icon_arrow.svg');
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 3px;
  left: -20px;
}
.list--arrows,
.mobile-body .list--arrows {
  list-style-type: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.list--arrows .list__item,
.mobile-body .list--arrows .list__item {
  position: relative;
}
.list--arrows .list__item:before,
.mobile-body .list--arrows .list__item:before {
  content: '';
  position: absolute;
  background: url('/img/icons/arrow_list.png');
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 4px;
  left: -20px;
}
.list--sublist,
.mobile-body .list--sublist {
  counter-reset: section;
  list-style-type: none;
}
.list--sublist h3,
.mobile-body .list--sublist h3,
.list--sublist .sublist-heading,
.mobile-body .list--sublist .sublist-heading {
  margin-left: -30px;
}
.list--sublist li,
.mobile-body .list--sublist li {
  list-style-type: none;
  position: relative;
  margin: 10px 0;
}
.list--sublist li::before,
.mobile-body .list--sublist li::before {
  counter-increment: section;
  content: '';
}
.list--sublist ol,
.mobile-body .list--sublist ol,
.list--sublist .sublist,
.mobile-body .list--sublist .sublist {
  counter-reset: subsection;
}
.list--sublist ol > li::before,
.mobile-body .list--sublist ol > li::before,
.list--sublist .sublist > li::before,
.mobile-body .list--sublist .sublist > li::before {
  counter-increment: subsection;
  content: counter(section) '.' counter(subsection);
  position: absolute;
  left: -30px;
}
hr {
  border: none;
  border-top: 1px solid #d2d2d2;
  margin: 15px auto;
  width: 100%;
}
a.button,
.button,
.adyen-checkout__button {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, background-image 0.3s ease;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: 0;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  /* size medium -> default */
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  width: 100%;
  /* blue button */
  /* white button with blue border */
  /* Button with cart counter */
  /* grey button */
  /* sizes */
  /* other */
  /* social */
}
@media (min-width: 992px) {
  a.button,
  .button,
  .adyen-checkout__button {
    font-size: 18px;
    line-height: 26px;
    width: auto;
    max-width: unset;
  }
}
a.button--primary,
.button--primary,
.adyen-checkout__button--primary {
  background: #1185ed;
  color: #ffffff;
}
a.button--primary:visited,
.button--primary:visited,
.adyen-checkout__button--primary:visited,
a.button--primary:active,
.button--primary:active,
.adyen-checkout__button--primary:active,
a.button--primary:hover,
.button--primary:hover,
.adyen-checkout__button--primary:hover {
  color: #ffffff;
  text-decoration: none;
}
a.button--primary.button--selected,
.button--primary.button--selected,
.adyen-checkout__button--primary.button--selected {
  background-color: #0f76d4;
}
a.button--primary:not(.button--no-hover):hover,
.button--primary:not(.button--no-hover):hover,
.adyen-checkout__button--primary:not(.button--no-hover):hover {
  background-color: #0f76d4;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}
a.button--primary:active,
.button--primary:active,
.adyen-checkout__button--primary:active {
  background-color: #0f76d4;
  box-shadow: none;
}
a.button--secondary,
.button--secondary,
.adyen-checkout__button--secondary {
  background: #ffffff;
  border: 1px solid #1185ed;
  color: #1185ed;
  padding: 11px 19px;
}
a.button--secondary:visited,
.button--secondary:visited,
.adyen-checkout__button--secondary:visited,
a.button--secondary:active,
.button--secondary:active,
.adyen-checkout__button--secondary:active,
a.button--secondary:hover,
.button--secondary:hover,
.adyen-checkout__button--secondary:hover {
  color: #1185ed;
  text-decoration: none;
}
a.button--secondary.button--processing,
.button--secondary.button--processing,
.adyen-checkout__button--secondary.button--processing {
  color: #1185ed !important;
  background-image: url('/img/loaders/loader-dark.svg');
}
a.button--secondary.button--big,
.button--secondary.button--big,
.adyen-checkout__button--secondary.button--big {
  padding: 9px 22px;
}
@media (min-width: 992px) {
  a.button--secondary.button--big,
  .button--secondary.button--big,
  .adyen-checkout__button--secondary.button--big {
    padding: 9px 22px;
  }
}
a.button--secondary.button--small,
.button--secondary.button--small,
.adyen-checkout__button--secondary.button--small {
  padding: 9px 19px;
}
@media (min-width: 992px) {
  a.button--secondary.button--small,
  .button--secondary.button--small,
  .adyen-checkout__button--secondary.button--small {
    padding: 7px 19px;
  }
}
a.button--secondary:not(.button--no-hover):hover,
.button--secondary:not(.button--no-hover):hover,
.adyen-checkout__button--secondary:not(.button--no-hover):hover {
  background-color: #f5f5f5;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}
a.button--secondary:active,
.button--secondary:active,
.adyen-checkout__button--secondary:active {
  background-color: #f5f5f5;
  box-shadow: none;
}
a.button--counter,
.button--counter,
.adyen-checkout__button--counter {
  position: relative;
}
a.button--counter span,
.button--counter span,
.adyen-checkout__button--counter span {
  background: #ff1744;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 20px;
  color: #ffffff;
  position: absolute;
  top: -8px;
  left: 6px;
}
a.button--inactive,
.button--inactive,
.adyen-checkout__button--inactive {
  background-color: #d2d2d2 !important;
  color: #ffffff;
  box-shadow: none;
  pointer-events: none !important;
  border: none;
}
a.button--inactive:hover,
.button--inactive:hover,
.adyen-checkout__button--inactive:hover,
a.button--inactive:active,
.button--inactive:active,
.adyen-checkout__button--inactive:active {
  background-color: #d2d2d2 !important;
  color: #ffffff;
  box-shadow: none;
  cursor: default;
}
a.button--big,
.button--big,
.adyen-checkout__button--big {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  width: auto;
}
@media (min-width: 992px) {
  a.button--big,
  .button--big,
  .adyen-checkout__button--big {
    font-size: 22px;
    padding: 10px 24px;
    line-height: 30px;
  }
}
a.button--small,
.button--small,
.adyen-checkout__button--small {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 20px;
}
@media (min-width: 992px) {
  a.button--small,
  .button--small,
  .adyen-checkout__button--small {
    font-size: 16px;
    padding: 8px 20px;
    line-height: 24px;
  }
}
a.button--tiny,
.button--tiny,
.adyen-checkout__button--tiny {
  font-size: 12px;
  line-height: 18px;
  padding: 2px 6px 1px 5px;
}
a.button--clear-filters,
.button--clear-filters,
.adyen-checkout__button--clear-filters {
  padding: 3px 5px;
  width: auto;
  background: transparent;
  line-height: 26px;
}
a.button--full-width,
.button--full-width,
.adyen-checkout__button--full-width {
  width: 100%;
  display: inline-block;
}
a.button--auto,
.button--auto,
.adyen-checkout__button--auto {
  width: auto;
}
a.button--responsive,
.button--responsive,
.adyen-checkout__button--responsive {
  width: 100%;
  display: inline-block;
}
@media (min-width: 576px) {
  a.button--responsive,
  .button--responsive,
  .adyen-checkout__button--responsive {
    width: 50%;
  }
}
@media (min-width: 768px) {
  a.button--responsive,
  .button--responsive,
  .adyen-checkout__button--responsive {
    width: initial;
  }
}
a.button--center,
.button--center,
.adyen-checkout__button--center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
a.button--right,
.button--right,
.adyen-checkout__button--right {
  position: relative;
  left: 100%;
  transform: translateX(-100%);
}
a.button.button--processing,
.button.button--processing,
.adyen-checkout__button.button--processing {
  background-image: url('/img/loaders/loader-white.svg');
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: auto 60%;
  color: #ffffff;
  box-shadow: none;
  pointer-events: none;
}
a.button--circle,
.button--circle,
.adyen-checkout__button--circle {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 100%;
  padding: 0;
}
a.button[disabled],
.button[disabled],
.adyen-checkout__button[disabled],
a.button[disabled]:hover,
.button[disabled]:hover,
.adyen-checkout__button[disabled]:hover {
  background: #d9e0e4;
  color: #8d9ba1;
  cursor: not-allowed;
  box-shadow: none;
  border: none;
}
a.button--fb,
.button--fb,
.adyen-checkout__button--fb {
  color: #ffffff;
  background-color: #3b5998;
  background-image: url(/img/icons/fb_button_sign.png);
  background-position: 15px center;
  background-repeat: no-repeat;
  padding-left: 40px;
}
a.button--twitch,
.button--twitch,
.adyen-checkout__button--twitch {
  background-color: #6441a4;
}
a.button--twitch:hover,
.button--twitch:hover,
.adyen-checkout__button--twitch:hover {
  background-color: #6441a2;
}
a.button--disabled,
.button--disabled,
.adyen-checkout__button--disabled {
  opacity: 0.8;
  pointer-events: none;
}
a.button--disabled:hover,
.button--disabled:hover,
.adyen-checkout__button--disabled:hover {
  box-shadow: none;
}
a.button--popup-submit,
.button--popup-submit,
.adyen-checkout__button--popup-submit {
  display: block;
  margin: 0 auto;
  width: 70%;
}
.paypal-button {
  border-radius: 4px !important;
}
.similar-displates-btn {
  margin-top: 18px;
  color: #1185ed;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
@media (min-width: 992px) {
  .similar-displates-btn {
    margin-bottom: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
  }
}
/* INPUT TYPE TEXT */
.phone-input-select__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-input-select__select {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.phone-input-select__flag {
  height: 16px;
  width: auto;
}
.phone-input-select__chevron {
  transform: rotate(90deg);
}
.phone-input__container {
  display: flex;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  transition: box-shadow 0.3s ease;
  outline: 0;
  width: 100%;
  position: relative;
  padding: 0 0 0 12px;
}
.phone-input__container::placeholder {
  color: #6e6e6e;
}
.phone-input__container:hover,
.phone-input__container:active,
.phone-input__container:focus {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.phone-input__container:focus::placeholder {
  color: transparent;
}
.phone-input__container::placeholder {
  color: #6e6e6e;
}
.phone-input__container:hover,
.phone-input__container:active,
.phone-input__container:focus {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.phone-input__container:focus::placeholder {
  color: transparent;
}
.phone-input__container:focus-within {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.phone-input__input {
  border: none;
  outline: none;
  padding: 8px 12px 8px 8px;
  width: 100%;
  line-height: 22px;
  border-radius: 4px;
}
.input-text,
.input-textarea {
  appearance: none;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  transition: box-shadow 0.3s ease;
  outline: 0;
  width: 100%;
}
.input-text::placeholder,
.input-textarea::placeholder {
  color: #6e6e6e;
}
.input-text:hover,
.input-textarea:hover,
.input-text:active,
.input-textarea:active,
.input-text:focus,
.input-textarea:focus {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-text:focus::placeholder,
.input-textarea:focus::placeholder {
  color: transparent;
}
.input-text::placeholder,
.input-textarea::placeholder {
  color: #6e6e6e;
}
.input-text:hover,
.input-textarea:hover,
.input-text:active,
.input-textarea:active,
.input-text:focus,
.input-textarea:focus {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-text:focus::placeholder,
.input-textarea:focus::placeholder {
  color: transparent;
}
.input-text--error,
.input-textarea--error {
  border-color: #ff1744;
}
.input-text--responsive,
.input-textarea--responsive {
  width: auto;
}
.input-text--card-amex,
.input-textarea--card-amex,
.input-text--card-visa,
.input-textarea--card-visa,
.input-text--card-mastercard,
.input-textarea--card-mastercard,
.input-text--card-hipercard,
.input-textarea--card-hipercard,
.input-text--card-dinersclub,
.input-textarea--card-dinersclub {
  position: relative;
}
.input-text--card-amex:before,
.input-textarea--card-amex:before,
.input-text--card-visa:before,
.input-textarea--card-visa:before,
.input-text--card-mastercard:before,
.input-textarea--card-mastercard:before,
.input-text--card-hipercard:before,
.input-textarea--card-hipercard:before,
.input-text--card-dinersclub:before,
.input-textarea--card-dinersclub:before {
  position: absolute;
  right: 20px;
  bottom: 31px;
}
.input-text--card-amex:before,
.input-textarea--card-amex:before {
  content: url('/img/icons/credit_card_american_express.png');
}
.input-text--card-visa:before,
.input-textarea--card-visa:before {
  content: url('/img/icons/credit_card_visa.png');
}
.input-text--card-mastercard:before,
.input-textarea--card-mastercard:before {
  content: url('/img/icons/credit_card_master_card.png');
}
.input-text--card-hipercard:before,
.input-textarea--card-hipercard:before {
  content: url('/img/icons/credit_card_discovery.png');
}
.input-text--card-dinersclub:before,
.input-textarea--card-dinersclub:before {
  content: url('/img/icons/credit_card_diners_club.png');
}
.input-text[disabled],
.input-textarea[disabled],
.input-text--disabled,
.input-textarea--disabled,
.input-text--disabled:hover,
.input-textarea--disabled:hover {
  background: #f5f5f5;
  border-color: #d2d2d2;
  color: #6e6e6e;
  box-shadow: none;
  cursor: not-allowed;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
@supports (-webkit-overflow-scrolling: touch) {
  .input-text[disabled],
  .input-textarea[disabled],
  .input-text--disabled,
  .input-textarea--disabled,
  .input-text--disabled:hover,
  .input-textarea--disabled:hover {
    background: #f5f5f5;
    border-color: #6e6e6e;
    color: #000;
  }
}
.input-text[readonly],
.input-textarea[readonly],
.input-text[readonly]:hover,
.input-textarea[readonly]:hover {
  background: #f5f5f5;
  border-color: #d2d2d2;
  color: #6e6e6e;
  box-shadow: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
@supports (-webkit-overflow-scrolling: touch) {
  .input-text[readonly],
  .input-textarea[readonly],
  .input-text[readonly]:hover,
  .input-textarea[readonly]:hover {
    background: #f5f5f5;
    border-color: #6e6e6e;
    color: #000;
  }
}
.input-textarea {
  resize: none;
  vertical-align: top;
}
/* DROPDOWNS */
.mobile-body .input-select:hover {
  box-shadow: none;
}
.input-select {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #ffffff;
  z-index: 1;
  min-height: 40px;
}
.input-select--disabled {
  pointer-events: none;
  background: #f5f5f5;
  border-color: #d2d2d2;
  color: #6e6e6e;
  box-shadow: none;
}
.input-select--disabled:after {
  filter: grayscale(100%);
}
.input-select:after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 100%;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
  background-image: url('/img/icons/dropdown-icon.png');
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1000;
  pointer-events: none;
}
.input-select .input-select__dropdown {
  display: none;
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  background: #ffffff;
}
.input-select .input-select__dropdown--small {
  max-height: 190px !important;
}
.input-select .input-select__dropdown--small > .simplebar-track.vertical {
  margin-top: 18px;
}
.input-select .input-select__item,
.input-select a.input-select__item {
  padding: 8px 12px 8px 12px;
  display: block;
  line-height: 22px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input-select .input-select__item:first-child,
.input-select a.input-select__item:first-child {
  padding: 8px 30px 8px 12px;
}
.input-select .input-select__item:hover,
.input-select a.input-select__item:hover {
  text-decoration: none;
  background: #f5f5f5;
}
.input-select .input-select__item--selected,
.input-select a.input-select__item--selected {
  pointer-events: none;
  padding: 8px 30px 8px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input-select .input-select__item:first-child,
.input-select a.input-select__item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.input-select .input-select__item:last-child,
.input-select a.input-select__item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.input-select .input-select__item span,
.input-select a.input-select__item span {
  pointer-events: none;
}
.input-select:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-select:hover .input-select__dropdown {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-select--error {
  border-color: #ff1744;
}
.input-select--error .input-select__dropdown {
  border-color: #ff1744;
}
.input-select--active:after {
  transform: rotate(-180deg);
}
.input-select--active:hover {
  box-shadow: none;
}
.input-select--active .input-select__dropdown {
  display: block;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-select--full-width {
  width: 100%;
}
.input-select--empty:after {
  display: none;
}
.input-select--empty .input-select__dropdown {
  display: none;
}
.input-native-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #ffffff;
  z-index: 1;
  min-height: 40px;
  width: 100%;
  padding: 8px 12px;
  color: #000;
  background-image: url('/img/icons/dropdown-icon.png');
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 17px auto;
}
.input-native-select--disabled {
  pointer-events: none;
  background: #f5f5f5;
  border-color: #d2d2d2;
  color: #6e6e6e;
  box-shadow: none;
}
.input-native-select:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-native-select--error {
  border-color: #ff1744;
}
/* INPUT TYPE CHECKBOX */
.input-checkbox {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin: 5px 0;
}
@media (min-width: 992px) {
  .input-checkbox {
    background: none;
    padding: 0;
  }
}
.input-checkbox .input-checkbox__checkbox {
  display: none;
}
.input-checkbox:hover .input-checkbox__checkmark {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-checkbox .input-checkbox__checkmark {
  height: 20px;
  width: 20px;
  margin: 2px 0;
  flex-shrink: 0;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  margin-right: 10px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.input-checkbox .input-checkbox__checkmark:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2px;
  width: 7px;
  height: 11px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translateX(-50%) rotate(45deg);
  box-sizing: border-box;
}
.input-checkbox .input-checkbox__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #000;
  text-align: left;
  line-height: 24px;
  flex-grow: 1;
}
.input-checkbox .input-checkbox__checkbox:checked ~ .input-checkbox__checkmark {
  background: #1185ed;
  border-color: #1185ed;
}
.input-checkbox .input-checkbox__checkbox:checked ~ .input-checkbox__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.input-checkbox--disabled .input-checkbox__label {
  color: #d2d2d2;
}
.input-checkbox--disabled:hover .input-checkbox__checkmark {
  box-shadow: none;
}
/* INPUT TYPE RADIO */
.input-radio {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin: 5px 0;
}
@media (min-width: 992px) {
  .input-radio {
    padding: 0;
  }
}
.input-radio .input-radio__radio {
  display: none;
}
.input-radio:hover .input-radio__checkmark {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-radio .input-radio__checkmark {
  height: 20px;
  width: 20px;
  margin: 2px 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  margin-right: 10px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.input-radio .input-radio__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #000;
  text-align: left;
  line-height: 24px;
  flex-grow: 1;
}
.input-radio .input-radio__label .input-hint {
  padding: 0;
}
.input-radio .input-radio__radio:checked ~ .input-radio__checkmark {
  border: 6px solid #1185ed;
}
.input-radio .input-radio__radio:checked ~ .input-radio__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.input-radio--stylized .input-radio__checkmark {
  width: 26px;
  height: 26px;
  margin: 0;
  margin-right: 8px;
  background-size: 100% 100%;
  background-image: url('/img/icons/stylized-radio.png');
  border: none;
}
.input-radio--stylized .input-radio__radio:checked + .input-radio__checkmark {
  background-image: url('/img/icons/stylized-radio-checked.png');
  border: none;
}
.input-radio--stylized .input-radio__label {
  line-height: 26px;
}
.input-radio--block {
  position: relative;
  margin-left: 4px;
  padding: 6px;
}
.input-radio--block .input-radio__label:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -4px;
  bottom: 0;
  right: -4px;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  z-index: -1;
}
.input-radio--block .input-radio__radio:checked ~ .input-radio__label:after {
  background: #f5f5f5;
}
.input-hint-bold .input-hint {
  font-weight: bold;
}
/* HINT */
.input-hint {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 4px 0 0 0;
  margin: 0;
  display: block;
  font-size: 14px;
  color: #6e6e6e;
  text-align: left;
}
.input-hint--error {
  color: #ff1744;
}
.input-hint + .input-hint {
  padding: 0;
}
@media (min-width: 992px) {
  .input-hint {
    padding: 6px 0 0 0;
  }
}
/* GROUP */
.input-grp {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.input-grp > * {
  margin-right: 8px;
}
.input-grp :last-child {
  margin-right: 0;
}
.input-grp--space-between {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.input-grp--space-between-top {
  align-items: flex-start;
}
.input-grp--space-between .input-grp__short {
  width: 38%;
  margin-right: 0;
}
@media (min-width: 576px) {
  .input-grp--space-between .input-grp__short {
    width: 24%;
  }
}
.input-grp--space-between .input-grp__long {
  width: 60%;
  margin-right: 0;
}
@media (min-width: 576px) {
  .input-grp--space-between .input-grp__long {
    width: 74%;
  }
}
.input-grp--space-between .input-grp__half {
  width: 48%;
  margin-right: 0;
}
.input-grp--date-top {
  align-items: flex-start;
}
.input-grp--date .input-grp__day,
.input-grp--date .input-grp__month {
  width: 55px;
}
.input-grp--date .input-grp__day label,
.input-grp--date .input-grp__month label {
  white-space: nowrap;
}
.input-grp--date .input-grp__day input,
.input-grp--date .input-grp__month input {
  text-align: center;
}
.input-grp--date .input-grp__year {
  width: 70px;
}
.input-grp--date .input-grp__year input {
  text-align: center;
}
.input-grp--date .input-grp__fill {
  flex: 1 auto;
}
.input-grp--date input::-webkit-outer-spin-button,
.input-grp--date input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-grp--date input[type='number'] {
  -moz-appearance: textfield;
}
.input-grp .input-hint {
  width: 100%;
}
/* LABEL */
.label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  display: block;
  padding: 0 0 6px 0;
  text-align: left;
  font-size: 16px;
  color: #000;
}
.label--bold {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.label--inline {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .label {
    padding: 0 0 10px 0;
  }
}
.label--bold {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.label--inline {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .label {
    padding: 0 0 10px 0;
  }
}
/* INPUT TYPE RANGE */
.input-range {
  -webkit-appearance: none;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 14px 0 15px;
  position: relative;
  background: transparent;
}
.input-range__wrapper {
  width: 100%;
  position: relative;
}
.input-range__progress {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  bottom: 50%;
  width: 0;
  background: #1185ed;
  height: 1px;
  z-index: 1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.input-range:focus {
  outline: none;
}
.input-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  position: relative;
  background: #d2d2d2;
}
.input-range::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #1185ed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9.5px;
}
.input-range:focus::-webkit-slider-runnable-track {
  background: #d2d2d2;
}
.input-range::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  position: relative;
  background: #d2d2d2;
}
.input-range::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #1185ed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.input-range::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  position: relative;
  background: transparent;
  color: transparent;
}
.input-range::-moz-range-progress {
  background: #1185ed;
}
.input-range::-moz-range-track {
  background: #d2d2d2;
}
.input-range::-ms-fill-lower {
  background: #d2d2d2;
}
.input-range::-ms-fill-upper {
  background: #1185ed;
}
.input-range::-ms-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #1185ed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.input-range:focus::-ms-fill-lower {
  background: #d2d2d2;
}
.input-range:focus::-ms-fill-upper {
  background: #1185ed;
}
/* Input phone */
.input-phone-container {
  position: relative;
  width: 100%;
}
.input-phone-container:disabled {
  cursor: not-allowed;
}
.input-phone-container .input-text--error + .flag-dropdown {
  border-color: #ff1744;
  border-right-color: #d2d2d2;
}
.input-phone-container .flag {
  background: url(/img/icons/flag_spirit.png);
  height: 11px;
  width: 16px;
}
.input-phone-container .ad {
  background-position: -16px 0;
}
.input-phone-container .ae {
  background-position: -32px 0;
}
.input-phone-container .af {
  background-position: -48px 0;
}
.input-phone-container .ag {
  background-position: -64px 0;
}
.input-phone-container .ai {
  background-position: -80px 0;
}
.input-phone-container .al {
  background-position: -96px 0;
}
.input-phone-container .am {
  background-position: -112px 0;
}
.input-phone-container .ao {
  background-position: -128px 0;
}
.input-phone-container .ar {
  background-position: -144px 0;
}
.input-phone-container .as {
  background-position: -160px 0;
}
.input-phone-container .at {
  background-position: -176px 0;
}
.input-phone-container .au {
  background-position: -192px 0;
}
.input-phone-container .aw {
  background-position: -208px 0;
}
.input-phone-container .az {
  background-position: -224px 0;
}
.input-phone-container .ba {
  background-position: -240px 0;
}
.input-phone-container .bb {
  background-position: 0 -11px;
}
.input-phone-container .bd {
  background-position: -16px -11px;
}
.input-phone-container .be {
  background-position: -32px -11px;
}
.input-phone-container .bf {
  background-position: -48px -11px;
}
.input-phone-container .bg {
  background-position: -64px -11px;
}
.input-phone-container .bh {
  background-position: -80px -11px;
}
.input-phone-container .bi {
  background-position: -96px -11px;
}
.input-phone-container .bj {
  background-position: -112px -11px;
}
.input-phone-container .bm {
  background-position: -128px -11px;
}
.input-phone-container .bn {
  background-position: -144px -11px;
}
.input-phone-container .bo {
  background-position: -160px -11px;
}
.input-phone-container .br {
  background-position: -176px -11px;
}
.input-phone-container .bs {
  background-position: -192px -11px;
}
.input-phone-container .bt {
  background-position: -208px -11px;
}
.input-phone-container .bw {
  background-position: -224px -11px;
}
.input-phone-container .by {
  background-position: -240px -11px;
}
.input-phone-container .bz {
  background-position: 0 -22px;
}
.input-phone-container .ca {
  background-position: -16px -22px;
}
.input-phone-container .cd {
  background-position: -32px -22px;
}
.input-phone-container .cf {
  background-position: -48px -22px;
}
.input-phone-container .cg {
  background-position: -64px -22px;
}
.input-phone-container .ch {
  background-position: -80px -22px;
}
.input-phone-container .ci {
  background-position: -96px -22px;
}
.input-phone-container .ck {
  background-position: -112px -22px;
}
.input-phone-container .cl {
  background-position: -128px -22px;
}
.input-phone-container .cm {
  background-position: -144px -22px;
}
.input-phone-container .cn {
  background-position: -160px -22px;
}
.input-phone-container .co {
  background-position: -176px -22px;
}
.input-phone-container .cr {
  background-position: -192px -22px;
}
.input-phone-container .cu {
  background-position: -208px -22px;
}
.input-phone-container .cv {
  background-position: -224px -22px;
}
.input-phone-container .cw {
  background-position: -240px -22px;
}
.input-phone-container .cy {
  background-position: 0 -33px;
}
.input-phone-container .cz {
  background-position: -16px -33px;
}
.input-phone-container .de {
  background-position: -32px -33px;
}
.input-phone-container .dj {
  background-position: -48px -33px;
}
.input-phone-container .dk {
  background-position: -64px -33px;
}
.input-phone-container .dm {
  background-position: -80px -33px;
}
.input-phone-container .do {
  background-position: -96px -33px;
}
.input-phone-container .dz {
  background-position: -112px -33px;
}
.input-phone-container .ec {
  background-position: -128px -33px;
}
.input-phone-container .ee {
  background-position: -144px -33px;
}
.input-phone-container .eg {
  background-position: -160px -33px;
}
.input-phone-container .er {
  background-position: -176px -33px;
}
.input-phone-container .es {
  background-position: -192px -33px;
}
.input-phone-container .et {
  background-position: -208px -33px;
}
.input-phone-container .fi {
  background-position: -224px -33px;
}
.input-phone-container .fj {
  background-position: -240px -33px;
}
.input-phone-container .fk {
  background-position: 0 -44px;
}
.input-phone-container .fm {
  background-position: -16px -44px;
}
.input-phone-container .fo {
  background-position: -32px -44px;
}
.input-phone-container .fr {
  background-position: -48px -44px;
}
.input-phone-container .bl {
  background-position: -48px -44px;
}
.input-phone-container .mf {
  background-position: -48px -44px;
}
.input-phone-container .ga {
  background-position: -64px -44px;
}
.input-phone-container .gb {
  background-position: -80px -44px;
}
.input-phone-container .gd {
  background-position: -96px -44px;
}
.input-phone-container .ge {
  background-position: -112px -44px;
}
.input-phone-container .gf {
  background-position: -128px -44px;
}
.input-phone-container .gh {
  background-position: -144px -44px;
}
.input-phone-container .gi {
  background-position: -160px -44px;
}
.input-phone-container .gl {
  background-position: -176px -44px;
}
.input-phone-container .gm {
  background-position: -192px -44px;
}
.input-phone-container .gn {
  background-position: -208px -44px;
}
.input-phone-container .gp {
  background-position: -224px -44px;
}
.input-phone-container .gq {
  background-position: -240px -44px;
}
.input-phone-container .gr {
  background-position: 0 -55px;
}
.input-phone-container .gt {
  background-position: -16px -55px;
}
.input-phone-container .gu {
  background-position: -32px -55px;
}
.input-phone-container .gw {
  background-position: -48px -55px;
}
.input-phone-container .gy {
  background-position: -64px -55px;
}
.input-phone-container .hk {
  background-position: -80px -55px;
}
.input-phone-container .hn {
  background-position: -96px -55px;
}
.input-phone-container .hr {
  background-position: -112px -55px;
}
.input-phone-container .ht {
  background-position: -128px -55px;
}
.input-phone-container .hu {
  background-position: -144px -55px;
}
.input-phone-container .id {
  background-position: -160px -55px;
}
.input-phone-container .ie {
  background-position: -176px -55px;
}
.input-phone-container .il {
  background-position: -192px -55px;
}
.input-phone-container .in {
  background-position: -208px -55px;
}
.input-phone-container .io {
  background-position: -224px -55px;
}
.input-phone-container .iq {
  background-position: -240px -55px;
}
.input-phone-container .ir {
  background-position: 0 -66px;
}
.input-phone-container .is {
  background-position: -16px -66px;
}
.input-phone-container .it {
  background-position: -32px -66px;
}
.input-phone-container .jm {
  background-position: -48px -66px;
}
.input-phone-container .jo {
  background-position: -64px -66px;
}
.input-phone-container .jp {
  background-position: -80px -66px;
}
.input-phone-container .ke {
  background-position: -96px -66px;
}
.input-phone-container .kg {
  background-position: -112px -66px;
}
.input-phone-container .kh {
  background-position: -128px -66px;
}
.input-phone-container .ki {
  background-position: -144px -66px;
}
.input-phone-container .km {
  background-position: -160px -66px;
}
.input-phone-container .kn {
  background-position: -176px -66px;
}
.input-phone-container .kp {
  background-position: -192px -66px;
}
.input-phone-container .kr {
  background-position: -208px -66px;
}
.input-phone-container .kw {
  background-position: -224px -66px;
}
.input-phone-container .ky {
  background-position: -240px -66px;
}
.input-phone-container .kz {
  background-position: 0 -77px;
}
.input-phone-container .la {
  background-position: -16px -77px;
}
.input-phone-container .lb {
  background-position: -32px -77px;
}
.input-phone-container .lc {
  background-position: -48px -77px;
}
.input-phone-container .li {
  background-position: -64px -77px;
}
.input-phone-container .lk {
  background-position: -80px -77px;
}
.input-phone-container .lr {
  background-position: -96px -77px;
}
.input-phone-container .ls {
  background-position: -112px -77px;
}
.input-phone-container .lt {
  background-position: -128px -77px;
}
.input-phone-container .lu {
  background-position: -144px -77px;
}
.input-phone-container .lv {
  background-position: -160px -77px;
}
.input-phone-container .ly {
  background-position: -176px -77px;
}
.input-phone-container .ma {
  background-position: -192px -77px;
}
.input-phone-container .mc {
  background-position: -208px -77px;
}
.input-phone-container .md {
  background-position: -224px -77px;
}
.input-phone-container .me {
  background-position: -112px -154px;
  height: 12px;
}
.input-phone-container .mg {
  background-position: 0 -88px;
}
.input-phone-container .mh {
  background-position: -16px -88px;
}
.input-phone-container .mk {
  background-position: -32px -88px;
}
.input-phone-container .ml {
  background-position: -48px -88px;
}
.input-phone-container .mm {
  background-position: -64px -88px;
}
.input-phone-container .mn {
  background-position: -80px -88px;
}
.input-phone-container .mo {
  background-position: -96px -88px;
}
.input-phone-container .mp {
  background-position: -112px -88px;
}
.input-phone-container .mq {
  background-position: -128px -88px;
}
.input-phone-container .mr {
  background-position: -144px -88px;
}
.input-phone-container .ms {
  background-position: -160px -88px;
}
.input-phone-container .mt {
  background-position: -176px -88px;
}
.input-phone-container .mu {
  background-position: -192px -88px;
}
.input-phone-container .mv {
  background-position: -208px -88px;
}
.input-phone-container .mw {
  background-position: -224px -88px;
}
.input-phone-container .mx {
  background-position: -240px -88px;
}
.input-phone-container .my {
  background-position: 0 -99px;
}
.input-phone-container .mz {
  background-position: -16px -99px;
}
.input-phone-container .na {
  background-position: -32px -99px;
}
.input-phone-container .nc {
  background-position: -48px -99px;
}
.input-phone-container .ne {
  background-position: -64px -99px;
}
.input-phone-container .nf {
  background-position: -80px -99px;
}
.input-phone-container .ng {
  background-position: -96px -99px;
}
.input-phone-container .ni {
  background-position: -112px -99px;
}
.input-phone-container .nl {
  background-position: -128px -99px;
}
.input-phone-container .bq {
  background-position: -128px -99px;
}
.input-phone-container .no {
  background-position: -144px -99px;
}
.input-phone-container .np {
  background-position: -160px -99px;
}
.input-phone-container .nr {
  background-position: -176px -99px;
}
.input-phone-container .nu {
  background-position: -192px -99px;
}
.input-phone-container .nz {
  background-position: -208px -99px;
}
.input-phone-container .om {
  background-position: -224px -99px;
}
.input-phone-container .pa {
  background-position: -240px -99px;
}
.input-phone-container .pe {
  background-position: 0 -110px;
}
.input-phone-container .pf {
  background-position: -16px -110px;
}
.input-phone-container .pg {
  background-position: -32px -110px;
}
.input-phone-container .ph {
  background-position: -48px -110px;
}
.input-phone-container .pk {
  background-position: -64px -110px;
}
.input-phone-container .pl {
  background-position: -80px -110px;
}
.input-phone-container .pm {
  background-position: -96px -110px;
}
.input-phone-container .pr {
  background-position: -112px -110px;
}
.input-phone-container .ps {
  background-position: -128px -110px;
}
.input-phone-container .pt {
  background-position: -144px -110px;
}
.input-phone-container .pw {
  background-position: -160px -110px;
}
.input-phone-container .py {
  background-position: -176px -110px;
}
.input-phone-container .qa {
  background-position: -192px -110px;
}
.input-phone-container .re {
  background-position: -208px -110px;
}
.input-phone-container .ro {
  background-position: -224px -110px;
}
.input-phone-container .rs {
  background-position: -240px -110px;
}
.input-phone-container .ru {
  background-position: 0 -121px;
}
.input-phone-container .rw {
  background-position: -16px -121px;
}
.input-phone-container .sa {
  background-position: -32px -121px;
}
.input-phone-container .sb {
  background-position: -48px -121px;
}
.input-phone-container .sc {
  background-position: -64px -121px;
}
.input-phone-container .sd {
  background-position: -80px -121px;
}
.input-phone-container .se {
  background-position: -96px -121px;
}
.input-phone-container .sg {
  background-position: -112px -121px;
}
.input-phone-container .sh {
  background-position: -128px -121px;
}
.input-phone-container .si {
  background-position: -144px -121px;
}
.input-phone-container .sk {
  background-position: -160px -121px;
}
.input-phone-container .sl {
  background-position: -176px -121px;
}
.input-phone-container .sm {
  background-position: -192px -121px;
}
.input-phone-container .sn {
  background-position: -208px -121px;
}
.input-phone-container .so {
  background-position: -224px -121px;
}
.input-phone-container .sr {
  background-position: -240px -121px;
}
.input-phone-container .ss {
  background-position: 0 -132px;
}
.input-phone-container .st {
  background-position: -16px -132px;
}
.input-phone-container .sv {
  background-position: -32px -132px;
}
.input-phone-container .sx {
  background-position: -48px -132px;
}
.input-phone-container .sy {
  background-position: -64px -132px;
}
.input-phone-container .sz {
  background-position: -80px -132px;
}
.input-phone-container .tc {
  background-position: -96px -132px;
}
.input-phone-container .td {
  background-position: -112px -132px;
}
.input-phone-container .tg {
  background-position: -128px -132px;
}
.input-phone-container .th {
  background-position: -144px -132px;
}
.input-phone-container .tj {
  background-position: -160px -132px;
}
.input-phone-container .tk {
  background-position: -176px -132px;
}
.input-phone-container .tl {
  background-position: -192px -132px;
}
.input-phone-container .tm {
  background-position: -208px -132px;
}
.input-phone-container .tn {
  background-position: -224px -132px;
}
.input-phone-container .to {
  background-position: -240px -132px;
}
.input-phone-container .tr {
  background-position: 0 -143px;
}
.input-phone-container .tt {
  background-position: -16px -143px;
}
.input-phone-container .tv {
  background-position: -32px -143px;
}
.input-phone-container .tw {
  background-position: -48px -143px;
}
.input-phone-container .tz {
  background-position: -64px -143px;
}
.input-phone-container .ua {
  background-position: -80px -143px;
}
.input-phone-container .ug {
  background-position: -96px -143px;
}
.input-phone-container .us {
  background-position: -112px -143px;
}
.input-phone-container .uy {
  background-position: -128px -143px;
}
.input-phone-container .uz {
  background-position: -144px -143px;
}
.input-phone-container .va {
  background-position: -160px -143px;
}
.input-phone-container .vc {
  background-position: -176px -143px;
}
.input-phone-container .ve {
  background-position: -192px -143px;
}
.input-phone-container .vg {
  background-position: -208px -143px;
}
.input-phone-container .vi {
  background-position: -224px -143px;
}
.input-phone-container .vn {
  background-position: -240px -143px;
}
.input-phone-container .vu {
  background-position: 0 -154px;
}
.input-phone-container .wf {
  background-position: -16px -154px;
}
.input-phone-container .ws {
  background-position: -32px -154px;
}
.input-phone-container .ye {
  background-position: -48px -154px;
}
.input-phone-container .za {
  background-position: -64px -154px;
}
.input-phone-container .zm {
  background-position: -80px -154px;
}
.input-phone-container .zw {
  background-position: -96px -154px;
}
.input-phone-container .hide {
  display: none;
}
.input-phone-container .v-hide {
  visibility: hidden;
}
.input-phone-container input[type='tel'] {
  padding-left: 50px;
  position: relative;
  height: auto;
  color: initial;
  display: initial;
  background-color: #ffffff;
  background-image: unset;
}
.input-phone-container .flag-dropdown {
  background: #f5f5f5;
  border-radius: 4px 0 0 4px;
  border: 1px solid #d2d2d2;
  border-color: #d2d2d2;
  bottom: 0;
  padding: 0;
  position: absolute;
  top: 0;
}
.input-phone-container .selected-flag {
  border-radius: 4px 0 0 4px;
  height: 100%;
  padding: 0 0 0 12px;
  position: relative;
  width: 40px;
}
.input-phone-container .selected-flag .flag {
  margin-top: -5px;
  position: absolute;
  top: 50%;
}
.select.select--error .select__control {
  border: 1px solid #ff1744 !important;
}
.select .select__control {
  border: 1px solid #d2d2d2 !important;
  height: 40px;
  border-radius: 4px;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}
.select .select__control:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.select .select__control--menu-is-open {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select .select__control--menu-is-open + .select__menu {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.select .select__control--menu-is-open .select__indicator img {
  transform: rotate(180deg);
}
.select .select__control--is-focused {
  outline: 0 !important;
  border: 1px solid #d2d2d2 !important;
  box-shadow: none !important;
}
.select .select__value-container {
  margin-top: -2px;
}
.select .select__single-value {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.select .select__menu {
  width: 100%;
  margin: 0;
  border: 1px solid #d2d2d2;
  border-top: none;
  border-radius: 0px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 1;
}
.select .select__option {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  padding: 10px 12px;
  line-height: 20px;
  overflow: hidden;
  word-break: break-word;
}
.select .select__option:hover,
.select .select__option--is-focused,
.select .select__option--is-selected {
  background: #f5f5f5;
  color: #000 !important;
}
.select .select__indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  margin-top: 1px;
  height: 100%;
}
.select .select__indicator img {
  transition: all 0.3s ease;
}
.input-number {
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-number__value {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  padding: 7px 14px;
  height: 40px;
  border: 1px solid #d2d2d2;
  min-width: 0;
  max-width: 70px;
  width: auto;
  text-align: center;
  user-select: none;
}
.input-number__value[disabled] {
  background: #ffffff;
}
.input-number__plus,
.input-number__minus {
  border: 1px solid #d2d2d2;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-color: #ffffff;
  cursor: pointer;
}
.input-number__plus,
.input-number__minus,
.input-number__plus:active,
.input-number__minus:active,
.input-number__plus:hover,
.input-number__minus:hover,
.input-number__plus:focus,
.input-number__minus:focus {
  outline: 0;
}
.input-number__plus--disabled,
.input-number__minus--disabled {
  pointer-events: none;
  filter: grayscale(100%);
}
.input-number__plus {
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-image: url('/img/icons/icon_simple_plus.svg');
}
.input-number__minus {
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-image: url('/img/icons/icon_simple_minus.svg');
}
.tag,
a.tag {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  padding: 4px 10px;
  background: #f5f5f5;
  transition: box-shadow 0.3s ease;
  box-shadow: none;
  border-radius: 6px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5px 5px 0;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  white-space: nowrap;
}
.tag--active,
a.tag--active {
  background: #d2d2d2;
  text-decoration: none;
}
.tag--active .tag__remove,
a.tag--active .tag__remove {
  color: #000;
}
.tag:hover,
a.tag:hover {
  text-decoration: none;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}
.tag--error,
a.tag--error {
  padding: 2px 8px;
  border: 1px solid #ff1744;
}
.tag--disabled,
a.tag--disabled {
  cursor: default;
}
.tag--disabled:hover,
a.tag--disabled:hover {
  box-shadow: none;
}
.tag--big,
a.tag--big {
  padding: 13px 16px;
  font-size: 16px;
}
.tag--multiuploader,
a.tag--multiuploader {
  position: relative;
}
.tag--error-full,
a.tag--error-full {
  background: #f9c8ce;
}
.tag__word--error,
a.tag__word--error {
  border-radius: 4px;
  background-color: #f9c8ce;
  padding: 1px 2px;
  margin: 0 -2px;
}
.tag__remove,
a.tag__remove {
  cursor: pointer;
  color: #6e6e6e;
  margin-left: 6px;
  margin-top: 0;
  transform: none;
  position: relative;
}
@media (min-width: 992px) {
  .tag__remove,
  a.tag__remove {
    margin-top: -2px;
    margin-bottom: -2px;
    transform: scale(0.8);
  }
}
.tag__remove:after,
a.tag__remove:after {
  position: absolute;
  content: '';
  left: -7px;
  right: -7px;
  top: -7px;
  bottom: -7px;
}
.tag.mr--10,
a.tag.mr--10 {
  margin-right: 10px;
}
.tag-cloud-tag {
  margin: 5px 11px !important;
}
.tab-list {
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 22px;
}
.tab-list--small {
  font-size: 18px;
}
.tab-list--tiny {
  font-size: 14px;
}
@media (min-width: 576px) {
  .tab-list--tiny {
    font-size: 18px;
  }
}
.tab-list--standard {
  font-size: 16px;
}
.tab-list--scrollable {
  overflow-y: scroll;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-list--scrollable::-webkit-scrollbar {
  display: none;
}
@media (min-width: 576px) {
  .tab-list--scrollable {
    overflow: visible;
  }
}
.tab-list--scrollable .tab-list__item {
  white-space: nowrap;
  margin-right: 15px;
  margin-bottom: 0;
  position: relative;
}
.tab-list--scrollable .tab-list__item:last-of-type {
  padding-right: 25px;
}
@media (min-width: 576px) {
  .tab-list--scrollable .tab-list__item {
    margin-bottom: -1px;
  }
  .tab-list--scrollable .tab-list__item:last-of-type {
    padding-right: 0;
  }
}
.tab-list--margin .tab-list__item {
  margin: 0 0 -1px 25px;
}
.tab-list--margin .tab-list__item:first-of-type {
  margin-left: 0;
}
.tab-list--center {
  justify-content: center;
}
.tab-list--sb {
  justify-content: space-between;
}
.tab-list--thick .tab-list__item--active {
  border-bottom: 3px solid #000;
  margin: 0 0 -2px 40px;
  padding: 0 0 19px;
}
.tab-list__item,
.tab-list a.tab-list__item {
  padding: 0 0 16px;
  margin: 0 0 -1px 10px;
  border-bottom: 3px solid transparent;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 576px) {
  .tab-list__item,
  .tab-list a.tab-list__item {
    margin: 0 0 -1px 20px;
  }
}
@media (min-width: 992px) {
  .tab-list__item,
  .tab-list a.tab-list__item {
    margin: 0 0 -1px 30px;
    padding: 0 0 20px;
  }
}
.tab-list__item:first-of-type,
.tab-list a.tab-list__item:first-of-type {
  padding-left: 0;
  margin-left: 0;
}
.tab-list__item:last-of-type,
.tab-list a.tab-list__item:last-of-type {
  padding-right: 0;
  margin-right: 0;
}
.tab-list__item--account-settings:first-of-type,
.tab-list a.tab-list__item--account-settings:first-of-type {
  margin-left: 25px;
}
@media (min-width: 576px) {
  .tab-list__item--account-settings:first-of-type,
  .tab-list a.tab-list__item--account-settings:first-of-type {
    margin-left: 35px;
  }
}
@media (min-width: 992px) {
  .tab-list__item--account-settings:first-of-type,
  .tab-list a.tab-list__item--account-settings:first-of-type {
    margin-left: 48px;
  }
}
.tab-list__item--active,
.tab-list a.tab-list__item--active {
  border-color: #000;
  pointer-events: none;
  cursor: default;
}
.tab-list__item:hover,
.tab-list a.tab-list__item:hover,
.tab-list__item:visited,
.tab-list a.tab-list__item:visited,
.tab-list__item:focus,
.tab-list a.tab-list__item:focus,
.tab-list__item:active,
.tab-list a.tab-list__item:active {
  text-decoration: none;
  outline: none;
}
.content-tab--settings {
  display: none;
}
.content-tab--settings.active {
  display: block;
}
.m--0 {
  margin: 0px;
}
.mx--0 {
  margin-left: 0px;
  margin-right: 0px;
}
@media (min-width: 992px) {
  .mx--0 {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.mxi--0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media (min-width: 992px) {
  .mxi--0 {
    margin-left: 0px!important;
    margin-right: 0px!important;
  }
}
.my--0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .my--0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.myi--0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
@media (min-width: 992px) {
  .myi--0 {
    margin-top: 0px!important;
    margin-bottom: 0px!important;
  }
}
.mya--0 {
  margin: 0px auto;
}
@media (min-width: 992px) {
  .mya--0 {
    margin: 0px auto;
  }
}
.myia--0 {
  margin: 0px auto !important;
}
@media (min-width: 992px) {
  .myia--0 {
    margin: 0px auto !important;
  }
}
.ml--0 {
  margin-left: 0px;
}
@media (min-width: 992px) {
  .ml--0 {
    margin-left: 0px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--0 {
  margin-left: 0px;
}
@media (min-width: 992px) {
  .mli--0 {
    margin-left: 0px;
  }
}
.mr--0 {
  margin-right: 0px;
}
@media (min-width: 992px) {
  .mr--0 {
    margin-right: 0px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--0 {
  margin-right: 0px;
}
@media (min-width: 992px) {
  .mri--0 {
    margin-right: 0px;
  }
}
.mt--0 {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .mt--0 {
    margin-top: 0px;
  }
}
.mti--0 {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .mti--0 {
    margin-top: 0px;
  }
}
.mb--0 {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .mb--0 {
    margin-bottom: 0px;
  }
}
.mbi--0 {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .mbi--0 {
    margin-bottom: 0px;
  }
}
.m--5 {
  margin: 5px;
}
.mx--5 {
  margin-left: 3.33333333px;
  margin-right: 3.33333333px;
}
@media (min-width: 992px) {
  .mx--5 {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.mxi--5 {
  margin-left: 3.33333333px !important;
  margin-right: 3.33333333px !important;
}
@media (min-width: 992px) {
  .mxi--5 {
    margin-left: 5px!important;
    margin-right: 5px!important;
  }
}
.my--5 {
  margin-top: 3.33333333px;
  margin-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .my--5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.myi--5 {
  margin-top: 3.33333333px !important;
  margin-bottom: 3.33333333px !important;
}
@media (min-width: 992px) {
  .myi--5 {
    margin-top: 5px!important;
    margin-bottom: 5px!important;
  }
}
.mya--5 {
  margin: 5px auto;
}
@media (min-width: 992px) {
  .mya--5 {
    margin: 5px auto;
  }
}
.myia--5 {
  margin: 5px auto !important;
}
@media (min-width: 992px) {
  .myia--5 {
    margin: 5px auto !important;
  }
}
.ml--5 {
  margin-left: 3.33333333px;
}
@media (min-width: 992px) {
  .ml--5 {
    margin-left: 5px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--5 {
  margin-left: 3.33333333px;
}
@media (min-width: 992px) {
  .mli--5 {
    margin-left: 5px;
  }
}
.mr--5 {
  margin-right: 3.33333333px;
}
@media (min-width: 992px) {
  .mr--5 {
    margin-right: 5px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--5 {
  margin-right: 3.33333333px;
}
@media (min-width: 992px) {
  .mri--5 {
    margin-right: 5px;
  }
}
.mt--5 {
  margin-top: 3.33333333px;
}
@media (min-width: 992px) {
  .mt--5 {
    margin-top: 5px;
  }
}
.mti--5 {
  margin-top: 3.33333333px;
}
@media (min-width: 992px) {
  .mti--5 {
    margin-top: 5px;
  }
}
.mb--5 {
  margin-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .mb--5 {
    margin-bottom: 5px;
  }
}
.mbi--5 {
  margin-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .mbi--5 {
    margin-bottom: 5px;
  }
}
.m--10 {
  margin: 10px;
}
.mx--10 {
  margin-left: 6.66666667px;
  margin-right: 6.66666667px;
}
@media (min-width: 992px) {
  .mx--10 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.mxi--10 {
  margin-left: 6.66666667px !important;
  margin-right: 6.66666667px !important;
}
@media (min-width: 992px) {
  .mxi--10 {
    margin-left: 10px!important;
    margin-right: 10px!important;
  }
}
.my--10 {
  margin-top: 6.66666667px;
  margin-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .my--10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.myi--10 {
  margin-top: 6.66666667px !important;
  margin-bottom: 6.66666667px !important;
}
@media (min-width: 992px) {
  .myi--10 {
    margin-top: 10px!important;
    margin-bottom: 10px!important;
  }
}
.mya--10 {
  margin: 10px auto;
}
@media (min-width: 992px) {
  .mya--10 {
    margin: 10px auto;
  }
}
.myia--10 {
  margin: 10px auto !important;
}
@media (min-width: 992px) {
  .myia--10 {
    margin: 10px auto !important;
  }
}
.ml--10 {
  margin-left: 6.66666667px;
}
@media (min-width: 992px) {
  .ml--10 {
    margin-left: 10px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--10 {
  margin-left: 6.66666667px;
}
@media (min-width: 992px) {
  .mli--10 {
    margin-left: 10px;
  }
}
.mr--10 {
  margin-right: 6.66666667px;
}
@media (min-width: 992px) {
  .mr--10 {
    margin-right: 10px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--10 {
  margin-right: 6.66666667px;
}
@media (min-width: 992px) {
  .mri--10 {
    margin-right: 10px;
  }
}
.mt--10 {
  margin-top: 6.66666667px;
}
@media (min-width: 992px) {
  .mt--10 {
    margin-top: 10px;
  }
}
.mti--10 {
  margin-top: 6.66666667px;
}
@media (min-width: 992px) {
  .mti--10 {
    margin-top: 10px;
  }
}
.mb--10 {
  margin-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .mb--10 {
    margin-bottom: 10px;
  }
}
.mbi--10 {
  margin-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .mbi--10 {
    margin-bottom: 10px;
  }
}
.m--15 {
  margin: 15px;
}
.mx--15 {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .mx--15 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.mxi--15 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
@media (min-width: 992px) {
  .mxi--15 {
    margin-left: 15px!important;
    margin-right: 15px!important;
  }
}
.my--15 {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .my--15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.myi--15 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
@media (min-width: 992px) {
  .myi--15 {
    margin-top: 15px!important;
    margin-bottom: 15px!important;
  }
}
.mya--15 {
  margin: 15px auto;
}
@media (min-width: 992px) {
  .mya--15 {
    margin: 15px auto;
  }
}
.myia--15 {
  margin: 15px auto !important;
}
@media (min-width: 992px) {
  .myia--15 {
    margin: 15px auto !important;
  }
}
.ml--15 {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .ml--15 {
    margin-left: 15px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--15 {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .mli--15 {
    margin-left: 15px;
  }
}
.mr--15 {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .mr--15 {
    margin-right: 15px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--15 {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .mri--15 {
    margin-right: 15px;
  }
}
.mt--15 {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .mt--15 {
    margin-top: 15px;
  }
}
.mti--15 {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .mti--15 {
    margin-top: 15px;
  }
}
.mb--15 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .mb--15 {
    margin-bottom: 15px;
  }
}
.mbi--15 {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .mbi--15 {
    margin-bottom: 15px;
  }
}
.m--20 {
  margin: 20px;
}
.mx--20 {
  margin-left: 13.33333333px;
  margin-right: 13.33333333px;
}
@media (min-width: 992px) {
  .mx--20 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.mxi--20 {
  margin-left: 13.33333333px !important;
  margin-right: 13.33333333px !important;
}
@media (min-width: 992px) {
  .mxi--20 {
    margin-left: 20px!important;
    margin-right: 20px!important;
  }
}
.my--20 {
  margin-top: 13.33333333px;
  margin-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .my--20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.myi--20 {
  margin-top: 13.33333333px !important;
  margin-bottom: 13.33333333px !important;
}
@media (min-width: 992px) {
  .myi--20 {
    margin-top: 20px!important;
    margin-bottom: 20px!important;
  }
}
.mya--20 {
  margin: 20px auto;
}
@media (min-width: 992px) {
  .mya--20 {
    margin: 20px auto;
  }
}
.myia--20 {
  margin: 20px auto !important;
}
@media (min-width: 992px) {
  .myia--20 {
    margin: 20px auto !important;
  }
}
.ml--20 {
  margin-left: 13.33333333px;
}
@media (min-width: 992px) {
  .ml--20 {
    margin-left: 20px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--20 {
  margin-left: 13.33333333px;
}
@media (min-width: 992px) {
  .mli--20 {
    margin-left: 20px;
  }
}
.mr--20 {
  margin-right: 13.33333333px;
}
@media (min-width: 992px) {
  .mr--20 {
    margin-right: 20px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--20 {
  margin-right: 13.33333333px;
}
@media (min-width: 992px) {
  .mri--20 {
    margin-right: 20px;
  }
}
.mt--20 {
  margin-top: 13.33333333px;
}
@media (min-width: 992px) {
  .mt--20 {
    margin-top: 20px;
  }
}
.mti--20 {
  margin-top: 13.33333333px;
}
@media (min-width: 992px) {
  .mti--20 {
    margin-top: 20px;
  }
}
.mb--20 {
  margin-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .mb--20 {
    margin-bottom: 20px;
  }
}
.mbi--20 {
  margin-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .mbi--20 {
    margin-bottom: 20px;
  }
}
.m--25 {
  margin: 25px;
}
.mx--25 {
  margin-left: 16.66666667px;
  margin-right: 16.66666667px;
}
@media (min-width: 992px) {
  .mx--25 {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.mxi--25 {
  margin-left: 16.66666667px !important;
  margin-right: 16.66666667px !important;
}
@media (min-width: 992px) {
  .mxi--25 {
    margin-left: 25px!important;
    margin-right: 25px!important;
  }
}
.my--25 {
  margin-top: 16.66666667px;
  margin-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .my--25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.myi--25 {
  margin-top: 16.66666667px !important;
  margin-bottom: 16.66666667px !important;
}
@media (min-width: 992px) {
  .myi--25 {
    margin-top: 25px!important;
    margin-bottom: 25px!important;
  }
}
.mya--25 {
  margin: 25px auto;
}
@media (min-width: 992px) {
  .mya--25 {
    margin: 25px auto;
  }
}
.myia--25 {
  margin: 25px auto !important;
}
@media (min-width: 992px) {
  .myia--25 {
    margin: 25px auto !important;
  }
}
.ml--25 {
  margin-left: 16.66666667px;
}
@media (min-width: 992px) {
  .ml--25 {
    margin-left: 25px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--25 {
  margin-left: 16.66666667px;
}
@media (min-width: 992px) {
  .mli--25 {
    margin-left: 25px;
  }
}
.mr--25 {
  margin-right: 16.66666667px;
}
@media (min-width: 992px) {
  .mr--25 {
    margin-right: 25px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--25 {
  margin-right: 16.66666667px;
}
@media (min-width: 992px) {
  .mri--25 {
    margin-right: 25px;
  }
}
.mt--25 {
  margin-top: 16.66666667px;
}
@media (min-width: 992px) {
  .mt--25 {
    margin-top: 25px;
  }
}
.mti--25 {
  margin-top: 16.66666667px;
}
@media (min-width: 992px) {
  .mti--25 {
    margin-top: 25px;
  }
}
.mb--25 {
  margin-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .mb--25 {
    margin-bottom: 25px;
  }
}
.mbi--25 {
  margin-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .mbi--25 {
    margin-bottom: 25px;
  }
}
.m--30 {
  margin: 30px;
}
.mx--30 {
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 992px) {
  .mx--30 {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.mxi--30 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
@media (min-width: 992px) {
  .mxi--30 {
    margin-left: 30px!important;
    margin-right: 30px!important;
  }
}
.my--30 {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .my--30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.myi--30 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
@media (min-width: 992px) {
  .myi--30 {
    margin-top: 30px!important;
    margin-bottom: 30px!important;
  }
}
.mya--30 {
  margin: 30px auto;
}
@media (min-width: 992px) {
  .mya--30 {
    margin: 30px auto;
  }
}
.myia--30 {
  margin: 30px auto !important;
}
@media (min-width: 992px) {
  .myia--30 {
    margin: 30px auto !important;
  }
}
.ml--30 {
  margin-left: 20px;
}
@media (min-width: 992px) {
  .ml--30 {
    margin-left: 30px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--30 {
  margin-left: 20px;
}
@media (min-width: 992px) {
  .mli--30 {
    margin-left: 30px;
  }
}
.mr--30 {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .mr--30 {
    margin-right: 30px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--30 {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .mri--30 {
    margin-right: 30px;
  }
}
.mt--30 {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .mt--30 {
    margin-top: 30px;
  }
}
.mti--30 {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .mti--30 {
    margin-top: 30px;
  }
}
.mb--30 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .mb--30 {
    margin-bottom: 30px;
  }
}
.mbi--30 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .mbi--30 {
    margin-bottom: 30px;
  }
}
.m--36 {
  margin: 36px;
}
.mx--36 {
  margin-left: 24px;
  margin-right: 24px;
}
@media (min-width: 992px) {
  .mx--36 {
    margin-left: 36px;
    margin-right: 36px;
  }
}
.mxi--36 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}
@media (min-width: 992px) {
  .mxi--36 {
    margin-left: 36px!important;
    margin-right: 36px!important;
  }
}
.my--36 {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .my--36 {
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
.myi--36 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
@media (min-width: 992px) {
  .myi--36 {
    margin-top: 36px!important;
    margin-bottom: 36px!important;
  }
}
.mya--36 {
  margin: 36px auto;
}
@media (min-width: 992px) {
  .mya--36 {
    margin: 36px auto;
  }
}
.myia--36 {
  margin: 36px auto !important;
}
@media (min-width: 992px) {
  .myia--36 {
    margin: 36px auto !important;
  }
}
.ml--36 {
  margin-left: 24px;
}
@media (min-width: 992px) {
  .ml--36 {
    margin-left: 36px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--36 {
  margin-left: 24px;
}
@media (min-width: 992px) {
  .mli--36 {
    margin-left: 36px;
  }
}
.mr--36 {
  margin-right: 24px;
}
@media (min-width: 992px) {
  .mr--36 {
    margin-right: 36px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--36 {
  margin-right: 24px;
}
@media (min-width: 992px) {
  .mri--36 {
    margin-right: 36px;
  }
}
.mt--36 {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mt--36 {
    margin-top: 36px;
  }
}
.mti--36 {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .mti--36 {
    margin-top: 36px;
  }
}
.mb--36 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb--36 {
    margin-bottom: 36px;
  }
}
.mbi--36 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mbi--36 {
    margin-bottom: 36px;
  }
}
.m--45 {
  margin: 45px;
}
.mx--45 {
  margin-left: 30px;
  margin-right: 30px;
}
@media (min-width: 992px) {
  .mx--45 {
    margin-left: 45px;
    margin-right: 45px;
  }
}
.mxi--45 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
@media (min-width: 992px) {
  .mxi--45 {
    margin-left: 45px!important;
    margin-right: 45px!important;
  }
}
.my--45 {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .my--45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
.myi--45 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
@media (min-width: 992px) {
  .myi--45 {
    margin-top: 45px!important;
    margin-bottom: 45px!important;
  }
}
.mya--45 {
  margin: 45px auto;
}
@media (min-width: 992px) {
  .mya--45 {
    margin: 45px auto;
  }
}
.myia--45 {
  margin: 45px auto !important;
}
@media (min-width: 992px) {
  .myia--45 {
    margin: 45px auto !important;
  }
}
.ml--45 {
  margin-left: 30px;
}
@media (min-width: 992px) {
  .ml--45 {
    margin-left: 45px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--45 {
  margin-left: 30px;
}
@media (min-width: 992px) {
  .mli--45 {
    margin-left: 45px;
  }
}
.mr--45 {
  margin-right: 30px;
}
@media (min-width: 992px) {
  .mr--45 {
    margin-right: 45px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--45 {
  margin-right: 30px;
}
@media (min-width: 992px) {
  .mri--45 {
    margin-right: 45px;
  }
}
.mt--45 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mt--45 {
    margin-top: 45px;
  }
}
.mti--45 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mti--45 {
    margin-top: 45px;
  }
}
.mb--45 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb--45 {
    margin-bottom: 45px;
  }
}
.mbi--45 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mbi--45 {
    margin-bottom: 45px;
  }
}
.m--50 {
  margin: 50px;
}
.mx--50 {
  margin-left: 33.33333333px;
  margin-right: 33.33333333px;
}
@media (min-width: 992px) {
  .mx--50 {
    margin-left: 50px;
    margin-right: 50px;
  }
}
.mxi--50 {
  margin-left: 33.33333333px !important;
  margin-right: 33.33333333px !important;
}
@media (min-width: 992px) {
  .mxi--50 {
    margin-left: 50px!important;
    margin-right: 50px!important;
  }
}
.my--50 {
  margin-top: 33.33333333px;
  margin-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .my--50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.myi--50 {
  margin-top: 33.33333333px !important;
  margin-bottom: 33.33333333px !important;
}
@media (min-width: 992px) {
  .myi--50 {
    margin-top: 50px!important;
    margin-bottom: 50px!important;
  }
}
.mya--50 {
  margin: 50px auto;
}
@media (min-width: 992px) {
  .mya--50 {
    margin: 50px auto;
  }
}
.myia--50 {
  margin: 50px auto !important;
}
@media (min-width: 992px) {
  .myia--50 {
    margin: 50px auto !important;
  }
}
.ml--50 {
  margin-left: 33.33333333px;
}
@media (min-width: 992px) {
  .ml--50 {
    margin-left: 50px;
  }
}
.ml--a {
  margin-left: auto;
}
.mli--50 {
  margin-left: 33.33333333px;
}
@media (min-width: 992px) {
  .mli--50 {
    margin-left: 50px;
  }
}
.mr--50 {
  margin-right: 33.33333333px;
}
@media (min-width: 992px) {
  .mr--50 {
    margin-right: 50px;
  }
}
.mr--a {
  margin-right: auto;
}
.mri--50 {
  margin-right: 33.33333333px;
}
@media (min-width: 992px) {
  .mri--50 {
    margin-right: 50px;
  }
}
.mt--50 {
  margin-top: 33.33333333px;
}
@media (min-width: 992px) {
  .mt--50 {
    margin-top: 50px;
  }
}
.mti--50 {
  margin-top: 33.33333333px;
}
@media (min-width: 992px) {
  .mti--50 {
    margin-top: 50px;
  }
}
.mb--50 {
  margin-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .mb--50 {
    margin-bottom: 50px;
  }
}
.mbi--50 {
  margin-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .mbi--50 {
    margin-bottom: 50px;
  }
}
.p--0 {
  padding: 0px;
}
.px--0 {
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 992px) {
  .px--0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.pxi--0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
@media (min-width: 992px) {
  .pxi--0 {
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
}
.py--0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 992px) {
  .py--0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.pyi--0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
@media (min-width: 992px) {
  .pyi--0 {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
  }
}
.pya--0 {
  padding: 0px auto;
}
@media (min-width: 992px) {
  .pya--0 {
    padding: 0px auto;
  }
}
.pyia--0 {
  padding: 0px auto !important;
}
@media (min-width: 992px) {
  .pyia--0 {
    padding: 0px auto !important;
  }
}
.pl--0 {
  padding-left: 0px;
}
@media (min-width: 992px) {
  .pl--0 {
    padding-left: 0px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--0 {
  padding-left: 0px;
}
@media (min-width: 992px) {
  .pli--0 {
    padding-left: 0px;
  }
}
.pr--0 {
  padding-right: 0px;
}
@media (min-width: 992px) {
  .pr--0 {
    padding-right: 0px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--0 {
  padding-right: 0px;
}
@media (min-width: 992px) {
  .pri--0 {
    padding-right: 0px;
  }
}
.pt--0 {
  padding-top: 0px;
}
@media (min-width: 992px) {
  .pt--0 {
    padding-top: 0px;
  }
}
.pti--0 {
  padding-top: 0px;
}
@media (min-width: 992px) {
  .pti--0 {
    padding-top: 0px;
  }
}
.pb--0 {
  padding-bottom: 0px;
}
@media (min-width: 992px) {
  .pb--0 {
    padding-bottom: 0px;
  }
}
.pbi--0 {
  padding-bottom: 0px;
}
@media (min-width: 992px) {
  .pbi--0 {
    padding-bottom: 0px;
  }
}
.p--3 {
  padding: 3px;
}
.px--3 {
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 992px) {
  .px--3 {
    padding-left: 3px;
    padding-right: 3px;
  }
}
.pxi--3 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
@media (min-width: 992px) {
  .pxi--3 {
    padding-left: 3px!important;
    padding-right: 3px!important;
  }
}
.py--3 {
  padding-top: 2px;
  padding-bottom: 2px;
}
@media (min-width: 992px) {
  .py--3 {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.pyi--3 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
@media (min-width: 992px) {
  .pyi--3 {
    padding-top: 3px!important;
    padding-bottom: 3px!important;
  }
}
.pya--3 {
  padding: 3px auto;
}
@media (min-width: 992px) {
  .pya--3 {
    padding: 3px auto;
  }
}
.pyia--3 {
  padding: 3px auto !important;
}
@media (min-width: 992px) {
  .pyia--3 {
    padding: 3px auto !important;
  }
}
.pl--3 {
  padding-left: 2px;
}
@media (min-width: 992px) {
  .pl--3 {
    padding-left: 3px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--3 {
  padding-left: 2px;
}
@media (min-width: 992px) {
  .pli--3 {
    padding-left: 3px;
  }
}
.pr--3 {
  padding-right: 2px;
}
@media (min-width: 992px) {
  .pr--3 {
    padding-right: 3px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--3 {
  padding-right: 2px;
}
@media (min-width: 992px) {
  .pri--3 {
    padding-right: 3px;
  }
}
.pt--3 {
  padding-top: 2px;
}
@media (min-width: 992px) {
  .pt--3 {
    padding-top: 3px;
  }
}
.pti--3 {
  padding-top: 2px;
}
@media (min-width: 992px) {
  .pti--3 {
    padding-top: 3px;
  }
}
.pb--3 {
  padding-bottom: 2px;
}
@media (min-width: 992px) {
  .pb--3 {
    padding-bottom: 3px;
  }
}
.pbi--3 {
  padding-bottom: 2px;
}
@media (min-width: 992px) {
  .pbi--3 {
    padding-bottom: 3px;
  }
}
.p--5 {
  padding: 5px;
}
.px--5 {
  padding-left: 3.33333333px;
  padding-right: 3.33333333px;
}
@media (min-width: 992px) {
  .px--5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.pxi--5 {
  padding-left: 3.33333333px !important;
  padding-right: 3.33333333px !important;
}
@media (min-width: 992px) {
  .pxi--5 {
    padding-left: 5px!important;
    padding-right: 5px!important;
  }
}
.py--5 {
  padding-top: 3.33333333px;
  padding-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .py--5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.pyi--5 {
  padding-top: 3.33333333px !important;
  padding-bottom: 3.33333333px !important;
}
@media (min-width: 992px) {
  .pyi--5 {
    padding-top: 5px!important;
    padding-bottom: 5px!important;
  }
}
.pya--5 {
  padding: 5px auto;
}
@media (min-width: 992px) {
  .pya--5 {
    padding: 5px auto;
  }
}
.pyia--5 {
  padding: 5px auto !important;
}
@media (min-width: 992px) {
  .pyia--5 {
    padding: 5px auto !important;
  }
}
.pl--5 {
  padding-left: 3.33333333px;
}
@media (min-width: 992px) {
  .pl--5 {
    padding-left: 5px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--5 {
  padding-left: 3.33333333px;
}
@media (min-width: 992px) {
  .pli--5 {
    padding-left: 5px;
  }
}
.pr--5 {
  padding-right: 3.33333333px;
}
@media (min-width: 992px) {
  .pr--5 {
    padding-right: 5px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--5 {
  padding-right: 3.33333333px;
}
@media (min-width: 992px) {
  .pri--5 {
    padding-right: 5px;
  }
}
.pt--5 {
  padding-top: 3.33333333px;
}
@media (min-width: 992px) {
  .pt--5 {
    padding-top: 5px;
  }
}
.pti--5 {
  padding-top: 3.33333333px;
}
@media (min-width: 992px) {
  .pti--5 {
    padding-top: 5px;
  }
}
.pb--5 {
  padding-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .pb--5 {
    padding-bottom: 5px;
  }
}
.pbi--5 {
  padding-bottom: 3.33333333px;
}
@media (min-width: 992px) {
  .pbi--5 {
    padding-bottom: 5px;
  }
}
.p--10 {
  padding: 10px;
}
.px--10 {
  padding-left: 6.66666667px;
  padding-right: 6.66666667px;
}
@media (min-width: 992px) {
  .px--10 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.pxi--10 {
  padding-left: 6.66666667px !important;
  padding-right: 6.66666667px !important;
}
@media (min-width: 992px) {
  .pxi--10 {
    padding-left: 10px!important;
    padding-right: 10px!important;
  }
}
.py--10 {
  padding-top: 6.66666667px;
  padding-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .py--10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.pyi--10 {
  padding-top: 6.66666667px !important;
  padding-bottom: 6.66666667px !important;
}
@media (min-width: 992px) {
  .pyi--10 {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
  }
}
.pya--10 {
  padding: 10px auto;
}
@media (min-width: 992px) {
  .pya--10 {
    padding: 10px auto;
  }
}
.pyia--10 {
  padding: 10px auto !important;
}
@media (min-width: 992px) {
  .pyia--10 {
    padding: 10px auto !important;
  }
}
.pl--10 {
  padding-left: 6.66666667px;
}
@media (min-width: 992px) {
  .pl--10 {
    padding-left: 10px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--10 {
  padding-left: 6.66666667px;
}
@media (min-width: 992px) {
  .pli--10 {
    padding-left: 10px;
  }
}
.pr--10 {
  padding-right: 6.66666667px;
}
@media (min-width: 992px) {
  .pr--10 {
    padding-right: 10px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--10 {
  padding-right: 6.66666667px;
}
@media (min-width: 992px) {
  .pri--10 {
    padding-right: 10px;
  }
}
.pt--10 {
  padding-top: 6.66666667px;
}
@media (min-width: 992px) {
  .pt--10 {
    padding-top: 10px;
  }
}
.pti--10 {
  padding-top: 6.66666667px;
}
@media (min-width: 992px) {
  .pti--10 {
    padding-top: 10px;
  }
}
.pb--10 {
  padding-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .pb--10 {
    padding-bottom: 10px;
  }
}
.pbi--10 {
  padding-bottom: 6.66666667px;
}
@media (min-width: 992px) {
  .pbi--10 {
    padding-bottom: 10px;
  }
}
.p--15 {
  padding: 15px;
}
.px--15 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .px--15 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.pxi--15 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
@media (min-width: 992px) {
  .pxi--15 {
    padding-left: 15px!important;
    padding-right: 15px!important;
  }
}
.py--15 {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .py--15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.pyi--15 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
@media (min-width: 992px) {
  .pyi--15 {
    padding-top: 15px!important;
    padding-bottom: 15px!important;
  }
}
.pya--15 {
  padding: 15px auto;
}
@media (min-width: 992px) {
  .pya--15 {
    padding: 15px auto;
  }
}
.pyia--15 {
  padding: 15px auto !important;
}
@media (min-width: 992px) {
  .pyia--15 {
    padding: 15px auto !important;
  }
}
.pl--15 {
  padding-left: 10px;
}
@media (min-width: 992px) {
  .pl--15 {
    padding-left: 15px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--15 {
  padding-left: 10px;
}
@media (min-width: 992px) {
  .pli--15 {
    padding-left: 15px;
  }
}
.pr--15 {
  padding-right: 10px;
}
@media (min-width: 992px) {
  .pr--15 {
    padding-right: 15px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--15 {
  padding-right: 10px;
}
@media (min-width: 992px) {
  .pri--15 {
    padding-right: 15px;
  }
}
.pt--15 {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .pt--15 {
    padding-top: 15px;
  }
}
.pti--15 {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .pti--15 {
    padding-top: 15px;
  }
}
.pb--15 {
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .pb--15 {
    padding-bottom: 15px;
  }
}
.pbi--15 {
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .pbi--15 {
    padding-bottom: 15px;
  }
}
.p--20 {
  padding: 20px;
}
.px--20 {
  padding-left: 13.33333333px;
  padding-right: 13.33333333px;
}
@media (min-width: 992px) {
  .px--20 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pxi--20 {
  padding-left: 13.33333333px !important;
  padding-right: 13.33333333px !important;
}
@media (min-width: 992px) {
  .pxi--20 {
    padding-left: 20px!important;
    padding-right: 20px!important;
  }
}
.py--20 {
  padding-top: 13.33333333px;
  padding-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .py--20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.pyi--20 {
  padding-top: 13.33333333px !important;
  padding-bottom: 13.33333333px !important;
}
@media (min-width: 992px) {
  .pyi--20 {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
  }
}
.pya--20 {
  padding: 20px auto;
}
@media (min-width: 992px) {
  .pya--20 {
    padding: 20px auto;
  }
}
.pyia--20 {
  padding: 20px auto !important;
}
@media (min-width: 992px) {
  .pyia--20 {
    padding: 20px auto !important;
  }
}
.pl--20 {
  padding-left: 13.33333333px;
}
@media (min-width: 992px) {
  .pl--20 {
    padding-left: 20px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--20 {
  padding-left: 13.33333333px;
}
@media (min-width: 992px) {
  .pli--20 {
    padding-left: 20px;
  }
}
.pr--20 {
  padding-right: 13.33333333px;
}
@media (min-width: 992px) {
  .pr--20 {
    padding-right: 20px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--20 {
  padding-right: 13.33333333px;
}
@media (min-width: 992px) {
  .pri--20 {
    padding-right: 20px;
  }
}
.pt--20 {
  padding-top: 13.33333333px;
}
@media (min-width: 992px) {
  .pt--20 {
    padding-top: 20px;
  }
}
.pti--20 {
  padding-top: 13.33333333px;
}
@media (min-width: 992px) {
  .pti--20 {
    padding-top: 20px;
  }
}
.pb--20 {
  padding-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .pb--20 {
    padding-bottom: 20px;
  }
}
.pbi--20 {
  padding-bottom: 13.33333333px;
}
@media (min-width: 992px) {
  .pbi--20 {
    padding-bottom: 20px;
  }
}
.p--25 {
  padding: 25px;
}
.px--25 {
  padding-left: 16.66666667px;
  padding-right: 16.66666667px;
}
@media (min-width: 992px) {
  .px--25 {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.pxi--25 {
  padding-left: 16.66666667px !important;
  padding-right: 16.66666667px !important;
}
@media (min-width: 992px) {
  .pxi--25 {
    padding-left: 25px!important;
    padding-right: 25px!important;
  }
}
.py--25 {
  padding-top: 16.66666667px;
  padding-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .py--25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.pyi--25 {
  padding-top: 16.66666667px !important;
  padding-bottom: 16.66666667px !important;
}
@media (min-width: 992px) {
  .pyi--25 {
    padding-top: 25px!important;
    padding-bottom: 25px!important;
  }
}
.pya--25 {
  padding: 25px auto;
}
@media (min-width: 992px) {
  .pya--25 {
    padding: 25px auto;
  }
}
.pyia--25 {
  padding: 25px auto !important;
}
@media (min-width: 992px) {
  .pyia--25 {
    padding: 25px auto !important;
  }
}
.pl--25 {
  padding-left: 16.66666667px;
}
@media (min-width: 992px) {
  .pl--25 {
    padding-left: 25px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--25 {
  padding-left: 16.66666667px;
}
@media (min-width: 992px) {
  .pli--25 {
    padding-left: 25px;
  }
}
.pr--25 {
  padding-right: 16.66666667px;
}
@media (min-width: 992px) {
  .pr--25 {
    padding-right: 25px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--25 {
  padding-right: 16.66666667px;
}
@media (min-width: 992px) {
  .pri--25 {
    padding-right: 25px;
  }
}
.pt--25 {
  padding-top: 16.66666667px;
}
@media (min-width: 992px) {
  .pt--25 {
    padding-top: 25px;
  }
}
.pti--25 {
  padding-top: 16.66666667px;
}
@media (min-width: 992px) {
  .pti--25 {
    padding-top: 25px;
  }
}
.pb--25 {
  padding-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .pb--25 {
    padding-bottom: 25px;
  }
}
.pbi--25 {
  padding-bottom: 16.66666667px;
}
@media (min-width: 992px) {
  .pbi--25 {
    padding-bottom: 25px;
  }
}
.p--30 {
  padding: 30px;
}
.px--30 {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .px--30 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.pxi--30 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 992px) {
  .pxi--30 {
    padding-left: 30px!important;
    padding-right: 30px!important;
  }
}
.py--30 {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .py--30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.pyi--30 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
@media (min-width: 992px) {
  .pyi--30 {
    padding-top: 30px!important;
    padding-bottom: 30px!important;
  }
}
.pya--30 {
  padding: 30px auto;
}
@media (min-width: 992px) {
  .pya--30 {
    padding: 30px auto;
  }
}
.pyia--30 {
  padding: 30px auto !important;
}
@media (min-width: 992px) {
  .pyia--30 {
    padding: 30px auto !important;
  }
}
.pl--30 {
  padding-left: 20px;
}
@media (min-width: 992px) {
  .pl--30 {
    padding-left: 30px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--30 {
  padding-left: 20px;
}
@media (min-width: 992px) {
  .pli--30 {
    padding-left: 30px;
  }
}
.pr--30 {
  padding-right: 20px;
}
@media (min-width: 992px) {
  .pr--30 {
    padding-right: 30px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--30 {
  padding-right: 20px;
}
@media (min-width: 992px) {
  .pri--30 {
    padding-right: 30px;
  }
}
.pt--30 {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .pt--30 {
    padding-top: 30px;
  }
}
.pti--30 {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .pti--30 {
    padding-top: 30px;
  }
}
.pb--30 {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .pb--30 {
    padding-bottom: 30px;
  }
}
.pbi--30 {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .pbi--30 {
    padding-bottom: 30px;
  }
}
.p--36 {
  padding: 36px;
}
.px--36 {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 992px) {
  .px--36 {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.pxi--36 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media (min-width: 992px) {
  .pxi--36 {
    padding-left: 36px!important;
    padding-right: 36px!important;
  }
}
.py--36 {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .py--36 {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.pyi--36 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
@media (min-width: 992px) {
  .pyi--36 {
    padding-top: 36px!important;
    padding-bottom: 36px!important;
  }
}
.pya--36 {
  padding: 36px auto;
}
@media (min-width: 992px) {
  .pya--36 {
    padding: 36px auto;
  }
}
.pyia--36 {
  padding: 36px auto !important;
}
@media (min-width: 992px) {
  .pyia--36 {
    padding: 36px auto !important;
  }
}
.pl--36 {
  padding-left: 24px;
}
@media (min-width: 992px) {
  .pl--36 {
    padding-left: 36px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--36 {
  padding-left: 24px;
}
@media (min-width: 992px) {
  .pli--36 {
    padding-left: 36px;
  }
}
.pr--36 {
  padding-right: 24px;
}
@media (min-width: 992px) {
  .pr--36 {
    padding-right: 36px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--36 {
  padding-right: 24px;
}
@media (min-width: 992px) {
  .pri--36 {
    padding-right: 36px;
  }
}
.pt--36 {
  padding-top: 24px;
}
@media (min-width: 992px) {
  .pt--36 {
    padding-top: 36px;
  }
}
.pti--36 {
  padding-top: 24px;
}
@media (min-width: 992px) {
  .pti--36 {
    padding-top: 36px;
  }
}
.pb--36 {
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .pb--36 {
    padding-bottom: 36px;
  }
}
.pbi--36 {
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .pbi--36 {
    padding-bottom: 36px;
  }
}
.p--50 {
  padding: 50px;
}
.px--50 {
  padding-left: 33.33333333px;
  padding-right: 33.33333333px;
}
@media (min-width: 992px) {
  .px--50 {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.pxi--50 {
  padding-left: 33.33333333px !important;
  padding-right: 33.33333333px !important;
}
@media (min-width: 992px) {
  .pxi--50 {
    padding-left: 50px!important;
    padding-right: 50px!important;
  }
}
.py--50 {
  padding-top: 33.33333333px;
  padding-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .py--50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.pyi--50 {
  padding-top: 33.33333333px !important;
  padding-bottom: 33.33333333px !important;
}
@media (min-width: 992px) {
  .pyi--50 {
    padding-top: 50px!important;
    padding-bottom: 50px!important;
  }
}
.pya--50 {
  padding: 50px auto;
}
@media (min-width: 992px) {
  .pya--50 {
    padding: 50px auto;
  }
}
.pyia--50 {
  padding: 50px auto !important;
}
@media (min-width: 992px) {
  .pyia--50 {
    padding: 50px auto !important;
  }
}
.pl--50 {
  padding-left: 33.33333333px;
}
@media (min-width: 992px) {
  .pl--50 {
    padding-left: 50px;
  }
}
.pl--a {
  padding-left: auto;
}
.pli--50 {
  padding-left: 33.33333333px;
}
@media (min-width: 992px) {
  .pli--50 {
    padding-left: 50px;
  }
}
.pr--50 {
  padding-right: 33.33333333px;
}
@media (min-width: 992px) {
  .pr--50 {
    padding-right: 50px;
  }
}
.pr--a {
  padding-right: auto;
}
.pri--50 {
  padding-right: 33.33333333px;
}
@media (min-width: 992px) {
  .pri--50 {
    padding-right: 50px;
  }
}
.pt--50 {
  padding-top: 33.33333333px;
}
@media (min-width: 992px) {
  .pt--50 {
    padding-top: 50px;
  }
}
.pti--50 {
  padding-top: 33.33333333px;
}
@media (min-width: 992px) {
  .pti--50 {
    padding-top: 50px;
  }
}
.pb--50 {
  padding-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .pb--50 {
    padding-bottom: 50px;
  }
}
.pbi--50 {
  padding-bottom: 33.33333333px;
}
@media (min-width: 992px) {
  .pbi--50 {
    padding-bottom: 50px;
  }
}
.breadcrumbs {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .breadcrumbs {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .breadcrumbs {
    display: flex;
  }
}
.breadcrumbs--margin {
  margin-left: 15px;
  margin-right: 15px;
}
.breadcrumbs__item {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #6e6e6e;
  text-transform: capitalize;
}
.breadcrumbs__item:not(:first-child):before {
  content: '\2022';
  display: inline-block;
  position: relative;
  margin: 0 6px;
}
.breadcrumbs__item:not(:last-child):hover {
  color: #6e6e6e;
  text-decoration: underline;
}
.breadcrumbs__item:last-child {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
a.breadcrumbs__item {
  color: #6e6e6e;
}
a.breadcrumbs__item:focus,
a.breadcrumbs__item:active,
a.breadcrumbs__item:visited {
  color: #6e6e6e;
}
.simplebar-track.vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  transform-origin: center;
  transform: scaleY(0.92);
}
.simplebar-track.vertical .simplebar-scrollbar:before {
  background: #1185ed;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.simplebar-track.vertical .simplebar-scrollbar.visible:before {
  opacity: 1;
}
.simplebar-track.horizontal {
  display: none;
}
[data-simplebar-auto-hide='false'] .simplebar-track.vertical:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  background: #d2d2d2;
  left: 49%;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.input-select__dropdown .simplebar-track.vertical {
  transform-origin: bottom;
  right: 15px;
  transform: scaleY(0.88) translateY(-10px);
}
.input-select__dropdown .simplebar-track.horizontal {
  display: none;
}
.scrollbar__track {
  width: 1px !important;
  right: 15px;
  top: 10px;
  bottom: 10px;
  background: #d2d2d2;
}
.scrollbar__track--horizontal {
  display: none !important;
}
.scrollbar__thumb {
  width: 7px !important;
  margin-left: -3px;
  background: #1185ed;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  height: 20px;
  cursor: pointer;
}
.scrollbar__thumb--horizontal {
  display: none !important;
}
.cta {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #d2d2d2;
  z-index: 3;
}
.cta__container {
  max-width: 1270px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  padding: 10px;
}
@media (min-width: 992px) {
  .cta__container {
    flex-direction: row;
    padding: 10px 0;
  }
}
.cta__section {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.cta__section a {
  display: inline-block;
}
.cta__section:last-of-type {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .cta__section {
    width: 65%;
    text-align: right;
    margin-top: 0;
    margin-right: 15px;
  }
  .cta__section:last-of-type {
    width: 35%;
    text-align: left;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cta {
    background-color: rgba(245, 245, 245, 0.9);
  }
}
.cta--vwo .cta__section {
  width: 50%;
}
.card {
  background: #ffffff;
  border-radius: 4px;
  position: relative;
}
.card--border {
  border: 1px solid #d2d2d2;
}
.card--double-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card--double-bottom {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card--grey {
  background: #f5f5f5;
}
.card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card__header--trending-topics {
  display: flex;
  flex: 1 auto;
}
@media (min-width: 992px) {
  .card__header--trending-topics {
    white-space: nowrap;
  }
}
.card__content {
  position: static;
  z-index: -1;
}
.card__content--profile-completion {
  display: flex;
}
.card__slider {
  width: 100%;
  display: block;
}
.card__footer {
  position: static;
  z-index: 1;
  border-top: 1px solid #d2d2d2;
}
.card__footer--borderless {
  border-top: none;
}
.card-heading--loading {
  position: relative;
  color: #f5f5f5;
}
.card-heading--loading::after {
  content: '';
  position: absolute;
  top: 6px;
  right: -60px;
  width: 25px;
  height: 25px;
  background: url('/img/loaders/loader-dark.svg') no-repeat;
  background-size: contain;
}
.card .collection-link {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon--link {
  pointer-events: none;
}
.icon-12 {
  width: 12px;
  height: 12px;
}
.icon-14 {
  width: 14px;
  height: 14px;
}
.icon-16 {
  width: 16px;
  height: 16px;
}
.icon-18 {
  width: 18px;
  height: 18px;
}
.icon-24 {
  width: 24px;
  height: 24px;
}
.icon-36 {
  width: 36px;
  height: 36px;
}
.icon-40 {
  width: 40px;
  height: 40px;
}
.icon-42 {
  width: 42px;
  height: 42px;
}
.icon-48 {
  width: 48px;
  height: 48px;
}
.icon-62 {
  width: 62px;
  height: 62px;
}
.icon-72 {
  width: 72px;
  height: 72px;
}
.icon-80 {
  width: 80px;
  height: 80px;
}
.icon-100 {
  width: 100px;
  height: 100px;
}
.icon-128 {
  width: 128px;
  height: 128px;
}
.icon-h-16 {
  height: 16px;
}
.icon-h-18 {
  height: 18px;
}
.icon-h-22 {
  height: 22px;
}
.icon-w-12 {
  width: 12px;
}
.icon-w-128 {
  width: 128px;
}
.icon-giveaway {
  height: 60px;
}
@media (min-width: 768px) {
  .icon-giveaway {
    height: 86px;
    width: 104px;
  }
}
.svg-icon__share {
  width: 24px;
}
.svg-icon__share svg {
  width: 100%;
}
.progressbar {
  width: 100%;
  background: #d2d2d2;
  height: 7px;
  position: relative;
  border-radius: 4px;
}
.progressbar:before {
  content: ' ';
  width: var(--progressbar-width);
  height: 7px;
  background: #ff9100;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.progressbar--green:before {
  background: #09e85e;
}
.progressbar--blue:before {
  background: #1185ed;
}
.progressbar--animated:before {
  transition: width 1s ease-in;
}
.progressbar--completed:before {
  border-radius: 4px;
}
.progressbar--earnings {
  width: 70%;
}
.progressbar--widget {
  margin-left: -25px;
  margin-top: -25px;
  width: calc(100% + 50px);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.progressbar--widget:before {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.progressbar--rounded {
  height: 11px;
}
.progressbar--rounded:before {
  height: 7px;
  top: 2px;
  left: 2px;
  border-radius: 4px;
}
.progressbar--bg-lightgrey {
  background: #f5f5f5;
}
.progressbar--bg-white {
  background: #ffffff;
}
.explore {
  display: flex;
  width: 100%;
}
.explore__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}
@media (min-width: 992px) {
  .explore__item {
    padding: 30px 40px;
  }
}
.explore__item--horizontal {
  max-width: 307px;
}
.explore__item--vertical {
  max-width: 242px;
}
.explore__item--border fieldset {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-origin: border-box;
  border: 1px solid #e1e1e1;
  pointer-events: none;
}
.explore__item--border fieldset legend {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 10px;
  padding: 0 10px;
  color: #000;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.explore__item--exclusive fieldset {
  background-image: url('/img/search/exclusive_icon.png');
  background-position: 10px 10px;
  background-size: 21px 26px;
}
.explore__item--more-like-these {
  opacity: 0.15;
}
.explore__item--more-like-these a {
  pointer-events: none;
  z-index: 1;
}
.explore__item--more-like-these + a {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10%;
  text-align: center;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  outline: none;
}
@media (min-width: 992px) {
  .explore__item--more-like-these + a {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 992px) {
  .explore__item--more-like-these + a {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 768px) {
  .explore__item--more-like-these + a {
    flex-direction: row;
    white-space: pre-line;
    text-align: left;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .explore__item--more-like-these + a {
    top: 30px;
    bottom: 30px;
    left: 40px;
    right: 40px;
  }
}
.explore__item--more-like-these + a img {
  max-width: 6px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .explore__item--more-like-these + a img {
    max-width: 10px;
  }
}
@media (min-width: 768px) {
  .explore__item--more-like-these + a img {
    max-width: 15px;
    margin-bottom: 0;
    margin-left: 35px;
  }
}
.explore__image img {
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .explore__image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 992px) {
  .explore__image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.displate-table {
  width: 100%;
  border-collapse: collapse;
}
.displate-table thead {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  background: #f5f5f5;
}
.displate-table th,
.displate-table td {
  padding: 10px;
}
@media (min-width: 768px) {
  .displate-table th,
  .displate-table td {
    padding: 20px;
  }
}
.displate-table tr {
  border-bottom: 1px solid #d2d2d2;
}
.displate-table tr.no-border {
  border-bottom: none;
}
.displate-table tfoot td {
  padding: 20px 0;
}
.displate-table--subtable {
  border-top: 1px solid #d2d2d2;
}
.displate-table--subtable tr {
  border-top: 1px solid #d2d2d2;
  border-bottom: none;
  background: #f5f5f5;
}
.displate-table--subtable td {
  width: 20%;
  padding: 10px 20px;
  border-right: 1px solid #d2d2d2;
}
@media (min-width: 768px) {
  .displate-table--subtable td {
    padding: 22px 31px;
  }
  .displate-table--subtable td:first-of-type {
    padding-left: 48px;
  }
}
.displate-table--subtable td:last-of-type {
  border-right: none;
}
@media (min-width: 768px) {
  .displate-table--subtable th {
    padding: 10px 0 10px 48px;
  }
}
@media (min-width: 992px) {
  .displate-table--expandable {
    overflow: hidden !important;
  }
}
.displate-table--expandable .rt-th:not(.rt-resizable-header) + .rt-resizable-header {
  margin-left: -61px;
}
.displate-table--expandable .rt-th:not(.rt-resizable-header) + .rt-resizable-header .rt-resizable-header-content {
  padding-left: 15px;
}
@media (min-width: 768px) {
  .displate-table--expandable .rt-th:not(.rt-resizable-header) + .rt-resizable-header .rt-resizable-header-content {
    padding-left: 0;
  }
}
.displate-table--expandable .expander-cell {
  cursor: pointer;
  padding-left: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.displate-table--capitalized .rt-td p::first-letter {
  text-transform: uppercase;
}
.displate-table--borderless .rt-table .rt-tbody .rt-td {
  border-right: none;
}
.displate-table--commission .rt-table .rt-td,
.displate-table--commission .rt-table .rt-th {
  display: flex;
  align-items: center;
  justify-content: center !important;
}
.displate-table--commission .rt-table .rt-thead .rt-th {
  padding: 15px 0;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.displate-table--sales-stats {
  font-size: 12px;
  width: 100%;
  border-left: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
}
@media (min-width: 768px) {
  .displate-table--sales-stats {
    font-size: 16px;
  }
  .displate-table--sales-stats .rt-thead .rt-resizable-header-content {
    overflow: visible !important;
    text-overflow: unset !important;
  }
}
.displate-table--fixed-height .rt-table .rt-td {
  height: 121px;
}
.displate-table--no-pagination .rt-tbody .rt-tr-group:last-child {
  border-bottom: 1px solid #d2d2d2 !important;
}
.displate-table__displate-preview {
  width: 55px;
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.displate-table__displate-preview--small {
  width: 32px;
}
.displate-table + .search-pagination {
  margin-top: 0 !important;
}
.ReactTable {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: auto;
}
.ReactTable * {
  box-sizing: border-box;
}
.ReactTable .rt-table {
  align-items: stretch;
  border-collapse: collapse;
  display: flex;
  flex-direction: column;
  flex: auto 1;
  width: 100%;
}
.ReactTable .rt-thead {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  user-select: none;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  background: #f5f5f5;
}
.ReactTable .rt-thead .rt-th {
  padding: 10px 20px;
  position: relative;
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 768px) {
  .ReactTable .rt-thead .rt-th {
    padding: 22px 31px;
  }
}
.ReactTable .rt-thead .rt-th:last-child {
  border-right: 0;
}
.ReactTable .rt-thead .rt-th:focus {
  outline: none;
}
.ReactTable .rt-thead .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 0 transparent;
  display: flex;
  line-height: normal;
  padding: 10px 20px;
  position: relative;
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 768px) {
  .ReactTable .rt-thead .rt-td {
    padding: 22px 31px;
  }
}
.ReactTable .rt-thead .rt-td:last-child {
  border-right: 0;
}
.ReactTable .rt-thead .rt-th.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-th.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6);
}
.ReactTable .rt-thead .rt-th.-cursor-pointer {
  cursor: pointer;
}
.ReactTable .rt-thead .rt-td.-cursor-pointer {
  cursor: pointer;
}
.ReactTable .rt-thead .rt-resizable-header {
  overflow: visible;
  border-right: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
}
.ReactTable .rt-thead .rt-resizable-header:last-child {
  overflow: hidden;
  border-right: none;
}
.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.ReactTable .rt-thead .rt-header-pivot {
  border-right-color: #d2d2d2;
}
.ReactTable .rt-thead .rt-header-pivot:after {
  border-color: #d2d2d2;
  border-left-color: #ffffff;
  border-width: 8px;
  border: solid transparent;
  content: ' ';
  height: 0;
  left: 100%;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0;
}
.ReactTable .rt-thead .rt-header-pivot:before {
  border-color: #d2d2d2;
  border-left-color: #d2d2d2;
  border-width: 10px;
  border: solid transparent;
  content: ' ';
  height: 0;
  left: 100%;
  margin-top: -10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 0;
}
.ReactTable .rt-thead.-headerGroups {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-thead.-filters input {
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #d2d2d2;
  font-size: inherit;
  font-weight: normal;
  outline: none;
  padding: 5px 7px;
}
.ReactTable .rt-thead.-filters select {
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: inherit;
  font-weight: normal;
  outline: none;
  padding: 5px 7px;
}
.ReactTable .rt-thead.-filters .rt-th {
  border-right: 1px solid #d2d2d2;
}
.ReactTable .rt-tbody {
  display: flex;
  flex-direction: column;
  flex: 1 auto;
}
.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: 1px solid #d2d2d2;
}
.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0;
}
.ReactTable .rt-tbody .rt-td {
  border-right: 1px solid #d2d2d2;
  justify-content: flex-end;
}
.ReactTable .rt-tbody .rt-td:last-child {
  border-right: 0;
}
.ReactTable .rt-tbody .rt-expandable {
  cursor: pointer;
  text-overflow: clip;
  width: 41.5% !important;
  flex: 1 auto !important;
  border-right: none;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.ReactTable .rt-tbody .rt-expandable ~ .rt-td {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.ReactTable .rt-tbody .rt-expandable + .rt-td {
  margin-left: -61px;
  justify-content: flex-start;
}
.ReactTable .rt-tr-group {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.ReactTable .rt-tr {
  display: inline-flex;
  flex: 1 0 auto;
}
.ReactTable .rt-th {
  flex: 1 0 0;
  overflow: hidden;
  padding: 10px 20px;
  text-overflow: ellipsis;
  transition-property: width, min-width, padding, opacity;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .ReactTable .rt-th {
    padding: 22px 31px;
  }
}
.ReactTable .rt-td {
  flex: 1 0 0;
  padding: 10px 20px;
  text-overflow: ellipsis;
  transition-property: width, min-width, padding, opacity;
  transition: 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .ReactTable .rt-td {
    padding: 22px 31px;
  }
}
.ReactTable .rt-th-hidden,
.ReactTable .rt-td-hidden {
  border: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  width: 0 !important;
}
.ReactTable .rt-expander {
  color: transparent;
  display: inline-block;
  position: relative;
  transition: 0.4s ease;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .ReactTable .rt-expander:after {
    content: '';
    background: url(/img/icons/dropdown-icon.png);
    background-repeat: no-repeat;
    cursor: pointer;
    height: 10px;
    width: 20px;
    position: absolute;
    top: 7px;
    transform: rotate(0);
    transition: 0.4s ease;
  }
}
.ReactTable .rt-expander.-open:after {
  transform: rotate(-180deg);
}
.ReactTable .rt-resizer {
  bottom: 0;
  cursor: col-resize;
  display: inline-block;
  position: absolute;
  right: -18px;
  top: 0;
  width: 36px;
  z-index: 10;
}
.ReactTable .rt-tfoot {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.ReactTable .rt-tfoot .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.ReactTable .rt-tfoot .rt-td:last-child {
  border-right: 0;
}
.ReactTable .-pagination {
  align-items: stretch;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px 7px 3px 7px;
  z-index: 1;
  border-radius: 4px;
}
.ReactTable .-pagination input {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: inherit;
  font-weight: normal;
  outline: none;
  padding: 5px 7px;
}
.ReactTable .-pagination select {
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: inherit;
  font-weight: normal;
  outline: none;
  padding: 5px 7px;
}
.ReactTable .-pagination .-btn {
  appearance: none;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 1em;
  outline: none;
  padding: 6px;
  transition: all 0.1s ease;
  width: 100%;
  background: #1185ed;
  color: #ffffff;
}
.ReactTable .-pagination .-btn:not([disabled]) hover {
  background-color: #0f76d4;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}
.ReactTable .-pagination .-btn[disabled] {
  background: #d2d2d2;
  color: #ffffff;
  box-shadow: none;
  pointer-events: none;
}
.ReactTable .-pagination .-previous {
  flex: 1;
  text-align: center;
}
.ReactTable .-pagination .-next {
  flex: 1;
  text-align: center;
}
.ReactTable .-pagination .-center {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1.5;
  justify-content: space-around;
  margin-bottom: 0;
  text-align: center;
}
.ReactTable .-pagination .-pageInfo {
  display: inline-block;
  margin: 3px 10px;
  white-space: nowrap;
}
.ReactTable .-pagination .-pageJump {
  display: inline-block;
}
.ReactTable .-pagination .-pageJump input {
  text-align: center;
}
.ReactTable .-pagination .-pageSizeOptions {
  margin: 3px 10px;
}
.ReactTable .rt-noData {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding: 22px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 1;
  margin-top: 32px;
  border-bottom: 1px solid #d2d2d2;
  text-align: center;
  margin-bottom: -30px;
}
@media (min-width: 768px) {
  .ReactTable .rt-noData {
    margin-bottom: -34px;
  }
}
.ReactTable .-loading {
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  z-index: -1;
}
.ReactTable .-loading.-active {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}
.ReactTable .rt-resizing .rt-th {
  cursor: col-resize;
  transition: none !important;
  user-select: none;
}
.ReactTable .rt-resizing .rt-td {
  cursor: col-resize;
  transition: none !important;
  user-select: none;
}
.ReactTable.-striped .rt-tr.-odd {
  background: rgba(0, 0, 0, 0.03);
}
.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow) hover {
  background: rgba(0, 0, 0, 0.05);
}
/*!
 * # Semantic UI 2.4.0 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
/*******************************
            Dropdown
*******************************/
.ui.dropdown {
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: none;
  text-align: left;
  -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*******************************
            Content
*******************************/
/*--------------
      Menu
---------------*/
.ui.dropdown .menu {
  cursor: auto;
  position: absolute;
  display: none;
  outline: none;
  top: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0em;
  padding: 0em 0em;
  background: #ffffff;
  font-size: 1em;
  text-shadow: none;
  text-align: left;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.28571429rem;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  z-index: 11;
  will-change: transform, opacity;
}
.ui.dropdown .menu > * {
  white-space: nowrap;
}
/*--------------
  Hidden Input
---------------*/
.ui.dropdown > input:not(.search):first-child,
.ui.dropdown > select {
  display: none !important;
}
/*--------------
 Dropdown Icon
---------------*/
.ui.dropdown > .dropdown.icon {
  position: relative;
  width: auto;
  font-size: 0.85714286em;
  margin: 0em 0em 0em 1em;
}
.ui.dropdown .menu > .item .dropdown.icon {
  width: auto;
  float: right;
  margin: 0em 0em 0em 1em;
}
.ui.dropdown .menu > .item .dropdown.icon + .text {
  margin-right: 1em;
}
/*--------------
      Text
---------------*/
.ui.dropdown > .text {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
}
/*--------------
    Menu Item
---------------*/
.ui.dropdown .menu > .item {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  height: auto;
  text-align: left;
  border-top: none;
  line-height: 1em;
  color: rgba(0, 0, 0, 0.87);
  padding: 0.78571429rem 1.14285714rem !important;
  font-size: 1rem;
  text-transform: none;
  font-weight: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-touch-callout: none;
}
.ui.dropdown .menu > .item:first-child {
  border-top-width: 0px;
}
/*--------------
  Floated Content
---------------*/
.ui.dropdown > .text > [class*='right floated'],
.ui.dropdown .menu .item > [class*='right floated'] {
  float: right !important;
  margin-right: 0em !important;
  margin-left: 1em !important;
}
.ui.dropdown > .text > [class*='left floated'],
.ui.dropdown .menu .item > [class*='left floated'] {
  float: left !important;
  margin-left: 0em !important;
  margin-right: 1em !important;
}
.ui.dropdown .menu .item > .icon.floated,
.ui.dropdown .menu .item > .flag.floated,
.ui.dropdown .menu .item > .image.floated,
.ui.dropdown .menu .item > img.floated {
  margin-top: 0em;
}
/*--------------
  Menu Divider
---------------*/
.ui.dropdown .menu > .header {
  margin: 1rem 0rem 0.75rem;
  padding: 0em 1.14285714rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 0.78571429em;
  font-weight: bold;
  text-transform: uppercase;
}
.ui.dropdown .menu > .divider {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
  height: 0em;
  margin: 0.5em 0em;
}
.ui.dropdown.dropdown .menu > .input {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.14285714rem 0.78571429rem;
  min-width: 10rem;
}
.ui.dropdown .menu > .header + .input {
  margin-top: 0em;
}
.ui.dropdown .menu > .input:not(.transparent) input {
  padding: 0.5em 1em;
}
.ui.dropdown .menu > .input:not(.transparent) .button,
.ui.dropdown .menu > .input:not(.transparent) .icon,
.ui.dropdown .menu > .input:not(.transparent) .label {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
/*-----------------
  Item Description
-------------------*/
.ui.dropdown > .text > .description,
.ui.dropdown .menu > .item > .description {
  float: right;
  margin: 0em 0em 0em 1em;
  color: rgba(0, 0, 0, 0.4);
}
/*-----------------
       Message
-------------------*/
.ui.dropdown .menu > .message {
  padding: 0.78571429rem 1.14285714rem;
  font-weight: normal;
}
.ui.dropdown .menu > .message:not(.ui) {
  color: rgba(0, 0, 0, 0.4);
}
/*--------------
    Sub Menu
---------------*/
.ui.dropdown .menu .menu {
  top: 0% !important;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em -0.5em !important;
  border-radius: 0.28571429rem !important;
  z-index: 21 !important;
}
/* Hide Arrow */
.ui.dropdown .menu .menu:after {
  display: none;
}
/*--------------
   Sub Elements
---------------*/
/* Icons / Flags / Labels / Image */
.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image {
  margin-top: 0em;
}
.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-top: 0em;
}
.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-left: 0em;
  float: none;
  margin-right: 0.78571429rem;
}
/*--------------
     Image
---------------*/
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  max-height: 2em;
}
/*******************************
            Coupling
*******************************/
/*--------------
      Menu
---------------*/
/* Remove Menu Item Divider */
.ui.dropdown .ui.menu > .item:before,
.ui.menu .ui.dropdown .menu > .item:before {
  display: none;
}
/* Prevent Menu Item Border */
.ui.menu .ui.dropdown .menu .active.item {
  border-left: none;
}
/* Automatically float dropdown menu right on last menu item */
.ui.menu .right.menu .dropdown:last-child .menu,
.ui.menu .right.dropdown.item .menu,
.ui.buttons > .ui.dropdown:last-child .menu {
  left: auto;
  right: 0em;
}
/*--------------
      Label
---------------*/
/* Dropdown Menu */
.ui.label.dropdown .menu {
  min-width: 100%;
}
/*--------------
     Button
---------------*/
/* No Margin On Icon Button */
.ui.dropdown.icon.button > .dropdown.icon {
  margin: 0em;
}
.ui.button.dropdown .menu {
  min-width: 100%;
}
/*******************************
              Types
*******************************/
/*--------------
    Selection
---------------*/
/* Displays like a select box */
.ui.selection.dropdown {
  cursor: pointer;
  word-wrap: break-word;
  line-height: 1em;
  white-space: normal;
  outline: 0;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  min-width: 14em;
  min-height: 2.71428571em;
  background: #ffffff;
  display: inline-block;
  padding: 0.78571429em 2.1em 0.78571429em 1em;
  color: rgba(0, 0, 0, 0.87);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.28571429rem;
  -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
}
.ui.selection.dropdown.visible,
.ui.selection.dropdown.active {
  z-index: 10;
}
select.ui.dropdown {
  height: 38px;
  padding: 0.5em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  visibility: visible;
}
.ui.selection.dropdown > .search.icon,
.ui.selection.dropdown > .delete.icon,
.ui.selection.dropdown > .dropdown.icon {
  cursor: pointer;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1.21428571em;
  top: 0.78571429em;
  right: 1em;
  z-index: 3;
  margin: -0.78571429em;
  padding: 0.91666667em;
  opacity: 0.8;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
/* Compact */
.ui.compact.selection.dropdown {
  min-width: 0px;
}
/*  Selection Menu */
.ui.selection.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  border-top-width: 0px !important;
  width: auto;
  outline: none;
  margin: 0px -1px;
  min-width: calc(100% + 2px);
  width: calc(100% + 2px);
  border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.ui.selection.dropdown .menu:after,
.ui.selection.dropdown .menu:before {
  display: none;
}
/*--------------
    Message
---------------*/
.ui.selection.dropdown .menu > .message {
  padding: 0.78571429rem 1.14285714rem;
}
@media only screen and (max-width: 767px) {
  .ui.selection.dropdown .menu {
    max-height: 8.01428571rem;
  }
}
@media only screen and (min-width: 768px) {
  .ui.selection.dropdown .menu {
    max-height: 10.68571429rem;
  }
}
@media only screen and (min-width: 992px) {
  .ui.selection.dropdown .menu {
    max-height: 16.02857143rem;
  }
}
@media only screen and (min-width: 1920px) {
  .ui.selection.dropdown .menu {
    max-height: 21.37142857rem;
  }
}
/* Menu Item */
.ui.selection.dropdown .menu > .item {
  border-top: 1px solid #fafafa;
  padding: 0.78571429rem 1.14285714rem !important;
  white-space: normal;
  word-wrap: normal;
}
/* User Item */
.ui.selection.dropdown .menu > .hidden.addition.item {
  display: none;
}
/* Hover */
.ui.selection.dropdown:hover {
  border-color: rgba(34, 36, 38, 0.35);
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* Active */
.ui.selection.active.dropdown {
  border-color: #96c8da;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
}
.ui.selection.active.dropdown .menu {
  border-color: #96c8da;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
}
/* Focus */
.ui.selection.dropdown:focus {
  border-color: #96c8da;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.selection.dropdown:focus .menu {
  border-color: #96c8da;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
}
/* Visible */
.ui.selection.visible.dropdown > .text:not(.default) {
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
}
/* Visible Hover */
.ui.selection.active.dropdown:hover {
  border-color: #96c8da;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
}
.ui.selection.active.dropdown:hover .menu {
  border-color: #96c8da;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
}
/* Dropdown Icon */
.ui.active.selection.dropdown > .dropdown.icon,
.ui.visible.selection.dropdown > .dropdown.icon {
  opacity: '';
  z-index: 3;
}
/* Connecting Border */
.ui.active.selection.dropdown {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}
/* Empty Connecting Border */
.ui.active.empty.selection.dropdown {
  border-radius: 0.28571429rem !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.ui.active.empty.selection.dropdown .menu {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
/*--------------
   Searchable
---------------*/
/* Search Selection */
.ui.search.dropdown {
  min-width: '';
}
/* Search Dropdown */
.ui.search.dropdown > input.search {
  background: none transparent !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  cursor: text;
  top: 0em;
  left: 1px;
  width: 100%;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  padding: inherit;
}
/* Text Layering */
.ui.search.dropdown > input.search {
  position: absolute;
  z-index: 2;
}
.ui.search.dropdown > .text {
  cursor: text;
  position: relative;
  left: 1px;
  z-index: 3;
}
/* Search Selection */
.ui.search.selection.dropdown > input.search {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
}
/* Used to size multi select input to character width */
.ui.search.selection.dropdown > span.sizer {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
  display: none;
  white-space: pre;
}
/* Active/Visible Search */
.ui.search.dropdown.active > input.search,
.ui.search.dropdown.visible > input.search {
  cursor: auto;
}
.ui.search.dropdown.active > .text,
.ui.search.dropdown.visible > .text {
  pointer-events: none;
}
/* Filtered Text */
.ui.active.search.dropdown input.search:focus + .text .icon,
.ui.active.search.dropdown input.search:focus + .text .flag {
  opacity: 0.45;
}
.ui.active.search.dropdown input.search:focus + .text {
  color: rgba(115, 115, 115, 0.87) !important;
}
/* Search Menu */
.ui.search.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 767px) {
  .ui.search.dropdown .menu {
    max-height: 8.01428571rem;
  }
}
@media only screen and (min-width: 768px) {
  .ui.search.dropdown .menu {
    max-height: 10.68571429rem;
  }
}
@media only screen and (min-width: 992px) {
  .ui.search.dropdown .menu {
    max-height: 16.02857143rem;
  }
}
@media only screen and (min-width: 1920px) {
  .ui.search.dropdown .menu {
    max-height: 21.37142857rem;
  }
}
/*--------------
    Multiple
---------------*/
/* Multiple Selection */
.ui.multiple.dropdown {
  padding: 0.22619048em 2.1em 0.22619048em 0.35714286em;
}
.ui.multiple.dropdown .menu {
  cursor: auto;
}
/* Multiple Search Selection */
.ui.multiple.search.dropdown,
.ui.multiple.search.dropdown > input.search {
  cursor: text;
}
/* Selection Label */
.ui.multiple.dropdown > .label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  font-size: 1em;
  padding: 0.35714286em 0.78571429em;
  margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
  box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
}
/* Dropdown Icon */
.ui.multiple.dropdown .dropdown.icon {
  margin: '';
  padding: '';
}
/* Text */
.ui.multiple.dropdown > .text {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em;
}
.ui.multiple.dropdown > .label ~ input.search {
  margin-left: 0.14285714em !important;
}
.ui.multiple.dropdown > .label ~ .text {
  display: none;
}
/*-----------------
  Multiple Search
-----------------*/
/* Prompt Text */
.ui.multiple.search.dropdown > .text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em;
}
.ui.multiple.search.dropdown > .label ~ .text {
  display: none;
}
/* Search */
.ui.multiple.search.dropdown > input.search {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  width: 2.2em;
  line-height: 1.21428571em;
}
/*--------------
     Inline
---------------*/
.ui.inline.dropdown {
  cursor: pointer;
  display: inline-block;
  color: inherit;
}
.ui.inline.dropdown .dropdown.icon {
  margin: 0em 0.21428571em 0em 0.21428571em;
  vertical-align: baseline;
}
.ui.inline.dropdown > .text {
  font-weight: bold;
}
.ui.inline.dropdown .menu {
  cursor: auto;
  margin-top: 0.21428571em;
  border-radius: 0.28571429rem;
}
/*******************************
            States
*******************************/
/*--------------------
        Active
----------------------*/
/* Menu Item Active */
.ui.dropdown .menu .active.item {
  background: transparent;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 12;
}
/*--------------------
        Hover
----------------------*/
/* Menu Item Hover */
.ui.dropdown .menu > .item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95);
  z-index: 13;
}
/*--------------------
       Loading
---------------------*/
.ui.loading.dropdown > i.icon {
  height: 1em !important;
}
.ui.loading.selection.dropdown > i.icon {
  padding: 1.5em 1.28571429em !important;
}
.ui.loading.dropdown > i.icon:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.1);
}
.ui.loading.dropdown > i.icon:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-box-shadow: 0px 0px 0px 1px transparent;
  box-shadow: 0px 0px 0px 1px transparent;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-animation: dropdown-spin 0.6s linear;
  animation: dropdown-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 transparent transparent;
  border-style: solid;
  border-width: 0.2em;
}
/* Coupling */
.ui.loading.dropdown.button > i.icon:before,
.ui.loading.dropdown.button > i.icon:after {
  display: none;
}
@-webkit-keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*--------------------
     Default Text
----------------------*/
.ui.dropdown:not(.button) > .default.text,
.ui.default.dropdown:not(.button) > .text {
  color: rgba(191, 191, 191, 0.87);
}
.ui.dropdown:not(.button) > input:focus ~ .default.text,
.ui.default.dropdown:not(.button) > input:focus ~ .text {
  color: rgba(115, 115, 115, 0.87);
}
/*--------------------
        Loading
----------------------*/
.ui.loading.dropdown > .text {
  -webkit-transition: none;
  transition: none;
}
/* Used To Check Position */
.ui.dropdown .loading.menu {
  display: block;
  visibility: hidden;
  z-index: -1;
}
.ui.dropdown > .loading.menu {
  left: 0px !important;
  right: auto !important;
}
.ui.dropdown > .menu .loading.menu {
  left: 100% !important;
  right: auto !important;
}
/*--------------------
    Keyboard Select
----------------------*/
/* Selected Item */
.ui.dropdown.selected,
.ui.dropdown .menu .selected.item {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.95);
}
/*--------------------
    Search Filtered
----------------------*/
/* Filtered Item */
.ui.dropdown > .filtered.text {
  visibility: hidden;
}
.ui.dropdown .filtered.item {
  display: none !important;
}
/*--------------------
        Error
----------------------*/
.ui.dropdown.error,
.ui.dropdown.error > .text,
.ui.dropdown.error > .default.text {
  color: #9f3a38;
}
.ui.selection.dropdown.error {
  background: #fff6f6;
  border-color: #e0b4b4;
}
.ui.selection.dropdown.error:hover {
  border-color: #e0b4b4;
}
.ui.dropdown.error > .menu,
.ui.dropdown.error > .menu .menu {
  border-color: #e0b4b4;
}
.ui.dropdown.error > .menu > .item {
  color: #9f3a38;
}
.ui.multiple.selection.error.dropdown > .label {
  border-color: #e0b4b4;
}
/* Item Hover */
.ui.dropdown.error > .menu > .item:hover {
  background-color: #fff2f2;
}
/* Item Active */
.ui.dropdown.error > .menu .active.item {
  background-color: #fdcfcf;
}
/*--------------------
        Clear
----------------------*/
.ui.dropdown > .clear.dropdown.icon {
  opacity: 0.8;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.ui.dropdown > .clear.dropdown.icon:hover {
  opacity: 1;
}
/*--------------------
        Disabled
----------------------*/
/* Disabled */
.ui.disabled.dropdown,
.ui.dropdown .menu > .disabled.item {
  cursor: default;
  pointer-events: none;
  opacity: 0.45;
}
/*******************************
           Variations
*******************************/
/*--------------
    Direction
---------------*/
/* Flyout Direction */
.ui.dropdown .menu {
  left: 0px;
}
/* Default Side (Right) */
.ui.dropdown .right.menu > .menu,
.ui.dropdown .menu .right.menu {
  left: 100% !important;
  right: auto !important;
  border-radius: 0.28571429rem !important;
}
/* Leftward Opening Menu */
.ui.dropdown > .left.menu {
  left: auto !important;
  right: 0px !important;
}
.ui.dropdown > .left.menu .menu,
.ui.dropdown .menu .left.menu {
  left: auto;
  right: 100%;
  margin: 0em -0.5em 0em 0em !important;
  border-radius: 0.28571429rem !important;
}
.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0em 0em 0em;
}
.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0em 0em 0em;
}
.ui.dropdown .item .left.dropdown.icon + .text,
.ui.dropdown .left.menu .item .dropdown.icon + .text {
  margin-left: 1em;
  margin-right: 0em;
}
/*--------------
     Upward
---------------*/
/* Upward Main Menu */
.ui.upward.dropdown > .menu {
  top: auto;
  bottom: 100%;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0.28571429rem 0.28571429rem 0em 0em;
}
/* Upward Sub Menu */
.ui.dropdown .upward.menu {
  top: auto !important;
  bottom: 0 !important;
}
/* Active Upward */
.ui.simple.upward.active.dropdown,
.ui.simple.upward.dropdown:hover {
  border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
}
.ui.upward.dropdown.button:not(.pointing):not(.floating).active {
  border-radius: 0.28571429rem 0.28571429rem 0em 0em;
}
/* Selection */
.ui.upward.selection.dropdown .menu {
  border-top-width: 1px !important;
  border-bottom-width: 0px !important;
  -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
}
.ui.upward.selection.dropdown:hover {
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
}
/* Active Upward */
.ui.active.upward.selection.dropdown {
  border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
}
/* Visible Upward */
.ui.upward.selection.dropdown.visible {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
}
/* Visible Hover Upward */
.ui.upward.active.selection.dropdown:hover {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
}
.ui.upward.active.selection.dropdown:hover .menu {
  -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
}
/*--------------
     Simple
---------------*/
/*  Selection Menu */
.ui.scrolling.dropdown .menu,
.ui.dropdown .scrolling.menu {
  overflow-x: hidden;
  overflow-y: auto;
}
.ui.scrolling.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  min-width: 100% !important;
  width: auto !important;
}
.ui.dropdown .scrolling.menu {
  position: static;
  overflow-y: auto;
  border: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  min-width: 100% !important;
  width: auto !important;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
  border-top: none;
}
.ui.scrolling.dropdown .menu .item:first-child,
.ui.dropdown .scrolling.menu .item:first-child {
  border-top: none;
}
.ui.dropdown > .animating.menu .scrolling.menu,
.ui.dropdown > .visible.menu .scrolling.menu {
  display: block;
}
/* Scrollbar in IE */
@media all and (-ms-high-contrast: none) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    min-width: calc(100% - 17px);
  }
}
@media only screen and (max-width: 767px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 10.28571429rem;
  }
}
@media only screen and (min-width: 768px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 15.42857143rem;
  }
}
@media only screen and (min-width: 992px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem;
  }
}
@media only screen and (min-width: 1920px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem;
  }
}
/*--------------
     Simple
---------------*/
/* Displays without javascript */
.ui.simple.dropdown .menu:before,
.ui.simple.dropdown .menu:after {
  display: none;
}
.ui.simple.dropdown .menu {
  position: absolute;
  display: block;
  overflow: hidden;
  top: -9999px !important;
  opacity: 0;
  width: 0;
  height: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.ui.simple.active.dropdown,
.ui.simple.dropdown:hover {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}
.ui.simple.active.dropdown > .menu,
.ui.simple.dropdown:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 100% !important;
  opacity: 1;
}
.ui.simple.dropdown > .menu > .item:active > .menu,
.ui.simple.dropdown:hover > .menu > .item:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 0% !important;
  left: 100% !important;
  opacity: 1;
}
.ui.simple.disabled.dropdown:hover .menu {
  display: none;
  height: 0px;
  width: 0px;
  overflow: hidden;
}
/* Visible */
.ui.simple.visible.dropdown > .menu {
  display: block;
}
/*--------------
      Fluid
---------------*/
.ui.fluid.dropdown {
  display: block;
  width: 100%;
  min-width: 0em;
}
.ui.fluid.dropdown > .dropdown.icon {
  float: right;
}
/*--------------
    Floating
---------------*/
.ui.floating.dropdown .menu {
  left: 0;
  right: auto;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
  box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
  border-radius: 0.28571429rem !important;
}
.ui.floating.dropdown > .menu {
  margin-top: 0.5em !important;
  border-radius: 0.28571429rem !important;
}
/*--------------
     Pointing
---------------*/
.ui.pointing.dropdown > .menu {
  top: 100%;
  margin-top: 0.78571429rem;
  border-radius: 0.28571429rem;
}
.ui.pointing.dropdown > .menu:after {
  display: block;
  position: absolute;
  pointer-events: none;
  content: '';
  visibility: visible;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
  background: #ffffff;
  z-index: 2;
}
.ui.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 50%;
  margin: 0em 0em 0em -0.25em;
}
/* Top Left Pointing */
.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em;
}
.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em;
}
.ui.top.left.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 1em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Top Right Pointing */
.ui.top.right.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  right: 0%;
  left: auto;
  margin: 1em 0em 0em;
}
.ui.top.pointing.dropdown > .left.menu:after,
.ui.top.right.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: auto !important;
  right: 1em !important;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Left Pointing */
.ui.left.pointing.dropdown > .menu {
  top: 0%;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em 1em;
}
.ui.left.pointing.dropdown > .menu:after {
  top: 1em;
  left: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
  left: auto !important;
  right: 100% !important;
  margin: 0em 1em 0em 0em;
}
.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Right Pointing */
.ui.right.pointing.dropdown > .menu {
  top: 0%;
  left: auto;
  right: 100%;
  margin: 0em 1em 0em 0em;
}
.ui.right.pointing.dropdown > .menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Bottom Pointing */
.ui.bottom.pointing.dropdown > .menu {
  top: auto;
  bottom: 100%;
  left: 0%;
  right: auto;
  margin: 0em 0em 1em;
}
.ui.bottom.pointing.dropdown > .menu:after {
  top: auto;
  bottom: -0.25em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* Reverse Sub-Menu Direction */
.ui.bottom.pointing.dropdown > .menu .menu {
  top: auto !important;
  bottom: 0px !important;
}
/* Bottom Left */
.ui.bottom.left.pointing.dropdown > .menu {
  left: 0%;
  right: auto;
}
.ui.bottom.left.pointing.dropdown > .menu:after {
  left: 1em;
  right: auto;
}
/* Bottom Right */
.ui.bottom.right.pointing.dropdown > .menu {
  right: 0%;
  left: auto;
}
.ui.bottom.right.pointing.dropdown > .menu:after {
  left: auto;
  right: 1em;
}
/* Upward pointing */
.ui.pointing.upward.dropdown .menu,
.ui.top.pointing.upward.dropdown .menu {
  top: auto !important;
  bottom: 100% !important;
  margin: 0em 0em 0.78571429rem;
  border-radius: 0.28571429rem;
}
.ui.pointing.upward.dropdown .menu:after,
.ui.top.pointing.upward.dropdown .menu:after {
  top: 100% !important;
  bottom: auto !important;
  -webkit-box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15);
  box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15);
  margin: -0.25em 0em 0em;
}
/* Right Pointing Upward */
.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 1em 0em 0em;
}
.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 1em 0em;
  -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
}
/* Left Pointing Upward */
.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 0em 1em;
}
.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 1em 0em;
  -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
}
/*******************************
         Theme Overrides
*******************************/
/* Dropdown Carets */
@font-face {
  font-family: 'Dropdown';
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff');
  font-weight: normal;
  font-style: normal;
}
.ui.dropdown > .dropdown.icon {
  font-family: 'Dropdown';
  line-height: 1;
  height: 1em;
  width: 1.23em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-weight: normal;
  font-style: normal;
  text-align: center;
}
.ui.dropdown > .dropdown.icon {
  width: auto;
}
.ui.dropdown > .dropdown.icon:before {
  content: '\f0d7';
}
/* Sub Menu */
.ui.dropdown .menu .item .dropdown.icon:before {
  content: '\f0da' /*rtl:'\f0d9'*/;
}
.ui.dropdown .item .left.dropdown.icon:before,
.ui.dropdown .left.menu .item .dropdown.icon:before {
  content: '\f0d9' /*rtl:"\f0da"*/;
}
/* Vertical Menu Dropdown */
.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
  content: '\f0da' /*rtl:"\f0d9"*/;
}
.ui.dropdown > .clear.icon:before {
  content: '\f00d';
}
/* Icons for Reference (Subsetted in 2.4.0)
  .dropdown.down:before { content: "\f0d7"; }
  .dropdown.up:before { content: "\f0d8"; }
  .dropdown.left:before { content: "\f0d9"; }
  .dropdown.right:before { content: "\f0da"; }
  .dropdown.close:before { content: "\f00d"; }
*/
/*******************************
        User Overrides
*******************************/
@keyframes pulsometer {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(210, 210, 210, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(210, 210, 210, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(210, 210, 210, 0);
  }
}
.editions {
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  display: flex;
  padding: 12px 15px 10px;
  margin: 0 -15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom: 1px solid #d2d2d2;
  background-color: #f5f5f5;
}
.editions__pulsometer {
  margin-top: 15px;
  position: relative;
  padding-left: 30px;
}
.editions__pulsometer:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  transform: scale(1);
  background: #09e85e;
  border: 3px solid white;
  box-shadow: 0 0 0 0 #d2d2d2;
  animation: pulsometer 2s infinite;
}
@media (min-width: 992px) {
  .editions__pulsometer:after {
    width: 15px;
    height: 15px;
  }
}
.editions__pulsometer--box {
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 10px 10px 10px 40px;
}
.editions__pulsometer--box .link {
  padding: 0 2px;
}
.editions__pulsometer--box:after {
  top: 7px;
}
.editions__pulsometer--product {
  margin-right: 10px;
}
.editions__pulsometer--product p {
  font-size: 14px;
}
.editions__pulsometer--product:after {
  top: 1px;
  left: 0;
}
.editions__pulsometer--landing {
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 10px 10px 10px 30px;
}
.editions__pulsometer--landing:after {
  left: 5px;
  top: 10px;
}
.editions__pulsometer--orange:after {
  background: #ff9100;
}
.editions__pulsometer--grey .link {
  padding: 0 2px;
}
.editions__pulsometer--grey:after {
  background: #d2d2d2;
  border: 3px solid #d2d2d2;
  top: 0;
  animation: unset;
}
@media (min-width: 992px) {
  .editions__pulsometer--grey:after {
    top: 8px;
  }
}
.editions__pulsometer--red:after {
  background: #ff1744;
}
.editions__pulsometer--soldout {
  padding: 10px;
  width: 100%;
  margin-right: 0;
}
.editions__pulsometer--soldout + div {
  position: absolute;
  right: 15px;
}
@media (min-width: 992px) {
  .editions__pulsometer--soldout {
    width: initial;
  }
}
.editions__pulsometer--soldout p {
  width: 100%;
  text-align: center;
}
.editions__pulsometer--soldout span.text--bold {
  color: #ff1744;
}
.editions__pulsometer--soldout:after {
  content: none;
}
.editions__pulsometer--soldout + object {
  display: none;
}
@media (min-width: 992px) {
  .editions__pulsometer--soldout + object {
    display: block;
  }
}
.editions__pulsometer.editions__pulsometer--cart {
  margin-top: 0;
  padding-left: 24px;
  margin-bottom: 8px;
}
.editions__pulsometer.editions__pulsometer--cart::after {
  top: -2.5px;
  left: 0;
  margin-left: 0;
}
.tile-link {
  display: flex;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  position: relative;
}
.tile-link * {
  pointer-events: none;
}
.tile-link p {
  word-break: break-word;
}
@supports (hyphens: auto) {
  .tile-link p {
    hyphens: auto;
  }
}
@media (min-width: 576px) {
  .tile-link p {
    font-size: initial;
  }
}
.tile-link img.error {
  display: none;
}
.tile-link__image {
  padding: 2px;
  width: auto;
  margin-right: 15px;
}
.tile-link__image img {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  height: 100%;
}
.tile-link__arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.tile-link--menu .tile-link__image {
  margin-right: 0;
  flex-shrink: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider:before {
  background-color: #1185ed;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
}
.switch .slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background-color: #6e6e6e;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s cubic-bezier(0.26, 0.22, 0, 0.87);
  transition: 0.3s cubic-bezier(0.26, 0.22, 0, 0.87);
}
.switch .slider.round {
  border-radius: 24px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.missing-image-placeholder {
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.missing-image-placeholder svg {
  width: 90%;
  margin: 5% 0 5% 0;
}
.missing-image-placeholder span {
  display: block;
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #8d9ba1;
}
.plate-hover {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  height: auto;
  padding: 8px 4%;
  border-bottom-left-radius: 2%;
  border-bottom-right-radius: 2%;
  z-index: 10;
}
.plate-hover .plate-hover__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  z-index: 10;
  /* two, four items */
  /* three, five or more items */
}
.plate-hover .plate-hover__item p {
  font-size: 11px;
  margin-top: 5px;
  flex-basis: 100%;
  cursor: pointer;
}
.plate-hover .plate-hover__item img {
  max-height: 24px;
  cursor: pointer;
  object-fit: contain;
}
.plate-hover .plate-hover__item:first-child:nth-last-child(2),
.plate-hover .plate-hover__item:first-child:nth-last-child(2) ~ .plate-hover__item,
.plate-hover .plate-hover__item:first-child:nth-last-child(4),
.plate-hover .plate-hover__item:first-child:nth-last-child(4) ~ .plate-hover__item {
  width: 49%;
}
.plate-hover .plate-hover__item:first-child:nth-last-child(3),
.plate-hover .plate-hover__item:first-child:nth-last-child(3) ~ .plate-hover__item,
.plate-hover .plate-hover__item:first-child:nth-last-child(5),
.plate-hover .plate-hover__item:first-child:nth-last-child(5) ~ .plate-hover__item,
.plate-hover .plate-hover__item:first-child:nth-last-child(6),
.plate-hover .plate-hover__item:first-child:nth-last-child(6) ~ .plate-hover__item {
  width: 33.33333333%;
}
.plate-hover .plate-hover__item:hover,
.plate-hover .plate-hover__item.active {
  text-decoration: underline;
}
.tooltip {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  /* names come from the position of tooltip arrow */
}
.tooltip:not(.tooltip--loose) {
  max-height: 18px;
}
.tooltip:not(.tooltip--visible):hover .tooltip__text,
.tooltip:not(.tooltip--visible):focus .tooltip__text {
  opacity: 1;
  visibility: visible;
  display: block;
}
.tooltip--visible .tooltip__text {
  opacity: 1;
  visibility: visible;
  display: block;
}
.tooltip.tooltip--unset-height {
  max-height: none;
}
.tooltip__icon {
  cursor: pointer;
  padding: 10px;
  margin: -10px;
}
.tooltip__text {
  font-size: 12px;
  border-radius: 4px;
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #ffffff;
  z-index: 1001;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.2));
}
.tooltip__text a {
  color: #1185ed;
}
.tooltip__text a:hover {
  text-decoration: underline;
}
.tooltip__text--medium {
  width: 210px;
}
.tooltip__text:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transform-origin: center center;
  transform: rotate(45deg);
  position: absolute;
  z-index: -1;
}
.tooltip--left-top {
  align-items: flex-start;
}
.tooltip--left-top .tooltip__text {
  top: -15px;
  left: 35px;
}
.tooltip--left-top .tooltip__text:after {
  top: 15px;
  left: -5px;
}
.tooltip--left-center {
  align-items: center;
}
.tooltip--left-center .tooltip__text {
  left: 35px;
}
.tooltip--left-center .tooltip__text:after {
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
}
.tooltip--top-left {
  flex-direction: column;
  align-items: flex-start;
}
.tooltip--top-left .tooltip__text {
  top: 35px;
  left: -15px;
}
.tooltip--top-left .tooltip__text:after {
  top: -5px;
  left: 15px;
}
.tooltip--top-center {
  flex-direction: column;
  align-items: center;
}
.tooltip--top-center .tooltip__text {
  top: 35px;
}
.tooltip--top-center .tooltip__text:after {
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip--top-right {
  flex-direction: column;
  align-items: flex-end;
}
.tooltip--top-right .tooltip__text {
  top: 35px;
  right: -15px;
}
.tooltip--top-right .tooltip__text:after {
  top: -5px;
  right: 15px;
}
.tooltip--bottom-left {
  flex-direction: column-reverse;
  align-items: flex-start;
}
.tooltip--bottom-left .tooltip__text {
  bottom: 35px;
  left: -15px;
}
.tooltip--bottom-left .tooltip__text:after {
  bottom: -5px;
  left: 15px;
}
.tooltip--bottom-center {
  flex-direction: column-reverse;
  align-items: center;
}
.tooltip--bottom-center .tooltip__text {
  bottom: 35px;
}
.tooltip--bottom-center .tooltip__text:after {
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip--bottom-right {
  flex-direction: column-reverse;
  align-items: flex-end;
}
.tooltip--bottom-right .tooltip__text {
  bottom: 35px;
  right: -15px;
}
.tooltip--bottom-right .tooltip__text:after {
  bottom: -5px;
  right: 15px;
}
.collection-quality .tooltip.tooltip--bottom-right .tooltip__text,
.what-displate-wrapper .tooltip.tooltip--bottom-right .tooltip__text {
  bottom: 11px;
}
.collection-quality .tooltip.tooltip--top-right .tooltip__text,
.what-displate-wrapper .tooltip.tooltip--top-right .tooltip__text {
  top: 92px;
  right: -3px;
}
.tooltip__footer {
  border-top: 1px solid #d2d2d2;
  background: #f5f5f5;
  color: #6e6e6e;
}
.stop-scrolling {
  overflow: hidden;
}
.popup__trigger {
  cursor: pointer;
}
.popup__trigger img {
  height: 18px;
  width: 18px;
}
.popup__trigger object {
  width: 20px;
  height: 20px;
  margin-bottom: 1px;
  pointer-events: none;
}
.popup,
.popup-overlay {
  position: fixed;
  top: unset !important;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  -webkit-overflow-scrolling: touch;
  cursor: initial;
  pointer-events: none;
}
.popup--active,
.popup-overlay--active {
  display: flex;
  pointer-events: auto;
}
.popup--minor,
.popup-overlay--minor {
  background: transparent;
}
.popup--blurred > .popup__wrapper:after,
.popup-overlay--blurred > .popup__wrapper:after {
  visibility: visible;
  opacity: 1;
}
.popup--bottom,
.popup-overlay--bottom {
  position: fixed !important;
  align-items: flex-end;
  padding-bottom: 0;
}
.popup--bottom .popup__header,
.popup-overlay--bottom .popup__header {
  padding: 15px 0;
}
.popup--bottom .popup__wrapper,
.popup-overlay--bottom .popup__wrapper {
  bottom: -100%;
  height: auto;
  min-height: unset;
}
.popup--bottom .popup__wrapper .popup__content,
.popup-overlay--bottom .popup__wrapper .popup__content {
  padding-bottom: 0;
}
.popup--bottom.popup--active .popup__wrapper,
.popup-overlay--bottom.popup--active .popup__wrapper {
  bottom: 0;
}
.popup--edit-item .popup__content,
.popup-overlay--edit-item .popup__content {
  padding: 0 0 50px 0;
}
.popup--edit-item .popup--minor .popup__content,
.popup-overlay--edit-item .popup--minor .popup__content {
  padding: 0 40px 30px;
}
.popup--edit-item .popup__columns,
.popup-overlay--edit-item .popup__columns {
  position: relative;
  padding: 0 20px 20px;
}
@media (min-width: 768px) {
  .popup--edit-item .popup__columns,
  .popup-overlay--edit-item .popup__columns {
    padding: 0 40px 30px;
  }
}
.popup__go-back,
.popup-overlay__go-back {
  position: absolute;
  top: 35px;
  cursor: pointer;
}
.popup__go-back:focus,
.popup-overlay__go-back:focus {
  outline: none;
}
.popup__go-back img,
.popup-overlay__go-back img {
  pointer-events: none;
}
.popup__go-back + h4,
.popup-overlay__go-back + h4 {
  padding-left: 30px;
}
.popup__go-back + h4 + button + p,
.popup-overlay__go-back + h4 + button + p {
  padding-left: 30px;
}
.popup__wrapper,
.popup-overlay__wrapper {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  min-height: 100%;
  height: 100vh;
  width: 100vw;
  max-height: calc(100vh - 180px) !important;
  transition: all 0.3s ease;
  overflow-x: hidden;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .popup__wrapper,
  .popup-overlay__wrapper {
    min-height: 0;
    min-width: 500px;
    width: auto;
  }
}
@media (min-width: 992px) {
  .popup__wrapper,
  .popup-overlay__wrapper {
    max-height: 95vh !important;
  }
}
@media (min-width: 1200px) {
  .popup__wrapper,
  .popup-overlay__wrapper {
    max-width: 45%;
    max-height: 90vh !important;
  }
}
.popup__wrapper:after,
.popup-overlay__wrapper:after {
  content: '';
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(245, 245, 245, 0.9);
  transition: all 0.3s ease;
  z-index: 11;
}
.popup__wrapper--scrollable,
.popup-overlay__wrapper--scrollable {
  overflow-y: hidden;
}
.popup__wrapper--scrollable .popup__header,
.popup-overlay__wrapper--scrollable .popup__header {
  padding: 60px 20px 30px;
  margin: 0;
  border-bottom: 1px solid #d2d2d2;
}
.popup__wrapper--scrollable .popup__header--no-border,
.popup-overlay__wrapper--scrollable .popup__header--no-border {
  border-bottom: none;
}
@media (min-width: 768px) {
  .popup__wrapper--scrollable .popup__header,
  .popup-overlay__wrapper--scrollable .popup__header {
    padding: 30px 45px;
  }
}
.popup__wrapper--scrollable .popup__content,
.popup-overlay__wrapper--scrollable .popup__content {
  max-height: 100vh;
}
@media (min-width: 992px) {
  .popup__wrapper--scrollable .popup__content,
  .popup-overlay__wrapper--scrollable .popup__content {
    max-height: 78vh;
  }
}
.popup__wrapper--scrollable .popup__content .simplebar-content,
.popup-overlay__wrapper--scrollable .popup__content .simplebar-content {
  overflow-x: hidden;
}
.popup__wrapper--transparent,
.popup-overlay__wrapper--transparent {
  background: none;
  box-shadow: none;
}
.popup__wrapper--transparent .popup__header,
.popup-overlay__wrapper--transparent .popup__header {
  border-bottom: none;
}
.popup__wrapper--settings,
.popup-overlay__wrapper--settings {
  width: 100vw;
}
@media (min-width: 992px) {
  .popup__wrapper--settings,
  .popup-overlay__wrapper--settings {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .popup__wrapper--settings .popup__content,
  .popup-overlay__wrapper--settings .popup__content {
    padding: 30px 40px;
  }
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details,
  .popup-overlay__wrapper--update-payment-details {
    min-width: 675px;
  }
}
.popup__wrapper--update-payment-details .select-processor,
.popup-overlay__wrapper--update-payment-details .select-processor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details .select-processor,
  .popup-overlay__wrapper--update-payment-details .select-processor {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #f5f5f5;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
  }
}
.popup__wrapper--update-payment-details .select-processor[data-id='1'] .select-processor__section--cards img,
.popup-overlay__wrapper--update-payment-details .select-processor[data-id='1'] .select-processor__section--cards img {
  max-width: 160px;
}
.popup__wrapper--update-payment-details .select-processor[data-id='2'] .select-processor__section--cards img,
.popup-overlay__wrapper--update-payment-details .select-processor[data-id='2'] .select-processor__section--cards img {
  max-width: 120px;
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details .select-processor[data-id='1'] .select-processor__section--cards img,
  .popup-overlay__wrapper--update-payment-details .select-processor[data-id='1'] .select-processor__section--cards img,
  .popup__wrapper--update-payment-details .select-processor[data-id='2'] .select-processor__section--cards img,
  .popup-overlay__wrapper--update-payment-details .select-processor[data-id='2'] .select-processor__section--cards img {
    max-width: initial;
  }
}
.popup__wrapper--update-payment-details .select-processor > *,
.popup-overlay__wrapper--update-payment-details .select-processor > * {
  pointer-events: none;
}
.popup__wrapper--update-payment-details .select-processor__paypal-icon,
.popup-overlay__wrapper--update-payment-details .select-processor__paypal-icon {
  max-width: 60px;
}
.popup__wrapper--update-payment-details .select-processor__section,
.popup-overlay__wrapper--update-payment-details .select-processor__section {
  width: 100%;
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details .select-processor__section,
  .popup-overlay__wrapper--update-payment-details .select-processor__section {
    width: 50%;
  }
}
.popup__wrapper--update-payment-details .select-processor__section--cards,
.popup-overlay__wrapper--update-payment-details .select-processor__section--cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 40px;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details .select-processor__section--cards,
  .popup-overlay__wrapper--update-payment-details .select-processor__section--cards {
    justify-content: flex-end;
    padding-right: 40px;
    margin-top: 0;
  }
}
.popup__wrapper--update-payment-details .select-processor__section--cards .slide-up,
.popup-overlay__wrapper--update-payment-details .select-processor__section--cards .slide-up {
  position: absolute;
  top: -8px;
  right: 0;
}
@media (min-width: 992px) {
  .popup__wrapper--update-payment-details .select-processor__section--cards .slide-up,
  .popup-overlay__wrapper--update-payment-details .select-processor__section--cards .slide-up {
    top: 50%;
    transform: translateY(-50%);
  }
}
.popup__wrapper--update-payment-details .select-processor:hover .slide-up,
.popup-overlay__wrapper--update-payment-details .select-processor:hover .slide-up {
  animation: jump 1s;
}
.popup__wrapper--full-width,
.popup-overlay__wrapper--full-width {
  max-width: 100%;
}
.popup__wrapper--added-to-cart,
.popup-overlay__wrapper--added-to-cart {
  width: 100vw;
}
.popup__wrapper--added-to-cart img,
.popup-overlay__wrapper--added-to-cart img {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.popup__wrapper--access-points,
.popup-overlay__wrapper--access-points {
  width: 70vw;
  height: 50vh;
  max-width: unset;
  max-height: unset;
}
@media (max-width: 767px) {
  .popup__wrapper--access-points,
  .popup-overlay__wrapper--access-points {
    width: 100vw;
    height: 100vh;
  }
}
.popup__wrapper--access-points .popup__content,
.popup-overlay__wrapper--access-points .popup__content {
  position: relative;
}
@media (min-width: 1200px) {
  .popup__wrapper--auto,
  .popup-overlay__wrapper--auto {
    width: auto;
    max-width: 100%;
  }
}
.popup__header,
.popup-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  margin: 0 20px 15px;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .popup__header,
  .popup-overlay__header {
    padding: 30px 0;
    margin: 0 40px;
  }
}
.popup__header--no-border,
.popup-overlay__header--no-border {
  border-bottom: none;
  margin: 0 20px;
}
@media (min-width: 992px) {
  .popup__header--no-border,
  .popup-overlay__header--no-border {
    margin: 0 40px;
  }
}
.popup__header--with-description,
.popup-overlay__header--with-description {
  flex-wrap: wrap;
  align-items: flex-start;
}
.popup__header--with-description p,
.popup-overlay__header--with-description p {
  width: 100%;
}
.popup__header--center,
.popup-overlay__header--center {
  justify-content: center;
}
.popup__close,
.popup-overlay__close {
  content: '';
  flex-shrink: 0;
  margin-left: auto;
  width: 26px;
  height: 26px;
  background: transparent url('/img/icons/close-icon.png') center no-repeat;
  background-size: contain;
  border: none;
  outline: 0;
  z-index: 10;
  cursor: pointer;
}
.popup__close.simple,
.popup-overlay__close.simple {
  background: transparent url('/img/icons/close_icon.png') center no-repeat;
  width: 20px;
  height: 20px;
}
.popup__content,
.popup-overlay__content {
  position: relative;
  padding: 0 20px 20px;
}
.popup__content--gray,
.popup-overlay__content--gray {
  background-color: #f6f7f8;
}
.popup__content .slick-track,
.popup-overlay__content .slick-track {
  display: flex !important;
}
.popup__content .content-video,
.popup-overlay__content .content-video {
  position: relative;
}
.popup__content .content-video::after,
.popup-overlay__content .content-video::after {
  content: '';
  display: block;
  padding-bottom: 55%;
}
.popup__content .content-video .content-video__trigger,
.popup-overlay__content .content-video .content-video__trigger {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.popup__content .content-video .trigger--hidden,
.popup-overlay__content .content-video .trigger--hidden {
  display: none;
}
.popup__content .content-video div[data-vimeo-initialized='true'],
.popup-overlay__content .content-video div[data-vimeo-initialized='true'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup__content .content-video div[data-vimeo-initialized='true'] iframe,
.popup-overlay__content .content-video div[data-vimeo-initialized='true'] iframe {
  width: 100%;
  height: 100%;
}
.popup__content.content--full img,
.popup-overlay__content.content--full img {
  width: 100%;
}
@media (min-width: 768px) {
  .popup__content,
  .popup-overlay__content {
    padding: 0 40px 30px;
  }
}
.popup__content--video,
.popup-overlay__content--video {
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content--video .video-container,
.popup-overlay__content--video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.popup__content--video .video-container iframe,
.popup-overlay__content--video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup__content.content-frames .row,
.popup-overlay__content.content-frames .row {
  display: flex;
}
.popup__content.content-frames .row-text,
.popup-overlay__content.content-frames .row-text {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.popup__content.content-frames .row:not(:last-child),
.popup-overlay__content.content-frames .row:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .popup__content--size-picker,
  .popup-overlay__content--size-picker {
    width: 539px;
  }
}
.popup__footer,
.popup-overlay__footer {
  font-size: 14px;
  text-align: center;
  background-color: #f5f5f5;
  border-top: 1px solid #d2d2d2;
  width: 100%;
  line-height: 20px;
  padding: 5px 10px;
}
.popup__footer--no-border,
.popup-overlay__footer--no-border {
  border: none;
}
.popup__footer--buttons,
.popup-overlay__footer--buttons {
  background-color: #ffffff;
  display: flex;
  padding: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .popup__footer--buttons,
  .popup-overlay__footer--buttons {
    margin: 0 40px;
    padding: 30px 0;
  }
}
.popup__footer--buttons button:nth-child(odd),
.popup-overlay__footer--buttons button:nth-child(odd) {
  margin-right: 20px;
}
.popup__floater,
.popup-overlay__floater {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background: #ffffff;
  border-top: 1px solid #d2d2d2;
  min-height: 65px;
  transform: translate3d(0, 0, 0);
  z-index: 999;
}
@media (min-width: 768px) {
  .popup__floater,
  .popup-overlay__floater {
    position: relative;
    padding: 0;
    border-top: none;
    min-height: 50px;
  }
}
.popup__columns,
.popup-overlay__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.popup__columns--vcenter,
.popup-overlay__columns--vcenter {
  align-items: center;
}
.popup--context,
.popup-overlay--context {
  position: absolute;
  background: none;
  text-align: left;
}
.popup--checkout-us-address .address,
.popup-overlay--checkout-us-address .address {
  padding: 20px 20px 0;
}
.popup--checkout-us-address .address-title,
.popup-overlay--checkout-us-address .address-title {
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 16px;
  font-size: 18px;
}
.popup--checkout-us-address .address__data,
.popup-overlay--checkout-us-address .address__data {
  margin-bottom: 20px;
}
.popup--checkout-us-address table tr,
.popup-overlay--checkout-us-address table tr {
  display: flex;
  flex-direction: column;
}
.popup--checkout-us-address table tr td,
.popup-overlay--checkout-us-address table tr td {
  margin-bottom: 8px;
}
.popup--share-profile,
.popup-overlay--share-profile {
  top: -160px !important;
  height: 100% !important;
}
.popup .edit-profile__buttons .edit-profile__save,
.popup-overlay .edit-profile__buttons .edit-profile__save {
  margin-left: 10px;
}
.popup--share-profile .popup__header,
.popup-overlay--share-profile .popup__header,
.popup--share-artwork .popup__header,
.popup-overlay--share-artwork .popup__header,
.popup--share-collection .popup__header,
.popup-overlay--share-collection .popup__header {
  padding: 30px 0 0 0;
  align-items: flex-start;
}
.popup--share-profile .popup__wrapper,
.popup-overlay--share-profile .popup__wrapper,
.popup--share-artwork .popup__wrapper,
.popup-overlay--share-artwork .popup__wrapper,
.popup--share-collection .popup__wrapper,
.popup-overlay--share-collection .popup__wrapper {
  min-width: 400px;
}
.popup--share-profile img,
.popup-overlay--share-profile img,
.popup--share-artwork img,
.popup-overlay--share-artwork img,
.popup--share-collection img,
.popup-overlay--share-collection img {
  cursor: pointer;
}
.popup--share-profile input,
.popup-overlay--share-profile input,
.popup--share-artwork input,
.popup-overlay--share-artwork input,
.popup--share-collection input,
.popup-overlay--share-collection input {
  max-width: 80%;
}
@media (min-width: 992px) {
  .popup--share-profile h5,
  .popup-overlay--share-profile h5,
  .popup--share-artwork h5,
  .popup-overlay--share-artwork h5,
  .popup--share-collection h5,
  .popup-overlay--share-collection h5 {
    max-width: 80%;
  }
}
.popup--share-profile-collection.popup--context,
.popup-overlay--share-profile-collection.popup--context,
.popup--share-artwork-collection.popup--context,
.popup-overlay--share-artwork-collection.popup--context,
.popup--share-collection-collection.popup--context,
.popup-overlay--share-collection-collection.popup--context {
  left: -180px;
}
.popup--share-profile p,
.popup-overlay--share-profile p,
.popup--share-artwork p,
.popup-overlay--share-artwork p,
.popup--share-collection p,
.popup-overlay--share-collection p {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .popup--share-profile p,
  .popup-overlay--share-profile p,
  .popup--share-artwork p,
  .popup-overlay--share-artwork p,
  .popup--share-collection p,
  .popup-overlay--share-collection p {
    margin-bottom: 0;
  }
}
.popup--share-artwork,
.popup-overlay--share-artwork {
  height: auto;
  top: inherit;
  bottom: 35px;
}
.popup--displate-club,
.popup-overlay--displate-club {
  display: none;
}
.popup--displate-club.popup--active,
.popup-overlay--displate-club.popup--active {
  display: flex;
}
.popup--displate-club .popup__wrapper,
.popup-overlay--displate-club .popup__wrapper {
  max-width: 100%;
}
@media (min-width: 992px) {
  .popup--displate-club .popup__wrapper,
  .popup-overlay--displate-club .popup__wrapper {
    max-width: 90%;
  }
}
.popup--displate-club .popup__content,
.popup-overlay--displate-club .popup__content {
  padding: 0 0 125px;
}
@media (min-width: 1200px) {
  .popup--displate-club .popup__content,
  .popup-overlay--displate-club .popup__content {
    padding: 0 0 15px;
  }
}
.popup--displate-club .displate-club__header-container,
.popup-overlay--displate-club .displate-club__header-container {
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
@media (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: 992px) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    max-width: 100vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 40px;
  }
}
@media (min-width: 992px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 25;
    max-width: 1270px;
  }
}
@media (min-width: 992px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 25;
    max-width: 1270px;
  }
}
@media (min-width: 1200px) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    max-width: 100vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 75px;
  }
}
@media (min-width: 1200px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 60;
    max-width: 1270px;
  }
}
@media (min-width: 1200px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__header-container,
  .popup-overlay--displate-club .displate-club__header-container {
    padding: 0 60;
    max-width: 1270px;
  }
}
.popup--displate-club .displate-club__header-container:after,
.popup-overlay--displate-club .displate-club__header-container:after {
  content: '';
}
.popup--displate-club .displate-club__container,
.popup-overlay--displate-club .displate-club__container {
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
@media (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__container,
  .popup-overlay--displate-club .displate-club__container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__container,
  .popup-overlay--displate-club .displate-club__container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: 992px) {
  .popup--displate-club .displate-club__container,
  .popup-overlay--displate-club .displate-club__container {
    max-width: 100vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 40px;
  }
}
@media (min-width: 992px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__container,
  .popup-overlay--displate-club .displate-club__container {
    padding: 0 25;
    max-width: 1270px;
  }
}
@media (min-width: 992px) and (min-width: calc(1270px + 15px)) {
  .popup--displate-club .displate-club__container,
  .popup-overlay--displate-club .displate-club__container {
    padding: 0 25;
    max-width: 1270px;
  }
}
.popup--displate-club .icon-giveaway,
.popup-overlay--displate-club .icon-giveaway {
  height: 62px;
}
.popup--promotion,
.popup-overlay--promotion {
  height: auto;
}
.popup--promotion .popup__wrapper,
.popup-overlay--promotion .popup__wrapper {
  width: auto;
  max-width: 340px;
  min-width: auto;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .popup--promotion .popup__wrapper,
  .popup-overlay--promotion .popup__wrapper {
    width: 340px;
  }
}
.popup--promotion .popup__container,
.popup-overlay--promotion .popup__container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  width: auto;
  min-width: auto;
  max-width: 100%;
  position: relative;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .popup--promotion .popup__container,
  .popup-overlay--promotion .popup__container {
    flex-direction: row;
  }
}
.popup--promotion .popup__image,
.popup-overlay--promotion .popup__image {
  background: #ffffff;
  padding: 10px 10px 0 10px;
  width: auto;
  max-width: 340px;
  z-index: 1;
}
@media (min-width: 992px) {
  .popup--promotion .popup__image,
  .popup-overlay--promotion .popup__image {
    padding: 10px 0 10px 10px;
  }
}
.popup--promotion .popup__close,
.popup-overlay--promotion .popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.popup--promotion .popup__header,
.popup-overlay--promotion .popup__header {
  margin: 0 20px;
  padding: 20px 0;
}
.popup--promotion .popup__content,
.popup-overlay--promotion .popup__content {
  padding: 50px 30px 30px;
}
.popup--big-picture .popup__wrapper,
.popup-overlay--big-picture .popup__wrapper {
  padding-left: 340px;
  width: auto;
  max-width: none;
}
.popup--big-picture .popup__close,
.popup-overlay--big-picture .popup__close {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background-image: url(/img/icons/close-icon-white.png);
  background-size: 24px;
  background-position: center center;
  background-repeat: no-repeat;
}
.popup--big-picture .popup__content,
.popup-overlay--big-picture .popup__content {
  min-width: 340px;
}
.popup--big-picture .popup__displate,
.popup-overlay--big-picture .popup__displate {
  width: 300px;
  height: 420px;
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.35), inset -2px -2px 6px rgba(0, 0, 0, 0.35);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(-12deg);
  position: absolute;
  z-index: 1;
  left: 17px;
  top: -18px;
}
.popup--black .popup__wrapper,
.popup-overlay--black .popup__wrapper {
  background-color: #000;
  color: #ffffff;
  /* for promo popups */
}
.popup--black .popup__wrapper .heading-3,
.popup-overlay--black .popup__wrapper .heading-3,
.popup--black .popup__wrapper .heading-5,
.popup-overlay--black .popup__wrapper .heading-5,
.popup--black .popup__wrapper .text--darkgrey,
.popup-overlay--black .popup__wrapper .text--darkgrey {
  color: #ffffff;
}
.popup--black .popup__image,
.popup-overlay--black .popup__image {
  background: #000;
}
.popup--black .popup__close,
.popup-overlay--black .popup__close {
  background-image: url('/img/icons/close-icon-white.png');
}
.popup--promotion:not(.popup--black):not(.popup--big-picutre) .popup__expiry-date,
.popup-overlay--promotion:not(.popup--black):not(.popup--big-picutre) .popup__expiry-date {
  color: #6e6e6e;
}
.popup--open-shop,
.popup-overlay--open-shop {
  width: 100%;
  height: 100%;
}
.popup--open-shop .popup__wrapper,
.popup-overlay--open-shop .popup__wrapper {
  padding: 16px;
  max-width: 375px;
}
.popup--open-shop .popup__wrapper .logo,
.popup-overlay--open-shop .popup__wrapper .logo {
  display: flex;
  flex-direction: column;
  max-width: 129px;
  width: 100%;
  height: 46px;
}
.popup--open-shop .popup__wrapper .logo span,
.popup-overlay--open-shop .popup__wrapper .logo span {
  text-align: end;
  margin-top: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 8px;
  letter-spacing: 0.5px;
}
.popup--open-shop .popup__wrapper .logo:hover,
.popup-overlay--open-shop .popup__wrapper .logo:hover,
.popup--open-shop .popup__wrapper .logo:active,
.popup-overlay--open-shop .popup__wrapper .logo:active,
.popup--open-shop .popup__wrapper .logo:focus,
.popup-overlay--open-shop .popup__wrapper .logo:focus,
.popup--open-shop .popup__wrapper .logo:visited,
.popup-overlay--open-shop .popup__wrapper .logo:visited {
  text-decoration: none;
}
.popup--open-shop .popup__wrapper .open-shop-title,
.popup-overlay--open-shop .popup__wrapper .open-shop-title {
  padding: 32px 0;
  font-size: 24px;
  line-height: 36px;
}
.popup--open-shop .popup__content,
.popup-overlay--open-shop .popup__content {
  padding: 0;
}
.popup--open-shop .popup__content p,
.popup-overlay--open-shop .popup__content p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
}
.popup--open-shop .popup__content .artist-nick-input,
.popup-overlay--open-shop .popup__content .artist-nick-input {
  width: 100%;
  margin-top: 8px;
}
.popup--open-shop .popup__content .validation-hint,
.popup-overlay--open-shop .popup__content .validation-hint {
  font-size: 12px;
  line-height: 16px;
  color: #ff1744;
  margin-top: 8px;
  height: 16px;
}
.popup--open-shop .buttons__wrapper,
.popup-overlay--open-shop .buttons__wrapper {
  padding: 0 0 48px 0;
}
.popup--open-shop .buttons__wrapper button,
.popup-overlay--open-shop .buttons__wrapper button {
  margin-top: 12px;
}
.popup--open-shop .buttons__wrapper .button[disabled],
.popup-overlay--open-shop .buttons__wrapper .button[disabled] {
  opacity: 0.7;
  background: #1185ed;
  color: #ffffff;
}
.popup--open-shop .buttons__wrapper .loader-wrapper,
.popup-overlay--open-shop .buttons__wrapper .loader-wrapper {
  position: relative;
}
.popup--open-shop .buttons__wrapper .loader,
.popup-overlay--open-shop .buttons__wrapper .loader {
  width: 18px;
  left: 80px;
  z-index: 10;
}
.popup-overlay {
  align-items: flex-end !important;
}
@media (min-width: 992px) {
  .popup-overlay {
    align-items: center !important;
  }
}
.popup-content {
  margin: 0 auto !important;
}
@media (min-width: 768px) {
  .popup-content {
    margin: auto !important;
  }
}
@media (max-width: 768px) {
  .popup-content.popup-full-height-content {
    height: 100%;
  }
  .popup-content.popup-full-height-content .popup__header {
    position: fixed;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin: 0;
    background: white;
    z-index: 1;
    border-bottom: 1px solid #d2d2d2;
  }
  .popup-content.popup-full-height-content .popup__content {
    padding-top: 59px;
  }
  .popup-content.popup-full-height-content .popup__content > .menu__switcher-mobile {
    border-top: none;
  }
}
.popup__wrapper:not(.ambient-popup) {
  height: auto !important;
}
.popup__faq {
  width: 80%;
}
.popup__faq_images,
.popup__faq--images {
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: auto;
}
@media (max-width: 768px) {
  .popup__faq_images,
  .popup__faq--images {
    overflow-y: hidden;
  }
}
@media (min-width: 1200px) {
  .popup__faq_images,
  .popup__faq--images {
    width: 100%;
  }
}
.popup__faq_images_container,
.popup__faq--images_container,
.popup__faq_images-container,
.popup__faq--images-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px;
}
.popup__faq-image--commission {
  width: 150px;
  height: 120px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.popup__faq-image--commission .text,
.popup__faq-image--commission img {
  position: absolute;
}
.popup__faq-image--commission .text--small {
  top: 20px;
  left: 20px;
}
.popup__faq-image--commission .text--cyan {
  font-size: 60px;
  left: 20px;
  top: 50px;
}
.popup__faq-image--commission img {
  width: 70%;
  left: 15%;
  bottom: -53px;
}
.popup-overlay {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 10005;
  transform: translateZ(10px);
}
@keyframes jump {
  0% {
    right: 0;
  }
  35% {
    right: -10px;
  }
  55% {
    right: -5px;
  }
  85% {
    right: -10px;
  }
  100% {
    right: 0;
  }
}
@supports (-webkit-touch-callout: none) {
  .popup--bottom .trustpilot-wrapper {
    max-height: 220px;
  }
}
.displate-sliders,
.displate-sliders--custom {
  display: none;
  width: 100%;
  margin: 20px 0 20px -50px;
}
@media (min-width: 992px) {
  .displate-sliders,
  .displate-sliders--custom {
    width: 93%;
    margin: 40px 0;
  }
}
@media (min-width: 1350px) {
  .displate-sliders,
  .displate-sliders--custom {
    width: 100%;
    padding: 40px auto;
    margin-top: 20px;
  }
}
.displate-sliders .owl-stage-outer,
.displate-sliders--custom .owl-stage-outer {
  margin-right: -65px;
}
@media (min-width: 992px) {
  .displate-sliders .owl-stage-outer,
  .displate-sliders--custom .owl-stage-outer {
    margin-right: 0;
  }
}
.displate-sliders .owl-stage,
.displate-sliders--custom .owl-stage {
  padding-left: 15px;
}
@media (min-width: 992px) {
  .displate-sliders .owl-stage,
  .displate-sliders--custom .owl-stage {
    padding-left: 0;
  }
}
.displate-sliders .owl-item-shadow,
.displate-sliders--custom .owl-item-shadow {
  max-width: 178px;
}
@media (min-width: 992px) {
  .displate-sliders .owl-item-shadow,
  .displate-sliders--custom .owl-item-shadow {
    margin: 9px;
  }
}
.displate-sliders .owl-item-shadow img:not(.basket-info-image),
.displate-sliders--custom .owl-item-shadow img:not(.basket-info-image) {
  max-width: 100%;
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.displate-sliders .owl-item-shadow a,
.displate-sliders--custom .owl-item-shadow a {
  display: block;
}
.displate-sliders .owl-item-shadow a.brands p,
.displate-sliders--custom .owl-item-shadow a.brands p {
  margin-top: 15px;
  text-align: center;
  color: #1185ed;
}
.displate-sliders .owl-nav .owl-prev,
.displate-sliders--custom .owl-nav .owl-prev,
.displate-sliders .owl-nav--small .owl-prev,
.displate-sliders--custom .owl-nav--small .owl-prev,
.displate-sliders .owl-nav .owl-next,
.displate-sliders--custom .owl-nav .owl-next,
.displate-sliders .owl-nav--small .owl-next,
.displate-sliders--custom .owl-nav--small .owl-next {
  width: 17px;
  height: 32px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  visibility: visible;
  opacity: 1;
  background-size: contain;
  background-color: transparent;
  display: none;
}
.displate-sliders .owl-nav .owl-prev.disabled,
.displate-sliders--custom .owl-nav .owl-prev.disabled,
.displate-sliders .owl-nav--small .owl-prev.disabled,
.displate-sliders--custom .owl-nav--small .owl-prev.disabled,
.displate-sliders .owl-nav .owl-next.disabled,
.displate-sliders--custom .owl-nav .owl-next.disabled,
.displate-sliders .owl-nav--small .owl-next.disabled,
.displate-sliders--custom .owl-nav--small .owl-next.disabled {
  opacity: 0;
  visibility: hidden;
}
.displate-sliders .owl-nav .owl-prev span,
.displate-sliders--custom .owl-nav .owl-prev span,
.displate-sliders .owl-nav--small .owl-prev span,
.displate-sliders--custom .owl-nav--small .owl-prev span,
.displate-sliders .owl-nav .owl-next span,
.displate-sliders--custom .owl-nav .owl-next span,
.displate-sliders .owl-nav--small .owl-next span,
.displate-sliders--custom .owl-nav--small .owl-next span {
  display: none;
}
@media (min-width: 992px) {
  .displate-sliders .owl-nav .owl-prev,
  .displate-sliders--custom .owl-nav .owl-prev,
  .displate-sliders .owl-nav--small .owl-prev,
  .displate-sliders--custom .owl-nav--small .owl-prev,
  .displate-sliders .owl-nav .owl-next,
  .displate-sliders--custom .owl-nav .owl-next,
  .displate-sliders .owl-nav--small .owl-next,
  .displate-sliders--custom .owl-nav--small .owl-next {
    display: block;
  }
}
.displate-sliders .owl-nav button:focus,
.displate-sliders--custom .owl-nav button:focus,
.displate-sliders .owl-nav--small button:focus,
.displate-sliders--custom .owl-nav--small button:focus {
  outline: 0;
}
.displate-sliders .slider-nav--small .owl-prev,
.displate-sliders--custom .slider-nav--small .owl-prev,
.displate-sliders .slider-nav--small .owl-next,
.displate-sliders--custom .slider-nav--small .owl-next {
  width: 6px;
  height: 13px;
}
.displate-sliders .slider-nav--small .owl-prev,
.displate-sliders--custom .slider-nav--small .owl-prev {
  background-image: url(/img/icons/arrow_left_small.png);
}
.displate-sliders .slider-nav--small .owl-next,
.displate-sliders--custom .slider-nav--small .owl-next {
  background-image: url(/img/icons/arrow_right_small.png);
}
.displate-sliders .owl-prev,
.displate-sliders--custom .owl-prev {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  background-image: url(/images/slider/arrow_left.png);
  background-position: center;
}
.displate-sliders .owl-next,
.displate-sliders--custom .owl-next {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  background-image: url(/images/slider/arrow_right.png);
  background-position: center;
}
.displate-sliders.owl-loading,
.displate-sliders--custom.owl-loading {
  opacity: 0;
}
.displate-sliders .dots--disabled,
.displate-sliders--custom .dots--disabled {
  display: none;
}
.displate-sliders .image-slider__item,
.displate-sliders--custom .image-slider__item {
  background: #ffffff;
  padding: 5px;
}
.displate-sliders--cart,
.displate-sliders--custom--cart {
  margin-bottom: 30px;
}
.displate-sliders--cart .owl-prev,
.displate-sliders--custom--cart .owl-prev,
.displate-sliders--cart .owl-next,
.displate-sliders--custom--cart .owl-next {
  top: 44%;
  transform: translateY(-44%);
}
.displate-sliders--youtube,
.displate-sliders--custom--youtube {
  box-shadow: 0 0 80px 5px rgba(0, 0, 0, 0.15), inset 0 0 80px 200px rgba(0, 0, 0, 0.083);
  width: 100%;
  margin: 20px 0 20px -45px;
}
@media (min-width: 992px) {
  .displate-sliders--youtube,
  .displate-sliders--custom--youtube {
    margin: 40px 0;
  }
}
.displate-sliders--youtube .owl-stage-outer,
.displate-sliders--custom--youtube .owl-stage-outer {
  margin-right: -85px;
}
@media (min-width: 992px) {
  .displate-sliders--youtube .owl-stage-outer,
  .displate-sliders--custom--youtube .owl-stage-outer {
    margin-right: 0;
  }
}
.displate-sliders--youtube .image-slider__item,
.displate-sliders--custom--youtube .image-slider__item {
  position: relative;
}
.displate-sliders--youtube .image-slider__item::after,
.displate-sliders--custom--youtube .image-slider__item::after {
  content: '';
  background: url('/img/sliders/influencers/video-mask.png') no-repeat;
  position: absolute;
  background-position: center center;
  background-size: cover;
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  pointer-events: none;
}
@media (hover: hover) {
  .displate-sliders--youtube .image-slider__item--2:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--2:hover::after {
    animation: thumbsRotator-2 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--4:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--4:hover::after {
    animation: thumbsRotator-4 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--5:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--5:hover::after {
    animation: thumbsRotator-5 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--6:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--6:hover::after {
    animation: thumbsRotator-6 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--7:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--7:hover::after {
    animation: thumbsRotator-7 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--8:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--8:hover::after {
    animation: thumbsRotator-8 3s ease-in-out infinite;
    pointer-events: none;
  }
  .displate-sliders--youtube .image-slider__item--9:hover::after,
  .displate-sliders--custom--youtube .image-slider__item--9:hover::after {
    animation: thumbsRotator-9 3s ease-in-out infinite;
    pointer-events: none;
  }
}
.displate-sliders--youtube::before,
.displate-sliders--custom--youtube::before {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  display: none;
  content: url(/file_manager/sliders/influencers/influencer-9-1.png) url(/file_manager/sliders/influencers/influencer-9-2.png) url(/file_manager/sliders/influencers/influencer-9-3.png) url(/file_manager/sliders/influencers/influencer-9-4.png) url(/file_manager/sliders/influencers/influencer-8-1.png) url(/file_manager/sliders/influencers/influencer-8-2.png) url(/file_manager/sliders/influencers/influencer-8-3.png) url(/file_manager/sliders/influencers/influencer-8-4.png) url(/file_manager/sliders/influencers/influencer-7-1.png) url(/file_manager/sliders/influencers/influencer-7-2.png) url(/file_manager/sliders/influencers/influencer-7-3.png) url(/file_manager/sliders/influencers/influencer-7-4.png) url(/file_manager/sliders/influencers/influencer-6-1.png) url(/file_manager/sliders/influencers/influencer-6-2.png) url(/file_manager/sliders/influencers/influencer-6-3.png) url(/file_manager/sliders/influencers/influencer-6-4.png) url(/file_manager/sliders/influencers/influencer-5-1.png) url(/file_manager/sliders/influencers/influencer-5-2.png) url(/file_manager/sliders/influencers/influencer-5-3.png) url(/file_manager/sliders/influencers/influencer-5-4.png) url(/file_manager/sliders/influencers/influencer-4-1.png) url(/file_manager/sliders/influencers/influencer-4-2.png) url(/file_manager/sliders/influencers/influencer-4-3.png) url(/file_manager/sliders/influencers/influencer-4-4.png) url(/file_manager/sliders/influencers/influencer-2-1.png) url(/file_manager/sliders/influencers/influencer-2-2.png) url(/file_manager/sliders/influencers/influencer-2-3.png) url(/file_manager/sliders/influencers/influencer-2-4.png);
}
.displate-sliders--dashboard,
.displate-sliders--custom--dashboard {
  margin: 0 auto;
  display: block;
}
.displate-sliders--dashboard .carousel-item,
.displate-sliders--custom--dashboard .carousel-item {
  width: 220px;
  height: 220px;
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
}
.displate-sliders--dashboard .carousel-item--shadow,
.displate-sliders--custom--dashboard .carousel-item--shadow {
  position: relative;
}
.displate-sliders--dashboard .carousel-item--shadow:after,
.displate-sliders--custom--dashboard .carousel-item--shadow:after {
  content: '';
  position: absolute;
  background: radial-gradient(at 50% bottom, #f5f5f5, #ffffff);
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
}
.displate-sliders--dashboard .carousel-item--empty,
.displate-sliders--custom--dashboard .carousel-item--empty {
  width: 104px;
  height: 104px;
  margin: auto;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 4px;
  border: 1px dashed #d2d2d2;
}
.displate-sliders--dashboard .carousel-item--empty:nth-of-type(-n + 4),
.displate-sliders--custom--dashboard .carousel-item--empty:nth-of-type(-n + 4) {
  display: flex;
}
.displate-sliders--dashboard .carousel-item--empty object,
.displate-sliders--custom--dashboard .carousel-item--empty object {
  pointer-events: none;
}
.displate-sliders--dashboard .carousel-item img,
.displate-sliders--custom--dashboard .carousel-item img {
  width: 104px;
  height: 104px;
  margin: auto;
  object-fit: cover;
  object-position: 0 0;
}
.displate-sliders--dashboard .carousel-item img.loaded,
.displate-sliders--custom--dashboard .carousel-item img.loaded {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
@media (min-width: 992px) {
  .displate-sliders--dashboard .incomplete-collections-nav,
  .displate-sliders--custom--dashboard .incomplete-collections-nav {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 100%;
    left: 0;
    justify-content: space-between;
  }
  .displate-sliders--dashboard .incomplete-collections-nav__button,
  .displate-sliders--custom--dashboard .incomplete-collections-nav__button {
    position: absolute;
    cursor: pointer;
  }
  .displate-sliders--dashboard .incomplete-collections-nav__button--prev,
  .displate-sliders--custom--dashboard .incomplete-collections-nav__button--prev {
    left: 30px;
  }
  .displate-sliders--dashboard .incomplete-collections-nav__button--next,
  .displate-sliders--custom--dashboard .incomplete-collections-nav__button--next {
    right: 30px;
  }
  .displate-sliders--dashboard .incomplete-collections-nav .swiper-button-disabled,
  .displate-sliders--custom--dashboard .incomplete-collections-nav .swiper-button-disabled {
    display: none;
  }
}
.displate-sliders--homepage,
.displate-sliders--custom--homepage {
  margin: 0 !important;
  width: 100%;
}
.displate-sliders--homepage .owl-stage-outer,
.displate-sliders--custom--homepage .owl-stage-outer {
  margin-left: -16px;
}
@media (min-width: 992px) {
  .displate-sliders--homepage .owl-stage-outer,
  .displate-sliders--custom--homepage .owl-stage-outer {
    margin-left: -20px;
  }
}
.displate-sliders--homepage .owl-stage,
.displate-sliders--custom--homepage .owl-stage {
  display: flex;
  padding-left: 0;
  margin-left: 5px;
}
@media (min-width: 992px) {
  .displate-sliders--homepage .owl-stage,
  .displate-sliders--custom--homepage .owl-stage {
    padding-left: 15px;
  }
}
.displate-sliders--homepage .owl-item,
.displate-sliders--custom--homepage .owl-item {
  padding: 10px 0 20px;
  display: flex;
  flex: 1 0 auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.displate-sliders--homepage .owl-item.active,
.displate-sliders--custom--homepage .owl-item.active {
  opacity: 1;
}
.displate-sliders--homepage .owl-item.active + .owl-item,
.displate-sliders--custom--homepage .owl-item.active + .owl-item {
  opacity: 1;
}
@media (min-width: 576px) {
  .displate-sliders--homepage .owl-item,
  .displate-sliders--custom--homepage .owl-item {
    padding: 20px 0 30px;
  }
}
@media (min-width: 992px) {
  .displate-sliders--homepage .owl-item,
  .displate-sliders--custom--homepage .owl-item {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .displate-sliders--homepage .explore__item--border,
  .displate-sliders--custom--homepage .explore__item--border {
    margin-top: 20px;
  }
}
.displate-sliders--homepage .explore__item--border fieldset,
.displate-sliders--custom--homepage .explore__item--border fieldset {
  display: none;
}
@media (min-width: 992px) {
  .displate-sliders--homepage .explore__item--border fieldset,
  .displate-sliders--custom--homepage .explore__item--border fieldset {
    display: block;
  }
}
.displate-sliders--loading,
.displate-sliders--custom--loading {
  background: url('/img/loaders/loader.gif') center center no-repeat;
  width: 62px;
  height: 62px;
}
.slick-slider {
  max-width: 100%;
}
.slick-slider .slick-list > .slick-track {
  margin-left: 0;
}
.slick-slider .slick-track {
  display: flex;
  will-change: transform;
}
.slick-slider .slick-list {
  position: relative;
  overflow: visible;
  margin-left: -7.5px;
}
@media (min-width: 768px) {
  .slick-slider .slick-list {
    margin-left: -15px;
  }
}
.slick-slider .slick-arrow {
  display: none !important;
}
@media (min-width: 768px) {
  .slick-slider .slick-arrow {
    line-height: 0;
    font-size: 0;
    display: block !important;
    content: '';
    position: absolute;
    top: 50%;
    width: 17px;
    height: 32px;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    border: none;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    outline: 0;
  }
}
.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:active,
.slick-slider .slick-arrow:focus {
  outline: 0;
  cursor: pointer;
}
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.slick-slider .slick-arrow.slick-prev {
  left: -40px;
  background-image: url(/img/icons/blue_arrow_left.svg);
}
.slick-slider .slick-arrow.slick-next {
  right: -40px;
  background-image: url(/img/icons/blue_arrow_right.svg);
}
.slick-slider .slick-slide {
  transition: all 0.3s ease;
  position: relative;
  height: unset;
  float: none;
}
.slick-slider .slick-slide > div {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .slick-slider .slick-slide .collection {
    width: auto;
    flex-basis: auto;
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .slick-slider .slick-slide {
    opacity: 0;
    visibility: hidden;
  }
  .slick-slider .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
  }
}
.slick-slider--small .slick-arrow {
  width: 9px;
  height: 15px;
}
.slick-slider--small .slick-arrow.slick-prev {
  left: 8px;
  background-image: url(/img/icons/arrow_left_small.png);
}
.slick-slider--small .slick-arrow.slick-next {
  right: 8px;
  background-image: url(/img/icons/arrow_right_small.png);
}
.slick-slider--small .slick-slide {
  padding: 0 3px;
}
.slick-slider--small .slick-slide img {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.slick-slider--small .slick-list {
  margin-left: 0;
}
.slick-slider--gradient {
  position: relative;
  height: auto;
}
.slick-slider--gradient:after {
  content: '';
  display: block;
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -26px;
  left: 0;
  box-shadow: inset -40px 0 40px 20px #ffffff;
  pointer-events: none;
}
body.mobile-body .displate-sliders:not(.displate-sliders--youtube):not(.trustpilot-wrapper):not(.displate-sliders--homepage) {
  margin-left: 0;
}
body.mobile-body .displate-sliders:not(.displate-sliders--youtube):not(.trustpilot-wrapper):not(.displate-sliders--homepage) .owl-stage-outer {
  padding: 20px 0;
  margin: -30px 0;
}
@media (min-width: 992px) {
  body.mobile-body .displate-sliders:not(.displate-sliders--youtube):not(.trustpilot-wrapper):not(.displate-sliders--homepage) {
    margin: 40px auto;
  }
}
@media (min-width: 1350px) {
  body.mobile-body .displate-sliders:not(.displate-sliders--youtube):not(.trustpilot-wrapper):not(.displate-sliders--homepage) {
    margin: 40px 0;
  }
}
@keyframes 'thumbsRotator-2' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-2-2.png');
  }
}
@keyframes 'thumbsRotator-4' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-4-2.png');
  }
}
@keyframes 'thumbsRotator-5' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-5-2.png');
  }
}
@keyframes 'thumbsRotator-6' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-6-2.png');
  }
}
@keyframes 'thumbsRotator-7' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-7-2.png');
  }
}
@keyframes 'thumbsRotator-8' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-8-2.png');
  }
}
@keyframes 'thumbsRotator-9' {
  0% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-2.png');
  }
  24% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-2.png');
  }
  25% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-3.png');
  }
  49% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-3.png');
  }
  50% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-4.png');
  }
  74% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-4.png');
  }
  75% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-5.png');
  }
  99% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-5.png');
  }
  100% {
    background-image: url('/file_manager/sliders/influencers/influencer-9-2.png');
  }
}
.faq__header {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 25px;
}
.faq__wrapper {
  width: 100%;
  margin-bottom: 20px !important;
  list-style: none;
}
.faq__wrapper .change-size {
  width: 50px;
  height: 50px;
  border: 1px solid #d2d2d2;
  margin-right: 10px;
  background-color: #ffffff;
}
.faq__wrapper .change-size:focus {
  outline: 0;
}
.faq__wrapper .change-size.active {
  border: 3px solid #1185ed;
}
.faq__wrapper .wrapper-img-mount {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-between;
}
.faq__wrapper .wrapper-img-mount p {
  margin: 25px 0;
  text-align: left;
}
@media (min-width: 992px) {
  .faq__wrapper .wrapper-img-mount p {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .faq__wrapper .wrapper-img-mount {
    margin-right: 0;
  }
}
.faq__wrapper .mount--displate .img-mount-item {
  flex-basis: 100%;
}
@media (min-width: 576px) {
  .faq__wrapper .mount--displate .img-mount-item {
    flex-basis: 47%;
  }
}
@media (min-width: 992px) {
  .faq__wrapper .mount--displate .img-mount-item {
    flex-basis: 19%;
  }
}
.faq__wrapper .mount--displate .flex-basis {
  flex-basis: 100%;
}
@media (min-width: 576px) {
  .faq__wrapper .mount--displate .flex-basis {
    flex-basis: 47%;
  }
}
@media (min-width: 992px) {
  .faq__wrapper .mount--displate .flex-basis {
    flex-basis: 16%;
  }
}
@media (min-width: 992px) {
  .faq__wrapper .mount--XL .img-mount-item {
    flex-basis: 16%;
  }
}
.faq__wrapper .img-change-size {
  width: 100%;
  max-width: 229px;
  margin: 0 auto;
}
.faq__wrapper .change-size {
  cursor: pointer;
}
.faq__item {
  border-bottom: 1px solid #d2d2d2;
  /* title and answer shouldn't be modifiers */
}
.faq__item--title {
  padding: 25px 50px 25px 0;
  display: block;
  position: relative;
  cursor: pointer;
}
.faq__item--title:after {
  content: '';
  position: absolute;
  background: url(/img/svg/icons/icon_arrow-small.svg);
  width: 13px;
  height: 7.5px;
  margin-right: 5px;
  top: 50%;
  transform: translate(0, -50%) rotate(90);
  right: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s ease;
}
@media (min-width: 576px) {
  .faq__item--title:after {
    width: 20px;
    height: 12px;
  }
}
.faq__item--active .faq__item--answer {
  padding-bottom: 25px;
}
.faq__item--active.faq__item--title:after,
.faq__item--active .faq__item--title:after {
  transform: translate(0, -50%) rotate(-180deg);
}
.faq__item--answer {
  overflow: hidden;
  padding-bottom: 0;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .faq__item--answer {
    padding-right: 50px;
  }
}
.faq__item:not(.faq__item--react) .faq__item--answer {
  transition: none;
  display: none;
  padding-bottom: 25px;
}
.Collapsible {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d2d2d2;
}
.Collapsible__trigger {
  padding: 15px 0;
  width: 100%;
}
.Collapsible__trigger.is-open .input-radio__radio ~ .input-radio__checkmark {
  border: 6px solid #1185ed;
}
.Collapsible__trigger.is-open .input-radio__radio ~ .input-radio__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.Collapsible__contentOuter {
  width: 100%;
}
.Collapsible__contentInner {
  padding-bottom: 25px;
}
/* purgecss start ignore */
.searchbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin: 20px 0px;
}
@media (min-width: 992px) {
  .searchbar {
    width: 35%;
    margin: 0;
  }
}
.searchbar input[type='search']::-ms-clear,
.searchbar input[type='search']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.searchbar input[type='search']::-webkit-search-decoration,
.searchbar input[type='search']::-webkit-search-cancel-button,
.searchbar input[type='search']::-webkit-search-results-button,
.searchbar input[type='search']::-webkit-search-results-decoration {
  display: none;
}
.searchbar__icon {
  position: absolute;
  right: 15px;
}
.searchbar__icon--disabled {
  cursor: not-allowed;
}
.searchbar--full-width {
  width: 100%;
}
.searchbar--autocomplete {
  display: flex;
  text-align: left;
  margin: 0;
}
.searchbar--autocomplete:after {
  content: '';
  background-image: url('/img/icons/search-magnifier.svg');
  background-size: contain;
  position: absolute;
  left: 13px;
  top: 10px;
  height: 19px;
  width: 19px;
  z-index: 3;
}
.searchbar--autocomplete .searchbar__button--cancel {
  color: #10111a;
}
.searchbar--autocomplete .searchbar__input--placeholder {
  position: absolute;
  z-index: 3;
  padding: 7px 11px 7px 46px;
  left: 0;
  font-size: 16px;
  line-height: 24px;
  pointer-events: none;
}
.searchbar--autocomplete > div:first-of-type {
  position: relative;
}
.searchbar--autocomplete .searchbar__input {
  background-color: #f6f7f8;
  border: 1px solid #10111a;
  box-sizing: border-box;
  border-radius: 20px;
  font-size: 16px;
  line-height: 24px;
  padding: 7px 11px 7px 45px;
  width: 100%;
  caret-color: #d2d2d2;
  z-index: 3;
  margin: 0;
  -webkit-appearance: none !important;
  transition-property: box-shadow, background-color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.searchbar--autocomplete .searchbar__input + [role='link']:hover {
  cursor: pointer;
}
.searchbar--autocomplete .searchbar__input::placeholder {
  color: #10111a;
}
.searchbar--autocomplete .searchbar__input:focus::placeholder {
  color: transparent;
}
.searchbar--autocomplete .searchbar__input:focus .searchbar__input--placeholder {
  display: none;
}
.searchbar--autocomplete .searchbar__input:focus {
  background-color: white;
}
.searchbar--autocomplete .searchbar__reset {
  position: absolute;
  right: 30px;
  top: 8px;
  display: flex;
  cursor: pointer;
  z-index: 3;
}
.searchbar--autocomplete .searchbar__reset::before {
  content: '';
  background-image: url(/img/icons/close_icon.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  height: 8px;
  width: 8px;
  margin: 8px 12px;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__reset {
    right: 10px;
    top: initial;
  }
}
.searchbar--autocomplete .searchbar__autocomplete-container {
  padding: 0 0 25px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 71px);
  width: 100%;
  z-index: 2;
}
.searchbar--autocomplete .searchbar__autocomplete-container--overlay {
  background: #ffffff;
  position: relative;
}
.searchbar--autocomplete .searchbar__autocomplete-container--overlay:before {
  content: '';
  position: relative;
  top: 15px;
  height: 1px;
  border-top: 1px solid #d2d2d2;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete-container--overlay:before {
    content: none;
  }
}
.searchbar--autocomplete .searchbar__autocomplete-container--overlay .searchbar__autocomplete-recent + hr {
  visibility: visible;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete-container {
    padding: 35px 35px 15px;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    border-radius: 8px;
    height: auto;
    min-height: initial;
    width: initial;
  }
  .searchbar--autocomplete .searchbar__autocomplete-container--overlay {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.searchbar--autocomplete .searchbar__autocomplete-container > div:first-of-type {
  margin-top: 15px;
  padding-top: 15px;
}
.searchbar--autocomplete .searchbar__autocomplete-container .searchbar--autocomplete-suggestions {
  display: contents;
}
.searchbar--autocomplete .searchbar__autocomplete--recently {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete--recently {
    padding-bottom: 0;
  }
}
.searchbar--autocomplete .searchbar__autocomplete--recently .searchbar__autocomplete-item:first-of-type {
  margin-top: 8px;
}
.searchbar--autocomplete .searchbar__autocomplete--recently-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.searchbar--autocomplete .searchbar__autocomplete--recently-header > span {
  font-size: 14px;
}
.searchbar--autocomplete .searchbar__autocomplete-item {
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
}
.searchbar--autocomplete .searchbar__autocomplete-item--first {
  margin-top: 25px;
}
.searchbar--autocomplete .searchbar__autocomplete-item--last:not(.searchbar__autocomplete-item--magnet) {
  margin-left: 5px;
  align-items: center;
  justify-content: space-between;
}
.searchbar--autocomplete .searchbar__autocomplete-item span {
  position: relative;
}
.searchbar--autocomplete .searchbar__autocomplete-item strong {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.searchbar--autocomplete .searchbar__autocomplete-item strong:first-of-type {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.searchbar--autocomplete .searchbar__autocomplete-item--selected:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -35px;
  right: -35px;
  top: 0;
  bottom: 0;
  background: #f5f5f5;
}
.searchbar--autocomplete .searchbar__autocomplete-item--selected:focus,
.searchbar--autocomplete .searchbar__autocomplete-item--selected:active {
  outline: none;
}
.searchbar--autocomplete .searchbar__autocomplete-item--label {
  display: flex;
  flex-direction: column;
}
.searchbar--autocomplete .searchbar__autocomplete-item--icon {
  margin: 0 16px 0 5px;
  align-items: center;
}
.searchbar--autocomplete .searchbar__autocomplete-item--icon-arrow {
  transform: rotate(-90deg);
}
.searchbar--autocomplete .searchbar__autocomplete-item--category {
  font-size: 14px;
  line-height: 20px;
}
.searchbar--autocomplete .searchbar__autocomplete-recent {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d2d2d2;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete-recent {
    border-top: none;
  }
}
.searchbar--autocomplete .searchbar__autocomplete-tags {
  display: flex;
  -ms-overflow-style: none;
  width: calc(100% + 30px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  max-height: 115px;
}
.searchbar--autocomplete .searchbar__autocomplete-tags::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete-tags {
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
}
.searchbar--autocomplete .searchbar__autocomplete-reset {
  cursor: pointer;
}
.searchbar--autocomplete .searchbar__autocomplete-displates div[role='link'] {
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  cursor: pointer;
}
@media (min-width: 992px) {
  .searchbar--autocomplete .searchbar__autocomplete-displates {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    width: 100%;
    margin-left: 0;
  }
}
.searchbar-mobile .searchbar__reset {
  right: 70px;
}
.searchbar-mobile.searchbar--open .searchbar__input--placeholder {
  padding-left: 44px;
}
body.searchbar--focused .topbar {
  display: none;
}
body.searchbar--focused .main-menu__inner {
  display: none;
}
body.searchbar--focused .main-menu--mobile.main-menu--searchbar-active {
  z-index: 1000000;
}
#autocomplete_2 .searchbar__autocomplete-container {
  min-height: unset;
  padding: 0 7px;
}
@media (min-width: 992px) {
  #autocomplete_2 .searchbar__autocomplete-container {
    padding: 36px 50px 15px;
  }
}
#autocomplete_2 .searchbar--autocomplete .searchbar__reset {
  right: 70px;
}
@media (min-width: 992px) {
  #autocomplete_2 .searchbar--autocomplete .searchbar__reset {
    right: 10px;
  }
}
/* purgecss end ignore */
.widget {
  padding: 20px 25px 15px;
  border-radius: 4px;
  background-color: #ffffff;
}
.widget__header {
  padding-bottom: 12px;
}
.widget__content {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}
.widget__content--split {
  display: flex;
}
.widget__footer {
  display: flex;
  justify-content: center;
  padding-top: 14px;
  border-top: 1px solid #d2d2d2;
  font-size: 14px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  line-height: 22px;
  color: #1185ed;
}
.widget__footer > *:nth-child(2) {
  position: relative;
  padding-left: 25px;
}
.widget__footer > *:nth-child(2)::before {
  content: '.';
  position: absolute;
  top: -6px;
  left: 10px;
  font-size: 25px;
  color: #6e6e6e;
}
.widget .content-list {
  padding-left: 12px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #000;
}
.widget .content-list-el {
  position: relative;
}
.widget .content-list-el::before {
  content: '.';
  position: absolute;
  top: -2px;
  left: -13px;
  font-size: 40px;
  line-height: 0;
}
.widget .content-image {
  flex-shrink: 0;
}
.widget--open-shop .content-image {
  max-width: 131px;
  margin-top: -50px;
}
.widget--open-shop .content-image img {
  max-width: 100%;
}
.responsive-video-container {
  padding: 56.25% 0 0 0;
  position: relative;
  width: 100%;
  cursor: pointer;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.responsive-video-container--square {
  padding: 100% 0 0 0;
}
.responsive-video-container--framed {
  padding: 10px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.responsive-video-container--preview:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35) url('/img/svg/icons_animated/icon_play.svg') no-repeat center;
}
.responsive-video-container--preview-loading:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35) url('/img/loaders/loader-white.svg') no-repeat center;
}
.responsive-video-container--preview-off:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
}
.responsive-video-container--poster-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.responsive-video-container--poster-content object {
  pointer-events: none;
  max-width: 10%;
}
.responsive-video-container--poster-career-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.responsive-video-container--poster-career-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.responsive-video-container--poster-career-content object {
  pointer-events: none;
  max-width: 10%;
}
.responsive-video-container--poster:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}
.responsive-video-container--poster-loading:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35) url('/img/loaders/loader-white.svg') no-repeat center;
}
.responsive-video-container--poster-off:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  cursor: pointer;
}
.responsive-video-container--limited-size {
  padding: 100% 0 0 0;
}
@media (min-width: 992px) {
  .responsive-video-container--limited-size {
    padding: 39% 0 0;
  }
}
.responsive-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@keyframes levitate {
  from {
    margin-bottom: 20px;
    margin-top: 0px;
  }
  to {
    margin-bottom: 60px;
    margin-top: -40px;
  }
}
@keyframes circles {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(40deg);
  }
}
.error-handler {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0;
  grid-row-gap: 45px;
  justify-content: center;
  align-items: center;
  padding: 15%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .error-handler {
    background-image: url('/img/500/icons_desktop.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-row-gap: 0;
    grid-column-gap: 45px;
    padding: 10% 25% 20% 25%;
  }
}
.error-handler--fixed {
  position: fixed;
  left: 0;
  top: 0;
}
.error-handler .levitate {
  width: auto;
  margin-bottom: 20px;
  animation-name: levitate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.error-handler .circle {
  transform: rotateX(0deg);
  animation-name: circles;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.error-handler:after,
.error-handler:before {
  content: none;
}
.wishlist-icon {
  background-image: url('/img/svg/icons/icon_wishlist--heart.svg');
  animation-duration: 1000ms;
  animation-timing-function: steps(60);
  animation-fill-mode: both;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  transform: scale(1.25);
  background-position: unset;
  background-size: auto;
  user-select: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .wishlist-icon {
    top: 5px;
    right: 5px;
    background-size: auto;
  }
}
.wishlist-icon--active.wishlist-icon:not(.wishlist-icon--adding) {
  background-position: -1440px 0px !important;
}
.wishlist-icon--adding {
  animation-name: wishlistAnimation;
  animation-direction: normal;
  pointer-events: none;
}
.wishlist-icon--removing {
  animation-name: wishlistAnimation;
  animation-direction: reverse;
  pointer-events: none;
}
.wishlist-icon--flying {
  background-image: url('/img/svg/icons/icon_wishlist--heart.svg');
  background-position: -1440px 0px;
  margin: 0;
  z-index: 9999;
  position: fixed !important;
  transition: all 1s ease-out;
  transform: translateZ(100px);
}
.wishlist-icon--static {
  position: static;
  margin-right: 5px;
}
@keyframes wishlistAnimation {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -1440px 0px;
  }
}
.d-scroll {
  position: fixed;
  bottom: 80px;
  left: calc(50% - 28px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #1185ed;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  cursor: pointer;
  stroke: #ffffff;
  fill: none;
  stroke-width: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-scroll div {
  fill: inherit !important;
}
.d-scroll svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.d-scroll--up {
  transform: rotate(180deg);
}
.table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
.table th,
.table td {
  padding: 5px;
}
.table--bordered,
.table--bordered th,
.table--bordered td {
  border: 1px solid #000;
}
.slide--owners {
  display: block;
  padding: 5px;
  background: #ffffff;
}
.slide__image {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .slide__image {
    height: 285px;
  }
}
.slide__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 10px 5px;
}
.slide__info .avatar {
  position: relative;
  display: flex;
  flex-shrink: 0;
  height: 50px;
}
.slide__info .avatar .lazy-load-image-background::before {
  height: 50px;
}
.slide__info .avatar img {
  width: 50px;
  height: 50px;
  padding: 4px;
  border: 2px solid #00efd2;
  border-radius: 50%;
  background: #ffffff;
}
.slide__info .avatar:after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: 10px;
  transform: rotate(-45deg);
  display: block;
  width: 8px;
  height: 8px;
  background: #ffffff;
}
.slide__info .label {
  flex-grow: 0;
  margin-left: 10px;
  overflow: hidden;
}
.slide__info .label .text--bold {
  font-size: 16px;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .slide__info .label .text--bold {
    font-size: 18px;
    line-height: 24px;
  }
}
.dummy-slider-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dummy-slider-placeholder .placeholder-slide {
  height: 100%;
  margin: 0 10px;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.pills-picker {
  display: flex;
  background-color: #eceff4;
  border-radius: 53px;
  width: fit-content;
}
.pills-picker__radio {
  width: 0;
  height: 0;
  opacity: 0;
}
.pills-picker__option {
  color: #424a51;
  font-weight: 600;
  line-height: 24px;
  padding: 6px 14px;
  cursor: pointer;
  border: 2px solid transparent;
}
.pills-picker__option--active {
  color: #1185ed;
  background-color: #ffffff;
  border-color: #d8dde1;
  border-radius: 66px;
}
.infobox {
  position: relative;
  padding: 16px;
  padding-left: 40px;
  background-color: rgba(63, 185, 247, 0.1);
  margin-bottom: 12px;
  border-radius: 4px;
}
.infobox__icon {
  position: absolute;
  top: 18px;
  left: 16px;
}
.infobox__content {
  font-size: 14px;
  line-height: 20px;
}
.infobox__content-bold {
  font-weight: 600;
}
.christmas-delivery {
  padding: 8px 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 14px;
  line-height: 24px;
  background-color: #00efd2;
  color: #10111a;
}
.christmas-delivery__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .christmas-delivery__text {
    text-align: center;
  }
}
.christmas-delivery__icon {
  margin-right: 2px;
}
@keyframes revealAnimation {
  from {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}
@keyframes rocketProcessing {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -12600px 0px;
  }
}
@keyframes pulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -135% 0%;
  }
}
@keyframes appearIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loadingDots {
  0% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
}
.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.overflow--hidden {
  overflow: hidden !important;
}
.loading-dots {
  display: inline;
}
.loading-dots:after {
  display: inline-block;
  animation: loadingDots 2s infinite;
  content: '.';
  width: 1em;
  text-align: left;
}
.reveal-animation {
  visibility: hidden;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  animation-name: revealAnimation;
  animation-duration: 1s;
}
.rocket-loader__overlay {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 245, 245, 0.9);
}
.rocket-loader__container {
  background: #1185ed;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .rocket-loader__container {
    width: 75%;
    max-width: 540px;
    height: 35%;
  }
}
.rocket-loader__rocket {
  animation-duration: 1050ms;
  animation-timing-function: steps(63);
  animation-iteration-count: infinite;
  width: 200px;
  height: 150px;
  animation-name: rocketProcessing;
  background: url(/img/loaders/rocket_loader.svg);
  margin: 0 auto;
}
.w--15 {
  width: 25%;
}
.w--25 {
  width: 25%;
}
.w--50 {
  width: 50%;
}
.w--75 {
  width: 75%;
}
.w--90 {
  width: 90%;
}
.w--100 {
  width: 100%;
}
.h--25 {
  height: 25%;
}
.h--50 {
  height: 50%;
}
.h--75 {
  height: 75%;
}
.h--100 {
  height: 100%;
}
.d__flex {
  display: flex;
}
.d__flex--wrap {
  flex-wrap: wrap;
}
.d__flex--sb {
  justify-content: space-between;
}
.d__flex--sa {
  justify-content: space-between;
}
@supports (justify-content: space-around) {
  .d__flex--sa {
    justify-content: space-around;
  }
}
.d__flex--start {
  align-self: flex-start;
}
.d__flex--self-center {
  align-self: center;
}
.d__flex--left {
  justify-self: flex-start;
}
.d__flex--right {
  justify-self: flex-end;
}
.d__flex--center {
  justify-content: center;
  align-items: center;
}
.d__flex--bottom {
  align-items: flex-end;
}
.d__flex--top {
  align-items: flex-start;
}
.d__flex--start {
  justify-content: flex-start;
}
.d__flex--end {
  justify-content: flex-end;
}
.d__flex--self {
  align-items: center;
}
.d__flex--column {
  flex-direction: column;
}
.d__grid {
  display: grid;
  grid-template-rows: 1fr;
  column-gap: 10px;
}
.d__grid img {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.d__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.d__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.d__block {
  display: block;
}
.d__relative {
  position: relative;
}
.d__square {
  display: flex;
}
.d__square:after {
  content: '';
  height: 0;
  padding-bottom: 100%;
  width: 100%;
}
.d__box {
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 10px;
}
.img--responsive {
  max-width: 100%;
}
.img--circle {
  border-radius: 50%;
}
.img--displate {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  align-self: start;
}
.background--grey {
  background: #d2d2d2;
}
.background--lightGrey {
  background: #f5f5f5;
}
@media (max-width: 992px) {
  .mobile-hidden {
    display: none !important;
  }
}
/* styleguide */
/* styleguide v2 starts
(please use this section for new features) */
/* Grayscale */
/* UI */
/* UI-backgrounds */
/* Font */
/* styleguide v2 ends */
/* primary colors */
/* shadows */
/* opacity */
/* transition */
/* filter colors */
/* inne */
@media not print {
  body,
  .mobile-body {
    font-family: 'proxima-nova', Corbel, Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #000;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
input[type='search']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type='search']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.panel-body:before,
.panel-body:after {
  content: ' ';
  display: table;
  clear: both;
}
/*********** RESET*****************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
ol,
ul {
  list-style: none;
}
/****** END RESET*****************/
body {
  background-color: #ffffff;
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' on;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body.no-menu {
  padding-top: 0 !important;
}
body.no-menu .main-menu__wrapper {
  display: none;
}
* {
  box-sizing: border-box;
}
*:before,
* *:after {
  box-sizing: border-box;
}
img {
  vertical-align: middle;
}
strong {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
input,
button,
select,
textarea {
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' on;
  -webkit-font-feature-settings: 'lnum' on;
  -moz-font-feature-settings: 'lnum' on;
}
hr {
  border: 0;
  border-top: 1px solid #eeeeee;
}
button {
  padding: 0;
  border: none;
  background: none;
  appearance: none;
}
button:active,
button:focus {
  outline: none;
}
.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}
.container--fill-space {
  display: flex;
  justify-content: center;
  padding: 5vh 15px;
  min-height: calc(100vh - 431px);
}
@media (min-width: 576px) {
  .container--fill-space {
    min-height: calc(100vh - 397px);
  }
}
@media (min-width: 992px) {
  .container--fill-space {
    min-height: calc(100vh - 520px);
  }
}
@media (max-width: 992px) {
  .container--fill-space ~ .footer__wrapper {
    position: absolute;
    bottom: 0;
  }
}
.container__holder {
  display: block;
  align-self: center;
  width: 100%;
}
.container--wide {
  max-width: 1340px;
}
.container--thin {
  max-width: 1050px;
}
.main-container {
  margin-top: 36px;
  margin-bottom: 36px;
}
.mr0 {
  margin-right: 0 !important;
}
.pr0 {
  padding-right: 0 !important;
}
.pl0 {
  padding-left: 0 !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl80 {
  padding-left: 80px !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.blue-text {
  color: #1185ed;
}
.top-6 {
  margin-top: 6px !important;
}
.top-8 {
  margin-top: 8px !important;
}
.top-10 {
  margin-top: 10px !important;
}
.top-15 {
  margin-top: 15px !important;
}
.top-20 {
  margin-top: 20px !important;
}
.top-30 {
  margin-top: 30px !important;
}
.top-35 {
  margin-top: 35px !important;
}
.bottom-25 {
  margin-bottom: 25px !important;
}
.w100 {
  width: 100% !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.error-upload {
  position: relative;
}
.invalid-input-text {
  box-shadow: none !important;
  border-color: #f00 !important;
}
.error-upload > span {
  position: absolute;
  color: #f00;
  width: 380px;
  top: 22px;
  text-align: left;
  margin-left: 14px;
}
#cboxLoadingGraphic,
#cboxLoadingOverlay {
  display: none !important;
}
.navbar {
  margin-bottom: 0px !important;
}
ul#tiles {
  list-style-type: none !important;
}
.checkmark-icon::before {
  content: url(/img/icons/icon_checkmark_circle.svg);
  position: absolute;
  top: 2px;
  left: 7px;
}
.horizontal-scroll-fix {
  overflow-x: hidden;
}
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-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-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-lock {
  display: none;
}
.collection-bar {
  width: calc(100% + 70px);
  padding: 30px;
  margin: -30px -30px -35px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .collection-bar {
    width: calc(100% + 75px);
    padding: 40px;
    margin: -30px -40px -25px;
  }
}
.collection-bar__heading {
  margin-bottom: 10px;
}
.collection-bar__heading + .container {
  width: 100%;
}
@media (min-width: 768px) {
  .collection-bar__heading {
    margin-bottom: 30px;
  }
}
.collection-bar__heading a:hover {
  text-decoration: none;
}
.collection-bar--search-results {
  margin: -30px;
  padding: 30px;
  width: calc(100% + 60px);
}
.collection-bar--search-results > div .slick-list {
  margin: 0 -6px 0 -8px;
}
@media (min-width: 768px) {
  .collection-bar--search-results {
    margin: 0 -25px;
    padding: 30px 25px 30px 20px;
  }
  .collection-bar--search-results .slick-slide {
    padding: 0 7.5px;
  }
  .collection-bar--search-results button.slick-arrow {
    display: none !important;
  }
}
.collection-bar--placeholder {
  pointer-events: none;
}
.collection-bar--placeholder .collection-bar__heading {
  height: 36px;
  background: #f5f5f5;
  width: 150px;
  border-radius: 2%;
}
.collection-bar--placeholder button.slick-arrow {
  filter: grayscale(100%) brightness(2);
}
.collection-bar--brands {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.collection-bar--brands .collection-bar__heading {
  margin-top: 25px;
}
.collection-bar__list {
  position: relative;
}
.collection-bar-navigation {
  display: none;
}
@media (min-width: 991px) {
  .collection-bar-navigation {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: calc(100% + 60px);
    margin-left: -32px;
    justify-content: space-between;
  }
}
.collection-bar-navigation .nav-button {
  height: 30px;
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.collection-bar-navigation .nav-button-prev {
  background-image: url(/img/icons/blue_arrow_left.svg);
}
.collection-bar-navigation .nav-button-next {
  background-image: url(/img/icons/blue_arrow_right.svg);
}
.collection-bar-navigation .nav-button.swiper-button-disabled {
  opacity: 0;
  cursor: none;
  pointer-events: none;
}
.collection-bar-v2 {
  padding: 0 30px;
  margin: 10px -45px 30px;
  width: calc(100% + 90px);
}
@media (min-width: 991px) {
  .collection-bar-v2 {
    padding: 40px 70px 40px 80px;
    margin: -30px -40px -25px;
    width: calc(100% + 60px);
  }
  .collection-bar-v2 .swiper {
    padding: 0;
    margin: 0 18px;
  }
}
.collection-bar-v2 .collection-bar__heading {
  margin: 0 15px 20px;
  text-transform: capitalize;
}
.collection-bar-v2 .collection-bar__heading > span {
  text-transform: none;
}
.collection-bar-v2 .collection-bar__heading + .container {
  width: 100%;
}
@media (min-width: 991px) {
  .collection-bar-v2 .collection-bar__heading {
    margin: 0;
  }
}
.collection-bar-v2__slider {
  position: relative;
}
@media (min-width: 991px) {
  .collection-bar-v2__slider {
    width: calc(100% + 50px);
    margin-left: -20px;
  }
}
.collection-bar-v2__slider .swiper {
  padding-right: 30px;
}
@media (min-width: 991px) {
  .collection-bar-v2__slider .swiper {
    padding-right: 0;
  }
}
.collection-bar-v2__slider::after {
  content: '';
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  width: 50px;
  z-index: 1;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 86.94%);
}
@media (min-width: 991px) {
  .collection-bar-v2__slider::after {
    display: none;
  }
}
@media (min-width: 991px) {
  .collection-bar-v2__slider .swiper-slide {
    padding: 35px 0;
    width: auto;
  }
}
.collection-bar-v2__slider .swiper-slide:first-child {
  margin-left: 15px;
}
@media (min-width: 991px) {
  .collection-bar-v2__slider .swiper-slide:first-child {
    margin-left: 0;
  }
}
.collection-bar-v2__slider-item {
  background: #ffffff;
  border: 1px solid #ccd3d7;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.3s;
}
.collection-bar-v2__slider-item:hover {
  box-shadow: 0px 8px 20px rgba(16, 17, 26, 0.14);
}
.collection-bar-v2__slider-item .collection__miniatures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
}
.collection-bar-v2__slider-item .collection__miniatures .collection__miniature {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-bottom: 0;
  width: 100%;
  padding-bottom: 100%;
  box-sizing: content-box;
}
.collection-bar-v2__slider-item .collection__artist-url {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.collection-bar-v2__slider-item .collection__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-right: 0;
}
.collection-bar-v2__slider-item .collection__artist-avatar {
  margin-right: 20px;
  margin-bottom: 0;
  height: 40px;
  width: 40px;
}
.collection-bar-v2__slider-item .collection__header {
  margin-bottom: 20px;
  align-items: center;
}
.collection-bar-v2__slider-navigation {
  display: none;
}
@media (min-width: 991px) {
  .collection-bar-v2__slider-navigation {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: calc(100% + 30px);
    margin-left: -14px;
    justify-content: space-between;
  }
}
.collection-bar-v2__slider-navigation .nav-button {
  height: 30px;
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.collection-bar-v2__slider-navigation .nav-button-prev {
  background-image: url(/img/icons/blue_arrow_left.svg);
}
.collection-bar-v2__slider-navigation .nav-button-next {
  background-image: url(/img/icons/blue_arrow_right.svg);
}
.collection-bar-v2__slider-navigation .nav-button.swiper-button-disabled {
  cursor: default;
  opacity: 0.35;
}
.collection-bar-v2 .collection-item--placeholder {
  pointer-events: none;
}
.collection-bar-v2 .collection-item--placeholder .collection-bar__heading {
  height: 36px;
  background: #f5f5f5;
  width: 150px;
  border-radius: 2%;
}
.collection-bar-v2 .collection-item--placeholder button.slick-arrow {
  filter: grayscale(100%) brightness(2);
}
.collection-bar-v2--brands {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.collection-bar-v2--brands .collection-bar__heading {
  margin-top: 25px;
}
.textra-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  pointer-events: none;
  color: #ffffff;
  background-color: #341bc9;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
}
.collection {
  background: #ffffff;
  display: block;
  border: 1px solid #d2d2d2;
  padding: 20px 30px 25px;
  position: relative;
  box-shadow: none;
  transition: all 0.3s ease;
}
.collection:hover {
  border-color: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.collection:hover .plate-hover {
  display: flex;
}
@media (min-width: 576px) {
  .collection {
    flex-basis: 40%;
    width: 40%;
    max-width: 40%;
    margin: 0 calc(20% / 4) 25px;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 576px), (-ms-high-contrast: active) and (min-width: 576px) {
  .collection {
    flex-basis: 19%;
    width: 19%;
    max-width: 19%;
    margin: 0 calc(20% / 4) 25px;
  }
}
@media (min-width: 992px) {
  .collection {
    flex-basis: 32%;
    width: 312%;
    max-width: 32%;
    margin: 0 calc(4% / 4) 25px 0;
  }
  .collection:nth-of-type(3n - 1) {
    margin: 0 calc(4% / 4) 25px;
  }
  .collection:nth-of-type(3n) {
    margin: 0 0 25px calc(4% / 4);
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .collection {
    flex-basis: 26%;
    width: 26%;
    max-width: 26%;
    margin: 0 1% 25px 0;
  }
  .collection:nth-of-type(3n - 1) {
    margin: 0 calc(7% / 4) 25px;
  }
  .collection:nth-of-type(3n) {
    margin: 0 0 25px calc(7% / 4);
  }
}
.collection--search-results,
.collection--collection-bar,
.collection--collection-page {
  width: auto;
  max-width: none;
  padding: 15px 15px 12px;
}
@media (min-width: 992px) {
  .collection--search-results,
  .collection--collection-bar,
  .collection--collection-page {
    padding: 20px 15px;
  }
}
.collection--search-results .collection__title,
.collection--collection-bar .collection__title,
.collection--collection-page .collection__title {
  font-size: 18px;
}
.collection--search-results .collection__miniature,
.collection--collection-bar .collection__miniature,
.collection--collection-page .collection__miniature {
  width: calc(50% - 3px);
  padding-bottom: calc(50% - 3px);
  margin-bottom: 6px;
}
.collection--collection-page .collection__title {
  font-size: 18px;
}
@media (min-width: 992px) {
  .collection--collection-page .collection__title {
    font-size: 22px;
  }
}
.collection--collection-page .collection__miniature {
  width: calc(50% - 3px);
  padding-bottom: calc(50% - 3px);
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .collection--collection-page .collection__miniature {
    width: calc(50% - 5px);
    padding-bottom: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
.collection__explore-more {
  position: absolute;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #1185ed;
  -webkit-user-drag: none;
}
.collection__explore-more:hover,
.collection__explore-more:visited,
.collection__explore-more:active {
  color: #1185ed;
}
.collection__explore-more p {
  flex-basis: 40%;
  font-size: 22px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.collection__title {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 22px;
  margin-right: 10px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  -webkit-user-drag: none;
  flex: 0.9;
}
.collection__title a {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.collection__header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.collection__header--spaced {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .collection__header {
    margin-bottom: 20px;
  }
}
.collection__miniatures {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
  line-height: 0;
}
.collection__miniature {
  display: block;
  width: calc(50% - 5px);
  position: relative;
  padding-bottom: calc(50% - 5px);
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 0;
  border-radius: 2%;
  line-height: 0;
  user-select: none;
}
.collection__miniature:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2%;
  outline-offset: -2px;
  outline: 2px solid rgba(255, 255, 255, 0.25);
}
.collection__image {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-height: 140%;
  max-width: 140%;
  width: auto !important;
  transform: translateX(-50%);
}
.collection__image--empty-collection {
  width: 100%;
  height: 100%;
}
.collection__image:not(.loaded) {
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
.collection__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 9px;
}
@media (min-width: 992px) {
  .collection__footer {
    margin-top: 14px;
  }
}
.collection__artist-info {
  max-width: calc(100% - 58px);
  text-align: left;
}
.collection__artist-avatar {
  display: block;
  height: 45px;
  width: 45px;
  margin-bottom: 10px;
  border-radius: 50%;
  margin-right: 12px;
  overflow: hidden;
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
}
.collection__artist-avatar img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
}
.collection__artist-url {
  flex-grow: 1;
  align-self: center;
  max-width: 75%;
  user-select: none;
  -webkit-user-drag: none;
}
.collection__artist-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  -webkit-user-drag: none;
}
.collection--placeholder {
  border-color: #f5f5f5;
  pointer-events: none;
}
.collection--placeholder .collection__artwork-count {
  visibility: hidden;
}
.collection--placeholder .collection__title {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  height: 24px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2%;
}
.collection--placeholder .collection__artist-url {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  height: 24px;
  border-radius: 2%;
  width: 40%;
  flex-grow: 0;
}
.collection--placeholder .collection__artist-avatar {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  border: none;
}
.collection--placeholder .collection__miniature {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.pagination:not(.pagination--mobile) {
  display: flex;
  flex-basis: 100%;
  border-top: 1px #d2d2d2 solid;
  padding-top: 15px;
  justify-content: center;
  margin: 0 1.5% 1rem 1.5%;
}
.pagination:not(.pagination--mobile) .page-helpers {
  padding-top: 7px;
  padding-bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination:not(.pagination--mobile) .page-helpers span {
  padding: 8px 5px;
}
.pagination:not(.pagination--mobile) .page-helpers object {
  height: 10px;
  width: 6px;
}
.pagination:not(.pagination--mobile) .page-helpers:hover {
  text-decoration: underline;
  cursor: pointer;
}
.pagination:not(.pagination--mobile) .page-helpers:active,
.pagination:not(.pagination--mobile) .page-helpers:focus {
  outline: 0;
}
.pagination:not(.pagination--mobile) .page-helpers.previous--page {
  margin-right: 20px;
}
.pagination:not(.pagination--mobile) .page-helpers.previous--page svg {
  margin-right: 8px;
  pointer-events: none;
}
.pagination:not(.pagination--mobile) .page-helpers.next--page svg {
  pointer-events: none;
  margin-left: 8px;
}
.pagination:not(.pagination--mobile) div {
  padding: 7px 16px;
  cursor: default;
}
.pagination:not(.pagination--mobile) div span:active,
.pagination:not(.pagination--mobile) div span:focus {
  outline: 0;
}
.pagination:not(.pagination--mobile) .last-page {
  display: block;
  padding: 1px 0 0;
}
.pagination:not(.pagination--mobile) .active-page {
  border-top: 1px #000 solid;
  margin: -16px 16px 0;
  padding: 22px 0 0;
}
.pagination:not(.pagination--mobile) .active-page span {
  padding: 0;
}
.pagination:not(.pagination--mobile) .active-page span:active {
  outline: none;
}
.pagination:not(.pagination--mobile).pagination--brand .active-page {
  border-top: initial;
  margin: initial;
  padding: 7px 16px;
}
.pagination:not(.pagination--mobile).pagination--browse-collections {
  margin: 50px 0 10px;
}
.pagination:not(.pagination--mobile).pagination--search-results {
  margin: 0;
}
ul + .pagination {
  display: flex;
  margin-bottom: 1rem;
}
.pagination--mobile {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 65px 15px 30px;
  margin-bottom: 50px;
}
.pagination--mobile.pagination--search-results {
  margin: 20px 0 30px;
}
.pagination--mobile span {
  align-self: center;
  position: absolute;
  color: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pagination--mobile:after {
  content: '';
  position: absolute;
  width: 100%;
  border-top: 1px solid #d2d2d2;
  top: -15px;
}
.pagination--mobile .page-helpers {
  max-width: 100px;
  width: 30%;
  position: relative;
}
.pagination--mobile .page-helpers:after {
  content: '';
  height: 10px;
  width: 10px;
  border-top: 2px solid #1185ed;
  border-right: 2px solid #1185ed;
  position: absolute;
}
.pagination--mobile .page-helpers.previous--page {
  padding: 9px 5px 9px 25px;
  margin-right: auto;
}
.pagination--mobile .page-helpers.previous--page:after {
  transform: rotate(-135deg);
  left: 15px;
  top: 13px;
}
.pagination--mobile .page-helpers.next--page {
  padding: 9px 25px 9px 5px;
  margin-left: auto;
}
.pagination--mobile .page-helpers.next--page:after {
  transform: rotate(45deg);
  right: 15px;
  top: 13px;
}
.pagination--mobile.pagination--browse-collections {
  margin: 30px 0;
}
.simple-pagination {
  border-top: 1px solid #d2d2d2;
  padding: 16px 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.simple-pagination__input {
  padding: 8px 16px;
  border: 1px solid #ccd1d7;
  border-radius: 4px;
  width: 72px;
  text-align: center;
  margin-right: 8px;
}
.simple-pagination__input::-webkit-outer-spin-button,
.simple-pagination__input::-webkit-inner-spin-button {
  appearance: none;
}
.simple-pagination .pagination-button {
  padding: 12px 20px;
  margin: 0 8px;
}
.simple-pagination .pagination-button.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.simple-pagination .link {
  margin-left: 8px;
}
.product-details {
  display: flex;
  flex-direction: column;
}
.product-details__info {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
}
.product-details__info--soldout {
  background-image: url('/img/icons/icon_soldout.svg');
  background-size: 16%;
  background-repeat: no-repeat;
  background-position: right 5px;
}
.product-details__info .info__header .header-text {
  margin: 15px 0 20px;
}
.product-details__info .info__header .collection-link {
  font-size: 14px;
  line-height: 22px;
}
.product-details__info .info__artist {
  display: flex;
  padding: 10px 0 30px;
  border-bottom: 1px solid #d2d2d2;
  align-items: center;
}
.product-details__info .info__artist .artist-avatar {
  display: flex;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 20px;
}
.product-details__info .info__artist .artist-info {
  font-size: 14px;
  line-height: 22px;
}
.product-details__info .info__artist .artist-info > .artist-link {
  font-size: 16px;
  line-height: 24px;
  color: #1185ed;
}
.product-details__info .info__footer .footer-text {
  margin: 20px 0;
  font-size: 16px;
  line-height: 24px;
}
.product-details__info .info__footer .footer-trustpilot-heading {
  margin-bottom: 5px;
  font-size: 18px;
}
.product-details__info .info__footer .stars-rating {
  width: 140px;
  margin-right: 15px;
}
.product-details__info .info__footer .stars-button {
  color: #1185ed;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-details__info .info__footer .stars-button {
    pointer-events: none;
    cursor: default;
  }
}
.product-details__properties {
  position: relative;
  bottom: -20px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.product-details__properties .properties-image {
  width: 50%;
  min-width: 270px;
  max-width: 300px;
}
.product-details__properties-description {
  text-align: left;
}
.product-details__properties-description a {
  color: #1185ed;
}
.product-details__properties .properties-info {
  position: absolute;
  left: 54%;
  padding: 8px 15px 8px 33px;
  border-radius: 16px;
  font-size: 12px;
  background-color: #fff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.product-details__properties .properties-info:nth-of-type(1n) {
  top: 80px;
}
.product-details__properties .properties-info:nth-of-type(2n) {
  top: 131px;
}
.product-details__properties .properties-info:nth-of-type(3n) {
  top: 178px;
}
.product-details__properties .properties-info:nth-of-type(4n) {
  top: 225px;
}
.product-details__properties .properties-info::before {
  content: url('/img/about/shop-handbook/check_blue.png');
  position: absolute;
  top: 3px;
  left: 5px;
  transform: scale(0.5);
}
@media (min-width: 768px) {
  .product-details__properties {
    bottom: -30px;
    width: 70%;
  }
  .product-details__properties .properties-image {
    width: 70%;
  }
  .product-details__properties .properties-info {
    left: 60%;
    font-size: 16px;
  }
  .product-details__properties .properties-info:nth-of-type(1n) {
    top: 150px;
  }
  .product-details__properties .properties-info:nth-of-type(2n) {
    top: 207px;
  }
  .product-details__properties .properties-info:nth-of-type(3n) {
    top: 264px;
  }
  .product-details__properties .properties-info:nth-of-type(4n) {
    top: 322px;
  }
  .product-details__properties .properties-info::before {
    top: 5px;
    left: 5px;
    transform: scale(0.5);
  }
}
.product-details__info-listed {
  padding: 30px 0 20px;
  align-self: flex-start;
}
.product-details__info-listed .info-listed-el {
  display: flex;
  align-items: center;
  min-width: 255px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .product-details__info-listed .info-listed-el:first-of-type {
    margin-top: 0;
  }
}
.product-details__info-listed .el-icon {
  width: 64px;
  height: 64px;
  margin-right: 15px;
}
.product-details__info-listed .el-image {
  width: 85px;
  margin-left: 15px;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
}
.product-details__info-listed .tooltip {
  top: 4px;
  left: 8px;
}
.product-details__info-listed .tooltip__text {
  width: 188px;
}
.product-details--mobile {
  padding: 25px 0 0;
  border-top: 1px solid #d2d2d2;
}
.product-details--mobile .info__header .header-heading {
  font-size: 24px;
}
.product-details--mobile .info__header .collection-link {
  font-size: 14px;
  line-height: 22px;
}
.product-details--mobile .info__header .header-text {
  font-size: 16px;
  line-height: 24px;
}
.product-details--mobile .info__artist {
  display: flex;
  align-items: center;
}
.product-details--mobile .info__artist a {
  color: #1185ed;
}
.product-details--mobile .info__artist .artist-info {
  font-size: 14px;
  line-height: 22px;
}
.product-details--mobile .info__artist .artist-info > .artist-link {
  font-size: 16px;
  line-height: 24px;
}
.product-details--mobile .info__artist .artist-avatar {
  display: flex;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 20px;
}
.product-details--mobile .product-page-more-products {
  margin: 0;
}
.product-details--mobile .product-page-more-products .heading-3 {
  margin-top: 0;
}
.product-details--mobile .product-details-info {
  margin-top: 15px;
  position: relative;
}
.product-details--mobile .product-details-info .item {
  display: flex;
  align-items: center;
}
.product-details--mobile .product-details-info .item-text {
  margin-left: 15px;
}
.product-details--mobile .product-details-info .item:not(:last-child) {
  margin-bottom: 15px;
}
.product-details--mobile .product-details-info .tabs {
  display: flex;
  margin: 20px -7px;
}
.product-details--mobile .product-details-info .tabs .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 105px;
  width: 50%;
  border-radius: 4px;
  margin: 0 8px;
  background-color: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}
.product-details--mobile .product-details-info .tabs .tab-text {
  margin-top: 10px;
  font-size: 14px;
}
.product-details--mobile .product-details-info .trustpilot__stars {
  position: absolute;
  top: 15px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product-details--mobile .product-details-info .trustpilot__stars .stars-rating {
  width: 108px;
}
.product-details--mobile .product-details-info .trustpilot__stars .stars-button {
  color: #1185ed;
}
.product-details--mobile .product-details-info .trustpilot__stars .popup__wrapper {
  overflow: hidden;
}
@media (min-width: 1025px) {
  .product-details {
    flex-direction: row;
    align-items: flex-end;
  }
  .product-details__info {
    max-width: 400px;
  }
  .product-details__properties {
    width: 100%;
    max-width: 423px;
    padding-right: 110px;
    margin-left: 20px;
  }
  .product-details__properties .properties-image {
    width: 100%;
  }
  .product-details__properties .properties-info {
    left: 175px;
  }
  .product-details__info-listed {
    order: 1;
    padding: 10px 0 0 0;
  }
}
@media (min-width: 768px) {
  .product-details {
    padding: 40px 0 30px;
  }
}
.simple-header {
  position: relative;
  z-index: 999;
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 1px solid #d2d2d2;
  display: block;
}
.simple-header--drawer-opened {
  z-index: 10 !important;
}
.simple-header--christmas-delivery {
  margin-top: 40px;
}
.simple-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.simple-header__container {
  max-width: 992px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
  height: 50px;
  position: relative;
}
@media (min-width: calc(992 + 15px)) {
  .simple-header__container {
    padding: 0 0;
  }
}
@media (min-width: calc(992 + 15px)) {
  .simple-header__container {
    padding: 0 0;
  }
}
.simple-header__logo {
  height: 33px;
}
.simple-header__logo img {
  height: 100%;
}
.simple-header__logo,
.simple-header__go-back {
  position: absolute;
  left: 15px;
  display: none;
}
@media (min-width: 992px) {
  .simple-header__logo,
  .simple-header__go-back {
    display: block;
  }
}
.simple-header__go-back {
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.simple-header__logo-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 129px;
  width: 100%;
  height: auto;
  justify-content: center;
}
.simple-header__logo-wrapper:hover,
.simple-header__logo-wrapper:active,
.simple-header__logo-wrapper:visited,
.simple-header__logo-wrapper:focus {
  text-decoration: none;
}
.simple-header__logo-wrapper img {
  width: 100%;
  height: 100%;
}
.simple-header__logo-text {
  max-width: 129px;
  width: 100%;
  text-align: end;
  margin-top: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 8px;
  letter-spacing: 0.5px;
}
.lazy-load-image-background {
  position: relative;
  width: 100%;
}
.lazy-load-image-background::before {
  content: '';
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.lazy-load-image-background.opacity {
  opacity: 1 !important;
}
.lazy-load-image-background.lazy-load-image-loaded.opacity {
  transition: opacity 0.3s;
}
.lazy-load-image-background.lazy-load-image-loaded::before {
  opacity: 0;
}
.lazy-load-image-background:not(.lazy-load-image-loaded) {
  min-height: 50px;
}
.lazy-load-image-background:not(.lazy-load-image-loaded) img {
  box-shadow: none;
}
.brandshop-tile .lazy-load-image-background {
  height: 100px;
}
@media (min-width: 576px) {
  .brandshop-tile .lazy-load-image-background {
    height: 200px;
  }
}
.wrapper-img-mount .lazy-load-image-background {
  height: unset;
}
.collection__miniatures .lazy-load-image-background {
  position: absolute;
}
.visualisation-wrapper .lazy-load-image-background:not(.lazy-load-image-loaded),
.hero .lazy-load-image-background:not(.lazy-load-image-loaded) {
  min-height: unset;
}
.visualisation-wrapper .lazy-load-image-background::before,
.hero .lazy-load-image-background::before {
  content: none;
}
.collection__miniature .lazy-load-image-background {
  height: 100%;
}
.mobile-body .cart-container #main-menu {
  height: initial !important;
}
.main-menu--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.main-menu--mobile .main-menu__outer {
  position: relative;
}
.main-menu--mobile .main-menu__inner {
  padding: 10px 15px;
  background: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.main-menu--desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: all 0.3s ease;
}
.main-menu--desktop .main-menu__outer {
  border-bottom: 1px solid #d2d2d2;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
}
.main-menu--desktop .main-menu__inner {
  max-width: 1270px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  position: relative;
}
.main-menu--desktop .main-menu__rolldown {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #d2d2d2;
  background: #ffffff;
  position: absolute;
  top: 0px;
  z-index: -1;
  transition: all 0.3s ease;
}
.main-menu--desktop .main-menu__container {
  position: relative;
  flex-grow: 1;
  height: 100%;
  padding: 0 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 576px) {
  .main-menu--desktop .main-menu__container {
    padding: 0 25px 0 10px;
  }
}
.main-menu--desktop .main-menu__container .main-menu__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  transition: all 0.3s ease;
  top: 2px;
  left: 0;
  position: absolute;
  padding: 0 28px 0 40px;
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__container .main-menu__content {
    left: 0;
  }
}
.main-menu--desktop .main-menu__container .main-menu__item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 100%;
  white-space: nowrap;
  padding-right: 24px;
  cursor: pointer;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.main-menu--desktop .main-menu__container .main-menu__item--variant {
  font-size: 16px;
}
.main-menu--desktop .main-menu__container .main-menu__item:hover,
.main-menu--desktop .main-menu__container .main-menu__item--active {
  text-decoration: none;
}
.main-menu--desktop .main-menu__container .main-menu__item:hover::before,
.main-menu--desktop .main-menu__container .main-menu__item--active::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 23px;
  display: block;
  height: 3px;
  width: calc(100% - 23px);
  background-color: #000;
}
.main-menu--desktop .main-menu__container .main-menu__item--active:last-child::before {
  right: 0;
  width: 100%;
}
.main-menu--desktop .main-menu__container .main-menu__item:last-of-type {
  padding-right: 0;
}
.main-menu--desktop .main-menu__container .main-menu__item:last-of-type:hover::before {
  right: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .main-menu--desktop.main-menu--searchbar-focused:after {
    content: '';
    position: fixed;
    background: rgba(245, 245, 245, 0.9);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .main-menu--desktop.main-menu--searchbar-focused .main-menu__item {
    z-index: -2;
  }
}
.main-menu--desktop.main-menu--searchbar-active {
  transition: all 0.3s ease;
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__rolldown {
  top: 80px;
}
@media (min-width: 1200px) {
  .main-menu--desktop.main-menu--searchbar-active .main-menu__container {
    position: relative;
  }
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__container .main-menu__content {
  position: absolute;
  top: 80px;
  height: 61px;
  left: -60px;
  width: 100vw;
  flex-wrap: wrap;
  overflow: hidden;
}
@media (min-width: 992px) {
  .main-menu--desktop.main-menu--searchbar-active .main-menu__container .main-menu__content {
    left: 0;
    width: 100%;
    flex-wrap: initial;
    overflow: initial;
  }
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__container .main-menu__item {
  padding-right: 23px;
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__container .main-menu__item:last-of-type {
  padding-right: 0;
}
.main-menu--mobile .aside-menu {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 0;
}
.main-menu--mobile .aside-menu__item-wrapper {
  position: relative;
}
.main-menu--mobile .aside-menu__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  padding: 4px 0px 2px 6px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.main-menu--mobile .aside-menu__item--wishlist {
  max-width: 55px;
}
.main-menu--mobile .aside-menu__item--wishlist .aside-menu__counter {
  left: 5px;
}
.main-menu--mobile .aside-menu__item--wishlist svg {
  height: 28px;
}
.main-menu--mobile .aside-menu__item--cart {
  max-width: 45px;
}
.main-menu--mobile .aside-menu__item--cart .aside-menu__counter {
  left: 3px;
}
.main-menu--mobile .aside-menu__item--cart .aside-menu__image {
  padding-left: 5px;
}
.main-menu--mobile .aside-menu__item--user {
  max-width: 51px;
  max-width: 74px;
  flex-direction: row;
  padding-top: 10px;
}
.main-menu--mobile .aside-menu__item--user .aside-menu__arrow {
  width: 16px;
  margin-left: 4px;
}
.main-menu--mobile .aside-menu__item--user .aside-menu__avatar {
  height: 38px;
  width: 38px;
}
.main-menu--mobile .aside-menu__item--search {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  max-width: 52px;
  padding-right: 4px;
}
.main-menu--mobile .aside-menu__item--hidden {
  opacity: 0;
  visibility: hidden;
}
.main-menu--mobile .aside-menu__item--menu {
  padding: 4px 8px 2px 0;
}
.main-menu--mobile .aside-menu__item--menu .aside-menu__image {
  width: 24px;
  height: 22px;
}
.main-menu--mobile .aside-menu__item--club {
  max-width: 40px;
  padding-right: 5px;
}
.main-menu--mobile .aside-menu__item--club .aside-menu__image {
  width: 22px;
  height: 22px;
  z-index: 10;
}
.main-menu--mobile .aside-menu__item--club .aside-menu__label {
  margin-top: 2px;
}
.main-menu--mobile .aside-menu__image {
  height: 22px;
  pointer-events: none;
}
.main-menu--mobile .aside-menu__label {
  color: #000;
  margin-top: 3px;
  white-space: nowrap;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.main-menu--mobile .aside-menu__counter {
  position: absolute;
  top: -1px;
  background-color: transparent;
  border-radius: 50%;
  height: 21px;
  width: 20px;
  line-height: 17px;
  text-align: center;
  padding: 1px;
}
.main-menu--mobile .aside-menu__counter--empty {
  display: none;
}
.main-menu--mobile .aside-menu__counter div {
  color: #ffffff;
  border-radius: 50%;
  background-color: #ff1744;
}
.main-menu--desktop .aside-menu {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 0;
}
.main-menu--desktop .aside-menu .aside-menu__item-wrapper {
  position: relative;
}
.main-menu--desktop .aside-menu .aside-menu__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  padding: 14px 8px 10px 8px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.main-menu--desktop .aside-menu .aside-menu__item--wishlist {
  max-width: 55px;
}
.main-menu--desktop .aside-menu .aside-menu__item--wishlist .aside-menu__counter {
  left: 5px;
}
.main-menu--desktop .aside-menu .aside-menu__item--wishlist svg {
  height: 28px;
}
.main-menu--desktop .aside-menu .aside-menu__item--cart {
  max-width: 45px;
}
.main-menu--desktop .aside-menu .aside-menu__item--cart .aside-menu__counter {
  left: 3px;
}
.main-menu--desktop .aside-menu .aside-menu__item--cart .aside-menu__image {
  padding-left: 5px;
}
.main-menu--desktop .aside-menu .aside-menu__item--user {
  max-width: 51px;
  max-width: 74px;
  flex-direction: row;
  padding-top: 10px;
}
.main-menu--desktop .aside-menu .aside-menu__item--user .aside-menu__arrow {
  width: 16px;
  margin-left: 4px;
}
.main-menu--desktop .aside-menu .aside-menu__item--user .aside-menu__avatar {
  height: 38px;
  width: 38px;
}
.main-menu--desktop .aside-menu .aside-menu__item--search {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  max-width: 52px;
}
.main-menu--desktop .aside-menu .aside-menu__item--hidden {
  opacity: 0;
  visibility: hidden;
}
.main-menu--desktop .aside-menu .aside-menu__item--club {
  max-width: 40px;
}
.main-menu--desktop .aside-menu .aside-menu__item--club .aside-menu__image {
  width: 22px;
  height: 22px;
  z-index: 10;
}
.main-menu--desktop .aside-menu .aside-menu__item--club .aside-menu__label {
  margin-top: 1px;
}
.main-menu--desktop .aside-menu .aside-menu__image {
  height: 20px;
  pointer-events: none;
}
.main-menu--desktop .aside-menu .aside-menu__label {
  color: #000;
  margin-top: 3px;
  white-space: nowrap;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.main-menu--desktop .aside-menu .aside-menu__counter {
  position: absolute;
  top: 6px;
  background-color: transparent;
  border-radius: 50%;
  height: 21px;
  width: 20px;
  line-height: 17px;
  text-align: center;
  padding: 1px;
}
.main-menu--desktop .aside-menu .aside-menu__counter--empty {
  display: none;
}
.main-menu--desktop .aside-menu .aside-menu__counter div {
  color: #fff;
  border-radius: 50%;
  background-color: #ff1744;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown {
  position: absolute;
  top: 50px;
  right: -45px;
  padding-top: 20px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown-content {
  background: #ffffff;
  position: relative;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 15px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown-content:after {
  content: '';
  position: absolute;
  top: -9px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
  right: 27px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--cart {
  width: 285px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--club {
  width: 300px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--club .list {
  margin: 0;
  font-size: 12px;
  line-height: 24px;
  padding-left: 20px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--club .list__item {
  position: relative;
  padding-left: 10px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--club .list__item::before {
  top: 4px;
  background: url(/img/icons/checkmark.svg);
  background-size: cover;
  content: '';
  height: 16px;
  left: -20px;
  position: absolute;
  width: 16px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--club .aside-menu__dropdown-content:after {
  right: 55px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user {
  position: absolute;
  right: 2px;
  top: 47px;
  width: 220px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item {
  padding: 12px 5px;
  display: block;
  color: #000;
  cursor: pointer;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item:first-child {
  padding: 2px 5px 12px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item:last-child {
  padding: 12px 5px 2px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item:hover {
  text-decoration: underline;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item--border {
  border-bottom: 1px solid #d2d2d2;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item--upload {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item--upload object {
  pointer-events: none;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item--badge {
  display: flex;
  justify-content: space-between;
}
.main-menu--desktop .aside-menu .aside-menu__dropdown--user .aside-menu__list-item--badge .aside-menu__badge {
  font-size: 11px;
  line-height: 11px;
  border-radius: 12px;
  padding: 5px 8px;
  background: #1185ed;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  place-items: center;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.main-menu--desktop .main-menu__logo-wrapper {
  display: flex;
  flex-direction: column;
  padding: 14px 35px 14px 20px;
  margin: 0 -35px 0 -20px;
  z-index: 3;
  width: 80px;
}
.main-menu--desktop .main-menu__logo-wrapper:hover,
.main-menu--desktop .main-menu__logo-wrapper:active,
.main-menu--desktop .main-menu__logo-wrapper:visited,
.main-menu--desktop .main-menu__logo-wrapper:focus {
  text-decoration: none;
}
.main-menu--desktop .main-menu__logo-text {
  font-weight: 600;
  font-size: 10px;
  line-height: 8px;
  letter-spacing: 0.5px;
  margin-top: 5px;
  align-self: flex-end;
}
.main-menu--desktop .main-menu__logo {
  display: none;
}
.main-menu--desktop .main-menu__logo--small {
  display: block;
  object-fit: contain;
  height: 100%;
}
@media (min-width: 992px) {
  .main-menu--desktop .main-menu__logo-wrapper {
    width: 184px;
  }
  .main-menu--desktop .main-menu__logo {
    display: block;
    object-fit: contain;
    max-height: 100%;
  }
  .main-menu--desktop .main-menu__logo--small {
    display: none;
  }
}
.main-menu--mobile .main-menu__logo-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: margin 0.3s ease;
  margin-right: 0;
}
.main-menu--mobile .main-menu__logo-wrapper:hover,
.main-menu--mobile .main-menu__logo-wrapper:active,
.main-menu--mobile .main-menu__logo-wrapper:visited,
.main-menu--mobile .main-menu__logo-wrapper:focus {
  text-decoration: none;
}
@media (min-width: 350px) {
  .main-menu--mobile .main-menu__logo-wrapper {
    justify-content: center;
  }
}
.main-menu--mobile .main-menu__logo {
  display: block;
  object-fit: contain;
  max-height: 100%;
  max-width: 95px;
}
@media (min-width: 320px) {
  .main-menu--mobile .main-menu__logo {
    max-width: 105px;
  }
}
@media (min-width: 350px) {
  .main-menu--mobile .main-menu__logo {
    max-width: 120px;
  }
}
.main-menu--mobile .main-menu__logo-text {
  max-width: 105px;
  width: 100%;
  text-align: end;
  margin-top: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 8px;
  letter-spacing: 0.5px;
}
@media (min-width: 350px) {
  .main-menu--mobile .main-menu__logo-text {
    max-width: 120px;
  }
}
.main-menu--mobile .main-menu__logo--small {
  display: none;
}
.main-menu--mobile.main-menu--searchbar-active .main-menu__logo-wrapper {
  margin-right: -40px;
}
/* purgecss start ignore */
.main-menu--desktop .main-menu__panel {
  position: relative;
  width: 100%;
  min-height: 285px;
  max-height: 455px;
  top: -1px;
  background: #ffffff;
  z-index: -1;
  pointer-events: all;
  display: none;
}
.main-menu--desktop .main-menu__panel--active {
  display: block;
}
.main-menu--desktop .main-menu__panel:after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.main-menu--desktop .main-menu__panel .panel__item {
  display: block;
  line-height: 34px;
  padding-right: 70px;
  width: auto;
  color: #000;
  font-size: 15px;
  white-space: nowrap;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.main-menu--desktop .main-menu__panel .panel__banner {
  padding: 5px;
  margin: 0 0 15px 15px;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  max-width: 245px;
  width: 45%;
  overflow: hidden;
}
.main-menu--desktop .main-menu__panel .panel__banner--small {
  padding: 2px;
}
.main-menu--desktop .main-menu__panel .panel__banner--small .panel__label {
  padding: 0 8px 4px;
}
.main-menu--desktop .main-menu__panel .panel__banner:nth-of-type(3),
.main-menu--desktop .main-menu__panel .panel__banner:nth-of-type(4) {
  margin-bottom: 0;
}
.main-menu--desktop .main-menu__panel .panel__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1270px;
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.main-menu--desktop .main-menu__panel .panel__column {
  margin-right: auto;
}
.main-menu--desktop .main-menu__panel .panel__column--banners {
  width: 500px;
  margin-left: auto;
  align-self: center;
  position: relative;
}
.main-menu--desktop .main-menu__panel .panel__column-title {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  line-height: 34px;
}
.main-menu--desktop .main-menu__panel .panel__section {
  padding: 20px 30px 0 0;
}
.main-menu--desktop .main-menu__panel .panel__label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  padding: 2px 8px 1px 8px;
  white-space: nowrap;
}
.main-menu--desktop .main-menu__panel .panel__image {
  max-width: 100%;
}
.main-menu--desktop .main-menu__panel .panel__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.main-menu--desktop .main-menu__panel .panel__container {
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.main-menu--desktop .main-menu__panel--active {
  display: block;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.main-menu--desktop .main-menu__panel--brands .panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__panel--brands .panel__inner {
    grid-column-gap: 60px;
    padding: 40px 120px;
  }
}
.main-menu--desktop .main-menu__panel--brands .panel__item {
  display: block;
}
.main-menu--desktop .main-menu__panel--brands .panel__item--banner {
  padding-right: 0;
  margin: 10px 0 12px;
  height: 160px;
  width: 340px;
}
.main-menu--desktop .main-menu__panel--brands .panel__item--banner > img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.main-menu--desktop .main-menu__panel--brands .panel__item--link {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #1185ed;
  margin: 20px 0;
}
.main-menu--desktop .main-menu__panel--brands .panel__item--link > img {
  height: 22px;
  width: 22px;
  margin-left: 20px;
  margin-top: -2px;
}
.main-menu--desktop .main-menu__panel--brands .panel__container {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
}
.main-menu--desktop .main-menu__panel--brands .panel__list-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 0px;
}
.main-menu--desktop .main-menu__panel--brands .panel__list-content:last-of-type {
  grid-template-rows: 1fr;
}
.main-menu--desktop .main-menu__panel--brands .panel__column {
  margin-right: initial;
}
.main-menu--desktop .main-menu__panel--brands .panel__column--middle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.main-menu--desktop .main-menu__panel--brands .panel__column--divider {
  background: #d2d2d2;
  margin: 35px 0 5px;
  height: calc(100% - 40px);
}
.main-menu--desktop .main-menu__panel--brands .panel__banner {
  display: block;
  margin: 20px 0 0;
  width: 100%;
}
.main-menu--desktop .main-menu__panel--collections .panel__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.2fr 1.3fr 0.5fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}
.main-menu--desktop .main-menu__panel--collections .panel__list-content {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 0px;
}
.main-menu--desktop .main-menu__panel--collections .panel__column {
  margin-right: initial;
}
.main-menu--desktop .main-menu__panel--collections .panel__column--banners {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__panel--collections .panel__column--banners {
    flex-direction: row;
    justify-content: center;
  }
}
.main-menu--desktop .main-menu__panel--collections .panel__column--divider {
  position: relative;
  padding-top: 15px;
}
.main-menu--desktop .main-menu__panel--collections .panel__column--divider:after {
  position: absolute;
  width: 1px;
  background: #d2d2d2;
  top: 22%;
  bottom: 5px;
  right: 0;
}
@media (min-width: 992px) {
  .main-menu--desktop .main-menu__panel--collections .panel__column--divider:after {
    content: '';
  }
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__panel--collections .panel__column--divider:after {
    right: -5%;
  }
}
.main-menu--desktop .main-menu__panel--collections .panel__banner {
  margin: 15px 5px;
  width: 100%;
}
@media (min-width: 992px) {
  .main-menu--desktop .main-menu__panel--collections .panel__banner {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__panel--collections .panel__banner {
    width: 45%;
  }
}
.main-menu--desktop .main-menu__panel--collections .panel__item:nth-child(2n + 1) {
  padding-right: 15px;
}
.main-menu--desktop .main-menu__panel--collections .panel__item:nth-child(2n + 2) {
  padding-right: 0;
}
.main-menu--desktop .main-menu__panel--categories .panel__item {
  display: none;
}
.main-menu--desktop .main-menu__panel--categories .panel__item:nth-child(-n + 7) {
  display: block;
}
.main-menu--desktop .main-menu__panel--categories .panel__container {
  justify-content: flex-start;
  align-items: center;
  background: url('/img/search/pattern.png') center no-repeat;
  padding-top: 0;
}
.main-menu--desktop .main-menu__panel--categories .panel__list-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.main-menu--desktop .main-menu__panel--accessories {
  min-height: inherit;
}
.main-menu--desktop .main-menu__panel--accessories .panel__inner {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  grid-template-rows: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 0px;
}
@media (min-width: 1200px) {
  .main-menu--desktop .main-menu__panel--accessories .panel__inner {
    padding: 40px 120px;
  }
}
.main-menu--desktop .main-menu__panel--accessories .panel__item {
  display: flex;
  position: relative;
  flex-direction: column;
  height: inherit;
  border-radius: 8px;
  padding: 16px;
  background-color: #eceff4;
  transition: box-shadow 0.3s ease;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item:hover {
  box-shadow: 0px 2px 6px rgba(16, 17, 26, 0.2);
  text-decoration: none;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item--label {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  z-index: 1;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item--content {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  z-index: 1;
  margin-bottom: 24px;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item--image {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  width: 175px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 0;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item:last-of-type .panel__item--image {
  width: 200px;
}
.main-menu--desktop .main-menu__panel--accessories .panel__item--button {
  background: url('/img/icons/arrow.png');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
  border-radius: 99%;
  width: 32px;
  height: 32px;
  background-color: white;
  margin-top: auto;
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__panel {
  top: 59px;
}
/* purgecss end ignore */
.main-menu--desktop .main-menu__search {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  flex: 1 0 auto;
  padding-left: 30px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.main-menu--desktop.main-menu--searchbar-active .main-menu__search {
  opacity: 1;
  visibility: visible;
}
.main-menu--mobile .main-menu__search {
  background: #ffffff;
  position: relative;
  margin-top: -50px;
  z-index: 1;
  transition: margin 0.3s ease;
}
.main-menu--mobile .main-menu__search .searchbar {
  margin: 0;
}
.main-menu--mobile .main-menu__search .searchbar--autocomplete {
  padding: 0 15px 10px;
  background: #ffffff;
  border-bottom: 1px solid #d2d2d2;
  overflow-y: scroll;
  overflow-x: hidden;
}
.main-menu--mobile .main-menu__search .searchbar--autocomplete:after {
  left: 30px;
}
.searchbar--focused .main-menu--mobile .main-menu__search {
  margin-top: 0;
}
.searchbar--focused .main-menu--mobile .main-menu__search .searchbar--autocomplete {
  height: 100vh;
  padding: 15px;
  max-width: 100vw;
}
@media (min-width: 768px) {
  .searchbar--focused .main-menu--mobile .main-menu__search .searchbar--autocomplete {
    height: initial;
  }
}
.searchbar--focused .main-menu--mobile .main-menu__search .searchbar--autocomplete:after {
  left: 30px;
  top: 25px;
}
.main-menu--mobile.main-menu--searchbar-active .main-menu__search {
  margin-top: 0;
}
.main-menu--mobile .side-panel {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background: #ffffff;
  transition: left 0.3s ease;
  z-index: 9999;
  padding-bottom: 50px;
}
.main-menu--mobile .side-panel--active {
  left: 0;
}
.main-menu--mobile .side-panel--active .side-panel--subnav {
  visibility: visible;
  transition: visibility 0.01s ease 0.3s, left 0.3s ease;
}
.main-menu--mobile .side-panel--subnav {
  top: 0;
  left: 100vw;
  width: 100vw;
  min-height: 100vh;
  transition: visibility 0.01s ease, left 0.3s ease;
  visibility: hidden;
}
.main-menu--mobile .side-panel--subnav.side-panel--active {
  left: 0;
}
.main-menu--mobile .side-panel__wrapper {
  position: relative;
}
.main-menu--mobile .side-panel__list,
.main-menu--mobile .side-panel__content {
  padding: 0 15px 30px;
}
.main-menu--mobile .side-panel__item {
  padding: 13px 0;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu--mobile .side-panel__item a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  width: 100%;
}
.main-menu--mobile .side-panel__item span {
  line-height: 24px;
}
.main-menu--mobile .side-panel__heading {
  border-bottom: 1px solid #d2d2d2;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu--mobile .side-panel__close object {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.main-menu--mobile .side-panel__go-back object {
  height: 20px;
  pointer-events: none;
}
.main-menu--mobile .side-panel__arrow {
  height: 14px;
}
.menu__switcher {
  padding: 25px 0;
}
.menu__switcher-mobile {
  padding: 20px 20px 0;
  margin: 0 -20px;
  border-top: 1px solid #d2d2d2;
}
.menu__switcher-mobile--grid {
  column-count: 2;
}
.menu__switcher-mobile--grid .category-switcher__item {
  display: block;
  padding-bottom: 20px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.menu__switcher h2 {
  width: 100%;
}
.menu__switcher-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-bottom: 25px;
}
@media (min-width: 375px) {
  .menu__switcher-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) {
  .menu__switcher-container {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .menu__switcher-container {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.menu__switcher .heading-placeholder {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  color: transparent;
  width: 50%;
}
.menu__tile {
  display: flex;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  position: relative;
}
.menu__tile p {
  word-break: break-word;
}
@supports (hyphens: auto) {
  .menu__tile p {
    hyphens: auto;
  }
}
@media (min-width: 576px) {
  .menu__tile p {
    font-size: initial;
  }
}
.menu__tile img.error {
  display: none;
}
.menu__tile-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.menu__tile-image--placeholder {
  height: 50px;
  width: 50px;
}
.menu__tile--placeholder {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.menu__tile--placeholder > .menu__tile-image,
.menu__tile--placeholder > .d__flex,
.menu__tile--placeholder > .menu__tile-arrow {
  opacity: 0;
}
/****** Topbar ******/
.topbar {
  border-bottom: 1px solid #d2d2d2;
  width: 100%;
  min-height: 21px;
  max-height: 41px;
}
@media (min-width: 768px) {
  .topbar {
    max-height: 44px;
  }
}
.topbar--animate {
  -webkit-animation: fade-in 2s both;
  animation: fade-in 2s both;
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.topbar--black {
  background: #000;
  color: #ffffff;
}
.topbar--blue {
  background: #1185ed;
  color: #ffffff;
}
.topbar--blue .topbar__link {
  color: #ffffff;
}
.topbar--grey {
  background: #6e6e6e;
  color: #ffffff;
}
.topbar--grey .topbar__link {
  color: #ffffff;
}
.topbar__content {
  height: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: unset;
}
@media (min-width: 768px) {
  .topbar__content {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .topbar__text {
    margin-left: 15px;
  }
}
.topbar__text .black-friday-text-regular {
  display: block;
}
.topbar__text .black-friday-text-temporary {
  display: none;
}
.topbar__trees {
  display: block;
  overflow-x: hidden;
}
.topbar__separator {
  display: inline-block;
  margin: 0 4px;
}
.black-friday-color-change .topbar {
  max-height: none;
}
.black-friday-color-change .black-friday-text-regular {
  display: none;
}
.black-friday-color-change .black-friday-text-temporary {
  display: block;
}
.black-friday-text-temporary {
  display: none;
}
.cart-box {
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.cart-box::after {
  content: '';
  position: absolute;
  top: -9px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
  right: 57px;
}
.cart-box__item {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cart-box__item:not(.cart-box__item--magnet) .cart-box__image img {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.cart-box__item--magnet .cart-box__image img {
  max-width: 100%;
  max-height: 100%;
}
.cart-box__image {
  flex-basis: 39.75%;
  width: 100px;
  height: 100px;
  position: relative;
  background: #f5f5f5;
}
.cart-box__image img {
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cart-box__image img.magnet {
  max-width: 100%;
  max-height: 100%;
}
.cart-box__image img.displateFrame {
  max-width: 72%;
  max-height: 74%;
}
.cart-box__description {
  width: 56%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  word-break: normal;
  position: relative;
}
.cart-box__description span {
  display: inline-block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44px;
}
.cart-box__details {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-between;
}
.cart-box__row {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
}
.cart-box__price {
  position: absolute;
  right: 6%;
  bottom: -1px;
}
.cart-box__price span {
  text-align: right;
  display: block;
}
.cart-box__show-more {
  border-bottom: 1px solid #d2d2d2;
  max-height: 38px;
  margin-top: -15px;
  padding-bottom: 7px;
  padding-top: 7px;
}
@media (max-height: 730px) {
  .cart-box .hidden-on-short-screens {
    display: none;
  }
}
.main-menu--mobile .main-menu__promo-bar {
  transform: translateY(-85px);
  opacity: 0;
  height: 0px;
  z-index: -2;
}
.main-menu--mobile .main-menu__promo-bar__counters {
  height: 0px;
}
.main-menu--mobile .main-menu__promo-bar__counter {
  height: 0px;
}
.main-menu--mobile .main-menu__promo-bar__counter-item {
  height: 0px;
}
.main-menu--desktop .main-menu__promo-bar {
  height: 49px;
  position: absolute;
  top: calc(141px - 49px);
  opacity: 0;
  z-index: -2;
}
.main-menu--desktop .main-menu__promo-bar__counters {
  height: 0px;
}
.main-menu--desktop .main-menu__promo-bar__counter {
  height: 0px;
}
.main-menu--desktop .main-menu__promo-bar__counter-item {
  height: 0px;
}
.main-menu--searchbar-active .main-menu__promo-bar {
  position: relative;
  height: 85px;
  background-color: #4a0000;
  color: #ffffff;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
  z-index: 0;
}
.main-menu--searchbar-active .main-menu__promo-bar--inactive {
  margin-top: -85px;
}
.main-menu--searchbar-active .main-menu__promo-bar__text {
  font-weight: 700;
  margin-bottom: 8px;
}
.main-menu--searchbar-active .main-menu__promo-bar__counters {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.main-menu--searchbar-active .main-menu__promo-bar__close-icon {
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
}
.main-menu--searchbar-active .main-menu__promo-bar__close-icon:hover {
  cursor: pointer;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter {
  height: 37px;
  width: 44px;
  margin: 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter:first-child {
  margin-left: 0;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter:last-child {
  margin-right: 0;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter-item {
  height: 24px;
  width: 21px;
  padding: 2px 0;
  color: #ffffff;
  background-color: #000;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter-item:first-child {
  margin-right: 2px;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter-separator {
  height: 24px;
  padding: 2px 0;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-menu--searchbar-active .main-menu__promo-bar__counter-label {
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  opacity: 0.7;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .main-menu--searchbar-active .main-menu__promo-bar {
    height: 49px;
    position: absolute;
    top: 141px;
    flex-direction: row;
    transition: top 0.3s ease, opacity 0.3s ease;
    margin-top: -1px;
    z-index: -1;
  }
  .main-menu--searchbar-active .main-menu__promo-bar--inactive {
    top: calc(141px - 49px);
    opacity: 0;
  }
  .main-menu--searchbar-active .main-menu__promo-bar__text {
    margin-right: 24px;
    margin-bottom: 0;
  }
  .main-menu--searchbar-active .main-menu__promo-bar__close-icon {
    position: static;
    margin-left: 24px;
  }
}
/* ===================== START FOOTER ======================= */
.footer__wrapper {
  width: 100%;
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
}
.footer__wrapper img {
  max-width: 100%;
  max-height: 60px;
}
.footer__wrapper .footer {
  max-width: 1270px;
  margin: 0 auto;
  padding: 50px 20px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer__wrapper .footer__row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.footer__wrapper .footer__row--right {
  justify-content: flex-end;
  margin-top: -80px;
  flex-basis: 100%;
  pointer-events: none;
}
.footer__wrapper .footer__row--right .footer__column {
  pointer-events: auto;
}
.footer__wrapper .footer__column {
  flex-basis: 16.5%;
}
.footer__wrapper .footer__column--wide {
  flex-basis: 34%;
}
.footer__wrapper .footer__item {
  display: block;
  line-height: 34px;
}
.footer__wrapper .footer__item--heading {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.footer__wrapper .footer__link {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 34px;
}
.footer__wrapper .footer__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.footer__wrapper .footer__container--featured {
  margin: 0 -5px;
}
.footer__wrapper .footer__container--featured img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__wrapper .footer__container--social object {
  pointer-events: none;
}
.footer__wrapper .footer__container .footer__item--heading {
  flex-basis: 100%;
}
.footer__wrapper .footer__social .footer__container {
  justify-content: flex-start;
}
.footer__wrapper .footer__social img {
  max-height: 48px;
  margin: 0 8px 0 -4px;
}
.footer__wrapper .footer__payments img {
  max-height: 48px;
}
.footer__wrapper .footer__copyright {
  padding-top: 10px;
  margin-top: 30px;
  color: #6e6e6e;
  border-top: 1px solid #d2d2d2;
  flex-basis: 100%;
}
.footer__wrapper .featured-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: calc(100% / 5);
  padding: 0 5px 20px;
}
@media (max-width: 992px) {
  .footer__wrapper {
    border: none;
  }
  .footer__wrapper .footer {
    padding: 40px 20px 20px 20px;
  }
  .footer__wrapper .footer__column:not(.footer__column--wide) {
    display: none;
  }
  .footer__wrapper .footer__column--wide {
    flex-basis: 46%;
    flex-grow: 1;
  }
  .footer__wrapper .footer__copyright {
    margin-top: 15px;
  }
  .footer__wrapper .footer__row--right {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .footer__wrapper .footer__container--featured {
    justify-content: space-between;
  }
}
.mobile-body .footer__wrapper {
  border: none;
}
.mobile-body .footer__wrapper .footer {
  padding: 40px 20px 20px 20px;
}
.mobile-body .footer__wrapper .footer__column:not(.footer__column--wide) {
  display: none;
}
.mobile-body .footer__wrapper .footer__column--wide {
  flex-basis: 46%;
  flex-grow: 1;
}
.mobile-body .footer__wrapper .footer__copyright {
  margin-top: 15px;
}
.mobile-body .footer__wrapper .footer__item--heading {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.mobile-body .footer__wrapper .footer__row--right {
  margin-top: 10px;
}
.mobile-body .footer__wrapper .footer__container--featured {
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .mobile-body .footer__wrapper .footer__container--featured {
    justify-content: space-between;
  }
}
/* ====================== END FOOTER ======================== */
.size-picker {
  /* purgecss ignore */
}
.size-picker input[type='radio'] {
  display: none;
}
.size-picker .visualisation-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.size-picker .image-background {
  position: absolute;
  bottom: -1px;
  left: 50%;
  z-index: 999;
  height: calc(100% - 41px);
  width: 142px;
  transform: translateX(-50%);
}
@media (min-width: 576px) {
  .size-picker .image-background {
    bottom: 0;
  }
}
.size-picker .image-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9999999;
  transform: translateX(-50%);
  width: 142px;
  height: 100%;
}
.size-picker .image-background-size--m::before {
  background: url('/img/product/new_product/model_m@2x.png') center / 112px no-repeat;
}
.size-picker .image-background-size--m.image-background--horizontal::before {
  background: url('/img/product/new_product/model_m_horizontal@2x.png') center / 112px no-repeat;
}
.size-picker .image-background-size--l::before {
  background: url('/img/product/new_product/model_l@2x_n.png') center / 112px no-repeat;
}
.size-picker .image-background-size--l.image-background--horizontal::before {
  background: url('/img/product/new_product/model_l_horizontal@2x.png') center / 112px no-repeat;
}
.size-picker .image-background-size--xl::before {
  background: url('/img/product/new_product/empty_XL@2x.png') center / 112px no-repeat;
}
.size-picker .image-background-size--xl.image-background--horizontal::before {
  background: url('/img/product/new_product/model_xl_horizontal@2x.png') center / 112px no-repeat;
}
.size-picker .size-picker__label-size--m .image-wrapper {
  bottom: 0px;
  left: 49.5px;
  width: 38.9px;
  transform: scale(1.008);
  clip-path: inset(0px 0px 0.6px 0px);
}
.size-picker .size-picker__label-size--m .btn--horizontal .image-wrapper {
  top: 60px;
  bottom: unset;
  left: 42px;
  width: 55.4px;
}
.size-picker .size-picker__label-size--m .btn--horizontal .image-wrapper::before {
  height: 39px;
}
.size-picker .size-picker__label-size--l .image-wrapper {
  bottom: 0.8px;
  left: 44px;
  width: 50px;
  clip-path: inset(1px 0px 0px 0.5px);
}
.size-picker .size-picker__label-size--l .btn--horizontal .image-wrapper {
  top: 48.8px;
  bottom: unset;
  left: 33.1px;
  width: 71.4px;
}
.size-picker .size-picker__label-size--xl .image-wrapper {
  top: 10.5px;
  left: 56.3px;
  width: 56.3px;
  transform: scale(1.02);
}
.size-picker .size-picker__label-size--xl .image-background--horizontal .image-wrapper {
  top: 14px;
  left: 41px;
  width: 73.3px;
  transform: none;
}
.size-picker .choose-size {
  display: flex;
  justify-content: flex-start;
  height: 145px;
}
.size-picker .choose-size .choose-size__btn {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.size-picker .choose-size .choose-size__btn--active {
  outline: 3px #1185ed solid;
}
.size-picker .choose-size .image-wrapper {
  position: absolute;
}
.size-picker .choose-size .size-picker__label {
  cursor: pointer;
  width: 31%;
  flex-basis: 31%;
  margin-right: 3.5%;
  display: flex;
}
.size-picker .choose-size .size-picker__label:last-of-type {
  margin-right: 0;
}
.size-picker .choose-size .size-picker__label.single {
  margin-right: 0;
}
.size-picker .choose-size .choose-size__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #d2d2d2;
}
.size-picker .choose-size .choose-size__btn-img {
  display: flex;
}
.size-picker .choose-size .choose-size__btn img {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.size-picker .choose-size .size-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  width: 100%;
  padding: 6px 4px;
}
.size-picker .choose-size .size-title p {
  margin-left: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .size-picker .image-background-size--m::before,
  .size-picker .image-background-size--l::before,
  .size-picker .image-background-size--xl::before,
  .size-picker .image-background-size--m.image-background--horizontal:before,
  .size-picker .image-background-size--l.image-background--horizontal:before,
  .size-picker .image-background-size--xl.image-background--horizontal:before {
    background-size: 142px;
  }
}
@media (min-width: 768px) {
  .size-picker .choose-size {
    height: 175px;
  }
  .size-picker .size-picker__label-size--m .image-wrapper {
    bottom: 0;
    left: 44px;
    width: 49px;
  }
  .size-picker .size-picker__label-size--m .btn--horizontal .image-wrapper {
    top: 77px;
    bottom: unset;
    left: 34px;
    width: 70px;
  }
  .size-picker .size-picker__label-size--m .btn--horizontal .image-wrapper::before {
    height: 50px;
  }
  .size-picker .size-picker__label-size--l .image-wrapper {
    bottom: 2px;
    left: 37px;
    width: 64px;
  }
  .size-picker .size-picker__label-size--l .btn--horizontal .image-wrapper {
    top: 63.1px;
    bottom: unset;
    left: 24px;
    width: 90px;
  }
  .size-picker .size-picker__label-size--xl .image-wrapper {
    top: 13px;
    left: 52px;
    width: 72px;
    transform: none;
  }
  .size-picker .size-picker__label-size--xl .image-background--horizontal .image-wrapper {
    top: 19px;
    left: 32px;
    width: 94px;
    transform: none;
  }
}
.size-picker .best-choice-label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background-color: #ebf8ff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 8px;
  letter-spacing: 0.5px;
  color: #1185ed;
  z-index: 1001;
}
.basic-image-slider-container {
  display: inline-flex;
  flex-direction: column;
  width: calc(100% + 30px);
  margin: 0 -15px;
  background-color: #ffffff;
}
.basic-image-slider-container .product-image-row {
  position: relative;
  display: inline-flex;
  width: 100%;
  overflow: hidden;
}
.basic-image-slider-container .swiper-handler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.basic-image-slider-container .swiper-handler--thin {
  width: 77%;
}
.basic-image-slider-container .nav-btn-box {
  display: inline-flex;
  margin: 24px 3px 0;
  justify-content: space-between;
  max-height: 600px;
}
@media (min-width: 768px) {
  .basic-image-slider-container .nav-btn-box {
    margin: 10px 15px 0;
  }
}
.basic-image-slider-container .hero-slider-navigation {
  position: relative;
  width: calc((100% / 3) - 10px);
  padding-bottom: calc((100% / 3) - 10px);
  cursor: pointer;
  overflow: hidden;
}
.basic-image-slider-container .hero-slider-navigation__image {
  position: absolute;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  transition: 0.4s;
}
.basic-image-slider-container .hero-slider-navigation__image img {
  width: 100%;
  height: 100%;
}
.basic-image-slider-container .hero-slider-navigation.active {
  outline-style: solid;
  outline-color: #1185ed;
}
.basic-image-slider-container .hero-slider-navigation:last-child {
  margin: 0;
}
.basic-image-slider-container .gallery-container {
  perspective: 630px;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
}
.basic-image-slider-container .gallery-container .thief-defender {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.basic-image-slider-container .gallery-container::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.basic-image-slider-container .gallery-container__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  overflow: hidden;
  opacity: 1;
  transition: transform 0s ease, all 0.4s ease;
}
.basic-image-slider-container .gallery-container__image img {
  height: 100%;
  width: 100%;
}
.basic-image-slider-container .text-on-plates {
  position: absolute;
  bottom: 5px;
  right: 10px;
  text-align: right;
  font-size: 10px;
}
.basic-image-slider-container .slider-preview-tooltips {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.basic-image-slider-container .slider-preview-tooltips__el {
  position: absolute;
  padding: 4px 12px 4px 35px;
  border-radius: 16px;
  font-size: 14px;
  background-color: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.basic-image-slider-container.hero-slider--no-transition .gallery-container__image {
  transition: none !important;
}
@media (min-width: 576px) {
  .basic-image-slider-container .gallery-container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .basic-image-slider-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    vertical-align: top;
    width: calc(50% + 20px);
    margin: 0 20px 0 0;
    padding: 0;
    background-color: transparent;
  }
  .basic-image-slider-container .nav-btn-box {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
@media (min-width: 1025px) {
  .basic-image-slider-container {
    flex-direction: row-reverse;
    width: 62%;
  }
  .basic-image-slider-container .text-on-plates {
    font-size: 16px;
  }
  .basic-image-slider-container .product-image-row {
    height: 600px;
  }
  .basic-image-slider-container .gallery-container {
    max-height: 600px;
  }
  .basic-image-slider-container .gallery-container::after {
    content: none;
  }
  .basic-image-slider-container .nav-btn-box {
    flex-direction: column;
    align-self: stretch;
    flex-shrink: 0;
    width: 140px;
    margin: 0;
  }
  .basic-image-slider-container .hero-slider-navigation {
    height: 140px;
    width: 100%;
    margin-bottom: 5px;
  }
  .basic-image-slider-container .product-image-row {
    margin: 0 0 0 2%;
  }
  .basic-image-slider-container .gallery-container {
    min-width: 435px;
  }
  .basic-image-slider-container .gallery-container--alone:hover {
    overflow: hidden;
  }
  .basic-image-slider-container .gallery-container--alone:hover .slider-badge {
    opacity: 0;
  }
  .basic-image-slider-container .gallery-container--alone:hover .gallery-container__image {
    opacity: 0;
  }
}
.product-slider {
  display: flex;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  align-items: center;
  opacity: 0;
  animation: appearIn 1s forwards;
}
.product-slider .slick-slider {
  display: flex;
  flex-direction: column;
}
.product-slider--rows .slick-slider {
  flex-direction: column !important;
}
.product-slider--rows .slick-slider .slick-list {
  max-width: initial;
}
.product-slider--rows .slick-slider .product-slider__image {
  max-height: initial;
}
.product-slider--rows .product-slider__navigation {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin: 15px 0 !important;
}
.product-slider .slick-list {
  margin-left: 0 !important;
}
@media (min-width: 1200px) {
  .product-slider .slick-slider {
    flex-direction: row-reverse;
  }
  .product-slider .slick-list {
    max-width: 80%;
  }
}
.product-slider__navigation {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 13px;
  margin: 15px 0 !important;
}
@media (min-width: 1200px) {
  .product-slider__navigation {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    margin: 0 10px 0 0 !important;
    max-height: 600px;
    width: 140px;
  }
}
.product-slider__navigation li {
  cursor: pointer;
}
.product-slider__navigation li img {
  transition: padding 0.3s ease;
  outline: 1px solid #d2d2d2;
  outline-offset: -1px;
}
@media (min-width: 1200px) {
  .product-slider__navigation li img {
    outline: none;
    background: #ffffff;
    background-color: #ffffff;
    padding: 10px;
    min-height: 146px;
  }
}
.product-slider__navigation li.slick-active img {
  outline: 2px solid #1185ed;
  outline-offset: -2px;
  padding: 0;
}
.product-slider__image {
  padding: 10px;
  background: #ffffff;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .product-slider__image {
    max-height: 600px;
    max-width: 600px;
  }
}
.promo-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 20px 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, #624cc8 0%, #8f7fd8 100%);
}
.promo-banner:hover {
  text-decoration: none;
}
.promo-banner__icon {
  font-size: 20px;
  line-height: 28px;
  padding: 8px;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}
.promo-banner__content {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-right: 16px;
  color: white;
  max-width: 445px;
  flex: 1;
}
.promo-banner__button {
  display: flex;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #eceff4;
  color: #10111a;
}
.promo-banner__button--icon {
  display: none !important;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 1px solid #d8dde1;
  border-radius: 100%;
  background-color: #eceff4;
  box-shadow: 0px 2px 6px 0px rgba(16, 17, 26, 0.2);
}
@media (max-width: 991px) {
  .promo-banner {
    padding: 16px 20px;
    margin: 20px 0;
  }
  .promo-banner__icon {
    display: none;
  }
  .promo-banner__button {
    display: none;
  }
  .promo-banner__button--icon {
    display: flex !important;
  }
}
.promo-banner.banner-uploader {
  position: absolute;
  background: #1185ed;
  z-index: 21;
  top: 40px;
  right: -60px;
}
.promo-banner.banner-uploader.banner-relative {
  position: relative;
  top: inherit;
  width: 614px;
  right: 0;
  margin: 16px auto 0;
}
@media (max-width: 991px) {
  .promo-banner.banner-uploader {
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
  }
  .promo-banner.banner-uploader.banner-relative {
    left: 0;
  }
  .promo-banner.banner-uploader .promo-banner__content {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .promo-banner.banner-uploader {
    right: 0;
  }
}
.empty-search {
  background: url('/img/search/search_arrows.png') center top no-repeat;
  text-align: center;
  width: 100%;
  margin-top: calc(-5rem - 36px);
}
.empty-search img {
  margin: 6rem 0 2rem 0;
}
.empty-search h1 {
  margin: 0.5rem 0;
}
.empty-search h1:first-letter {
  text-transform: capitalize;
}
.empty-search hr {
  margin: 4rem 0 0.5rem 0;
  border-top: 2px solid #eee;
}
body.mobile-body .empty-search {
  margin-top: 0;
}
.shopby-search {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shopby-search h3 {
  flex-basis: 100%;
  margin: 1.5rem 0;
}
.shopby-search .shopby-item-search {
  flex-basis: 48%;
  background: #ffffff;
  margin: 0.5rem 0;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 80px 5px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.shopby-search .shopby-item-search p {
  color: #000;
  background: #ffffff;
  padding: 0.75rem 5% 0.85rem 5%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .shopby-search .shopby-item-search p {
    padding: 1rem 5%;
  }
}
.shopby-search .shopby-item-search img {
  padding: 1%;
  width: 100%;
  object-fit: cover;
  height: 160px;
}
@media (min-width: 768px) {
  .shopby-search .shopby-item-search img {
    height: 140px;
  }
}
@media (min-width: 992px) {
  .shopby-search .shopby-item-search img {
    height: 190px;
  }
}
.shopby-search .shopby-item-search:hover {
  transform: scale(1.025) translateZ(0);
  text-decoration: none;
}
@media (min-width: 768px) {
  .shopby-search .shopby-item-search {
    flex-basis: 23.5%;
    margin: 10px 0;
  }
}
.search-result-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 1rem;
  align-content: flex-start;
}
.search-result-wrapper .load-more-wrapper {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  height: 410px;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 999;
}
.search-result-wrapper .load-more-button {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 1000;
  padding: 0.5rem 1.75rem;
  box-shadow: 0px 0px 65px 10px rgba(217, 217, 217, 0.8);
}
.search-result-wrapper .browse-list-item {
  max-width: 40%;
  width: 650px;
  margin: 0 auto;
}
.search-result-wrapper .browse-list-item .displate-item-link {
  background-color: #f9f9f9;
}
.search-result-wrapper .browse-list-item .displate-item-link .item-image-container .item-image-inner > img.loaded {
  border-radius: 2px;
  box-shadow: 4px 4px 15px 0px rgba(150, 150, 150, 0.45);
  outline: 1px solid rgba(255, 255, 255, 0.2);
}
.search-result-wrapper .browse-list-item .collection-list-price {
  font-variant-numeric: oldstyle-nums;
  transform: translate(0, -2px);
}
.search-result-wrapper .browse-list-item .collection-list-price smallcurrency {
  padding-right: 2px;
}
.search-result-wrapper .browse-list-item:not(.browse-list-item-new) {
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .search-result-wrapper .browse-list-item:not(.browse-list-item-new) {
    max-width: 30%;
    margin: 0 1.5% 30px;
  }
}
@media (min-width: 992px) {
  .search-result-wrapper .browse-list-item:not(.browse-list-item-new) {
    max-width: 23%;
    margin: 0 1% 30px;
  }
}
.search-result-wrapper .browse-list-item.browse-list-item-new {
  flex-basis: 40%;
  width: 40%;
}
@media (min-width: 576px) {
  .search-result-wrapper .browse-list-item.browse-list-item-new {
    flex-basis: 30%;
    width: 30%;
  }
}
@media (min-width: 768px) {
  .search-result-wrapper .browse-list-item.browse-list-item-new {
    flex-basis: 21%;
    width: 21%;
  }
}
.search-result-wrapper .browse-list-item:nth-child(-n + 34) {
  display: block;
}
@media (min-width: 576px) {
  .search-result-wrapper {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .search-result-wrapper {
    width: 81.5%;
  }
}
.pagination-ymal-wrapper {
  width: 100%;
}
@media (min-width: 576px) {
  .pagination-ymal-wrapper {
    width: 70%;
    margin-left: 30%;
  }
}
@media (min-width: 768px) {
  .pagination-ymal-wrapper {
    width: 81.5%;
    margin-left: 18.5%;
  }
}
body.mobile-body .pagination-ymal-wrapper {
  padding: 0 15px;
}
.mobile-body .search-result-wrapper {
  margin-top: 30px;
}
.mobile-body .search-result-wrapper .browse-list-item-new {
  flex-basis: 46%;
  max-width: 46%;
  margin: 5px auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: auto;
  font-size: 14px;
}
@media (min-width: 768px) {
  .mobile-body .search-result-wrapper .browse-list-item-new {
    flex-basis: 30%;
    max-width: 30%;
    margin: 25px calc(10% / 6) 0;
  }
}
@media (min-width: 992px) {
  .mobile-body .search-result-wrapper .browse-list-item-new {
    margin-top: 25px;
  }
}
.mobile-body .search-result-wrapper .displate-item-link-new {
  height: 125px;
  width: 100%;
}
@media (min-width: 320px) {
  .mobile-body .search-result-wrapper .displate-item-link-new {
    height: 145px;
  }
}
@media (min-width: 340px) {
  .mobile-body .search-result-wrapper .displate-item-link-new {
    height: 165px;
  }
}
@media (min-width: 350px) {
  .mobile-body .search-result-wrapper .displate-item-link-new {
    height: 200px;
  }
}
@media (min-width: 525px) {
  .mobile-body .search-result-wrapper .displate-item-link-new {
    height: 220px;
  }
}
@media (min-width: 900px) {
  .mobile-body .search-result-wrapper .displate-item-link-new {
    height: 280px;
  }
}
.search-results {
  position: relative;
  min-height: 450px;
}
.search-results--loader {
  height: calc(100vh - 230px);
}
.search-results__displates {
  display: flex;
  flex-wrap: wrap;
}
.search-results__tiles {
  width: 100%;
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 990px) {
  .search-results__tiles {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .search-results__tiles {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.search-results__empty.container {
  padding: 0 15px 0 !important;
}
.search-results__empty--suggested {
  display: block;
  align-items: baseline;
}
.search-results__empty--suggested-label {
  display: flex;
  justify-content: center;
  margin-right: 0px;
}
.search-results__empty--suggested-links {
  text-align: center;
}
.search-results__empty .partners-slider {
  padding-bottom: 35px;
  margin-top: 16px;
}
.search-results__empty .partners-slider__inner {
  margin-top: 0;
  padding-top: 16px;
}
.search-results__empty-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 48px;
  margin-top: 28px;
}
.search-results__empty-info.my--40 {
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .search-results__empty-info.my--40 {
    margin-bottom: 80px;
    margin-top: 60px;
  }
}
.search-results__empty-info > .text__paragraph {
  margin: 6px 0;
  line-height: 24px;
  text-align: center;
}
.search-results__empty-info h1 {
  font-size: 24px;
}
.search-results__empty-info h1 > span {
  font-weight: 600;
  line-height: 24px;
  color: #000000;
}
.search-results__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0 15px;
}
.search-results__wrapper .lazy-load-image-background:before {
  content: none;
}
@media (min-width: 992px) {
  .search-results__wrapper {
    margin: 0 auto;
    padding: 0 15px 50px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .search-results__wrapper.container {
    padding: 50px 15px;
  }
}
@media (min-width: 1200px) {
  .search-results__wrapper {
    padding: 0 0 50px;
  }
  .search-results__wrapper.container {
    padding: 50px 0;
  }
}
.search-results__filters {
  display: block;
  width: 210px;
  flex-shrink: 0;
  margin-right: 25px;
  z-index: 999;
}
.search-results__filters--popup-open {
  z-index: 1000;
}
.search-results__filters hr {
  width: calc(100% - 40px);
  margin: 24px auto;
}
.search-results__results {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  width: 100%;
  min-height: 450px;
}
@media (min-width: 992px) {
  .search-results__results {
    width: calc(100% - 235px);
  }
}
.search-results__results .displate-tile {
  width: 100%;
}
.search-results__results .displate-tile:hover .displate-item-link {
  text-decoration: none;
}
.search-results__results--related-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.search-results__results--related-searches > .tag {
  font-size: 14px;
  line-height: 20px;
  padding: 4px 8px;
  border-radius: 16px;
  margin-right: 16px;
  margin-bottom: 8px;
}
.search-results__results--related-searches > .tag:last-of-type {
  margin-right: 0;
}
@media (min-width: 992px) {
  .search-results__results--related-searches > .tag {
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }
}
.search-results__results--related-searches.placeholder > .tag {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  height: 28px;
  width: 50px;
}
@media (min-width: 992px) {
  .search-results__results--related-searches.placeholder > .tag {
    height: 32px;
    width: 90px;
  }
}
.search-results__filter--category .input-select {
  width: 100%;
}
.search-results__filter--category .input-select__item--selected {
  text-transform: capitalize;
}
.search-results__filter--category .popup-overlay {
  pointer-events: none;
}
.search-results__filter--category .popup__wrapper {
  pointer-events: all;
  max-width: none;
}
.search-results__filter--category-search .list__item {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.search-results__filter--category-search .list__item:hover,
.search-results__filter--category-search .list__item:hover div {
  cursor: pointer;
}
.search-results__filter--category-search .list__item--active {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.search-results__filter--category-search .list + .link.link--blue {
  font-size: 14px;
  line-height: 16px;
}
.search-results__filter--category-search .list + .link.link--blue:hover {
  text-decoration: none;
}
.search-results__filter--colors {
  display: flex;
  flex-direction: column;
}
.search-results__filter--colors h6 {
  display: flex;
  justify-content: space-between;
}
.search-results__filter--colors .colors__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  margin: 16px;
  align-self: center;
}
@media (min-width: 992px) {
  .search-results__filter--colors .colors__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.search-results__filter--colors .color__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.search-results__filter--colors .color__container .color {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  user-select: none;
}
.search-results__filter--colors .color__container .color div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  border-radius: 24px;
}
.search-results__filter--colors .color__container .color div img {
  width: 12px;
}
.search-results__filter--colors .color__container p {
  display: flex;
  justify-content: center;
}
.search-results__filter--colors .color__container .text--tiny {
  white-space: nowrap;
  text-transform: capitalize;
}
.search-results__filter--colors .color__container .color--active {
  border: solid 1.5px #000;
}
.search-results__filter--colors .color__container .color--outline div:first-child {
  border: solid #ccd1d7 1px;
}
.search-results__filter--colors .color__container--disabled {
  cursor: default;
  opacity: 0.4;
}
.search-results__filter--link {
  color: #1185ed;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  float: right;
}
.search-results__filter--art-style .input-checkbox__label,
.search-results__filter--orientation .input-checkbox__label {
  text-transform: capitalize;
}
.search-results__filter--popup-content {
  height: 100%;
}
.search-results__filter--popup-content .popup__header {
  position: sticky;
  position: -webkit-sticky;
  background-color: white;
  border-bottom: none;
  display: block;
  top: 0;
  margin: 0 20px;
  padding: 0;
  z-index: 1;
}
.search-results__filter--popup-content .popup__header .popup__header-content {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px 0;
}
.search-results__filter--popup-content .popup__header .heading-3 {
  line-height: 24px;
}
.search-results__filter--popup-content .popup__content {
  padding-bottom: 120px;
}
.search-results__filter--popup-content .popup__close {
  background-image: url(/img/icons/close_icon.png);
  height: 12px;
  width: 12px;
  margin-right: 6px;
}
.search-results__filter--popup-content hr {
  margin: 8px 0 24px;
}
.search-results__topbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  width: calc(100% + 30px);
  margin-left: -15px;
  padding-bottom: 15px;
  margin-bottom: 100px;
}
.search-results__topbar--buttons-only {
  margin-bottom: 60px;
}
.search-results__topbar .search-results__topbar--label {
  font-size: 16px;
  line-height: initial;
  font-weight: 300;
}
.search-results__topbar .search-results__label,
.search-results__topbar .search-results__topbar--count {
  pointer-events: none;
  margin: 8px 0 4px;
  height: auto;
  transition: margin 0.3s ease, height 0.3s ease, color 0.3s ease;
}
.search-results__topbar .search-results__topbar--count {
  font-size: 12px;
  color: #424a51;
  line-height: 16px;
}
.search-results__topbar .search-results__topbar--filters {
  border: none;
  padding: 8px 16px;
  position: fixed;
  width: 100%;
  z-index: 2;
  background-color: #ffffff;
  margin-top: -3px;
  transition: margin 0.3s ease;
  flex-direction: column;
  display: flex;
  flex-grow: 1;
}
.search-results__topbar .filter-button-group {
  width: 100%;
  background-color: #ffffff;
  padding-top: 4px;
}
.search-results__topbar .filter-button-group:not(.filter-button-group-with-sort),
.search-results__topbar .filter-button-group-with-sort > div {
  display: grid;
  grid-column-gap: 12px;
  grid-template-columns: repeat(2, calc(50% - 6px));
}
.search-results__topbar .filter-button-group .filter-button {
  padding: 12px 30px 12px 16px;
  background: #f6f7f8;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  width: 100%;
  text-transform: capitalize;
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.search-results__topbar .filter-button-group .filter-button:before {
  content: '';
  position: absolute;
  background: url('/img/icons/arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 5px;
  right: 16px;
  top: calc(50% - 2.5px);
}
.search-results__topbar-item {
  border-bottom: 1px solid #d2d2d2;
  padding: 15px 15px 15px;
  flex-basis: 100%;
}
.search-results__topbar-item--category {
  border-right: 1px solid #d2d2d2;
}
.search-results__topbar-item--category > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-results__topbar-item--category > div > h1 > span {
  margin-left: 10px;
  text-transform: capitalize;
  color: initial;
  font-weight: normal;
}
.search-results__topbar-item--category > div > img {
  margin-left: auto;
}
.search-results__magnets {
  display: grid;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
  width: 100%;
  grid-column: span 2;
}
.search-results__magnets .link {
  display: block;
}
@media (min-width: 992px) {
  .search-results__magnets {
    grid-column: 1 / span 3;
  }
  .search-results__magnets .link {
    display: initial;
  }
}
@media (min-width: 1200px) {
  .search-results__magnets {
    padding: 20px;
    grid-column: 1 / span 4;
  }
}
.search-results__label {
  display: initial;
  font-size: 16px;
  line-height: initial;
  font-weight: 300;
  height: auto;
}
@media (min-width: 992px) {
  .search-results__label {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
  }
}
.search-results__sorting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0;
}
.search-results__sorting-field {
  display: flex;
  align-items: center;
}
.search-results__sorting-field > .label {
  padding: 0;
  margin-right: 16px;
  font-size: 14px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.search-results__sorting-field > .select {
  width: 165px;
}
.search-results__sorting-field > .select > .select__control {
  background-color: #f6f7f8;
  border: none !important;
  padding: 5px 8px;
  font-size: 14px;
}
.search-results__sorting-field > .select > .select__control:before {
  content: '';
  position: absolute;
  background: url('/img/icons/arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 5px;
  right: 16px;
  transition: transform 0.3s ease;
}
.search-results__sorting-field > .select > .select__control.select__control--menu-is-open:before {
  transform: rotate(180deg);
}
.search-results__sorting-field > .select > .select__control > .select__indicator {
  display: none;
}
.search-results__sorting-field > .select > .select__control + .select__menu {
  font-size: 14px;
}
.search-results__description {
  padding: 24px 16px;
  text-align: center;
}
@media (min-width: 992px) {
  .search-results__description {
    padding: 40px 28px;
  }
}
.search-results__description > *:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .search-results__description > *:not(:last-child) {
    margin-bottom: 20px;
  }
}
.search-results__nifties {
  display: flex;
  margin-bottom: 20px;
}
.search-results__nifties img {
  width: 100%;
}
.search-results__grow {
  flex: 2;
}
@media (max-width: 992px) {
  .header__wrapper:not(.searchbar_visible) + div .search-results__wrapper .search-results__topbar .search-results__topbar--filters {
    margin-top: -70px;
    padding: 12px 16px 8px;
  }
  .header__wrapper:not(.searchbar_visible) + div .search-results__wrapper .search-results__topbar .search-results__label,
  .header__wrapper:not(.searchbar_visible) + div .search-results__wrapper .search-results__topbar .search-results__topbar--count {
    margin: 0;
    height: 0;
    color: transparent;
  }
}
.suggested-phrases-slider__slider {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .suggested-phrases-slider__slider {
    margin-top: 16px;
  }
}
.suggested-phrases-slider__slider .swiper-slide {
  width: auto;
}
.suggested-phrases-slider__container {
  position: relative;
}
.suggested-phrases-slider__navigation {
  width: 100%;
  position: absolute;
  top: 0;
}
.suggested-phrases-slider__prev-button,
.suggested-phrases-slider__next-button {
  position: absolute;
  z-index: 1;
  margin-top: 4px;
  cursor: pointer;
}
.suggested-phrases-slider__prev-button.swiper-button-disabled,
.suggested-phrases-slider__next-button.swiper-button-disabled {
  display: none;
}
.suggested-phrases-slider__prev-button > .svg-icon,
.suggested-phrases-slider__next-button > .svg-icon {
  background-color: white;
  border-radius: 100%;
  border: 1px solid #d8dde1;
  width: 32px;
  height: 32px;
}
.suggested-phrases-slider__prev-button::before,
.suggested-phrases-slider__next-button::before {
  content: '';
  background-color: white;
  position: absolute;
  top: -5px;
  left: -1px;
  z-index: -1;
  height: calc(100% + 10px);
  width: 34px;
}
.suggested-phrases-slider__prev-button {
  left: 0;
}
.suggested-phrases-slider__next-button {
  right: 0;
}
.suggested-phrases-slider__tag {
  background-color: #f6f7f8;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.suggested-phrases-slider__tag:hover {
  text-decoration: none;
}
.suggested-phrases-slider__tag--icon {
  width: 12px;
  height: 12px;
  margin-right: 8px;
  filter: brightness(0);
}
.filter-button-group-with-sort > div.suggested-phrases-slider__container {
  display: block;
}
@keyframes hideOverlay {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
.displate-tile {
  display: inline-block;
  position: relative;
  height: 220px;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  /* 3 kolumny */
  /* 4 kolumny*/
}
@media (min-width: 375px) {
  .displate-tile {
    height: 225px;
  }
}
@media (min-width: 576px) {
  .displate-tile {
    height: 260px;
  }
}
@media (min-width: 768px) {
  .displate-tile {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .displate-tile {
    width: 48%;
    margin-bottom: 10px;
  }
  .displate-tile:nth-of-type(2n - 1) {
    margin: 0 1% 10px 0;
  }
  .displate-tile:nth-of-type(2n) {
    margin: 0 0 10px 1%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .displate-tile {
    width: 32%;
    height: 330px;
    margin: 0 1% 10px;
  }
  .displate-tile:nth-of-type(3n) {
    margin: 0 0 10px 1%;
  }
  .displate-tile:nth-of-type(3n - 2) {
    margin: 0 1% 10px 0;
  }
}
@media (min-width: 1200px) {
  .displate-tile {
    width: 24%;
    height: 330px;
    margin: 0 0.5% 10px;
  }
  .displate-tile__no-results--related {
    width: 19%;
  }
}
.displate-tile--placeholder {
  justify-self: center;
  pointer-events: none;
}
.displate-tile--placeholder img {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.displate-tile--default-cursor .displate-tile__link {
  cursor: default;
}
.displate-tile__recommendations {
  display: none;
}
.displate-tile--hovered.displate-tile--tilt .displate-tile__inner-container {
  transform: scale(1.075);
}
.displate-tile--hovered.displate-tile--tilt .displate-tile__image {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.displate-tile--hovered:not(.displate-tile--tilt) .displate-tile__image-wrapper:after {
  display: none;
}
@media (min-width: 992px) {
  .displate-tile--hovered.displate-tile--more-like-this {
    z-index: 5;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__link {
    background: #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    width: 106%;
    margin: 0 -3%;
  }
  .displate-tile--hovered.displate-tile--more-like-this .add-to-cart__button {
    margin: 15px 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #1185ed;
    cursor: pointer;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__badge {
    border-color: transparent;
    background-position-x: calc(3% + 10px);
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    z-index: 5;
    width: 106%;
    margin-left: -3%;
    display: flex;
    position: relative;
    margin-top: -6px;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-item {
    flex-basis: calc(100% / 3);
    padding: 3px;
    line-height: 0;
    font-size: 0;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-items + div {
    padding-top: 8px;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-image {
    border-radius: 2%;
    outline: 2px solid rgba(255, 255, 255, 0.25);
    outline-offset: -2px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
  }
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations:after {
    content: '';
    position: absolute;
    background: #ffffff;
    top: -25px;
    left: 0;
    right: 0;
    height: 30px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .displate-tile--hovered.displate-tile--more-like-this .displate-tile__recommendations-image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.displate-tile--full-width {
  width: 100%;
}
.displate-tile--homepage {
  width: 100%;
}
@media (min-width: 375px) {
  .displate-tile--homepage {
    height: 210px;
  }
}
@media (max-width: 767px) {
  .displate-tile--homepage {
    height: 230px;
  }
}
@media (min-width: 576px) {
  .displate-tile--homepage {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .displate-tile--homepage {
    height: 270px;
  }
}
@media (min-width: 1200px) {
  .displate-tile--homepage {
    height: 290px;
  }
}
.displate-tile--homepage .displate-tile__link {
  background: none;
  height: 100%;
  max-height: none;
  -webkit-user-drag: none;
}
.displate-tile--homepage .displate-tile__inner-container--horizontal {
  width: 85%;
  max-width: 140px;
}
.displate-tile--homepage .displate-tile__inner-container--horizontal .displate-tile__image,
.displate-tile--homepage .displate-tile__inner-container--horizontal .displate-tile__added-to-cart {
  width: 100%;
  max-width: 224px;
}
@media (min-width: 576px) {
  .displate-tile--homepage .displate-tile__inner-container--horizontal {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-tile--homepage .displate-tile__inner-container--horizontal {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .displate-tile--homepage .displate-tile__inner-container--horizontal {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .displate-tile--homepage .displate-tile__inner-container--horizontal {
    width: 100%;
    max-width: 225px;
  }
}
.displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__image,
.displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
  width: auto;
  max-height: 140px;
  /* fixed value because its bugged on firefox */
}
@media (min-width: 768px) {
  .displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__image,
  .displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
    max-height: 176px;
  }
}
@media (min-width: 1200px) {
  .displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__image,
  .displate-tile--homepage .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
    max-height: 225px;
  }
}
.displate-tile--passport {
  height: 150px;
}
@media (min-width: 576px) {
  .displate-tile--passport {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .displate-tile--passport {
    height: 270px;
  }
}
@media (min-width: 1200px) {
  .displate-tile--passport {
    height: 220px;
    width: calc(93% / 7);
  }
}
.displate-tile--passport .displate-tile__link {
  background: none;
  height: 100%;
  max-height: none;
  -webkit-user-drag: none;
}
.displate-tile--passport .displate-tile__inner-container--horizontal {
  width: 85%;
  max-width: 140px;
}
.displate-tile--passport .displate-tile__inner-container--horizontal .displate-tile__image {
  width: 100%;
  max-width: 224px;
}
@media (min-width: 576px) {
  .displate-tile--passport .displate-tile__inner-container--horizontal {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-tile--passport .displate-tile__inner-container--horizontal {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .displate-tile--passport .displate-tile__inner-container--horizontal {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .displate-tile--passport .displate-tile__inner-container--horizontal {
    width: 100%;
    max-width: 225px;
  }
}
.displate-tile--passport .displate-tile__inner-container--vertical .displate-tile__image {
  width: auto;
  max-height: 140px;
  /* fixed value because its bugged on firefox */
}
@media (min-width: 768px) {
  .displate-tile--passport .displate-tile__inner-container--vertical .displate-tile__image {
    max-height: 176px;
  }
}
.displate-tile__link {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.displate-tile__image-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  z-index: 6;
}
@media (min-width: 992px) {
  .displate-tile__image-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.displate-tile__image-wrapper:hover:after {
  animation-name: hideOverlay;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.displate-tile__outer-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.displate-tile__outer-container .wishlist-icon-container {
  position: relative;
}
.displate-tile__outer-container .add-to-wishlist--listing {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 0;
  transform: translateZ(1000px);
  -webkit-transform: translateZ(1000px);
  top: 15px;
  right: 5px;
  box-shadow: 0px 2px 6px #6e6e6e;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.displate-tile__outer-container .add-to-wishlist--listing .wishlist-icon {
  position: static;
  transform: scale(0.8) !important;
  top: 0;
  right: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .displate-tile__outer-container .add-to-wishlist--listing {
    top: 25px;
  }
}
.displate-tile__inner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .displate-tile__inner-container {
    margin-top: 20px;
  }
}
.displate-tile__inner-container:hover .plate-hover {
  z-index: 10001;
}
.displate-tile__inner-container--horizontal .displate-tile__image,
.displate-tile__inner-container--horizontal .displate-tile__added-to-cart {
  width: 100%;
  max-width: 125px;
}
@media (min-width: 320px) {
  .displate-tile__inner-container--horizontal .displate-tile__image,
  .displate-tile__inner-container--horizontal .displate-tile__added-to-cart {
    max-width: 140px;
  }
}
@media (min-width: 375px) {
  .displate-tile__inner-container--horizontal .displate-tile__image,
  .displate-tile__inner-container--horizontal .displate-tile__added-to-cart {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-tile__inner-container--horizontal .displate-tile__image,
  .displate-tile__inner-container--horizontal .displate-tile__added-to-cart {
    max-width: 220px;
  }
}
.displate-tile__inner-container--vertical .displate-tile__image,
.displate-tile__inner-container--vertical .displate-tile__added-to-cart {
  width: auto;
  max-height: 155px;
}
@media (min-width: 320px) {
  .displate-tile__inner-container--vertical .displate-tile__image,
  .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
    max-height: 165px;
  }
}
@media (min-width: 375px) {
  .displate-tile__inner-container--vertical .displate-tile__image,
  .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
    max-height: 175px;
  }
}
@media (min-width: 576px) {
  .displate-tile__inner-container--vertical .displate-tile__image,
  .displate-tile__inner-container--vertical .displate-tile__added-to-cart {
    max-height: 255px;
  }
}
.displate-tile__inner-container:hover .plate-hover {
  display: flex;
}
.displate-tile .displate-tile__image {
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .displate-tile .displate-tile__image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 992px) {
  .displate-tile .displate-tile__image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 576px) {
  .displate-tile .displate-tile__image--fallback {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-tile .displate-tile__image--fallback {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .displate-tile .displate-tile__image--fallback {
    max-width: 200px;
  }
}
.displate-tile__added-to-cart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.displate-tile__added-to-cart span {
  margin-top: 6px;
  color: #ffffff;
}
.displate-tile__image {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.displate-tile__image .displate-tile__added-to-cart {
  display: flex;
}
.displate-tile__badge {
  position: absolute;
  top: -10px;
  bottom: 0;
  left: -2px;
  right: -2px;
  background-repeat: no-repeat;
  background-origin: border-box;
  border: 1px solid #e1e1e1;
  pointer-events: none;
  z-index: 6;
}
@media (min-width: 768px) {
  .displate-tile__badge {
    left: 0;
    right: 0;
  }
}
.displate-tile__badge legend {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  padding: 0 10px;
  color: #000;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.displate-tile__badge--exclusive {
  background-image: url('/img/search/exclusive_icon.png');
  background-position: 8px 8px;
  background-size: auto 20px;
}
@media (min-width: 768px) {
  .displate-tile__badge--exclusive {
    background-position: 10px 10px;
    background-size: 21px 26px;
  }
}
.displate-tile__explore-more {
  position: absolute;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #1185ed;
  -webkit-user-drag: none;
}
.displate-tile__explore-more--see-whole-collection {
  width: 100%;
  padding: 0 10px;
}
.displate-tile__explore-more--see-whole-collection p {
  font-size: 18px !important;
}
@media (max-width: 420px) {
  .displate-tile__explore-more--see-whole-collection p {
    font-size: 16px !important;
  }
}
.displate-tile__explore-more:hover,
.displate-tile__explore-more:visited,
.displate-tile__explore-more:active {
  color: #1185ed;
}
.displate-tile__explore-more p {
  flex-basis: 40%;
  font-size: 22px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.displate-tile__new {
  position: absolute;
  top: 10px;
  left: -12px;
}
.displate-tile .wishlist-icon {
  margin: 0 auto;
  position: absolute;
  top: 2px;
  right: 2px;
  opacity: 1;
  user-select: none;
  z-index: 10;
  background-image: url(/img/svg/icons/icon_wishlist--heart.svg) !important;
  animation-duration: 1000ms;
  animation-timing-function: steps(60);
  animation-fill-mode: both;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  transform: scale(1.25);
  background-position: unset;
  background-size: auto;
}
@media (min-width: 768px) {
  .displate-tile .wishlist-icon {
    top: 5px;
    right: 5px;
  }
}
.displate-tile .fade-in-enter {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
}
.displate-tile .fade-in-enter-active {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s ease;
}
.displate-tile .fade-in-exit {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s ease;
}
.displate-tile .fade-in-exit-active {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
}
.displate-tile__textra-badge {
  position: absolute;
  top: 18px;
  left: 8px;
  z-index: 1;
  pointer-events: none;
  color: #ffffff;
  background-color: #341bc9;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .displate-tile__textra-badge {
    top: 28px;
  }
}
/* Displate tiles on collection header */
.collection-page__header-displates .displate-tile {
  /* change 3 columns layout into 2 */
}
@media (min-width: 576px) and (max-width: 991px) {
  .collection-page__header-displates .displate-tile {
    width: 48%;
    margin-bottom: 10px;
  }
  .collection-page__header-displates .displate-tile:nth-of-type(2n - 1) {
    margin: 0 2% 10px 0;
  }
  .collection-page__header-displates .displate-tile:nth-of-type(2n) {
    margin: 0 0 10px 2%;
  }
}
.simple-displate-tile {
  position: absolute;
  user-select: none;
  cursor: pointer;
}
.simple-displate-tile--vertical {
  width: 8.62%;
}
.simple-displate-tile--horizontal {
  width: calc(8.62% * 1.4);
}
.simple-displate-tile--responsive.simple-displate-tile--vertical {
  width: 22.67%;
}
@media (min-width: 576px) {
  .simple-displate-tile--responsive.simple-displate-tile--vertical {
    width: 8.62%;
  }
}
.simple-displate-tile--responsive.simple-displate-tile--vertical .simple-displate-tile__fallback {
  width: 100%;
}
.simple-displate-tile--responsive.simple-displate-tile--vertical .simple-displate-tile__fallback img {
  width: 100%;
}
.simple-displate-tile--responsive.simple-displate-tile--horizontal {
  width: calc(22.67% * 1.4);
}
@media (min-width: 576px) {
  .simple-displate-tile--responsive.simple-displate-tile--horizontal {
    width: calc(8.62% * 1.4);
  }
}
.simple-displate-tile--responsive.simple-displate-tile--horizontal .simple-displate-tile__fallback {
  width: 100%;
}
.simple-displate-tile--responsive.simple-displate-tile--horizontal .simple-displate-tile__fallback img {
  width: 71%;
  transform: rotate(-90deg) translateY(-71%);
  transform-origin: top right;
}
.simple-displate-tile__fallback img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
}
.simple-displate-tile__image {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  outline: 0;
  max-width: 100%;
}
/*!
 * 
 *         SimpleBar.js - v2.6.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
  position: relative;
  z-index: 0;
  overflow: hidden!important;
  max-height: inherit;
  -webkit-overflow-scrolling: touch;
  /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}
[data-simplebar="init"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.simplebar-scroll-content {
  overflow-x: hidden!important;
  overflow-y: scroll;
  min-width: 100%!important;
  max-height: inherit!important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
.simplebar-content {
  overflow-y: hidden!important;
  overflow-x: scroll;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  min-height: 100%!important;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
}
.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear;
}
.simplebar-track.vertical {
  top: 0;
}
.simplebar-track.vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px;
}
.simplebar-track.horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}
.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
.error-404 > img {
  height: 200px;
  display: block;
  margin: 50px auto 20px;
}
@media (max-width: 768px) {
  .error-404 > img {
    height: 100px;
    margin: 30px auto 10px;
  }
}
.error-404 h1 {
  margin-bottom: 10px;
}
.error-404 > div:first-of-type {
  text-align: center;
  margin-bottom: 30px;
}
.textcenter,
.text-center {
  text-align: center;
}
.textright,
.text-right {
  text-align: right;
}
.floatleft {
  float: left !important;
}
.floatright {
  float: right !important;
}
.btn-100 {
  width: 100px;
}
.btn-120 {
  width: 120px;
}
.btn-200 {
  width: 200px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mb0 {
  margin-bottom: 0;
}
.mb20 {
  margin-bottom: 20px;
}
/* Clear class */
.clear {
  border: 0;
  clear: both;
  height: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  width: 0;
}
.star-wishlist-item {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  transform: scale(1.25);
  z-index: 998;
  background: url('/img/svg/icons/icon_wishlist--heart.svg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: unset;
  animation-duration: 1000ms;
  animation-timing-function: steps(60);
  animation-fill-mode: both;
  cursor: pointer;
}
.star-wishlist-item.product-star-wishlist {
  z-index: 1;
}
.star-wishlist-item.active {
  background-position: -1440px 0px !important;
}
.star-wishlist-item:before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
}
.mobile-body .star-wishlist-item {
  width: 22px;
  height: 22px;
  background: url('/img/svg/icons/icon_wishlist--heart.svg');
  background-size: auto;
}
.star-wish-wrapper-product {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100px;
  padding-top: 15px;
}
.star-wish-wrapper-product .text-wishlist-item {
  text-align: center;
  margin-top: 5px;
}
.star-wish-wrapper-product-mobile {
  position: absolute;
  top: 15px;
  right: 2px;
  width: 45px;
  height: 30px;
}
.star-wish-wrapper-product-mobile .text-wishlist-item {
  text-align: center;
  margin-top: 5px;
}
.star-wish-wrapper-hp-feed {
  position: absolute;
  height: 30px;
  width: 20px;
}
.star-wish-wrapper-hp-feed.wish-feed--desktop {
  padding: 5px 0;
  top: 8px;
  right: 13px;
}
@media (max-width: 1024px) {
  .star-wish-wrapper-hp-feed.wish-feed--desktop {
    right: 8px;
  }
}
.star-wish-wrapper-hp-feed.wish-feed--mobile {
  z-index: 998;
  top: 0;
  right: 0;
  height: auto;
  width: auto;
  padding: 10px;
}
@media (max-width: 475px) {
  .star-wish-wrapper-hp-feed.wish-feed--mobile {
    padding: 10px 5px 10px 5px;
  }
}
.wishlist-wrapper {
  padding-top: 30px !important;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .wishlist-wrapper {
    padding-bottom: 0;
  }
}
.wishlist-wrapper .wishlist-title {
  text-align: center;
}
.wishlist-wrapper .wishlist-count {
  text-align: center;
  margin-top: 10px;
}
.wishlist-wrapper hr {
  margin: 30px 0;
  width: 100%;
  border-top: 1px solid #eee;
}
.wishlist-wrapper .wish-cart-add {
  display: block;
  margin: 0 auto;
}
.wishlist-wrapper .wish-cart-add--mobile {
  max-width: 100%;
  padding: 8px 0;
}
.wishlist-wrapper .wish-cart-add--mobile span:before {
  content: '+ ';
  color: #ffffff;
}
.wishlist-wrapper .wish-cart-add--desktop {
  padding: 8px 0;
}
.wishlist-wrapper .wish-cart-add--desktop.adding-cart {
  padding: 11px 0;
}
.wishlist-wrapper #tiles {
  width: 100%;
}
@media (min-width: 992px) {
  .wishlist-wrapper #tiles {
    padding: 0;
  }
}
.wishlist-wrapper .list {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  text-align: left;
}
.wishlist-wrapper .list p {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
}
@media (min-width: 576px) {
  .wishlist-wrapper .list p {
    height: 30px;
  }
}
.wishlist-wrapper .list p::after {
  content: '';
  background: url('/img/login/check_mark.png');
  background-size: cover;
  position: absolute;
  top: 0;
  left: -4rem;
  width: 30px;
  height: 30px;
}
.wishlist-wrapper .wishlist-guest {
  margin-top: 3rem;
  text-align: center;
  padding-bottom: 8px;
}
.wishlist-wrapper .wishlist-guest--title {
  font-size: 20px;
}
.wishlist-wrapper .wishlist-guest--subtitle {
  font-size: 16px;
}
.wishlist-wrapper .wishlist-guest--list-title {
  font-size: 16px;
}
.wishlist-wrapper .wishlist-guest .list {
  margin-left: 16px;
}
.wishlist-wrapper .wishlist-guest p {
  margin: 15px 1rem !important;
}
.wishlist-wrapper .wishlist-guest p:after {
  left: -2.5rem;
}
.wishlist-wrapper .wishlist-guest .button {
  display: inline-block;
  margin: 32px 0;
  max-width: 250px;
  min-width: initial;
}
@media (min-width: 576px) {
  .wishlist-wrapper .wishlist-guest .button {
    min-width: 295px;
  }
}
@media (min-width: 992px) {
  .wishlist-wrapper .wishlist-guest {
    padding-bottom: 64px;
  }
  .wishlist-wrapper .wishlist-guest--title {
    font-size: 42px;
    line-height: 50px;
  }
  .wishlist-wrapper .wishlist-guest--subtitle {
    font-size: 28px;
    line-height: 36px;
    margin-top: 1rem;
  }
  .wishlist-wrapper .wishlist-guest .button {
    margin: 3rem 0;
    max-width: 100%;
  }
  .wishlist-wrapper .wishlist-guest--list-title {
    font-size: 18px;
    line-height: 26px;
    margin: 1rem 0;
  }
  .wishlist-wrapper .wishlist-guest p {
    margin: 10px 3rem 0.25rem 3rem !important;
  }
  .wishlist-wrapper .wishlist-guest p:after {
    left: -4rem;
  }
}
.wishlist-empty {
  text-align: center;
}
.wishlist-empty p {
  margin: 10px 0 30px;
}
.wishlist-empty .button {
  display: inline-block;
  margin: 1rem 0;
  font-size: 18px;
  min-width: initial;
}
@media (min-width: 576px) {
  .wishlist-empty .button {
    min-width: 295px;
  }
}
.create-acc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}
.create-acc-wrapper h4 {
  text-align: center;
}
.create-acc-wrapper .info-list {
  margin: 20px 0;
  padding-left: 50px;
}
.create-acc-wrapper .info-list > li {
  margin: 20px 0;
  position: relative;
}
.create-acc-wrapper .info-list > li:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url(/img/login/check_mark.png);
  background-size: 30px 30px;
  left: 0;
  top: 50%;
  transform: translate(-50px, -50%);
}
.wishlist-product-list-item,
.wishlist-item-login-info {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 50px;
  /* 3 kolumny */
  /* 4 kolumny*/
}
@media (max-width: 991px) {
  .wishlist-product-list-item,
  .wishlist-item-login-info {
    width: 48%;
    margin-bottom: 50px;
  }
  .wishlist-product-list-item:nth-of-type(2n - 1),
  .wishlist-item-login-info:nth-of-type(2n - 1) {
    margin: 0 2% 50px 0;
  }
  .wishlist-product-list-item:nth-of-type(2n),
  .wishlist-item-login-info:nth-of-type(2n) {
    margin: 0 0 50px 2%;
  }
  .wishlist-product-list-item.unlogged-info:nth-of-type(1),
  .wishlist-item-login-info.unlogged-info:nth-of-type(1) {
    margin: 0 2% 50px 0;
  }
  .wishlist-product-list-item.unlogged-info:nth-of-type(2n + 1):not(:nth-of-type(1)):not(:nth-of-type(3)),
  .wishlist-item-login-info.unlogged-info:nth-of-type(2n + 1):not(:nth-of-type(1)):not(:nth-of-type(3)) {
    margin: 0 0 50px 2%;
  }
  .wishlist-product-list-item.unlogged-info:nth-of-type(2n):not(:nth-of-type(1)):not(:nth-of-type(3)),
  .wishlist-item-login-info.unlogged-info:nth-of-type(2n):not(:nth-of-type(1)):not(:nth-of-type(3)) {
    margin: 0 2% 50px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wishlist-product-list-item,
  .wishlist-item-login-info {
    width: 32%;
    min-width: 235px;
    margin: 0 1% 50px;
  }
  .wishlist-product-list-item:nth-of-type(3n),
  .wishlist-item-login-info:nth-of-type(3n) {
    margin: 0 0 50px 1%;
  }
  .wishlist-product-list-item:nth-of-type(3n - 2),
  .wishlist-item-login-info:nth-of-type(3n - 2) {
    margin: 0 1% 10px 0;
  }
}
@media (min-width: 1200px) {
  .wishlist-product-list-item,
  .wishlist-item-login-info {
    width: 24%;
    margin: 0 calc(4% / 6) 50px;
  }
  .wishlist-product-list-item:nth-of-type(4n),
  .wishlist-item-login-info:nth-of-type(4n) {
    margin: 0 0 50px calc(4% / 6);
  }
  .wishlist-product-list-item:nth-of-type(4n - 3),
  .wishlist-item-login-info:nth-of-type(4n - 3) {
    margin: 0 calc(4% / 6) 50px 0;
  }
}
.wishlist-product-list-item .displate-item--search,
.wishlist-item-login-info .displate-item--search {
  width: 100%;
  margin: 0 0 30px;
}
.wishlist-product-list-item .browse-list-item,
.wishlist-item-login-info .browse-list-item {
  max-width: 100%;
  width: 100%;
  z-index: 2;
  flex-grow: 1;
  margin: 0;
}
.wishlist-product-list-item .add-to-cart,
.wishlist-item-login-info .add-to-cart {
  margin: -25px 0 0;
  z-index: 3;
  width: 100%;
}
.wishlist-item-login-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0 0;
}
.wishlist-item-login-info .login-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
}
.wishlist-item-login-info .login-info-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.wishlist-item-login-info .login-info {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-top: 24px;
}
.wishlist-item-login-info .login-info-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wishlist-item-login-info {
    padding-bottom: 40px;
  }
}
.mobile-body .wishlist-product-list-item,
.mobile-body .wishlist-item-login-info {
  display: block;
}
.mobile-body .wishlist-product-list-item .add-to-cart,
.mobile-body .wishlist-item-login-info .add-to-cart {
  margin: 0;
  position: absolute;
  top: calc(100% - 14px);
  width: 100%;
}
.mobile-body .wishlist-item-login-info {
  width: 100%;
  margin-bottom: 30px;
}
.mobile-body .wishlist-item-login-info .login-info-wrapper {
  padding-top: 0px;
}
.mobile-body .wishlist-item-login-info .login-info {
  padding: 0 20px;
}
.mobile-body .wishlist-item-login-info .login-info-button {
  margin-top: 20px;
}
.wish-count-navbar {
  position: absolute;
  border-radius: 50%;
  background: #ff1744;
  color: #ffffff;
  height: 17px;
  line-height: 17px;
  width: 17px;
  margin-left: 6px;
}
.wish-count-navbar.mobile-wishlist {
  top: -5px;
  left: -5px;
}
.wish-count-navbar.empty {
  display: none;
}
.fly {
  background: url('/img/icons/wishlist_starred.svg');
  background-size: 100% 100%;
  position: absolute;
  z-index: 99999999;
  background-position: 100% 0;
}
.small-star-wishlist {
  height: 20px;
  width: 23px;
  position: relative;
}
.small-star-wishlist:before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
}
.info-text--mobile {
  width: 55px;
  position: absolute;
  right: -10px;
  top: 16px;
  line-height: 1.1;
  display: none;
  padding: 3px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
}
body:not(.mobile-body) .small-star-wishlist {
  position: absolute;
}
.animationStar {
  animation-name: rotateStar;
  animation-duration: 1s;
  animation-fill-mode: both;
  pointer-events: none;
}
@keyframes rotateStar {
  0% {
    transform: rotate(-35deg);
  }
  20% {
    transform: rotate(25deg);
  }
  40% {
    transform: rotate(-20deg);
  }
  60% {
    transform: rotate(15deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* ======================== START COMMON STYLES ============================= */
a.no-decore-anchor,
a.no-decore-anchor:hover {
  text-decoration: none;
  color: inherit;
}
.upload-menu-container .upload-menu a:hover li {
  color: #ffffff;
}
.blue {
  color: #1185ed;
}
.group:after {
  content: '';
  display: table;
  clear: both;
}
/* ========================== END COMMON STYLES ============================= */
/*=========================== START TILES - kafelki małe ==================================*/
/* ==================== START FOR ALL TILES =================== */
li.c-tile {
  list-style: none !important;
  background-color: #ffffff;
  outline: solid 1px #d2d2d2;
  position: absolute;
  top: 100%;
}
li.c-tile.tile-collection {
  outline: none;
}
ul#tiles {
  position: relative;
}
/* ====================== END FOR ALL TILES =================== */
.tile-zoom img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
}
.tile-zoom img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
.tile.recent-activity h2 {
  border-bottom: 1px solid #d2d2d2;
  line-height: 21px;
  padding: 10px;
}
/**** START PRICE ON POLAROID 280 - kafelki małe *****/
li.tile-collection {
  background: #ffffff;
  width: 280px;
}
.value {
  line-height: 18px;
  color: #ffffff;
  width: 62px;
  height: 61px;
  display: inline-block;
  background: url(/img/price_tag.png) no-repeat left center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  position: absolute;
  padding-top: 11px;
  text-align: center;
  left: -18px;
  top: 69px;
  z-index: 1;
}
.tile-collection .value.fading {
  display: none;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
}
.tile-collection:hover .value {
  display: table;
  opacity: 1;
  left: -32px;
}
.value-tag-inner {
  display: table-cell;
  vertical-align: middle;
  transform: translateY(-8px);
}
/**** END PRICE ON POLAROID 280 - kafelki małe *****/
@keyframes fade-out-5-sec {
  0%,
  83% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slider-trustpilot .slick-list {
  margin: 40px -17px 20px -22px !important;
}
.slider-trustpilot .slick-list a:hover {
  text-decoration: none;
}
.slider-trustpilot .slick-slider {
  padding-bottom: 25px;
}
.slider-trustpilot .slick-arrow {
  top: 42%;
}
.slider-trustpilot .slider-trustpilot__el {
  height: 228px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.slider-trustpilot .slider-trustpilot__el .trustpilot-wrapper__images,
.slider-trustpilot .slider-trustpilot__el .images__stars {
  display: flex;
}
.slider-trustpilot .slider-trustpilot__el .images__stars img {
  width: 20px;
}
.slider-trustpilot .slider-trustpilot__el .images__stars img:not(.star-rated) {
  filter: saturate(0);
  opacity: 0.35;
}
.slider-trustpilot .slider-trustpilot__el .images__stars img:not(:last-child) {
  margin-right: 5px;
}
.slider-trustpilot .slider-trustpilot__el .images__logo {
  width: 80px;
  margin-left: auto;
}
.slider-trustpilot .trustpilot-user {
  position: relative;
  margin-bottom: 25px;
  white-space: nowrap;
}
.slider-trustpilot .trustpilot-user__name {
  position: relative;
  top: -2px;
}
.slider-trustpilot .text-description {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  display: block;
  margin-top: 5px;
}
#continueShopping {
  display: inline-block;
}
#proceedToCart {
  display: inline-block;
}
#or-in-continue {
  margin: 0 20px;
}
.continue-proceed-box {
  margin-top: 30px;
}
.free-shipping-box img {
  width: 35px;
  margin-right: 3px;
}
.ppOr {
  position: absolute;
  left: -37px;
  top: 8px;
  display: none;
}
.hero .item-upgrade--gloss .image-wrapper {
  position: relative;
}
.hero .item-upgrade--gloss .image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  opacity: 0.8 !important;
  background-image: url('/img/visualisation/canvas/gloss/gloss.svg') !important;
  background-size: contain;
}
.hero .size-picker__label-size .item-upgrade--frame .image-wrapper::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
}
.hero .item-upgrade--frame[class*='item-upgrade--frame-'] img:not(.shuffle-section img) {
  transform: scale(0.892);
}
.hero .item-upgrade--frame .image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero .item-upgrade--frame-64 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_2.png');
}
.hero .item-upgrade--frame-128 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_2.png');
}
.hero .item-upgrade--frame-256 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_2.png');
}
.hero .item-upgrade--frame-512 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_2.png');
}
.hero .wishlist-art-agent .wishlist-art-agent__row:not(:last-child) {
  margin-right: 20px;
}
.hero__purchase-feedback {
  margin: 85px 0 70px;
  text-align: center;
}
.hero__purchase-feedback .purchase-feedback-text {
  margin-bottom: 30px;
}
.hero__purchase-feedback .purchase-feedback__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__purchase-feedback .purchase-feedback__actions span {
  margin: 15px;
}
.hero__purchase-feedback .purchase-feedback__actions .button img {
  margin-right: 10px;
}
.hero .hero-slider-navigation--horizontal .item-upgrade--frame-64 .image-wrapper::before,
.hero .gallery-container--horizontal .item-upgrade--frame-64 .image-wrapper::before,
.hero .btn--horizontal.item-upgrade--frame-64 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_h_1.png');
}
.hero .hero-slider-navigation--horizontal .item-upgrade--frame-128 .image-wrapper::before,
.hero .gallery-container--horizontal .item-upgrade--frame-128 .image-wrapper::before,
.hero .btn--horizontal.item-upgrade--frame-128 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_h_1.png');
}
.hero .hero-slider-navigation--horizontal .item-upgrade--frame-256 .image-wrapper::before,
.hero .gallery-container--horizontal .item-upgrade--frame-256 .image-wrapper::before,
.hero .btn--horizontal.item-upgrade--frame-256 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_h_2.png');
}
.hero .hero-slider-navigation--horizontal .item-upgrade--frame-512 .image-wrapper::before,
.hero .gallery-container--horizontal .item-upgrade--frame-512 .image-wrapper::before,
.hero .btn--horizontal.item-upgrade--frame-512 .image-wrapper::before {
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_h_1.png');
}
@media (min-width: 768px) {
  .hero .purchase-feedback__actions {
    flex-direction: row;
  }
  .hero .purchase-feedback__actions span {
    margin: 0 25px;
  }
}
.wishlist-art-agent {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  position: relative;
  justify-content: flex-start;
}
.wishlist-art-agent .star-wishlist-item-clickable {
  display: flex;
  align-items: center;
  background: none;
  max-width: 140px;
  width: 140px;
  margin: 0;
  color: #000;
  padding-top: 2px;
}
.wishlist-art-agent .star-wishlist-item-clickable:hover {
  text-decoration: underline;
}
.wishlist-art-agent__image {
  margin-right: 5px;
  height: 18px;
  width: 18px;
}
.wishlist-art-agent__row {
  width: auto;
  margin: 0 15px 5px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.wishlist-art-agent__row:hover {
  text-decoration: underline;
}
.wishlist-art-agent__row:last-of-type {
  margin-right: 0;
}
.wishlist-art-agent__row .product-star-wishlist {
  height: 18px;
  width: 19px;
  margin: 0 5px 0 0;
  position: relative;
}
.wishlist-art-agent__row .star-wishlist-item:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  bottom: -10px;
  right: -150px;
}
body section.trustpilot-wrapper.owl-carousel {
  width: 100% !important;
  margin: 60px 0;
  position: relative;
}
body section.trustpilot-wrapper.owl-carousel:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  box-shadow: 0 0 135px 60px rgba(0, 0, 0, 0.2);
}
body section.trustpilot-wrapper.owl-carousel .owl-stage-outer {
  z-index: 1;
}
body section.trustpilot-wrapper .owl-stage {
  padding-left: 0;
}
.trustpilot-wrapper {
  display: none;
  background: #fff;
}
.trustpilot-wrapper--visible {
  display: flex;
}
.trustpilot-wrapper .slick-slide {
  margin-right: 15px;
}
.trustpilot-wrapper .slick-slide .trustpilot-item {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
.trustpilot-wrapper .trustpilot-item {
  background: #ffffff;
  padding: 20px 25px;
  position: relative;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-info {
  display: flex;
  align-items: flex-start;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-user {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-user .trustpilot-wrapper-img {
  margin-top: 5px;
  height: 20px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-user__image {
  flex-basis: 45%;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-user__image img {
  width: auto;
  height: 100%;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-user__image:last-of-type img {
  height: 110%;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-reviews {
  margin-top: 20px;
  position: relative;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-reviews__title {
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-reviews__text {
  margin-top: 5px;
  height: 72px;
  overflow: hidden;
  line-height: 24px;
  position: relative;
}
.trustpilot-wrapper .trustpilot-item .trustpilot-reviews__text:after {
  content: '';
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 24px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 80%);
}
@supports (-webkit-line-clamp: 3) {
  .trustpilot-wrapper .trustpilot-item .trustpilot-reviews__text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .trustpilot-wrapper .trustpilot-item .trustpilot-reviews__text:after {
    display: none;
  }
}
.wrapper-trustpilot-slider .container {
  background-position: bottom;
  padding-bottom: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrapper-trustpilot-slider.displate-bg-slider .container {
  background: url('/img/product/Kanapa.png');
  background-position: bottom;
  padding-bottom: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrapper-trustpilot-slider.displate-bg-slider .container.no-background {
  padding-bottom: 0;
  background-image: none;
}
.wrapper-trustpilot-slider {
  background: linear-gradient(to bottom, #ffffff 4%, #f6f6f6 95%, #ededed 100%);
}
.blog-body .newsletter__wrapper {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.newsletter-brands-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
}
.newsletter-brands-wrapper .newsletter__wrapper {
  margin: 0 auto;
}
.newsletter {
  margin: 0 auto;
  max-width: 820px;
}
.newsletter h4 {
  font-size: 24px;
}
.newsletter h5 {
  margin: 12px 0 40px;
  font-size: 18px;
}
.newsletter__wrapper {
  padding: 72px 0 56px;
  width: 100%;
  text-align: center;
  border-top: 1px solid #d2d2d2;
  background-color: white;
  position: relative;
}
@media (min-width: 576px) {
  .newsletter__wrapper {
    padding: 30px 0 20px 0;
  }
}
.product-page-newsletter .newsletter__wrapper {
  display: none;
}
.newsletter__wrapper--no-border {
  border: unset;
}
.newsletter__form {
  display: inline-block;
  max-width: inherit;
  width: 100%;
}
.newsletter__form input[type='text'] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  line-height: 24px;
}
.newsletter__form button {
  height: 42px;
  padding: 0;
  width: 100px;
}
.newsletter__form .validation-hint {
  visibility: hidden;
  width: 100%;
  height: 28px;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  padding-left: 8px;
  color: #616970;
}
.newsletter__form .validation-hint--error {
  color: #ff1744;
}
.newsletter__form .validation-hint.active {
  visibility: visible;
}
.newsletter__form-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter__form-error {
  flex-basis: 100%;
}
.newsletter__response {
  max-width: 565px;
  width: 100%;
  margin: 0 auto;
  display: none;
}
.newsletter__input {
  width: 100%;
}
.newsletter__button.button {
  margin-left: -2px;
  flex-shrink: 0;
}
.newsletter__button.button.button.button--processing {
  background-position: center;
}
@media (min-width: 992px) {
  .newsletter__button.button {
    min-width: unset;
  }
}
.newsletter__text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter__text > .input-checkbox {
  margin: 15px 0;
}
.newsletter__rodo {
  padding: 15px;
  text-align: initial;
  line-height: 20px;
  margin-top: calc(32px - 28px);
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  background-color: #ebf8ff;
}
.newsletter__rodo a {
  font-weight: 300;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1.5px;
}
.newsletter__rodo .svg-icon {
  margin-top: 4px;
}
.newsletter__rodo .rodo-text {
  margin-left: 8px;
}
@media (max-width: 991px) {
  .newsletter {
    padding: 0 20px;
  }
  .newsletter .newsletter__header {
    margin: 0 auto 10px auto;
  }
  .newsletter .newsletter__text {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .newsletter {
    margin: 96px auto 120px;
  }
  .newsletter h5 {
    margin: 4px 0 16px;
  }
  .newsletter__form button {
    width: 190px;
  }
  .newsletter__rodo {
    margin-top: calc(32px - 28px);
  }
}
.product-page-newslatter {
  border-top: 1px solid #d2d2d2;
  margin-top: 30px;
}
.product-page-newslatter .newsletter__wrapper {
  border: none;
  margin: 0 auto 20px;
}
.survey-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 35px 0;
}
/* ============ cookie alert ============ */
#cookie-alert-container {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 15px 0;
}
.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.cookie-container .button {
  max-width: none;
  margin-top: 10px;
}
.cookie-container .text {
  text-align: center;
}
@media (min-width: 576px) {
  .cookie-container {
    flex-direction: row;
  }
  .cookie-container .button {
    max-width: 200px;
    margin-top: 0;
    margin-left: 15px;
  }
  .cookie-container .text {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .cookie-container .button {
    margin-right: 150px;
  }
}
/*styles for checkout and cart only so cookie warning won't cover checkout and cart button*/
.cookie-mobile-only-checkout-cart #cookie-alert-container,
.cookie-mobile-only-checkout #cookie-alert-container {
  padding: 10px 0;
}
.cookie-mobile-only-checkout-cart #cookie-alert-container button,
.cookie-mobile-only-checkout #cookie-alert-container button {
  padding: 5px 20px;
  color: #ffffff;
  display: block;
  margin: 10px auto;
}
.cookie-mobile-only-checkout-cart #cookie-alert-container p,
.cookie-mobile-only-checkout #cookie-alert-container p {
  line-height: 18px;
  text-align: center;
  margin-bottom: 0;
}
.cookie-mobile-only-checkout {
  margin-bottom: 60px;
}
.cookie-mobile-only-checkout #cookie-alert-container {
  bottom: 0px;
}
/********* START ITEM DETAILS POPUP **********/
.collector {
  padding: 20px;
  text-align: left;
}
.collector .txtb {
  display: inline-block;
  margin-left: 18px;
}
.author-image {
  background-color: #ffffff;
  width: 193px;
  margin-top: 32px;
  padding-bottom: 18px;
}
.author-image h4 {
  text-align: center;
  color: #d2d2d2;
  line-height: 21px;
  padding: 13px 0;
}
.author-image h4.blue {
  border-top: solid 1px #e6e6e6;
  color: #1185ed;
  margin: 0 16px;
}
.author-image a.action-buttons {
  margin-top: 18px;
}
.cont {
  width: 965px;
  z-index: 9999;
  display: inline-block;
}
.social {
  margin-top: 30px;
}
.social > div {
  display: inline-block;
}
.social-btns {
  width: 140px;
  float: left;
  margin-top: 44px;
  position: relative;
  right: 3px;
}
.blue-button {
  background: #00abe9;
  border: 1px solid #00abe9;
  color: #ffffff;
  width: 53px;
  height: 30px;
}
/********** END ITEM DETAILS POPUP ***********/
.you-might-also-like {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-basis: 100%;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .you-might-also-like {
    width: calc(97% - 2px);
    margin-left: 1%;
    margin-bottom: 20px;
  }
  .you-might-also-like--collection-page {
    width: 100%;
    margin-left: 0;
  }
}
.you-might-also-like h3 {
  margin: 15px 0;
  text-align: left;
}
@media (min-width: 992px) {
  .you-might-also-like h3 {
    margin: 15px 0 30px;
  }
}
.you-might-also-like .owl-carousel {
  width: 100%;
}
@media (min-width: 992px) {
  .you-might-also-like .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.you-might-also-like .owl-stage-outer {
  width: calc(100% + 70px);
  padding: 35px;
  margin: -35px;
}
.displate-slider.simple-slider .displate-slider__image {
  cursor: pointer;
}
.displate-slider.simple-slider .text-add-cart {
  width: 100%;
  min-height: 24px;
  margin-top: 15px;
  text-align: center;
  color: #1185ed;
  cursor: pointer;
}
.displate-slider.simple-slider .text-add-cart-disabled {
  cursor: default;
}
.displate-zoom {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .displate-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: none;
    transition: none;
  }
  .displate-zoom__lens {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 201201920901291;
    width: 450px;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 0 2000px 2000px rgba(255, 255, 255, 0.975);
    pointer-events: none;
  }
  .displate-zoom__lens::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .displate-zoom:hover {
    opacity: 1;
    transition: 0.4s 0.2s;
  }
}
.add-to-collection-popup .popup__columns {
  flex-direction: column;
}
.add-to-collection-popup .popup__columns--loading {
  position: relative;
  pointer-events: none;
}
.add-to-collection-popup .popup__columns--loading .popup__column {
  opacity: 0.3;
}
.add-to-collection-popup .popup__columns--loading::after {
  content: url('/img/loaders/loader-dark.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.add-to-collection-popup__col-img {
  width: 100%;
  text-align: center;
}
.add-to-collection-popup__col-img img {
  width: 100%;
  max-width: 120px;
}
.add-to-collection-popup__col-actions {
  width: 100%;
  margin-top: 10px;
}
.add-to-collection-popup__new-collection input {
  width: 100%;
}
.add-to-collection-popup__new-collection button {
  width: 100%;
  margin-top: 10px;
}
.add-to-collection-popup .button--submit {
  width: 100%;
}
.add-to-collection-popup .collect-displate-placeholder,
.add-to-collection-popup .link {
  padding: 0 3px;
}
@media (min-width: 768px) {
  .add-to-collection-popup .popup__columns {
    flex-direction: row;
  }
  .add-to-collection-popup__col-img {
    max-width: 180px;
    text-align: unset;
  }
  .add-to-collection-popup__col-img img {
    max-width: 100%;
  }
  .add-to-collection-popup__col-actions {
    width: 250px;
    margin-top: 0;
    margin-left: 20px;
  }
  .add-to-collection-popup__new-collection {
    position: relative;
    top: -20px;
  }
  .add-to-collection-popup__new-collection input {
    width: 155px;
  }
  .add-to-collection-popup__new-collection button {
    position: absolute;
    top: 24px;
    right: 0;
    width: unset;
    margin-top: 4px;
  }
  .add-to-collection-popup .button--submit {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .toaster {
    bottom: 24px;
  }
}
.wishlist-toast {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  width: 230px;
  padding: 4px 6px;
}
.wishlist-toast__container {
  padding: 0 !important;
  box-shadow: 0px 2px 6px rgba(16, 17, 26, 0.2) !important;
}
.wishlist-toast__container--with-margin {
  margin-bottom: 94px;
}
@media (min-width: 768px) {
  .wishlist-toast__container--with-margin {
    margin-bottom: 0;
  }
}
.wishlist-toast:hover {
  text-decoration: none;
}
.wishlist-toast__content {
  display: flex;
  align-items: center;
}
.wishlist-toast__icon {
  margin-right: 8px;
}
.wishlist-toast__button {
  color: #10111a;
  background-color: #eceff4;
  border-radius: 8px;
  padding: 10px;
}
/* purgecss start ignore */
/* DA-5064 */
.video-frame video {
  min-width: 0 !important;
}
.main-menu--mobile.main-menu .topbar::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.3s 0.2s;
  opacity: 0;
  background-color: rgba(51, 51, 51, 0.9);
}
.main-menu--mobile.main-menu .topbar--shadow::before {
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: all;
}
.search-results__empty-abtest370--suggested {
  display: flex;
  align-items: baseline;
}
.search-results__empty-abtest370--suggested__mobile {
  display: block;
}
.search-results__empty-abtest370--suggested__mobile > .search-results__empty-abtest370--suggested-label {
  display: flex;
  justify-content: center;
  margin-right: 0px;
  margin-bottom: 7px;
}
.search-results__empty-abtest370--suggested-label {
  margin-right: 8px;
}
.search-results__empty-abtest370--suggested-links {
  text-align: center;
}
.displate-club__landing {
  padding: 130px 0;
}
.displate-club__landing-text {
  margin: 15px auto;
  max-width: 590px;
}
.displate-club__header {
  display: flex;
  flex-wrap: wrap;
  background: #f8f6f8;
  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.1);
}
.displate-club__header-container {
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: calc(1270px + 15px)) {
  .displate-club__header-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .displate-club__header-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
.displate-club__header-container:after {
  content: url('/img/patterns/cyan_1.png');
  position: absolute;
  left: -500px;
  width: 455px;
  height: 323px;
  top: 50%;
  transform: translateY(-50%);
}
.displate-club__header-section--left {
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .displate-club__header-section--left {
    width: 38%;
    margin-top: 0;
    padding: 4.85% 0;
  }
}
.displate-club__header-section--right {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .displate-club__header-section--right {
    width: 62%;
    background-position: left bottom;
  }
}
.displate-club__header-section--right img {
  align-self: center;
  max-width: 50%;
}
.displate-club__header-section--right img:first-of-type {
  position: relative;
}
.displate-club__header .displate-club__header-section--right {
  background: none;
  align-items: flex-end;
}
.displate-club__header .displate-club__video {
  display: flex;
}
.displate-club__video {
  justify-content: center;
  width: 100%;
}
@media (min-width: 992px) {
  .displate-club__video {
    width: 89%;
  }
}
.displate-club__container {
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
@media (min-width: calc(1270px + 15px)) {
  .displate-club__container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .displate-club__container {
    padding: 0 0;
    max-width: 1270px;
  }
}
.displate-club__perks-container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  justify-content: center;
}
.displate-club__perks-container div.displate-club__perks-item:nth-of-type(3) {
  display: flex !important;
}
@media (min-width: 768px) {
  .displate-club__perks-container {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .displate-club__perks-container {
    margin: -15px;
  }
}
.displate-club__perks-item {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
}
@media (min-width: 768px) {
  .displate-club__perks-item {
    padding-top: 3%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .displate-club__perks-item {
    width: calc(100% / 3) !important;
  }
}
.displate-club__perks-item object {
  width: 18%;
}
@media (min-width: 768px) {
  .displate-club__perks-item object {
    width: 100px;
  }
}
.displate-club__perks-item div {
  width: 79%;
  margin-left: 6%;
}
@media (min-width: 768px) {
  .displate-club__perks-item div {
    margin-left: 20px;
    margin-top: 30px;
    align-self: flex-start;
  }
}
.displate-club__perks-item div p {
  max-width: 290px;
}
@media (min-width: 768px) {
  .displate-club__perks-item:nth-of-type(3) div {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .displate-club__perks-item:nth-of-type(3) div {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .displate-club__perks-item:nth-of-type(4) div,
  .displate-club__perks-item:nth-of-type(5) div,
  .displate-club__perks-item:nth-of-type(6) div {
    margin-top: 10px;
  }
}
.displate-club__perks-item:nth-of-type(4) {
  order: unset !important;
  margin-left: 0 !important;
}
.displate-club__perks-item:nth-of-type(5) div {
  margin-top: 10px !important;
}
.displate-club__perks-item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .displate-club__perks-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.displate-club__join-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .displate-club__join-container {
    justify-content: flex-start;
  }
}
.displate-club__join-item {
  width: 100%;
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .displate-club__join-item {
    width: 33%;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .displate-club__join-item:before {
    content: url('/img/icons/icon_arrow_v2.svg');
    position: absolute;
    width: 48px;
    height: 48px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.displate-club__join-item img {
  max-height: var(--image-maxheight);
  margin-top: var(--image-margintop);
}
.displate-club__join-item--textbox {
  background: #ffffff;
  padding: 20px;
  width: 100%;
  margin-top: 55px;
  box-shadow: 0 0 75px rgba(0, 0, 0, 0.2);
  margin-bottom: 70px;
}
@media (min-width: 765px) {
  .displate-club__join-item--textbox {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .displate-club__join-item--textbox {
    width: 31.5%;
    margin-left: 1.5%;
    max-height: 256px;
    margin-bottom: 0;
    margin-top: 35px;
  }
}
@media (min-width: 1200px) {
  .displate-club__join-item--textbox {
    padding: 40px;
  }
}
.displate-club__join-item--textbox:after {
  content: '';
  background: url('/img/patterns/cyan_2.png');
  position: absolute;
  top: -35px;
  bottom: -35px;
  left: -35px;
  right: -35px;
  z-index: -1;
}
.displate-club__join-item--textbox:before {
  content: '';
}
.displate-club__join-text {
  width: 80%;
  margin: 0 auto;
}
.displate-club__cart {
  max-height: 46px;
  position: relative;
}
.displate-club__cart--dc-info-desktop {
  border: none !important;
  position: relative;
  font-weight: 300 !important;
  max-height: unset;
  border-radius: 8px;
  padding: 16px;
}
.displate-club__cart--dc-info-desktop .input-checkbox__label {
  font-weight: unset !important;
}
.displate-club__cart--dc-info-desktop .text--darkgrey {
  color: unset;
}
@media (min-width: 1024px) {
  .displate-club__cart--dc-info-desktop {
    margin-top: 16px;
  }
}
.displate-club__cart--current-cart {
  background: radial-gradient(circle at 100%, #e2eff5, #e2eff5 25%, #f1f7fa 50%);
}
.displate-club__cart--order {
  background: linear-gradient(96deg, #f0e5f3 0%, #f0e5f3 100%);
}
.displate-club__cart-join-dc-copy--desktop {
  font-size: 14px;
  line-height: 20px;
  max-width: 240px;
}
.displate-club__cart-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1024px) {
  .displate-club__cart-container {
    align-items: center;
  }
}
.displate-club__cart-label-wrapper {
  display: flex;
  align-items: center;
}
.displate-club__cart-links {
  font-size: 14px;
  line-height: 20px;
  margin: 16px 0 0 28px;
  width: fit-content;
}
@media (min-width: 1024px) {
  .displate-club__cart-links {
    margin-top: 12px;
  }
}
.displate-club__cart label {
  width: 75%;
  margin: 0;
}
@media (min-width: 576px) {
  .displate-club__cart label {
    width: unset;
  }
}
.displate-club__cart .tooltip__text:before {
  content: '';
  position: absolute;
  display: block;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.displate-club__cart .tooltip__icon {
  line-height: 0;
}
.displate-club__cart-price {
  white-space: nowrap;
  text-align: right;
}
.displate-club__cart-price-element--desktop:nth-child(1) {
  line-height: 24px;
}
.displate-club__cart-price-element--desktop:nth-child(2) {
  line-height: 16px;
  margin-top: -4px;
}
.displate-club__cart::after,
.displate-club__cart::before {
  content: none;
}
@media (min-width: 992px) {
  .displate-club__cart .input-checkbox__label {
    display: flex;
  }
  .displate-club__cart .input-checkbox__label img {
    margin-top: 2px;
  }
}
@media (min-width: 1200px) {
  .displate-club__cart label {
    white-space: unset;
  }
  .displate-club__cart .tooltip {
    height: 18px;
    width: 18px;
  }
}
.displate-club__icon {
  margin-top: 3px;
  margin-right: 5px;
}
.displate-club__greytextbox {
  background: #f5f5f5;
  padding: 30px;
}
.displate-club__footer {
  margin-top: 30px !important;
}
@media (min-width: 768px) {
  .displate-club__footer {
    margin-top: 50px !important;
  }
}
.displate-club__footer .icon-62 {
  display: inline-block;
}
.displate-club__footer-arrows {
  margin-top: -45px;
  overflow: hidden;
  height: 128px;
  pointer-events: none;
}
.displate-club__footer-arrows > div {
  max-width: 205px;
  display: inline-block;
}
.displate-club__footer-arrows svg {
  width: 100%;
  display: inline-block;
}
.voucher {
  width: 100%;
}
.voucher__grid {
  display: block;
  margin: 30px 0 0;
}
@media (min-width: 768px) {
  .voucher__grid {
    display: grid;
    grid-template: auto auto / 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (min-width: 768px) {
  .voucher__grid {
    grid-gap: 30px;
  }
}
.voucher__item {
  padding: 15px 20px 10px 15px;
  background: #f5f5f5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.voucher__item:not(.voucher__item--wide) > div {
  margin: -10px 0 0 15px;
}
@media (min-width: 768px) {
  .voucher__item {
    display: block;
    padding: 30px 30px 15px;
  }
  .voucher__item:not(.voucher__item--wide) > div {
    margin: 0;
  }
}
.voucher__item--wide {
  display: block;
  margin-top: 20px;
}
.voucher__item--wide > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .voucher__item--wide {
    margin-top: 0;
    grid-column-start: 1;
    grid-column-end: 4;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .voucher__item--wide > div {
    display: block;
  }
}
.voucher .button {
  width: 100%;
}
@media (min-width: 768px) {
  .voucher .button {
    width: 240px;
  }
}
.mobile-body .displate-club__cart-container {
  padding: 16px;
}
.mobile-body .displate-club--current-cart {
  background: radial-gradient(circle at 100%, #e2eff5, #e2eff5 25%, #f1f7fa 50%);
}
.mobile-body .displate-club--order {
  background: linear-gradient(96deg, #f0e5f3 0%, #f0e5f3 100%);
}
.mobile-body .displate-club__cart {
  flex-wrap: wrap;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  margin: -16px 16px 16px;
  max-height: initial;
  padding: 0;
}
.mobile-body .displate-club__join-dc-copy {
  font-weight: 600;
}
.mobile-body .displate-club__benefits {
  padding: 16px;
}
.mobile-body .displate-club__benefits-list {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.mobile-body .displate-club__benefits-list-item {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.mobile-body .displate-club__benefits-list-checkmark {
  background-color: #1185ed;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 8px 0 0;
  flex-shrink: 0;
}
.mobile-body .displate-club__benefits-list-checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: 1px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: translateY(-1px) rotate(45deg);
}
.limited-editions {
  background: #f5f5f5;
  overflow: hidden;
  min-height: 500px !important;
}
@media (min-width: 1200px) {
  .limited-editions {
    min-height: 600px !important;
  }
}
.limited-editions-landing {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .limited-editions-landing {
    margin-top: 50px;
  }
}
.limited-editions-landing__lead {
  background: #ffffff;
  padding: 0 15px 15px 15px;
  position: relative;
}
.limited-editions-landing__lead h1,
.limited-editions-landing__lead p {
  color: #000;
}
.limited-editions-landing .pattern {
  position: absolute;
  pointer-events: none;
}
.limited-editions-landing .pattern_1 {
  top: -35vh;
  left: 9vw;
}
.limited-editions-landing .pattern_2 {
  left: -4vw;
  top: 70vh;
}
.limited-editions-landing .pattern_3 {
  top: 46.5vh;
  right: -9vw;
}
.limited-editions__promotion {
  background: #ffffff;
  padding: 35px 15px 35px 5px;
  position: relative;
  flex-direction: column;
}
@media (min-width: 992px) {
  .limited-editions__promotion {
    flex-direction: row;
  }
}
.limited-editions__features {
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  padding: 35px 15px 35px 5px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .limited-editions__features {
    grid-template-columns: repeat(3, 1fr);
    padding: 37px;
  }
}
.limited-editions__features-tile {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
}
.limited-editions__features-tile div {
  text-align: center;
}
.limited-editions__features-tile p {
  font-size: 14px;
}
@media (min-width: 992px) {
  .limited-editions__features-tile {
    grid-column-gap: 15px;
  }
  .limited-editions__features-tile p {
    font-size: 16px;
  }
}
.limited-editions__features-tile div.svg-icon {
  justify-self: center;
  align-items: flex-start;
  width: 80px;
  height: auto;
}
@media (min-width: 992px) {
  .limited-editions__features-tile div.svg-icon {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 375px) {
  .limited-editions__features-tile {
    grid-template-columns: 1fr 3fr;
  }
  .limited-editions__features-tile div {
    text-align: left;
  }
}
.limited-editions__displates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
  justify-items: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .limited-editions__displates {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .limited-editions__displates {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 50px;
    min-height: 385px;
  }
}
.limited-editions__club-overlay {
  background: #ffffff;
  width: 200%;
  margin-left: -50%;
  margin-top: 50px;
  overflow: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.limited-editions__club-container {
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
@media (min-width: calc(1270px + 15px)) {
  .limited-editions__club-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .limited-editions__club-container {
    padding: 0 0;
    max-width: 1270px;
  }
}
.limited-editions__video-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 10px solid #ffffff;
  position: relative;
  cursor: pointer;
  background-image: url('/img/product/limited_video_placeholder_mobile.png');
  background-size: 100% 100%;
  width: 100%;
  height: calc(100vw - 30px);
}
@media (min-width: 768px) {
  .limited-editions__video-placeholder {
    height: 39vw;
    max-height: 495px;
    background-image: url('/img/product/limited_video_placeholder_desktop.png');
  }
}
.product-page {
  margin: 0 auto;
  background: #f5f5f5;
  max-width: 100vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
@media (min-width: calc(1270px + 15px)) {
  .product-page {
    padding: 0 0;
    max-width: 1270px;
  }
}
@media (min-width: calc(1270px + 15px)) {
  .product-page {
    padding: 0 0;
    max-width: 1270px;
  }
}
.product-page .early-access-disabled {
  background-color: #fff5eb;
  padding: 8px;
  text-align: center;
  width: 100%;
}
.product-page .early-access-disabled a {
  margin-left: 5px;
}
.product-page .slick-track {
  display: flex;
}
.product-page .slick-list {
  margin-left: 0;
}
.product-page .slick-slide .trustpilot-item {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .product-page__description {
    display: grid;
    grid-template-columns: 62% 35.5%;
    grid-template-rows: 1fr;
    grid-column-gap: 2.5%;
  }
}
.product-page__details {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0;
  grid-row-gap: 25px;
  margin: 10px 0 0;
}
.product-page__details .d__relative + div {
  overflow: hidden;
}
.product-page__details div:nth-of-type(2) h3 {
  z-index: initial;
}
@media (min-width: 768px) {
  .product-page__details {
    margin: 35px 0;
  }
  .product-page__details h3 {
    font-size: 28px;
    font-family: 'proxima-nova', Corbel, Arial, sans-serif;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .product-page__details {
    grid-template-columns: 48.5% 48.5%;
    grid-template-rows: 1fr;
    grid-column-gap: 3%;
    grid-row-gap: 0;
    margin: 60px 0;
  }
  .product-page__details .d__relative + div {
    overflow: visible;
  }
  .product-page__details h3 {
    text-align: left;
  }
}
.product-page__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 15px;
  margin-bottom: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .product-page__features {
    z-index: 0;
  }
}
.product-page__features-image {
  border: 10px solid #ffffff;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  animation: appearIn 1s forwards;
}
.product-page__features-image img {
  transition: 0.6s;
  display: block;
}
.product-page__features-image img:hover {
  transform: scale(1.1) translate(-4%);
}
.product-page__more {
  position: relative;
  z-index: 1;
  background: #ffffff;
  margin: 0 -15px 15px;
  padding: 15px;
}
@media (min-width: 992px) {
  .product-page__more {
    padding: 45px 15px;
    margin: 0 -15px 0;
  }
  .product-page__more hr {
    display: none;
  }
  .product-page__more:after {
    content: '';
    position: absolute;
    left: -100%;
    right: -100%;
    top: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -1;
    border-top: 1px solid #d2d2d2;
  }
}
.product-page__more--empty {
  padding: 0;
}
.product-page__more .heading-placeholder {
  margin-top: 0;
}
@media (min-width: 992px) {
  .product-page__more .displate-slider__slider {
    margin: -40px -55px -280px;
  }
}
.product-page__more-in-cart {
  display: none;
}
.product-page__more--added-to-cart {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 1s;
}
.product-page__more--added-to-cart .product-page__more-in-cart {
  display: block;
}
.product-page h3 {
  position: relative;
  z-index: 1;
}
.product-page .pattern {
  position: absolute;
  pointer-events: none;
}
.product-page .pattern_1 {
  top: 0%;
  right: -18%;
}
.product-page .pattern_2 {
  left: -20%;
  bottom: -62%;
}
.product-page .pattern_3 {
  bottom: -32%;
  left: 10%;
}
.product-page .pattern_4 {
  top: -53.5%;
  left: -23%;
}
.product-page .pattern_5 {
  top: -46%;
  right: -133%;
}
.product-page .pattern_6 {
  bottom: -48%;
  left: -92%;
}
.product-page .ojgEXhep_0 {
  stroke-dasharray: 787 789;
  stroke-dashoffset: 788;
}
.product-page .pattern-start .ojgEXhep_0 {
  animation: ojgEXhep_draw 6666ms linear 0ms forwards;
}
.product-page .ojgEXhep_1 {
  stroke-dasharray: 426 428;
  stroke-dashoffset: 427;
}
.product-page .pattern-start .ojgEXhep_1 {
  animation: ojgEXhep_draw 6666ms linear 1666ms forwards;
}
.product-page .ojgEXhep_2 {
  stroke-dasharray: 233 235;
  stroke-dashoffset: 234;
}
.product-page .pattern-start .ojgEXhep_2 {
  animation: ojgEXhep_draw 6666ms linear 3333ms forwards;
}
@keyframes ojgEXhep_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes ojgEXhep_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .jnxcuzLK_0 {
  stroke-dasharray: 2485 2487;
  stroke-dashoffset: 2486;
}
.product-page .pattern-start .jnxcuzLK_0 {
  animation: jnxcuzLK_draw 6666ms linear 0ms forwards;
}
.product-page .jnxcuzLK_1 {
  stroke-dasharray: 1345 1347;
  stroke-dashoffset: 1346;
}
.product-page .pattern-start .jnxcuzLK_1 {
  animation: jnxcuzLK_draw 6666ms linear 1666ms forwards;
}
.product-page .jnxcuzLK_2 {
  stroke-dasharray: 734 736;
  stroke-dashoffset: 735;
}
.product-page .pattern-start .jnxcuzLK_2 {
  animation: jnxcuzLK_draw 6666ms linear 3333ms forwards;
}
@keyframes jnxcuzLK_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes jnxcuzLK_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .pvlVMUjF_0 {
  stroke-dasharray: 2209 2211;
  stroke-dashoffset: 2210;
}
.product-page .pattern-start .pvlVMUjF_0 {
  animation: pvlVMUjF_draw 6666ms linear 0ms forwards;
}
.product-page .pvlVMUjF_1 {
  stroke-dasharray: 1195 1197;
  stroke-dashoffset: 1196;
}
.product-page .pattern-start .pvlVMUjF_1 {
  animation: pvlVMUjF_draw 6666ms linear 1666ms forwards;
}
.product-page .pvlVMUjF_2 {
  stroke-dasharray: 653 655;
  stroke-dashoffset: 654;
}
.product-page .pattern-start .pvlVMUjF_2 {
  animation: pvlVMUjF_draw 6666ms linear 3333ms forwards;
}
@keyframes pvlVMUjF_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes pvlVMUjF_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .FCSiwVCL_0 {
  stroke-dasharray: 2347 2349;
  stroke-dashoffset: 2348;
}
.product-page .pattern-start .FCSiwVCL_0 {
  animation: FCSiwVCL_draw 6666ms linear 0ms forwards;
}
.product-page .FCSiwVCL_1 {
  stroke-dasharray: 1270 1272;
  stroke-dashoffset: 1271;
}
.product-page .pattern-start .FCSiwVCL_1 {
  animation: FCSiwVCL_draw 6666ms linear 1666ms forwards;
}
.product-page .FCSiwVCL_2 {
  stroke-dasharray: 693 695;
  stroke-dashoffset: 694;
}
.product-page .pattern-start .FCSiwVCL_2 {
  animation: FCSiwVCL_draw 6666ms linear 3333ms forwards;
}
@keyframes FCSiwVCL_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes FCSiwVCL_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .GkVkuRkB_0 {
  stroke-dasharray: 779 781;
  stroke-dashoffset: 780;
}
.product-page .pattern-start .GkVkuRkB_0 {
  animation: GkVkuRkB_draw 6666ms linear 0ms forwards;
}
.product-page .GkVkuRkB_1 {
  stroke-dasharray: 422 424;
  stroke-dashoffset: 423;
}
.product-page .pattern-start .GkVkuRkB_1 {
  animation: GkVkuRkB_draw 6666ms linear 1666ms forwards;
}
.product-page .GkVkuRkB_2 {
  stroke-dasharray: 230 232;
  stroke-dashoffset: 231;
}
.product-page .pattern-start .GkVkuRkB_2 {
  animation: GkVkuRkB_draw 6666ms linear 3333ms forwards;
}
@keyframes GkVkuRkB_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes GkVkuRkB_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .RpiMGfEz_0 {
  stroke-dasharray: 664 666;
  stroke-dashoffset: 665;
}
.product-page .pattern-start .RpiMGfEz_0 {
  animation: RpiMGfEz_draw 6666ms linear 0ms forwards;
}
.product-page .RpiMGfEz_1 {
  stroke-dasharray: 359 361;
  stroke-dashoffset: 360;
}
.product-page .pattern-start .RpiMGfEz_1 {
  animation: RpiMGfEz_draw 6666ms linear 1666ms forwards;
}
.product-page .RpiMGfEz_2 {
  stroke-dasharray: 196 198;
  stroke-dashoffset: 197;
}
.product-page .pattern-start .RpiMGfEz_2 {
  animation: RpiMGfEz_draw 6666ms linear 3333ms forwards;
}
@keyframes RpiMGfEz_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes RpiMGfEz_fade {
  0% {
    stroke-opacity: 1;
  }
  97.1830985915493% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.product-page .section-with-nav {
  background: #f5f5f5;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
}
@media (min-width: 1200px) {
  .product-page .section-with-nav {
    max-height: 563px;
  }
}
.product-page .section-with-nav:after {
  content: '';
  position: absolute;
  width: 150vw;
  height: 100%;
  left: -50vw;
  top: 0;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.product-page .section-with-nav .product-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  align-items: flex-start;
}
.product-page .section-with-nav .product-details__info-listed {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.product-page .section-with-nav .product-details__info-listed .info-listed-el {
  margin-bottom: 20px;
  margin-top: 0;
}
.product-page .section-with-nav .product-details__properties {
  position: initial;
  bottom: initial;
  width: initial;
  max-width: initial;
  padding-right: initial;
  margin-left: initial;
}
.product-page .section-with-nav .product-details .artist-info {
  display: flex;
  align-items: center;
}
.product-page {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: appearIn 1s forwards;
}
.product-page .product-slider--rows + .product-page__product-box {
  align-self: flex-start;
}
.product-page .product-slider--more {
  --slide-width: 173px;
  --horizontal-mobile-height: 124px;
  --vertical-mobile-height: 241px;
  --horizontal-desktop-height: 142px;
  --vertical-desktop-height: 280px;
  position: relative;
}
.product-page .product-slider--more:not(:last-child) {
  margin-bottom: 40px;
}
.product-page .product-slider--more .swiper {
  overflow: visible;
}
.product-page .product-slider--more .swiper-wrapper {
  height: auto;
}
.product-page .product-slider--more .swiper-slide {
  width: var(--slide-width) !important;
}
.product-page .product-slider--more .slider-image {
  width: var(--slide-width);
  height: var(--vertical-mobile-height);
}
.product-page .product-slider--more .slider-image--horizontal {
  height: var(--horizontal-mobile-height);
  margin-bottom: calc((var(--vertical-mobile-height) - var(--horizontal-mobile-height)) / 2);
  margin-top: calc((var(--vertical-mobile-height) - var(--horizontal-mobile-height)) / 2);
}
.product-page .product-slider--more .editions__pulsometer {
  box-shadow: none;
  border: 1px solid #d8dde1;
}
.product-page .product-slider--more .swiper-nav-prev,
.product-page .product-slider--more .swiper-nav-next {
  --nav-button-height: 32px;
  height: var(--nav-button-height);
  width: auto;
  position: absolute;
  top: calc(50% - var(--nav-button-height) / 2);
  visibility: hidden;
}
@media (min-width: 992px) {
  .product-page .product-slider--more {
    --offset-size: 40px;
    --slide-width: 200px;
  }
  .product-page .product-slider--more:not(:last-child) {
    margin-bottom: 56px;
  }
  .product-page .product-slider--more .slider-image {
    height: var(--vertical-desktop-height);
  }
  .product-page .product-slider--more .slider-image--horizontal {
    height: var(--horizontal-desktop-height);
    margin-bottom: calc((var(--vertical-desktop-height) - var(--horizontal-desktop-height)) / 2);
    margin-top: calc((var(--vertical-desktop-height) - var(--horizontal-desktop-height)) / 2);
  }
  .product-page .product-slider--more .tile-label h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .product-page .product-slider--more .swiper {
    width: 100%;
    overflow-x: hidden;
  }
  .product-page .product-slider--more .swiper-nav-prev,
  .product-page .product-slider--more .swiper-nav-next {
    visibility: visible;
  }
  .product-page .product-slider--more .swiper-nav-prev:hover,
  .product-page .product-slider--more .swiper-nav-next:hover {
    cursor: pointer;
  }
  .product-page .product-slider--more .swiper-nav-prev.swiper-button-disabled,
  .product-page .product-slider--more .swiper-nav-next.swiper-button-disabled {
    visibility: hidden;
  }
  .product-page .product-slider--more .swiper-nav-prev {
    left: -60px;
  }
  .product-page .product-slider--more .swiper-nav-next {
    right: -60px;
  }
}
.product-page__product-box {
  background: #ffffff;
  padding: 20px 15px 0;
  margin: 0 -15px;
  border-radius: 0;
  position: static;
  z-index: 1;
  /* purgecss start ignore */
  /* purgecss end ignore */
}
@media (min-width: 992px) {
  .product-page__product-box {
    padding: 25px 15px 15px;
    border-radius: 0;
    margin: 0;
    border: 10px solid #f5f5f5;
    background-image: url('/img/patterns/grey_1.svg'), url('/img/icons/icon_print_on_metal.svg');
    background-color: #ffffff;
    background-size: cover, 16%;
    background-repeat: no-repeat;
    background-position: center, 95% 20px;
    align-self: flex-start;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  }
  .product-page__product-box h3 {
    max-width: 78%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-page__product-box--soldout {
    background-image: url('/img/patterns/grey_1.svg'), url('/img/icons/icon_soldout.svg');
  }
}
@media (min-width: 1200px) {
  .product-page__product-box {
    align-self: initial;
  }
}
.product-page__product-box-perks {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  justify-items: flex-start;
}
@media (min-width: 992px) {
  .product-page__product-box-perks {
    grid-template-columns: 1fr 1fr;
  }
  .product-page__product-box-perks p,
  .product-page__product-box-perks li {
    font-size: 16px;
  }
}
.product-page__product-box-size {
  border: 1px solid #d2d2d2;
  background: #ffffff;
}
@media (min-width: 992px) {
  .product-page__product-box-size {
    max-height: 210px;
    max-width: 170px;
    overflow: hidden;
  }
}
.product-page__product-box-size div {
  border-bottom: 1px solid #d2d2d2;
}
.product-page__product-box-list {
  margin-left: 25px;
}
@media (min-width: 1200px) {
  .product-page__product-box-list {
    margin-left: 0;
  }
}
.product-page__product-box-general-image {
  width: 100%;
  margin-bottom: 16px;
}
.product-page__product-box-avatar {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.product-page__product-box-static-list {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.product-page__product-box-static-list:last-of-type {
  margin-bottom: 0;
  align-items: initial;
}
.product-page__product-box-static-list--ultra:last-of-type {
  align-items: center;
}
.product-page__product-box .svg-icon__share {
  display: none;
}
.add-to-cart-button__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-to-cart-button__container p {
  min-height: 22px;
}
@media (min-width: 992px) {
  .add-to-cart-button__container .button {
    font-size: 22px;
  }
}
.add-to-cart-button--sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 15px;
  border-top: 1px solid #d2d2d2;
  background-color: #ffffff;
  z-index: 9998;
}
.limited-edition-tile-label {
  text-align: center;
  margin-top: 12px;
}
.limited-edition-tile-label p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
.price-wrapper {
  display: flex;
  justify-content: center;
}
.price-wrapper .price {
  margin-top: 16px;
  display: inline-flex;
  padding: 6px 12px 4px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #000;
  width: fit-content;
  line-height: 16px;
}
.price-wrapper .price img {
  height: 16px;
  width: auto;
  box-shadow: none;
  border-radius: 50%;
  filter: none;
}
#collectors-feed {
  min-height: 700px;
}
.collectors-feed__header {
  flex-basis: 100%;
  position: relative;
  margin: 7.5px 0;
}
@media (min-width: 768px) {
  .collectors-feed__header {
    margin: 15px 0;
    flex-basis: calc(50% - 7.5px);
  }
}
@media (min-width: 992px) {
  .collectors-feed__header {
    flex-basis: calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .collectors-feed__header h1 span {
    font-size: 42px;
    line-height: 42px;
  }
}
.collectors-feed__header h1 strong {
  font-size: 36px;
  line-height: 36px;
  display: block;
  margin: 0 0 0 -1px;
}
@media (min-width: 768px) {
  .collectors-feed__header h1 strong {
    font-size: 90px;
    line-height: 90px;
    margin: -10px 0 0 -3px;
  }
}
.collectors-feed__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 15px 0 30px;
}
@media (min-width: 768px) {
  .collectors-feed__content {
    padding: 30px 0;
  }
}
.collectors-feed__content:before {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
  background-image: url('/img/patterns/cyan_pattern_2.svg');
  top: -270px;
  left: 0;
  width: 200px;
  height: 280px;
}
@media (min-width: 768px) {
  .collectors-feed__content:before {
    top: -413px;
    left: -3px;
    height: 500px;
    width: 360px;
  }
}
.collectors-feed__show-more {
  width: 100%;
}
@media (min-width: 576px) {
  .collectors-feed__show-more {
    width: 270px;
  }
}
.collectors-feed .feed-item {
  flex-basis: 100%;
  position: relative;
  margin: 7.5px 0;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  will-change: transform;
}
@media (min-width: 768px) {
  .collectors-feed .feed-item {
    margin: 15px 0;
    flex-basis: calc(50% - 7.5px);
  }
}
@media (min-width: 992px) {
  .collectors-feed .feed-item {
    flex-basis: calc(50% - 15px);
  }
}
.collectors-feed .feed-item:hover {
  transform: translate3d(0, -7px, 0);
}
.collectors-feed .feed-item span {
  flex-shrink: 0;
}
.collectors-feed .feed-item__wrapper {
  position: relative;
  border: 5px solid #ffffff;
  min-height: 51.7vw;
}
@media (min-width: 768px) {
  .collectors-feed .feed-item__wrapper {
    min-height: 26.65vw;
  }
}
@media (min-width: 1300px) {
  .collectors-feed .feed-item__wrapper {
    min-height: 345.88px;
  }
}
.collectors-feed .feed-item__info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px 10px;
  background: #ffffff;
}
@media (min-width: 576px) {
  .collectors-feed .feed-item__info {
    padding: 15px 20px 20px;
  }
}
.collectors-feed .feed-item__buyer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.collectors-feed .feed-item__image {
  transition: all 0.3s ease;
  max-width: 100%;
}
.collectors-feed .feed-item__city,
.collectors-feed .feed-item__name {
  text-transform: capitalize;
}
.collectors-feed .feed-item--placeholder .feed-item__wrapper {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  padding-bottom: 55%;
  height: 0;
}
.collectors-feed .feed-item--placeholder .feed-item__count {
  display: inline-block;
  background: #f5f5f5;
  width: 180px;
  height: 18px;
}
.collectors-feed .feed-item--placeholder .feed-item__address {
  display: inline-block;
  background: #f5f5f5;
  width: 200px;
  height: 18px;
}
.collectors-feed .feed-item--placeholder:hover {
  transform: none;
}
.collectors-feed .popup__wrapper {
  max-height: 100vh;
  max-width: 100vw;
  width: 1000px;
  margin-bottom: 110px;
}
@media (min-width: 576px) {
  .collectors-feed .popup__wrapper {
    margin-bottom: 0;
  }
}
.collectors-feed .popup__wrapper .popup__content {
  padding: 0;
}
.collectors-feed .popup__wrapper .popup__floater {
  border-top: 1px solid #d2d2d2;
}
.collectors-feed .popup__wrapper .popup__floater > div {
  width: 100%;
}
@media (min-width: 576px) {
  .collectors-feed .popup__wrapper .popup__floater {
    padding: 20px 15px;
  }
}
.collectors-feed .popup__wrapper .button {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media (min-width: 576px) {
  .collectors-feed .popup__wrapper .button {
    padding-left: 70px;
    padding-right: 70px;
    width: auto;
  }
}
.browse-displate-list-container {
  width: 96%;
  margin: 36px auto 0;
  position: relative;
  text-align: left;
  height: auto;
}
.browse-displate-list-container h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
.browse-displate-list-container .browse-list {
  height: auto !important;
}
@media (min-width: 1270px) {
  .browse-displate-list-container {
    width: 100%;
    max-width: 1270px;
    padding: 0 15px;
  }
}
.displate-section-break {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-self: stretch;
}
.displate-section-break hr {
  display: block;
}
.displate-section-break h2 {
  flex-basis: 100%;
  text-transform: none;
  text-align: left;
}
.displate-section-break:first-of-type {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.displate-tile--limited {
  max-width: 200px;
  display: flex;
  flex-direction: column;
}
.displate-tile--limited:hover,
.displate-tile--limited:focus,
.displate-tile--limited:active {
  text-decoration: none;
}
@media (min-width: 576px) {
  .displate-tile--limited {
    width: 173px;
  }
}
@media (min-width: 992px) {
  .displate-tile--limited {
    width: 200px;
  }
}
.displate-tile--limited-placeholder {
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.displate-tile--limited-placeholder .displate-placeholder {
  padding-bottom: 140%;
}
.displate-tile--limited-upcoming,
.displate-tile--limited-soldout {
  position: relative;
}
.displate-tile--limited-upcoming:after,
.displate-tile--limited-soldout:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.displate-tile--limited-upcoming > .lazy-load-image-background:after {
  content: '';
  background: rgba(0, 0, 0, 0.5) url('/img/icons/icon_upcoming.svg') center no-repeat;
  background-size: 45%;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  position: absolute;
}
.displate-tile--limited-upcoming-counter {
  position: absolute;
  font-size: 14px;
  color: white;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 55%;
  transform: scale(1);
  transition: transform 1s ease-in-out;
}
.displate-tile--limited-upcoming-counter > span:not(:last-of-type) {
  margin-right: 5px;
}
.displate-tile--limited-upcoming-counter-time-out {
  transform: scale(1.2);
}
.displate-tile--limited-soldout:after {
  content: '';
  background: rgba(0, 0, 0, 0.5) url('/img/icons/icon_soldout_white.svg') center no-repeat;
  background-size: 45%;
}
.displate-tile--limited img {
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  min-height: 235px;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  outline: none;
  min-height: auto;
}
.displate-tile--limited img:not([src]) {
  border: 1px solid red;
}
@keyframes hideOverlay {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
.browse-displate-list-container .browse-list-item {
  display: inline-block;
  position: relative;
  /* 2 kolumny*/
  width: 42%;
  height: 150px;
  margin: 0 4% 10px;
  /* 3 kolumny */
  /* 4 kolumny*/
}
@media (min-width: 576px) {
  .browse-displate-list-container .browse-list-item {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .browse-displate-list-container .browse-list-item {
    width: 28%;
    height: 280px;
    margin: 0 calc(16% / 6) 10px;
  }
}
@media (min-width: 1200px) {
  .browse-displate-list-container .browse-list-item {
    width: 21%;
    height: 300px;
    margin: 0 2% 10px;
  }
}
.browse-displate-list-container .browse-list-item__status {
  width: 100%;
  padding: 5px 15px;
  display: inline-block;
  color: #ffffff;
}
.browse-displate-list-container .browse-list-item__status--pending {
  background: #00efd2;
}
.browse-displate-list-container .browse-list-item__status--disapproved {
  background: #6e6e6e;
}
.browse-displate-list-container .browse-list-item__status--published {
  background: #1185ed;
}
.browse-displate-list-container .browse-list-item__status--deactivated {
  background: #ff1744;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-border {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-origin: border-box;
  border: 1px solid #e1e1e1;
  pointer-events: none;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-border legend {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  padding: 0 10px;
  color: #000;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-border-exclusive {
  background-image: url('/img/search/exclusive_icon.png');
  background-position: 10px 10px;
  background-size: 21px 26px;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner .item-in-cart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner .item-in-cart span {
  margin-top: 6px;
  color: #ffffff;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal {
  width: 75%;
  max-width: 100px;
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal .displate-image,
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal .item-in-cart {
  width: 100%;
  max-width: 224px;
}
@media (min-width: 576px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.horizontal {
    width: 100%;
    max-width: 245px;
  }
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .displate-image,
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .item-in-cart {
  width: auto;
  max-height: 120px;
  /* fixed value because its bugged on firefox */
}
@media (min-width: 576px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .displate-image,
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .item-in-cart {
    max-height: 140px;
  }
}
@media (min-width: 768px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .displate-image,
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .item-in-cart {
    max-height: 176px;
  }
}
@media (min-width: 1200px) {
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .displate-image,
  .browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner.vertical .item-in-cart {
    max-height: 245px;
  }
}
.browse-displate-list-container .browse-list-item .displate-item-link .item-image-inner:hover .plate-hover {
  display: flex;
}
.browse-displate-list-container .browse-list-item .collection-list-description {
  display: flex;
  padding: 10px 3px;
  width: 100%;
  color: #000;
  justify-content: space-between;
  align-items: center;
}
.browse-displate-list-container .browse-list-item .collection-list-description p {
  align-self: center;
  width: 80%;
}
.browse-displate-list-container .browse-list-item .collection-list-description p > a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #000;
  transform: translateY(-8px);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.browse-displate-list-container .browse-list-item .collection-list-description p strong {
  display: block;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browse-displate-list-container .browse-list-item .collection-list-description p strong a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.browse-displate-list-container .browse-list-item .collection-list-price {
  align-self: flex-start;
  text-align: right;
  white-space: nowrap;
}
.browse-displate-list-container .browse-list-item .displate-item-link {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 85%;
  max-height: 255px;
  width: 100%;
  background-image: url(data:image/gif;base64,R0lGODlhHwAfAPUAAP///wAAAOjo6NLS0ry8vK6urqKiotzc3Li4uJqamuTk5NjY2KqqqqCgoLCwsMzMzPb29qioqNTU1Obm5jY2NiYmJlBQUMTExHBwcJKSklZWVvr6+mhoaEZGRsbGxvj4+EhISDIyMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAHwAfAAAG/0CAcEgUDAgFA4BiwSQexKh0eEAkrldAZbvlOD5TqYKALWu5XIwnPFwwymY0GsRgAxrwuJwbCi8aAHlYZ3sVdwtRCm8JgVgODwoQAAIXGRpojQwKRGSDCRESYRsGHYZlBFR5AJt2a3kHQlZlERN2QxMRcAiTeaG2QxJ5RnAOv1EOcEdwUMZDD3BIcKzNq3BJcJLUABBwStrNBtjf3GUGBdLfCtadWMzUz6cDxN/IZQMCvdTBcAIAsli0jOHSJeSAqmlhNr0awo7RJ19TJORqdAXVEEVZyjyKtE3Bg3oZE2iK8oeiKkFZGiCaggelSTiA2LhxiZLBSjZjBL2siNBOFQ84LxHA+mYEiRJzBO7ZCQIAIfkECQoAAAAsAAAAAB8AHwAABv9AgHBIFAwIBQPAUCAMBMSodHhAJK5XAPaKOEynCsIWqx0nCIrvcMEwZ90JxkINaMATZXfju9jf82YAIQxRCm14Ww4PChAAEAoPDlsAFRUgHkRiZAkREmoSEXiVlRgfQgeBaXRpo6MOQlZbERN0Qx4drRUcAAJmnrVDBrkVDwNjr8BDGxq5Z2MPyUQZuRgFY6rRABe5FgZjjdm8uRTh2d5b4NkQY0zX5QpjTc/lD2NOx+WSW0++2RJmUGJhmZVsQqgtCE6lqpXGjBchmt50+hQKEAEiht5gUcTIESR9GhlgE9IH0BiTkxrMmWIHDkose9SwcQlHDsOIk9ygiVbl5JgMLuV4HUmypMkTOkEAACH5BAkKAAAALAAAAAAfAB8AAAb/QIBwSBQMCAUDwFAgDATEqHR4QCSuVwD2ijhMpwrCFqsdJwiK73DBMGfdCcZCDWjAE2V347vY3/NmdXNECm14Ww4PChAAEAoPDltlDGlDYmQJERJqEhGHWARUgZVqaWZeAFZbERN0QxOeWwgAAmabrkMSZkZjDrhRkVtHYw+/RA9jSGOkxgpjSWOMxkIQY0rT0wbR2LQV3t4UBcvcF9/eFpdYxdgZ5hUYA73YGxruCbVjt78G7hXFqlhY/fLQwR0HIQdGuUrTz5eQdIc0cfIEwByGD0MKvcGSaFGjR8GyeAPhIUofQGNQSgrB4IsdOCqx7FHDBiYcOQshYjKDxliVDpRjunCjdSTJkiZP6AQBACH5BAkKAAAALAAAAAAfAB8AAAb/QIBwSBQMCAUDwFAgDATEqHR4QCSuVwD2ijhMpwrCFqsdJwiK73DBMGfdCcZCDWjAE2V347vY3/NmdXNECm14Ww4PChAAEAoPDltlDGlDYmQJERJqEhGHWARUgZVqaWZeAFZbERN0QxOeWwgAAmabrkMSZkZjDrhRkVtHYw+/RA9jSGOkxgpjSWOMxkIQY0rT0wbR2I3WBcvczltNxNzIW0693MFYT7bTumNQqlisv7BjswAHo64egFdQAbj0RtOXDQY6VAAUakihN1gSLaJ1IYOGChgXXqEUpQ9ASRlDYhT0xQ4cACJDhqDD5mRKjCAYuArjBmVKDP9+VRljMyMHDwcfuBlBooSCBQwJiqkJAgAh+QQJCgAAACwAAAAAHwAfAAAG/0CAcEgUDAgFA8BQIAwExKh0eEAkrlcA9oo4TKcKwharHScIiu9wwTBn3QnGQg1owBNld+O72N/zZnVzRApteFsODwoQABAKDw5bZQxpQ2JkCRESahIRh1gEVIGVamlmXgBWWxETdEMTnlsIAAJmm65DEmZGYw64UZFbR2MPv0QPY0hjpMYKY0ljjMZCEGNK09MG0diN1gXL3M5bTcTcyFtOvdzBWE+207pjUKpYrL+wY7MAB4EerqZjUAG4lKVCBwMbvnT6dCXUkEIFK0jUkOECFEeQJF2hFKUPAIkgQwIaI+hLiJAoR27Zo4YBCJQgVW4cpMYDBpgVZKL59cEBhw+U+QROQ4bBAoUlTZ7QCQIAIfkECQoAAAAsAAAAAB8AHwAABv9AgHBIFAwIBQPAUCAMBMSodHhAJK5XAPaKOEynCsIWqx0nCIrvcMEwZ90JxkINaMATZXfju9jf82Z1c0QKbXhbDg8KEAAQCg8OW2UMaUNiZAkREmoSEYdYBFSBlWppZl4AVlsRE3RDE55bCAACZpuuQxJmRmMOuFGRW0djD79ED2NIY6TGCmNJY4zGQhBjStPTFBXb21DY1VsGFtzbF9gAzlsFGOQVGefIW2LtGhvYwVgDD+0V17+6Y6BwaNfBwy9YY2YBcMAPnStTY1B9YMdNiyZOngCFGuIBxDZAiRY1eoTvE6UoDEIAGrNSUoNBUuzAaYlljxo2M+HIeXiJpRsRNMaq+JSFCpsRJEqYOPH2JQgAIfkECQoAAAAsAAAAAB8AHwAABv9AgHBIFAwIBQPAUCAMBMSodHhAJK5XAPaKOEynCsIWqx0nCIrvcMEwZ90JxkINaMATZXfjywjlzX9jdXNEHiAVFX8ODwoQABAKDw5bZQxpQh8YiIhaERJqEhF4WwRDDpubAJdqaWZeAByoFR0edEMTolsIAA+yFUq2QxJmAgmyGhvBRJNbA5qoGcpED2MEFrIX0kMKYwUUslDaj2PA4soGY47iEOQFY6vS3FtNYw/m1KQDYw7mzFhPZj5JGzYGipUtESYowzVmF4ADgOCBCZTgFQAxZBJ4AiXqT6ltbUZhWdToUSR/Ii1FWbDnDkUyDQhJsQPn5ZU9atjUhCPHVhgTNy/RSKsiqKFFbUaQKGHiJNyXIAAh+QQJCgAAACwAAAAAHwAfAAAG/0CAcEh8JDAWCsBQIAwExKhU+HFwKlgsIMHlIg7TqQeTLW+7XYIiPGSAymY0mrFgA0LwuLzbCC/6eVlnewkADXVECgxcAGUaGRdQEAoPDmhnDGtDBJcVHQYbYRIRhWgEQwd7AB52AGt7YAAIchETrUITpGgIAAJ7ErdDEnsCA3IOwUSWaAOcaA/JQ0amBXKa0QpyBQZyENFCEHIG39HcaN7f4WhM1uTZaE1y0N/TacZoyN/LXU+/0cNyoMxCUytYLjm8AKSS46rVKzmxADhjlCACMFGkBiU4NUQRxS4OHijwNqnSJS6ZovzRyJAQo0NhGrgs5bIPmwWLCLHsQsfhxBWTe9QkOzCwC8sv5Ho127akyRM7QQAAOwAAAAAAAAAAAA==);
  background-position: center center;
  background-repeat: no-repeat;
}
.browse-displate-list-container .browse-list-item .displate-image.loaded {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.browse-displate-list-container .browse-list-item .displate-image-cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  transition: 0.3s;
  transform: translateZ(0);
}
.browse-displate-list-container .browse-list-item .displate-item-name {
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}
.browse-displate-list-container .browse-list-item .displate-item-price {
  position: absolute;
  left: -18px;
  top: 69px;
  min-width: 62px;
  height: 62px;
  padding: 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: #1185ed;
  transition: 0.3s;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.browse-displate-list-container .browse-list-item .displate-item-price:before {
  content: '';
  position: absolute;
  display: block;
  bottom: -15px;
  left: 0;
  border: 0 solid transparent;
  border-left-width: 17px;
  border-right-width: 0px;
  border-top: 6px solid #0f76d4;
  width: 19px;
  height: 15px;
}
.browse-displate-list-container .browse-list-item .displate-item-price .displate-item-price-inner {
  color: #ffffff;
}
.browse-displate-list-container .browse-list-item .displate-item-price.displate-item-price__hover {
  opacity: 0;
}
.browse-displate-list-container .browse-list-item .displate-item-price .break-line-amount {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.browse-displate-list-container .browse-list-item .smallcurrency {
  font-size: 16px;
}
.browse-displate-list-container .browse-list-item.browse-list-item-zoom:hover .displate-image {
  box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.9);
}
.browse-displate-list-container .browse-list-item.browse-list-item-zoom:hover .displate-item-name {
  transform: scale(1.1) translateY(18px);
}
.browse-displate-list-container .browse-list-item.browse-list-item-zoom:hover img {
  transform: scale(1.1) translateY(-2px);
}
.browse-displate-list-container .browse-list-item.browse-list-item-zoom:hover .displate-item-price {
  opacity: 1;
  transform: translateX(-14px);
}
.displate-item--search {
  display: inline-block;
  position: relative;
  /* 2 kolumny*/
  width: 42%;
  height: 150px;
  margin: 0 4% 30px;
  /* 3 kolumny */
  /* 4 kolumny*/
}
.displate-item--search .tooltip {
  position: relative;
  top: 3px;
  left: 10px;
  z-index: 10;
}
@media (min-width: 576px) {
  .displate-item--search {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .displate-item--search {
    width: 28%;
    height: 280px;
    margin: 0 calc(16% / 6) 30px;
  }
}
@media (min-width: 1200px) {
  .displate-item--search {
    width: 21%;
    min-width: 235px;
    height: 300px;
    margin: 0 2% 30px;
  }
}
.displate-item--search-link {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
  max-height: 255px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.displate-item--search-image-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
.displate-item--search-image-container:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.displate-item--search-image-container:hover:after {
  animation-name: hideOverlay;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.displate-item--search-image-container--outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.displate-item--search-image-container--inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.displate-item--search-image-container--inner .item-in-cart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.displate-item--search-image-container--inner .item-in-cart span {
  margin-top: 6px;
  color: #ffffff;
}
.displate-item--search-image-container--inner .displate-item--search-image.loaded {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}
.displate-item--search-image-container--inner.horizontal {
  width: 75%;
  max-width: 100px;
}
.displate-item--search-image-container--inner.horizontal .displate-item--search-image,
.displate-item--search-image-container--inner.horizontal .item-in-cart {
  width: 100%;
  max-width: 224px;
}
@media (min-width: 576px) {
  .displate-item--search-image-container--inner.horizontal {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-item--search-image-container--inner.horizontal {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .displate-item--search-image-container--inner.horizontal {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .displate-item--search-image-container--inner.horizontal {
    width: 100%;
    max-width: 245px;
  }
}
.displate-item--search-image-container--inner.vertical .displate-item--search-image,
.displate-item--search-image-container--inner.vertical .item-in-cart {
  width: auto;
  max-height: 120px;
  /* fixed value because its bugged on firefox */
}
@media (min-width: 576px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image,
  .displate-item--search-image-container--inner.vertical .item-in-cart {
    max-height: 140px;
  }
}
@media (min-width: 768px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image,
  .displate-item--search-image-container--inner.vertical .item-in-cart {
    max-height: 176px;
  }
}
@media (min-width: 1200px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image,
  .displate-item--search-image-container--inner.vertical .item-in-cart {
    max-height: 245px;
  }
}
@media (min-width: 576px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image--fallback {
    max-width: 160px;
  }
}
@media (min-width: 768px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image--fallback {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .displate-item--search-image-container--inner.vertical .displate-item--search-image--fallback {
    max-width: 200px;
  }
}
.displate-item--search-image-container--inner:hover .plate-hover {
  display: flex;
}
.displate-item--search-border {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-origin: border-box;
  border: 1px solid #e1e1e1;
  pointer-events: none;
}
.displate-item--search-border legend {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  padding: 0 10px;
  color: #000;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.displate-item--search-border--exclusive {
  background-image: url('/img/search/exclusive_icon.png');
  background-position: 10px 10px;
  background-size: 21px 26px;
}
.displate-item--search-description {
  display: flex;
  padding: 10px 3px;
  width: 100%;
  color: #000;
  justify-content: space-between;
  align-items: center;
}
.displate-item--search-description p {
  align-self: center;
  width: 80%;
}
.displate-item--search-description p > a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  color: #000;
  transform: translateY(-8px);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.displate-item--search-description p strong {
  display: block;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.displate-item--search-description p strong a {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.displate-item--search-price {
  align-self: flex-start;
  text-align: right;
  white-space: nowrap;
}
.displate-item--item__status {
  width: 100%;
  padding: 5px 15px;
  display: inline-block;
  color: #ffffff;
}
.displate-item--item__status--pending {
  background: #00efd2;
}
.displate-item--item__status--disapproved {
  background: #6e6e6e;
}
.displate-item--item__status--published {
  background: #1185ed;
}
.displate-item--item__status--deactivated {
  background: #ff1744;
}
@media (min-width: 1200px) {
  .search-result-wrapper .displate-item--search {
    margin: 0 1% 30px;
  }
}
.wishlist-wrapper .star-wishlist-item {
  background-position: 100%;
}
.wishlist-wrapper .displate-item--search {
  width: unset;
}
.displate-slider {
  position: relative;
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
}
@media (min-width: 768px) {
  .displate-slider {
    padding: 8px 0 16px;
    margin: -15px -7px;
    left: 0;
    width: calc(100% + 15px);
  }
  .displate-slider.slider-trustpilot {
    padding: 0;
    margin: 0 -7px;
  }
}
.displate-slider__slider {
  min-width: 0;
  font-size: 0;
  line-height: 0;
  overflow-x: hidden;
  overflow-y: visible !important;
  padding: 0 15px 10px;
}
@media (min-width: 768px) {
  .displate-slider__slider {
    pointer-events: none;
    margin: 0px -40px -280px;
    padding: 0px 40px 280px;
  }
  .displate-slider__slider > * {
    pointer-events: all;
  }
}
.displate-slider__slider.last-slide .slick-list {
  padding-left: 25px;
}
.displate-slider__image {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  max-width: 100%;
}
.displate-slider__item {
  min-width: 90px;
}
.displate-slider__item a {
  position: relative;
  display: flex;
  height: 150px;
  align-items: center;
}
.displate-slider__item--purchased {
  cursor: default;
  pointer-events: none;
}
.displate-slider__item--purchased .basket-info {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 91.5%;
  background-color: rgba(0, 0, 0, 0.7);
}
.displate-slider__item--purchased .basket-info-image {
  max-width: 40px;
  height: auto;
  width: auto;
  outline: none;
  margin-left: 10px;
}
.displate-slider__item--purchased .basket-info .text {
  color: #ffffff;
}
@media (min-width: 992px) {
  .displate-slider__item--purchased .basket-info {
    height: 96%;
  }
}
.displate-slider__explore-more {
  position: absolute;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}
.displate-slider__explore-more p {
  color: #1185ed;
}
.displate-slider__explore-more p:hover,
.displate-slider__explore-more p:active,
.displate-slider__explore-more p:visited {
  color: #1185ed;
}
.displate-slider__explore-more img {
  margin-bottom: 8px;
}
.displate-slider--placeholder .displate-tile__image {
  padding-bottom: 90%;
  height: 0;
  width: 66%;
  margin-left: 17%;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.displate-slider .slide img {
  max-width: 100%;
}
.displate-slider .slick-list {
  position: relative;
  overflow: visible;
  margin-left: -7.5px;
}
@media (min-width: 768px) {
  .displate-slider .slick-list {
    margin-left: -5px;
  }
}
.displate-slider .slick-track {
  margin-left: 0;
  display: flex;
  justify-content: flex-start;
}
.displate-slider .slick-slide {
  transition: all 0.3s ease;
  position: relative;
  margin: auto 1.5vw;
}
@media (min-width: 768px) {
  .displate-slider .slick-slide {
    opacity: 0;
    visibility: hidden;
  }
  .displate-slider .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
  }
}
.displate-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px 0 15px;
}
@media (min-width: 768px) {
  .displate-slider .slick-dots {
    padding: 35px 0;
  }
}
.displate-slider .slick-dots li button {
  background: #00efd2;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 2px;
  margin: 0 3px;
  font-size: 0;
}
.displate-slider .slick-dots li.slick-active button {
  box-shadow: 0 0 0 2px #1185ed;
}
.displate-slider .swiper .displate-tile {
  opacity: 1;
  transition: 0.3s opacity;
}
.displate-slider .swiper .swiper-slide-prev .displate-tile {
  opacity: 0;
}
.displate-slider .swiper .displate-slider__item .displate-slider__image {
  margin-bottom: 5px;
}
.displate-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-self: center;
}
.displate-slider + .swiper-nav .swiper-nav__button {
  display: block;
  position: absolute;
  top: 60%;
  width: 27px;
  background-size: 17px;
  height: 100%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.displate-slider + .swiper-nav .swiper-nav__button.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
.displate-slider + .swiper-nav .swiper-nav__button--prev {
  left: -48px;
  background-image: url(/img/icons/blue_arrow_left.svg);
}
.displate-slider + .swiper-nav .swiper-nav__button--next {
  right: -48px;
  background-image: url(/img/icons/blue_arrow_right.svg);
}
.partners-slider {
  width: calc(100% + 100px);
  padding: 0 50px;
  margin: -25px -50px -25px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .partners-slider {
    padding: 0 50px 50px;
  }
}
.partners-slider__heading {
  display: flex;
  align-items: flex-end;
}
.partners-slider__heading > .link {
  margin-left: auto;
  line-height: 28px;
}
@media (min-width: 768px) {
  .partners-slider__heading > .link {
    margin-left: 20px;
  }
}
.partners-slider__inner {
  width: calc(100% + 45px);
  margin: 0 30px 30px -20px;
  padding: 8px 0 15px 15px;
}
@media (min-width: 768px) {
  .partners-slider__inner {
    margin: 20px 30px 30px -7px;
    padding: 15px 0 15px 15px;
  }
}
.partners-slider__inner .slide--partners {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  flex-direction: column;
  justify-content: unset;
}
.partners-slider__inner .slide--partners > img {
  opacity: 1;
  transition: 0.3s opacity;
}
.partners-slider__inner .slide--partners--placeholder {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.partners-slider__inner .slide--partners--placeholder > img {
  height: 123px;
  opacity: 0;
}
.partners-slider__inner .slide--partners:hover img,
.partners-slider__inner .slide--partners:hover > .link {
  border-color: white;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.partners-slider__inner .slide--partners > span,
.partners-slider__inner .slide--partners > .link {
  display: flex !important;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s !important;
}
.partners-slider__inner .slide--partners img,
.partners-slider__inner .slide--partners .link {
  width: 100%;
  object-fit: cover;
  border: 1px solid #ccd3d7;
  border-radius: 4px;
  transition: all 0.3s;
}
.partners-slider__inner .slide--partners .link {
  position: absolute;
  top: 0;
  height: calc(100% - 30px);
}
.partners-slider__inner .slide--partners--last-item {
  padding-top: 65%;
}
.partners-slider__inner .slide--partners--last-item > .slide--partners__title {
  height: 24px;
}
.partners-slider__inner .slide--partners > .slide--partners__title {
  display: flex;
  align-self: flex-start;
  text-align: left;
  line-height: 24px;
  margin-top: 8px;
}
.partners-slider__inner .slide--partners.lazy-load-image-loaded:before {
  height: 110px;
}
.partners-slider__inner .slick-dots {
  width: 100vw;
  padding: 0;
  margin-left: calc(-45px / 2);
}
.partners-slider__inner .slick-slide {
  margin: 0 10px auto;
}
.partners-slider__inner .slick-slide:not(.slick-active) {
  transition-delay: 0.5s;
}
.partners-slider__inner .slick-arrow {
  top: 80px;
}
.partners-slider__inner .slick-arrow.slick-prev {
  left: -40px;
}
.partners-slider__inner .slick-arrow.slick-next {
  right: -55px;
}
.partners-slider__inner > .slick-list {
  width: calc(100% + 25px);
}
.partners-slider__inner .slick-arrow .slick-list {
  margin-left: -7.5px;
  margin-right: -20px;
}
.partners-slider__inner.regular.slider {
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  width: calc(100% + 40px);
  margin-left: -25px;
}
.partners-slider__inner.regular.slider::-webkit-scrollbar {
  display: none;
}
.partners-slider__inner.regular.slider > div {
  margin: 0 10px auto;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 32%;
}
.partners-slider__inner.regular.slider > div .slide--partners:hover img,
.partners-slider__inner.regular.slider > div .slide--partners:hover .link {
  box-shadow: none;
}
.partners-slider__inner.regular.slider > div .slide--partners--last-item {
  padding-top: 0;
}
.partners-slider__inner.regular.slider > div .slide--partners--last-item > .slide--partners__title {
  height: 24px;
}
.partners-slider__inner.regular.slider > div .slide--partners--last-item .link {
  position: relative;
  padding-top: calc(773 / 1171 * 100%);
}
.partners-slider__inner.regular.slider > div .slide--partners--last-item .link > p {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.owners-slider__inner {
  width: calc(100% + 80px);
  padding: 35px;
  margin: -5px -40px 0;
  background: #e1e1e1;
  box-shadow: inset 0 5px 30px 30px #ffffff;
}
.owners-slider__inner .displate-slider__inner .slick-list {
  margin-left: 0;
}
.owners-slider__inner .slick-dots {
  padding: 0;
}
.owners-slider__inner .slick-arrow.slick-prev {
  left: -42px;
}
.owners-slider__inner .slick-arrow.slick-next {
  right: -43px;
}
.owners-slider__inner .slide__inner {
  display: flex;
  flex-direction: column;
}
.owners-slider__inner .slick-slide {
  margin: 0 10px;
}
.partners-slider-secondary {
  width: 100%;
  padding: 16px 0;
}
.partners-slider-secondary--inside-container {
  margin-right: -15px;
  margin-left: -15px;
  width: unset;
}
.partners-slider-secondary__title {
  margin-top: 8px;
  margin-left: 16px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.partners-slider-secondary__content {
  margin-top: 24px;
  display: flex;
  width: 100%;
  padding: 0 16px;
}
.partners-slider-secondary__content .swiper-slide {
  width: 136px;
}
.partners-slider-secondary__content .partners-item {
  margin: 16px 16px 16px 0;
  padding: 12px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 2px 5px 12px rgba(37, 44, 48, 0.1);
  border-radius: 4px;
}
.partners-slider-secondary__content .partners-item:last-child {
  margin: 16px 0;
}
.partners-slider-secondary__content .partners-item__image {
  display: flex;
  justify-content: center;
}
.partners-slider-secondary__content .partners-item .lazy-load-image-background {
  width: 64px;
}
.partners-slider-secondary__content .partners-item img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #d8dde1;
}
.partners-slider-secondary__content .partners-item p:first-of-type {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.partners-slider-secondary__content .partners-item p {
  margin-top: 4px;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .search-results-page__feed .displate-slider__slider {
    margin: 0px 7px -280px;
  }
}
.displate-bar {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.displate-bar--search-results {
  margin: 0 -15px 15px 0;
  width: calc(100% + 60px);
  padding: 0 15px 0 0;
}
@media (min-width: 768px) {
  .displate-bar--search-results {
    margin: 0 0 25px -7px;
    padding: 20px 0 0 10px;
  }
}
.displate-bar__heading {
  padding: 15px;
}
@media (min-width: 768px) {
  .displate-bar__heading {
    padding: 0 0 0 20px;
  }
}
.browse-list-wrapper.browse-list,
.collection-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 30px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .browse-list-wrapper.browse-list,
  .collection-list {
    margin: 0 0 60px 0;
  }
}
.collection-slider {
  width: 100vw;
  margin: 10px -15px;
  position: relative;
}
.collection-slider__wrapper {
  overflow-y: hidden;
}
.collection-slider__list {
  overflow-y: hidden;
  overflow-x: scroll;
  margin-bottom: -10px;
}
.collection-slider__track {
  overflow-y: hidden;
  width: auto;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 7.5px 10px;
}
.collection-slider__item {
  flex-shrink: 0;
  margin: 1vw 1.5vw;
  position: relative;
  width: 25vw;
  height: auto;
}
.collection-slider__item--vertical {
  width: 25vw;
}
@media (min-width: 768px) {
  .collection-slider__item--vertical {
    width: 16.85vw;
  }
}
.collection-slider__item--horizontal {
  width: 35vw;
}
@media (min-width: 768px) {
  .collection-slider__item--horizontal {
    width: 23.59;
  }
}
.collection-slider__image {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}
.collection-slider__description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.collection-slider__description p {
  min-width: 88px;
  text-align: right;
}
.collection-slider__explore-more {
  position: absolute;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}
.collection-slider__explore-more p {
  color: #1185ed;
}
.collection-slider__explore-more p:hover,
.collection-slider__explore-more p:active,
.collection-slider__explore-more p:visited {
  color: #1185ed;
}
.collection-slider__explore-more img {
  margin-bottom: 8px;
}
.collection-slider--placeholder {
  pointer-events: none;
}
.collection-slider--placeholder .collection-slider__item {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  padding-bottom: 31.2%;
}
.collection-slider--placeholder .collection-slider__description {
  margin-top: 10px;
}
.collection-slider--placeholder .collection-slider__description p {
  height: 20px;
  width: 80px;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.collection-slider--placeholder .collection-slider__description .heading-5 {
  height: 20px;
  width: 100px;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.brandshop-tile {
  display: flex;
  flex-direction: column;
  padding: 5px;
  width: 100%;
  border: 1px solid #d2d2d2;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.brandshop-tile:hover {
  text-decoration: none;
  transform: translateY(-10px);
}
.brandshop-tile img {
  width: 100%;
  flex: 1 auto;
  object-fit: cover;
  height: 100px;
}
@media (min-width: 576px) {
  .brandshop-tile img {
    height: 200px;
  }
}
.brandshop-tile__descritpion {
  display: flex;
  flex-direction: column;
  padding: 6px 4px 2px;
}
@media (min-width: 768px) {
  .brandshop-tile__descritpion {
    padding: 10px 4px 6px;
  }
}
.brandshop-tile__title {
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .brandshop-tile__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.brandshop-tile__collection {
  font-size: 12px;
  line-height: 20px;
  margin-top: -4px;
}
@media (min-width: 768px) {
  .brandshop-tile__collection {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
  }
}
.brandshop-tile--placeholder .brandshop-tile__title {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  display: inline-block;
  height: 18px;
  width: 100px;
}
@media (min-width: 768px) {
  .brandshop-tile--placeholder .brandshop-tile__title {
    width: 140px;
    height: 22px;
  }
}
.brandshop-tile--placeholder .brandshop-tile__collection {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  display: inline-block;
  height: 16px;
  width: 70px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .brandshop-tile--placeholder .brandshop-tile__collection {
    width: 120px;
    height: 22px;
  }
}
.brandshop-tile--placeholder img {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.brandshop-tile--placeholder:hover {
  cursor: default;
  transform: none;
}
.brandshop-slider {
  width: 100vw;
  margin: 10px -15px;
  position: relative;
}
.brandshop-slider__wrapper {
  overflow-y: hidden;
}
.brandshop-slider__list {
  overflow-x: scroll;
  margin-bottom: -10px;
}
.brandshop-slider__track {
  width: auto;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 calc(15px - 1.5vw) 10px;
}
.brandshop-slider__item {
  flex-shrink: 0;
  margin: 1vw 1.5vw;
  position: relative;
  width: 25vw;
  height: auto;
}
.brandshop-slider__item--vertical {
  width: 25vw;
}
@media (min-width: 768px) {
  .brandshop-slider__item--vertical {
    width: 16.85vw;
  }
}
.brandshop-slider__item--horizontal {
  width: 35vw;
}
@media (min-width: 768px) {
  .brandshop-slider__item--horizontal {
    width: 23.59;
  }
}
.brandshop-slider__image {
  border-radius: 2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.brandshop-slider__description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.brandshop-slider__explore-more {
  position: absolute;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}
.brandshop-slider__explore-more p {
  color: #1185ed;
}
.brandshop-slider__explore-more p:hover,
.brandshop-slider__explore-more p:active,
.brandshop-slider__explore-more p:visited {
  color: #1185ed;
}
.brandshop-slider__explore-more img {
  margin-bottom: 8px;
}
.seo-links-slider__slider {
  position: relative;
}
.seo-links .slick-track {
  display: flex;
}
.seo-links .link {
  font-size: 14px;
  font-weight: 300;
  border-radius: 4px;
}
.seo-links .link:not(:last-child) {
  margin-right: 10px;
}
.seo-links--top {
  margin: 10px 0 20px;
}
.seo-links--top .slick-slide {
  opacity: 1 !important;
  visibility: visible !important;
}
.seo-links--top .link {
  padding: 8px 12px;
  margin: 0 5px;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.seo-links--top .link--active {
  background-color: #d2d2d2;
  box-shadow: none;
  pointer-events: none;
}
.seo-links--top .link--active a:hover {
  text-decoration: none;
}
.seo-links--bottom .seo-links__wrapper {
  display: flex;
  flex-wrap: wrap;
  max-height: 125px;
  overflow: hidden;
  transition: max-height 0.3s;
}
.seo-links--bottom .seo-links__wrapper--opened {
  max-height: 2000px !important;
  transition: max-height 1s;
}
.seo-links--bottom .link {
  margin-bottom: 10px;
  padding: 4px 15px;
  background-color: #f5f5f5;
}
.seo-links--bottom button {
  cursor: pointer;
}
.seo-links__box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.seo-links .slick-slider .slick-arrow.slick-prev {
  left: -10px;
  z-index: 999;
}
.seo-links .slick-slider .slick-arrow.slick-next {
  right: -10px;
}
@media (min-width: 820px) {
  .seo-links .slick-slider {
    padding-right: 35px;
  }
  .seo-links .slick-list {
    display: block;
    padding: 35px;
    overflow: hidden !important;
  }
  .seo-links .slick-arrow {
    top: 31px;
    z-index: 999;
    transform: scale(0.5);
  }
  .seo-links .slick-arrow.slick-prev {
    left: -5px;
  }
  .seo-links .slick-arrow.slick-next {
    right: -5px;
  }
  .seo-links--top {
    margin: -35px 0 0 0;
  }
  .seo-links--top::after,
  .seo-links--top::before {
    content: '';
    position: absolute;
    top: -12px;
    z-index: 100;
    width: 80px;
    height: 112px;
  }
  .seo-links--top::after {
    right: 32px;
    background: linear-gradient(-90deg, #ffffff, rgba(255, 255, 255, 0.001));
  }
  .seo-links--top::before {
    top: 8px;
    left: -24px;
    height: 80px;
    background: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 254, 0.001) 90%);
  }
  .seo-links--top .link {
    padding: 9px 15px;
  }
}
/* old: to remove after browse refactor to reactjs */
.browse-category-list-container {
  max-width: 1270px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 15px;
}
.browse-category-list-container .pagination {
  margin: 0 0 1rem !important;
}
/* end */
#browse-collections {
  min-height: 400px;
}
.browse-collections {
  margin-bottom: 50px;
  position: relative;
  min-height: 400px;
}
.browse-collections__content {
  min-height: 400px;
  height: 100%;
  position: relative;
}
.browse-collections__content .loader {
  height: 100%;
  background-position: center 184px;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}
.browse-collections__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 10px;
}
@media (min-width: 768px) {
  .browse-collections__header {
    padding: 30px 0;
  }
}
.browse-collections__heading {
  display: none;
}
@media (min-width: 768px) {
  .browse-collections__heading {
    display: block;
  }
}
.browse-collections__filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .browse-collections__filters {
    width: auto;
    flex-wrap: nowrap;
  }
}
.browse-collections__filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .browse-collections__filter {
    justify-content: flex-start;
    flex-basis: auto;
    margin-bottom: 0;
    margin-left: 30px;
  }
}
.browse-collections__filter span {
  margin-right: 15px;
}
.browse-collections__filter .input-select,
.browse-collections__filter .select {
  min-width: 200px;
  vertical-align: middle;
}
.browse-collections__filter .input-select .select__option,
.browse-collections__filter .select .select__option,
.browse-collections__filter .input-select .select__value-container,
.browse-collections__filter .select .select__value-container {
  text-transform: capitalize;
}
.browse-collections__filter .input-select__item {
  text-transform: capitalize;
}
.browse-collections__filter--category {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .browse-collections__filter--category {
    margin-bottom: 0;
  }
}
.browse-collections__filter--category .input-select__dropdown {
  display: none;
}
.browse-collections .popup__wrapper {
  max-width: none;
}
.mobile-body .browse-collections .popup__wrapper {
  padding-top: 70px;
}
.collection-page {
  min-height: 300px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .collection-page {
    margin-top: 0;
    min-height: 700px;
  }
}
.collection-page__header {
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.collection-page__header--visible {
  opacity: 1;
}
@media (min-width: 3500px) {
  .collection-page__header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, black 0%, transparent 17%, transparent 78%, black 100%);
  }
}
.collection-page__header-slide {
  background-size: 100% auto;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.collection-page__header-container {
  max-width: 375px;
  height: 114.67vw;
  max-height: 430px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  .collection-page__header-container {
    height: 56vw;
    max-height: 700px;
    max-width: 1240px;
  }
}
.collection-page__header-displates {
  width: 100%;
  max-width: 95%;
  margin-left: 3.5%;
  height: 100%;
  position: relative;
}
@media (min-width: 375px) {
  .collection-page__header-displates {
    max-width: unset;
    margin-left: 1%;
  }
}
.collection-page__header-wrapper {
  max-height: 430px;
  height: 114.67vw;
  width: 100%;
}
@media (min-width: 768px) {
  .collection-page__header-wrapper {
    height: 56vw;
    max-height: 700px;
    margin-bottom: 115px;
  }
}
@media (min-width: 992px) {
  .collection-page__header-wrapper {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .collection-page__header-wrapper {
    margin-top: -15px;
  }
}
.collection-page__header-overlay {
  background-size: 100% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 768px) {
  .collection-page__header-overlay {
    background-size: auto 100%;
  }
}
.collection-page__header-overlay--music {
  opacity: 0.15;
}
.collection-page__header-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 1px 10px;
  border-radius: 50px;
  z-index: 1;
  font-size: 12px;
  line-height: 22px;
}
.collection-page__header.fade-in-enter {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.collection-page__header.fade-in-enter-active,
.collection-page__header.fade-in-enter-done {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.collection-page__header .slick-track {
  line-height: 0;
  font-size: 0;
}
.collection-page__visualisation-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 1240px;
  transform: translateX(-50%) translateY(80%);
  z-index: 11;
}
.collection-page__visualisation-item-inner {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  pointer-events: none;
}
.collection-page__visualisation-item {
  width: 23.5%;
  margin: 0 1%;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  z-index: 9;
  cursor: pointer;
  transition: transform 0.3s ease-out, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.collection-page__visualisation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}
.collection-page__visualisation-item--active {
  background: #1185ed;
  color: #ffffff;
}
.collection-page__visualisation-item--active:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #1185ed;
}
.collection-page__details {
  flex-grow: 1;
}
.collection-page__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}
@media (min-width: 576px) {
  .collection-page__info {
    margin-top: 10px;
  }
}
.collection-page__info-heading {
  width: 100%;
}
@media (min-width: 992px) {
  .collection-page__info-heading {
    margin: 0 0 -5px -2px;
    width: auto;
  }
}
.collection-page__info-item {
  margin-right: 5px;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 576px) {
  .collection-page__info-item {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .collection-page__info-item {
    margin: 0 5px -2px;
  }
}
.collection-page__info-item:first-of-type {
  display: none;
}
@media (min-width: 992px) {
  .collection-page__info-item:first-of-type {
    display: block;
    margin-left: 10px;
  }
}
.collection-page__info-item--share {
  position: absolute;
  right: 0;
  top: 30px;
}
@media (min-width: 992px) {
  .collection-page__info-item--share {
    top: 0;
    position: relative;
  }
}
.collection-page__info-item--share .popup-trigger {
  line-height: 24px;
}
.collection-page__info-item--share .popup-trigger object {
  margin-top: 1px;
}
.collection-page__info-item .popup--share-collection {
  display: none;
}
@media (min-width: 768px) {
  .collection-page__info-item .popup--share-collection {
    top: -40px;
    right: unset;
    bottom: unset;
    left: 170px;
    height: unset;
    min-height: unset;
    width: unset;
  }
  .collection-page__info-item .popup--share-collection.popup--active {
    display: flex;
  }
}
@media (min-width: 575px) {
  .collection-page {
    display: block;
  }
}
.collection-page__description {
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 576px) {
  .collection-page__description {
    top: -60px;
  }
}
@media (min-width: 768px) {
  .collection-page__description {
    top: -30px;
  }
}
@media (min-width: 992px) {
  .collection-page__description {
    top: 13px;
  }
}
.collection-page__description .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 11px 15px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .collection-page__description .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.collection-page__description-heading {
  margin-right: auto;
  flex-basis: 100%;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .collection-page__description-heading {
    flex-basis: auto;
    margin: 0;
    margin-right: auto;
  }
}
.collection-page__description-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  flex-basis: auto;
  flex-shrink: 0;
  justify-content: space-between;
  margin-top: 0;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .collection-page__description-item {
    margin-left: 25px;
  }
}
@media (min-width: 992px) {
  .collection-page__description-item {
    margin-left: 65px;
  }
}
.collection-page__description-item p {
  margin-left: 15px;
}
@media (min-width: 992px) {
  .collection-page__displates {
    padding: 30px 15px;
  }
  .collection-page__displates .searchbar {
    margin-top: auto;
  }
}
.collection-page__no-results {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  margin: 5px 0 15px;
  background-image: url('/img/onboarding/pattern.svg');
  background-repeat: no-repeat;
  background-position: 450% 110%;
  padding: 15px;
}
@media (min-width: 350px) {
  .collection-page__no-results {
    background-position: 230% 110%;
  }
}
@media (min-width: 992px) {
  .collection-page__no-results {
    margin: 35px 0;
    background-position: 90% 130%;
    padding: 30px;
  }
}
.collection-page__no-results-image {
  margin: 0 15px 0 0;
}
@media (min-width: 768px) {
  .collection-page__no-results-image {
    margin: 0 30px 0 0;
  }
}
.collection-page__no-results-image object {
  width: 72px;
  height: 72px;
}
.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
.loader ~ * {
  display: none !important;
}
.endless-scroll-loader {
  background-color: #555;
  padding: 16px 0;
  text-align: center;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 15;
}
#filter-panel {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 2%;
  align-self: flex-start;
}
#filter-panel h4,
#filter-panel h2 {
  border-bottom: 1px #d2d2d2 solid;
}
#filter-panel h4.no-border,
#filter-panel h2.no-border {
  border: none;
}
#filter-panel .active-element {
  cursor: pointer;
}
#filter-panel .filter-section {
  border-bottom: 1px #d2d2d2 solid;
  width: 100%;
}
#filter-panel .filter-section #search-results::first-letter {
  text-transform: capitalize;
}
#filter-panel .filter-section.search-by-hidden {
  display: none;
}
#filter-panel .filter-section .filter-panel-tags {
  height: 110px;
  max-height: 220px;
  overflow: hidden;
  font-size: 0px;
}
#filter-panel .filter-section .filter-panel-tags.uber-tags {
  height: auto;
}
#filter-panel .filter-section .filter-panel__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#filter-panel .filter-section .filter-panel__radio {
  width: 100%;
}
#filter-panel .filter-section .category-list {
  display: none;
  margin-bottom: 18px;
  padding-top: 3px;
  text-transform: capitalize;
}
#filter-panel .filter-section .category-list:nth-child(-n + 8) {
  display: flex;
}
#filter-panel .filter-section--no-border {
  border: none;
}
#filter-panel.is-affixed .inner-wrapper-sticky {
  transition: bottom 700ms;
  bottom: 82px;
}
#filter-panel.active {
  display: block;
}
@media (min-width: 576px) {
  #filter-panel {
    width: 25%;
  }
}
@media (min-width: 768px) {
  #filter-panel {
    width: 16.5%;
  }
}
#filter-panel-colors a {
  display: inline-block;
  height: 35px;
  margin: 0 3px 2px 0;
  width: 35px;
}
#filter-panel-colors a img {
  display: none;
}
#filter-panel-colors a.active img {
  display: block;
  width: 90%;
  margin: auto;
  padding: 2px 0px;
  transform: rotate(-10deg);
}
.brands {
  position: relative;
}
.brands__header {
  background-color: #190c3c;
  background-image: url('/img/brandshop/brandshops_header_mobile.jpeg');
  background-position: right;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .brands__header {
    background-image: url('/img/brandshop/brandshops_header_desktop.jpeg');
    background-position: center;
  }
}
.brands__header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 222px;
  flex-flow: column;
}
@media (min-width: 768px) {
  .brands__header-content {
    min-height: 200px;
  }
}
@media (min-width: 1200px) {
  .brands__header-content {
    flex-flow: row;
  }
}
.brands__header h1 {
  font-size: 28px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .brands__header h1 {
    font-size: 48px;
  }
}
.brands__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .brands__filters {
    flex-wrap: nowrap;
    margin: 32px 0;
  }
}
.brands__filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .brands__filter {
    flex-basis: auto;
    justify-content: flex-end;
    margin: 0 0 0 20px;
  }
}
@media (min-width: 992px) {
  .brands__filter {
    margin: 0 0 0 30px;
  }
}
.brands__filter label {
  margin-right: 15px;
  padding: 0;
  color: #ffffff;
}
.brands__filter .select {
  min-width: 200px;
}
@media (min-width: 768px) {
  .brands__filter .select {
    min-width: 165px;
  }
}
@media (min-width: 992px) {
  .brands__filter .select {
    min-width: 200px;
  }
}
.brands__filter--show label {
  white-space: nowrap;
}
.brands__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: -2%;
  margin-bottom: 30px;
  position: relative;
}
.brands__tiles::after,
.brands__tiles::before {
  position: absolute;
  content: '';
  background-size: cover;
  z-index: -3;
  top: -5%;
  height: 114px;
  width: 160px;
}
@media (min-width: 992px) {
  .brands__tiles::after,
  .brands__tiles::before {
    height: 230px;
    width: 320px;
  }
}
@media (min-width: 768px) {
  .brands__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .brands__tiles {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
.category-switcher:not(.category-switcher--browse-collections) {
  text-align: left;
}
.category-switcher:not(.category-switcher--browse-collections) .popup__wrapper {
  max-width: 900px;
  width: 100%;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__section {
  padding: 20px 30px 0 0;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__section-heading {
  padding: 10px 0;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__section-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__section-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__list,
.category-switcher:not(.category-switcher--browse-collections) .panel__list {
  list-style: none;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__item {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  display: block;
  padding: 7px 10px 7px 0;
  color: #000;
  width: 150px;
}
.category-switcher:not(.category-switcher--browse-collections) .category-switcher__see-all {
  display: block;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .category-switcher:not(.category-switcher--browse-collections) .category-switcher__content {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .category-switcher--browse-collections.category-switcher--desktop {
    min-width: 700px;
  }
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__container--grid {
  display: block;
  column-count: 4;
  column-gap: 30px;
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__column {
  width: 25%;
  flex-basis: 25%;
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__item,
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__heading {
  display: block;
  line-height: 34px;
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__item:active,
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__heading:active,
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__item:focus,
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__heading:focus {
  outline: 0;
}
.category-switcher--browse-collections.category-switcher--desktop .category-switcher__item:hover {
  text-decoration: underline;
}
.category-switcher--browse-collections.category-switcher--mobile {
  margin-top: 20px;
  max-height: 100vh;
}
.category-switcher--browse-collections.category-switcher--mobile .category-switcher__column {
  padding: 0 20px 60px;
  max-height: calc(100vh - 120px);
  overflow-y: scroll;
}
.category-switcher--browse-collections.category-switcher--mobile .category-switcher__item {
  line-height: 50px;
  border-bottom: 1px solid #d2d2d2;
}
.category-switcher--browse-collections.category-switcher--mobile .category-switcher__item:hover {
  text-decoration: underline;
}
/* ================== START COLLECTION HEADER statusbar ===================== */
.statusbar_new {
  background: #ffffff;
  margin-bottom: 14px;
  margin-top: 14px;
  outline: 1px solid #d2d2d2;
}
@media (min-width: 768px) {
  .statusbar_new {
    margin-top: 34px;
    margin-bottom: 34px;
  }
}
.statusbar_header {
  padding-top: 12px;
  padding-bottom: 12px;
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  max-width: 1140px;
  max-width: 80%;
}
@media (max-width: 710px) {
  .statusbar_header {
    max-width: 70%;
  }
}
.statusbar_header > h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sar-left {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 38px;
  /*vertical-align: middle;*/
  height: inherit;
}
.sar-right {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  width: 38px;
  /*vertical-align: middle;*/
  height: inherit;
}
.flex-content {
  text-align: center;
}
@media (max-width: 599px) {
  .statusbar_header {
    max-width: 100%;
  }
  .sar-right,
  .sar-left {
    display: none !important;
  }
}
/* ====== START FOOTER with the same styles ====== */
.statusbar_footer {
  float: left;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  max-width: 1140px;
}
.statusbar_new a.blue-button {
  height: 40px;
  width: 130px;
  text-align: center;
  line-height: 48px;
  margin-top: 14px;
  float: right;
  margin-right: 12px;
}
/* ======== END FOOTER with the same styles ====== */
/* ================= END COLLECTION HEADER statusbar ======================== */
.nft-product-page__hero {
  padding: 15px 0 0;
}
@media (min-width: 992px) {
  .nft-product-page__hero {
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 66% 31.5%;
    grid-template-rows: 1fr;
    grid-column-gap: 2.5%;
  }
}
.nft-product-page__slider {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .nft-product-page__slider {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .nft-product-page__slider {
    margin-bottom: 0;
  }
}
.nft-product-page__header {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .nft-product-page__header {
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .nft-product-page__header {
    align-items: center;
    margin-top: 0;
  }
}
.nft-product-page__subheader {
  margin: 60px 0;
}
@media (min-width: 1200px) {
  .nft-product-page__subheader {
    padding-left: 210px;
  }
}
.nft-product-page__subheader .nft-subheader__title {
  font-size: 14px;
  text-transform: uppercase;
  color: #616970;
}
.nft-product-page__subheader .nft-subheader__content {
  font-size: 36px;
  font-weight: 600;
  width: 100%;
  max-width: 610px;
}
.nft-product-page__subheader .nft-subheader__decorative {
  margin: 40px 0 0;
  font-size: 48px;
  color: #1185ed;
  transform: scale(0.9, 1);
  width: 50px;
}
.nft-product-page__details {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .nft-product-page__details {
    display: grid;
    grid-template-columns: 66% 31.5%;
    grid-template-rows: 1fr;
    grid-column-gap: 2.5%;
    margin-bottom: 150px;
  }
}
@media (min-width: 1200px) {
  .nft-product-page__details {
    padding-left: 210px;
  }
}
.nft-product-page__separator {
  background-color: #e8ebed;
  margin-bottom: 50px;
  opacity: 0.5;
}
.nft-header {
  color: #10111a;
}
.nft-header__title {
  margin-bottom: 24px;
  font-size: 28px;
}
.nft-header__sub-title {
  margin-bottom: 35px;
  font-size: 14px;
}
.nft-header__sub-title > span {
  padding: 4px 8px;
  background-color: #f5f5f5;
  margin-right: 8px;
  border-radius: 4px;
}
.nft-header__sub-title > span:last-of-type {
  margin-right: 0;
}
.nft-header__description {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  max-width: 550px;
}
.nft-header__author {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
.nft-header__avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: #424a51;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nft-header__nick > p {
  font-size: 14px;
  font-weight: 600;
}
.nft-header__nick > p:first-child {
  margin-bottom: 5px;
  color: #424a51;
}
.nft-header__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #ffffff;
  padding: 0 40px;
  border-top: 1px solid #e8ebed;
  z-index: 2;
  box-shadow: 0px 8px 30px rgba(16, 17, 26, 0.14);
}
.nft-header__buttons > a {
  display: block;
}
.nft-header .error-text {
  color: #ff1744;
  text-align: center;
}
.nft-header__button {
  min-width: 294px;
  height: 48px;
}
.nft-header__add-to-cart-btn {
  width: 100%;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nft-header__add-to-cart-btn .svg-icon,
.nft-header__add-to-cart-btn img {
  margin-right: 8px;
}
.nft-header__add-to-cart-btn img {
  content: url('/img/loaders/loader-white.svg');
  height: 24px;
  width: 24px;
}
.nft-header__learn-more-btn {
  background-color: #f5f5f5;
  color: #10111a;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .nft-header__title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .nft-header__description {
    font-size: 14px;
  }
  .nft-header__buttons {
    display: block;
    padding: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    border-top: none;
    box-shadow: none;
  }
  .nft-header .error-text {
    margin: -8px 0 8px 0;
  }
  .nft-header__add-to-cart-btn {
    margin-bottom: 16px;
  }
  .nft-header__add-to-cart-btn--clicked {
    cursor: default;
  }
  .nft-header__add-to-cart-btn--clicked:active {
    background-color: #1185ed;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.nft-slider .slick-list {
  width: 100%;
}
@media (min-width: 1200px) {
  .nft-slider .slick-list {
    max-width: 75%;
    max-height: 600px;
  }
}
.nft-slider__navigation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  margin: 20px 0 0 0 !important;
}
@media (min-width: 1200px) {
  .nft-slider__navigation {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    width: 190px;
    margin: 0 20px 0 0 !important;
  }
}
.nft-slider .nft-slider__navigation-image {
  outline: none;
  border-radius: 20px;
  aspect-ratio: 1;
  margin: 5px;
  transition: margin 0.3s ease-in-out;
}
.nft-slider .nft-slider__navigation-image img {
  border-radius: 20px;
  padding: 0;
}
.nft-slider .nft-slider__navigation-image--main {
  background-color: #f6f7f8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.nft-slider .nft-slider__navigation-image--main img {
  max-width: 75%;
  border-radius: 5px;
  background: none;
  max-height: 90%;
  outline: none;
  padding: 10px;
}
@media (min-width: 768px) {
  .nft-slider .nft-slider__navigation-image--main img {
    border-radius: 15px;
  }
}
.nft-slider .slick-active .nft-slider__navigation-image {
  margin: 0;
  outline-width: 3px;
}
.nft-slider .slick-active .nft-slider__navigation-image--main {
  outline: 2px solid #1185ed;
  outline-offset: -2px;
  padding: 10px;
}
.nft-slider .slick-active .nft-slider__navigation-image--main img {
  outline: none;
}
.nft-slider__image {
  border-radius: 25px;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  height: 90%;
}
@media (min-width: 1200px) {
  .nft-slider__image-wrapper {
    max-width: 600px;
    max-height: 600px;
  }
}
.nft-slider__image-wrapper--main {
  border-radius: 25px;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #f6f7f8;
  max-width: 100%;
  padding: 0;
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
}
.nft-slider__image-wrapper--main img {
  max-height: 90%;
}
.nft-video {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
  height: 400px;
}
@media (min-width: 576px) {
  .nft-video {
    height: 820px;
  }
}
@media (min-width: 992px) {
  .nft-video {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .nft-video {
    margin-bottom: 80px;
    height: 820px;
  }
}
.nft-video__overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.nft-video__overlay-text {
  color: #ffffff;
  font-size: 60px;
}
@media (min-width: 768px) {
  .nft-video__overlay-text {
    font-size: 122px;
  }
}
@media (min-width: 1200px) {
  .nft-video__overlay-text {
    font-size: 160px;
  }
}
.nft-video__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  clip: rect(auto, auto, auto, auto);
  transition: clip 0.05s;
}
.nft-video__wrapper .responsive-video-container,
.nft-video__wrapper .responsive-video-container--preview-loading:after,
.nft-video__wrapper .responsive-video-container--poster-loading:after,
.nft-video__wrapper .responsive-video-container--poster:after {
  background: none;
}
.nft-video__player-poster {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.nft-video__player {
  width: 100%;
  height: 100%;
}
.responsive-video-container.nft-video__player {
  padding: 400px 0 0 0;
}
@media (min-width: 576px) {
  .responsive-video-container.nft-video__player {
    padding: 100% 0 0 0;
  }
}
@media (min-width: 1200px) {
  .responsive-video-container.nft-video__player {
    padding: 600px 0 0 0;
  }
}
@media (min-width: 1400px) {
  .responsive-video-container.nft-video__player {
    padding: 820px 0 0 0;
  }
}
.brand-page__title-bar {
  padding: 36px 0;
}
@media (min-width: 768px) {
  .brand-page__title-bar {
    width: auto;
    text-align: left;
  }
}
.brand-page__title {
  padding-bottom: 24px;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .brand-page__title {
    font-size: 36px;
    line-height: 44px;
    padding-bottom: 16px;
  }
}
.brand-page__controls {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .brand-page__controls {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .brand-page__controls {
    width: auto;
  }
}
.brand-page__sort {
  width: 100%;
}
@media (min-width: 768px) {
  .brand-page__sort {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .brand-page__sort {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .brand-page__sort > p {
    flex-basis: 30%;
    margin-right: 10px;
  }
}
.brand-page__sort > div {
  min-width: 150px;
  max-width: 200px;
}
@media (min-width: 768px) {
  .brand-page__sort > div {
    min-width: 200px;
  }
}
.brand-page__view-toggle {
  display: flex;
  align-items: center;
}
.brand-page__list .collection-list,
.brand-page__list .browse-displate-list-container {
  min-height: 400px;
}
.brand-page__description {
  padding: 30px;
  border-radius: 8px;
  background: #f6f7f8;
  margin: 0 0 56px;
}
@media (min-width: 768px) {
  .brand-page__description {
    margin: 48px 0 80px;
  }
}
.brand-page__description-heading {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .brand-page__description-heading {
    font-size: 36px;
    line-height: 48px;
  }
}
.brand-page__description-text {
  line-height: 24px;
}
.brand-page__description-text a {
  font-weight: 400;
}
.brand-header {
  height: 352px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .brand-header {
    height: 400px;
  }
}
.brand-header .container {
  height: 100%;
}
.brand-header__background-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  height: 100%;
  display: inline-block;
}
.brand-header__background-mask {
  width: 100%;
  position: absolute;
  height: 352px;
  z-index: -3;
}
@media (min-width: 768px) {
  .brand-header__background-mask {
    height: 400px;
  }
}
.brand-header__background-blur {
  width: 500px;
  position: absolute;
  height: 100%;
  z-index: 1;
}
.brand-header__background-blur--left {
  left: 0;
}
.brand-header__background-blur--right {
  right: 0;
}
.brand-header__background {
  height: 100%;
}
.brand-header__background-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  opacity: 0.1;
  z-index: -1;
}
.brand-header__background-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180.25deg, rgba(0, 0, 0, 0) 26.68%, rgba(0, 0, 0, 0.6) 89.83%);
  mix-blend-mode: multiply;
  opacity: 0.7;
  z-index: -1;
}
.brand-header__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px 8px 32px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .brand-header__content {
    padding: 32px 0;
    justify-content: space-between;
  }
}
.brand-header__breadcrumbs {
  padding-bottom: 24px;
  font-size: 12px;
}
.brand-header__breadcrumbs-dot {
  padding: 0 5px;
}
.brand-header__bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .brand-header__bottom {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}
.brand-header__logo {
  margin-bottom: 20px;
  max-width: 300px;
  display: flex;
  align-items: center;
  height: 100px;
}
@media (min-width: 768px) {
  .brand-header__logo {
    max-width: 336px;
    margin-bottom: 0;
    padding: 0 24px 0 0;
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.brand-header__logo img {
  max-height: 100px;
  width: 100%;
}
.brand-header__info {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .brand-header__info {
    font-weight: 700;
  }
}
.brand-header__info > * {
  padding-bottom: 7px;
}
.brand-header__info > *:last-child {
  padding-bottom: 0;
}
.brand-header__counts {
  padding-bottom: 16px;
}
.brand-header__links > div {
  padding-bottom: 8px;
}
.brand-header__links > div .text:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .brand-header__links > div {
    display: inline-block;
    padding-bottom: 0;
  }
}
.brand-header__link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.brand-header__link-box button {
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  min-width: 108px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  margin-top: 24px;
}
.brand-header__link-box button .icon {
  margin-left: 8px;
}
.brand-header__link-box button.button--processing {
  background-position: center;
}
@media (min-width: 992px) {
  .brand-header__link-box {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .brand-header__link-box button {
    margin-right: 16px;
    margin-top: 0;
    height: 32px;
    padding: 8px 12px;
  }
}
.brand-header__counts-delimiter {
  padding: 0 10px;
}
.brand-header__login-to-follow-popup,
.brand-header__first-follow-popup {
  align-items: flex-end !important;
}
.brand-header__login-to-follow-popup .close-icon,
.brand-header__first-follow-popup .close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 1;
}
.brand-header__login-to-follow-popup .popup__wrapper,
.brand-header__first-follow-popup .popup__wrapper {
  bottom: 0;
  max-width: 566px !important;
  min-height: unset !important;
  max-height: fit-content !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.brand-header__login-to-follow-popup .popup__wrapper .popup__content,
.brand-header__first-follow-popup .popup__wrapper .popup__content {
  padding: 0 16px 24px;
}
@media (min-width: 992px) {
  .brand-header__login-to-follow-popup,
  .brand-header__first-follow-popup {
    align-items: center !important;
  }
  .brand-header__login-to-follow-popup .popup__wrapper,
  .brand-header__first-follow-popup .popup__wrapper {
    border-radius: 10px;
  }
}
.brand-header__login-to-follow-popup .popup__header {
  padding: 16px 24px 0 24px;
  margin: 0;
}
.brand-header__login-to-follow-popup .popup__content {
  position: relative;
}
.brand-header__login-to-follow-popup .popup__content .image-wrapper {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.brand-header__login-to-follow-popup .popup__content .image-wrapper img {
  width: 100%;
  border-radius: 16px;
}
.brand-header__login-to-follow-popup .popup__content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
}
.brand-header__login-to-follow-popup .popup__content .subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 8px 0 24px 0;
  text-align: center;
}
.brand-header__login-to-follow-popup .popup__content a {
  display: block;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 992px) {
  .brand-header__login-to-follow-popup {
    border-radius: 10px;
  }
  .brand-header__login-to-follow-popup .popup__wrapper .popup__content {
    padding: 0 24px 24px;
  }
  .brand-header__login-to-follow-popup .popup__wrapper .popup__content .title,
  .brand-header__login-to-follow-popup .popup__wrapper .popup__content .subtitle {
    text-align: left;
  }
  .brand-header__login-to-follow-popup .popup__wrapper .popup__content .button-wrapper {
    display: flex;
    justify-content: flex-end;
  }
  .brand-header__login-to-follow-popup .popup__wrapper .popup__content .button-wrapper a {
    width: fit-content;
  }
}
.brand-header__first-follow-popup .image-wrapper {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.brand-header__first-follow-popup .image-wrapper img {
  width: 150px;
  height: 150px;
}
.brand-header__first-follow-popup .title {
  margin-top: 50px;
  font-size: 24px;
  line-height: 36px;
}
.brand-header__first-follow-popup .subtitle {
  font-size: 18px;
  line-height: 24px;
}
.brand-header__first-follow-popup .btn-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  margin-top: 32px;
}
.brand-header__first-follow-popup .btn-group button {
  width: 100%;
}
@media (min-width: 992px) {
  .brand-header__first-follow-popup {
    align-items: center !important;
  }
  .brand-header__first-follow-popup .popup__wrapper {
    border-radius: 10px;
  }
  .brand-header__first-follow-popup .image-wrapper {
    margin-top: unset;
  }
  .brand-header__first-follow-popup .btn-group {
    flex-direction: row-reverse;
    gap: 0 8px;
    margin-top: 24px;
  }
  .brand-header__first-follow-popup .btn-group button {
    width: fit-content;
  }
}
.view-toggle__button {
  padding: 8px 10px;
  border: 1px solid #ccd3d7;
  border-radius: 4px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  color: #8d9ba1;
  text-transform: capitalize;
  position: relative;
}
.view-toggle__button:hover {
  background-color: #f6f7f8;
  color: #616970;
}
.view-toggle__button--left {
  border-radius: 4px 0 0 4px;
}
.view-toggle__button--left:not(.view-toggle__button--selected) {
  border-right: none;
}
.view-toggle__button--right {
  border-radius: 0 4px 4px 0;
}
.view-toggle__button--right:not(.view-toggle__button--selected) {
  border-left: none;
}
.view-toggle__button--selected {
  border: 1px solid #1185ed;
  color: #1185ed;
  background-color: #f1f8fe;
}
.view-toggle__button--selected:hover {
  color: #1185ed;
  background-color: #f1f8fe;
}
.view-toggle--inactive .view-toggle__button--left {
  border-right: 1px solid #ccd3d7;
}
.view-toggle__separator {
  width: 1px;
  height: 40px;
  background-color: #d8dde1;
  margin: 0 12px;
}
.view-toggle__badge-wrapper {
  position: absolute;
  top: -5px;
  right: -5px;
}
.view-toggle__badge {
  background-color: #4cc863;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 6px;
  line-height: 8px;
  display: block;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .view-toggle__icon {
    margin-right: 6px;
  }
}
.browse-displates {
  display: flex;
  flex-wrap: wrap;
}
.browse-displates__placeholder-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.browse-displates__placeholder-displate {
  margin-top: 20px;
  width: 182px;
  height: 255px;
  border-radius: 2%;
  position: relative;
}
.browse-displates__placeholder-displate::before {
  content: '';
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.2s;
}
.browse-displates .pagination {
  flex-basis: 100%;
}


/*# */