/* 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 {
  /* 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;
  }
}
/*!
 * 
 *         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;
}
/* 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;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.owl-dots .owl-dot:focus {
  outline: none;
}
.owl-dots .owl-dot span {
  display: inline-block;
  margin: 2px 6px;
  transition: 0.2s;
  width: 11px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #00efd2;
  height: 11px;
}
.owl-dots .owl-dot.active span {
  box-shadow: 0 0 0 2px #1185ed;
}
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 32px;
}
.owl-prev:active,
.owl-next:active,
.owl-prev:focus,
.owl-next:focus {
  outline: none;
}
.owl-prev {
  left: 2%;
  background: transparent url(/images/slider/arrow_left.png);
  background-repeat: no-repeat;
  border: 0;
}
@media (min-width: 992px) {
  .owl-prev {
    left: -5%;
  }
}
.owl-next {
  right: 2%;
  background: transparent url(/images/slider/arrow_right.png);
  background-repeat: no-repeat;
  border: 0;
}
@media (min-width: 992px) {
  .owl-next {
    right: -5%;
  }
}
.owl-dots .owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  display: flex;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: '.';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item.active {
  z-index: 2;
  pointer-events: all;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  padding: 0 !important;
}
.owl-carousel.owl-loaded {
  display: block;
  position: relative;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=''],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*********** 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;
}
.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;
  }
}
.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;
}
@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%;
}
.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-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;
  }
}
.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;
  }
}
@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-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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.partners-grid.owl-carousel {
  margin: 30px 0;
  min-height: 134px;
}
.partners-grid.owl-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-grid.owl-carousel .owl-item a {
  width: 100%;
}
.partners-grid.owl-carousel .owl-nav span {
  display: none;
}
.instagram-widget .title {
  text-transform: uppercase;
  color: #000;
  text-align: center;
}
.instagram-widget .wrapper-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .instagram-widget .wrapper-info {
    justify-content: flex-end;
    padding: 30px 15px;
  }
}
.instagram-widget .account-name {
  margin-left: 10px;
}
.instagram-widget .wrapper-media {
  display: flex;
  flex-wrap: wrap;
}
.instagram-widget .wrapper-media .item-media {
  flex-basis: 33%;
  flex-grow: 1;
  position: relative;
  background: #ffffff;
}
.instagram-widget .wrapper-media .item-media:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.instagram-widget .wrapper-media .item-media:hover .image-media {
  opacity: 0.5;
}
.instagram-widget .wrapper-media .item-media:hover .details-media {
  opacity: 1;
}
.instagram-widget .wrapper-media .item-media--placeholder::before {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.instagram-widget .wrapper-media .image-media {
  transform: translate3d(0, 0, 0);
  width: 100%;
  transition: 0.2s;
  min-height: 100%;
  object-fit: cover;
}
.instagram-widget .wrapper-media .image-media:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.instagram-widget .wrapper-media a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.instagram-widget .wrapper-media span {
  height: 100%;
}
.instagram-widget .wrapper-media .details-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate3d(0, 0, 0);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.instagram-widget .wrapper-media .details-media img {
  width: 13px;
  height: 13px;
}
.instagram-widget .wrapper-media.wrapper-media-wide {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.instagram-widget .wrapper-media.wrapper-media-wide .item-media {
  flex-basis: 33.33%;
  display: none;
}
.instagram-widget .wrapper-media.wrapper-media-wide .item-media:nth-child(-n + 6) {
  display: block;
}
@media (min-width: 576px) {
  .instagram-widget .wrapper-media.wrapper-media-wide .item-media {
    flex-basis: 20%;
  }
  .instagram-widget .wrapper-media.wrapper-media-wide .item-media:nth-child(-n + 10) {
    display: block;
  }
}
@media (min-width: 992px) {
  .instagram-widget .wrapper-media.wrapper-media-wide .item-media {
    flex-basis: 10%;
  }
  .instagram-widget .wrapper-media.wrapper-media-wide .item-media:nth-child(-n + 20) {
    display: block;
  }
}
.instagram-widget .account-details {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-basis: 50%;
}
.instagram-widget .account-details .account-logo-wrapper {
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ed32 5%, #ee2a7b 60%, #002aff 110%);
  padding: 3px;
}
.instagram-widget .account-details .account-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .instagram-widget .account-details {
    flex-basis: auto;
  }
}
.instagram-widget .account-stats {
  flex-basis: auto;
  justify-content: space-between;
  padding: 10px 10px 5px;
  font-size: 14px;
  order: 1;
}
.instagram-widget .account-stats span {
  display: block;
}
.instagram-widget .account-stats:first-of-type {
  margin-left: 52px;
}
.instagram-widget .account-stats:nth-of-type(3) {
  margin-right: 25px;
}
@media (min-width: 768px) {
  .instagram-widget .account-stats {
    flex-basis: 12%;
    padding: 0 10px;
    font-size: 16px;
    order: unset;
  }
  .instagram-widget .account-stats span {
    display: inline;
  }
  .instagram-widget .account-stats:first-of-type {
    margin-left: 0;
  }
  .instagram-widget .account-stats:nth-of-type(3) {
    margin-right: 0;
  }
}
.instagram-widget .account-btn {
  flex-basis: 35%;
}
@media (min-width: 768px) {
  .instagram-widget .account-btn {
    flex-basis: 20%;
  }
}
/* purgecss start ignore */
.homepage-banner {
  background: #ffffff;
  margin-top: 187px;
  font-size: 0;
  position: relative;
}
.homepage-banner img {
  vertical-align: top;
}
.homepage-banner.homepage-banner-mobile {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .homepage-banner {
    height: 31.8vw;
  }
}
@media (min-width: 1270px) {
  .homepage-banner {
    height: 410px;
  }
}
.homepage-banner--background {
  background: unset;
}
.homepage-banner--background .homepage-banner__inner {
  border: none;
  background: unset;
  box-shadow: unset;
}
.homepage-banner__inner {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  border: solid 5px #ffffff;
  font-size: 0;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.homepage-banner__inner--mobile {
  margin: -44px 0 -30px -15px;
  width: calc(100% + 30px);
  aspect-ratio: 0.93430657;
}
.homepage-banner__skeleton {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  width: 100%;
  height: 100%;
}
.homepage-banner img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
.homepage-background {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: hidden;
}
.homepage-background img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .homepage-background {
    width: 2420px;
    height: calc(100vh - 180px);
    overflow-y: unset;
  }
}
.header__wrapper > div {
  z-index: 1001;
}
.header__wrapper-item--drawer-opened {
  z-index: 10 !important;
}
@media (min-width: 1024px) {
  .header__wrapper-item--drawer-opened {
    padding-right: var(--scrollBarWidth);
  }
}
.header__wrapper .aside-menu__wishlist-icon {
  height: 24px;
}
.header__wrapper .searchbar-icon svg {
  width: 19px !important;
}
@media (min-width: 1024px) {
  .header__wrapper a:hover {
    text-decoration: none;
  }
  .header__wrapper form {
    padding: 0 !important;
  }
}
/* purgecss end ignore */
@media (min-width: 768px) {
  overflow-x: hidden !important;
}
/*!
 * Cropper.js v1.5.12
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2021-06-12T08:00:11.623Z
 */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cropper-container img {
  image-orientation: 0deg;
  display: block;
  height: 100%;
  max-height: none!important;
  max-width: none!important;
  min-height: 0!important;
  min-width: 0!important;
  width: 100%;
}
.cropper-canvas,
.cropper-crop-box,
.cropper-drag-box,
.cropper-modal,
.cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropper-canvas,
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropper-center:after,
.cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}
.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.multiuploader__captcha.popup__wrapper {
  min-width: 385px;
}
.multiuploader__captcha.popup__wrapper .popup__content {
  padding-top: 30px;
}
.multiuploader__copyrights.popup__wrapper {
  width: 382px;
  min-width: 382px;
}
.multiuploader__copyrights.popup__wrapper .popup__content {
  padding-top: 15px;
}
.multiuploader .multiuploader-container {
  padding: 30px 0 30px 15px;
  position: relative;
  height: 100%;
  display: none;
}
.multiuploader .multiuploader-container.active {
  display: block;
}
.multiuploader .editor-container {
  max-width: 1430px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  height: 100%;
}
.multiuploader .main {
  flex-grow: 1;
}
.multiuploader #uploadButton {
  display: none;
}
.multiuploader .loader-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #555;
  text-align: center;
  padding: 16px;
}
.multiuploader .preview-list {
  list-style: none;
  margin: 0 10px 0 0;
  padding: 20px 0 20px 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.multiuploader .preview-list .multi-advice {
  width: 98%;
  margin-left: 2%;
  padding: 0 0 20px 40px;
  background: url('/img/multiuploader/hand-icon.png') no-repeat;
}
.multiuploader .preview-list li.addMore {
  height: 320px;
  position: relative;
  padding: 14px 8px;
}
.multiuploader .preview-list li.addMore.disabled {
  cursor: default;
}
.multiuploader .preview-list li.addMore.disabled label {
  color: #8d9ba1;
  cursor: default;
}
.multiuploader .preview-list li.addMore.disabled label img {
  filter: grayscale();
}
.multiuploader .preview-list li.addMore.disabled:hover {
  pointer-events: none;
  cursor: default;
  background-color: transparent;
  box-shadow: none;
}
.multiuploader .preview-list li.addMore label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #1185ed;
  cursor: pointer;
}
.multiuploader .preview-list li.addMore label span {
  display: block;
}
.multiuploader .preview-list li.addMore label span:last-of-type {
  margin-top: 8px;
}
.multiuploader .preview-list li.addMore form {
  display: none;
}
.multiuploader .preview-list li.addMore a {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #1185ed;
  white-space: nowrap;
}
.multiuploader .preview-list li.addMore a:hover {
  text-decoration: underline;
}
.multiuploader .preview-list li.addMore p {
  color: #ff1744;
  width: 90%;
  font-size: 14px;
  line-height: 20px;
  margin-top: 30px;
}
.multiuploader .preview-list li.addMore.hidden {
  display: none;
}
.multiuploader .preview-list li.addMore.processing:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f5f5f5;
  background-image: url('/img/loaders/loader-white.svg');
  background-position: center center;
  background-size: 26px 26px;
  background-repeat: no-repeat;
}
@keyframes fadeOut {
  1% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.multiuploader .preview-list .file-uploaded {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 10px;
  background: #ffffff;
  height: 320px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  animation-name: fadeOut;
  animation-delay: 3s;
  animation-duration: 0.5s;
}
.multiuploader .preview-list .file-uploaded > * {
  margin: 5px 0;
}
.multiuploader .preview-list .add-more {
  position: relative;
  border: 3px solid #d2d2d2;
  padding: 0;
}
.multiuploader .preview-list .add-more:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.multiuploader .preview-list .add-more input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.multiuploader .preview-list .add-more label {
  height: 100%;
  position: absolute;
  width: 100%;
  color: transparent;
  cursor: pointer;
}
.multiuploader .preview-list .add-more label:before {
  content: '+';
  color: #aaa;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-radius: 50%;
  border: 1px solid #aaa;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
}
.multiuploader .preview-list .add-more label:after {
  content: 'Add more artworks';
  color: #aaa;
  width: 100%;
  position: absolute;
  top: 60%;
  left: 0;
  text-align: center;
}
.multiuploader .simplebar-scrollbar:before {
  background: #6e6e6e;
}
.multiuploader .multi-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 1004;
}
.multiuploader .multi-popup.open {
  display: flex;
}
.multiuploader__boost-discoverability {
  background-color: #f6f7fa;
  border-radius: 5px;
  border: 1px solid #e8ebed;
  padding: 15px;
  margin: 40px 40px 0 40px;
}
.multiuploader .preview-list li {
  display: inline-block;
  min-width: 200px;
  width: 23%;
  max-width: 225px;
  border: 3px solid #ffffff;
  margin-bottom: 1.5%;
  margin-right: 1.5%;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  padding: 14px 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}
.multiuploader .preview-list li.addMore {
  border: 2px dashed #ccd1d7;
}
.multiuploader .preview-list li:not(.processing):hover {
  background-color: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.multiuploader .preview-list li:not(.processing):hover .image-container {
  opacity: 1;
}
.multiuploader .preview-list li.selected {
  border-color: #1185ed;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.multiuploader .preview-list li.selected .image-container {
  opacity: 1;
}
.multiuploader .preview-list li .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  margin: 0 auto;
  height: 175px;
  opacity: 0.3;
  margin: 10px 0;
  transition: opacity 0.3s ease;
}
.multiuploader .preview-list li .image-container-inner {
  position: relative;
  transition: opacity 0.3s ease;
}
.multiuploader .preview-list li .image-container-inner > img {
  max-width: 100%;
  max-height: 175px;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.multiuploader .preview-list li .autocrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.multiuploader .preview-list li .autocrop .autocrop-layer,
.multiuploader .preview-list li .autocrop .autocrop-crop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: linear-gradient(to right, #1185ed 60%, transparent 40%), linear-gradient(to right, #1185ed 60%, transparent 40%), linear-gradient(to bottom, #1185ed 60%, transparent 40%), linear-gradient(to bottom, #1185ed 60%, transparent 40%);
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  color: #ffffff;
}
.multiuploader .preview-list li .autocrop .autocrop-crop {
  font-style: normal;
  display: none;
  flex-direction: column;
}
.multiuploader .preview-list li .autocrop:hover .autocrop-crop {
  display: flex;
}
.multiuploader .preview-list li .autocrop:hover .autocrop-layer {
  display: none;
}
.multiuploader .preview-list li .title {
  margin-top: 12px;
  overflow-wrap: break-word;
}
.multiuploader .preview-list li .added-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.multiuploader .preview-list li .added-container img {
  margin-right: 4px;
}
.multiuploader .preview-list li .remove {
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 8px;
  right: 8px;
  background: url(/img/multiuploader/remove-icon.png) no-repeat center top;
  background-size: contain;
}
.multiuploader .preview-list li.loading .image-container {
  background-image: url('/img/loaders/loader-dark.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 28px 28px;
  opacity: 1;
}
.multiuploader .preview-list li.loading .image-container .image-container-inner {
  opacity: 0;
}
.multiuploader .file-progress-bar-container {
  margin-top: 10px;
}
.multiuploader .file-progress-bar-container .file-progress {
  height: 6px;
  background: #d2d2d2;
  border-radius: 4px;
  width: 100%;
  margin-top: 5px;
  position: relative;
}
.multiuploader .file-progress-bar-container .file-progress .file-progress-current {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 90%;
  background: #ff9100;
  border-radius: 4px 0 0 4px;
  transition: 500ms;
}
.multiuploader .file-progress-bar-container .file-progress .file-progress-current.progress-full {
  border-radius: 4px;
}
.multiuploader .file-progress-bar-container .file-progress .file-progress-current.progress-success {
  background: #09e85e;
}
.multiuploader .file-progress-bar-container .file-progress .file-progress-current.progress-warning {
  background: #ff1744;
}
.multiuploader .file-progress-bar-container .file-percent {
  color: #ff9100;
}
.multiuploader .file-progress-bar-container .file-percent-warning {
  color: #ff1744;
}
.multiuploader .file-progress-bar-container .file-percent-success {
  color: #09e85e;
}
.multiuploader .file-progress-bar-container .file-description {
  display: flex;
  justify-content: space-between;
  padding: 5px 0 0;
}
.black-friday-color-change .multiuploader .sidebar {
  height: calc(100vh - 265px);
}
.tags__validation-popup-content {
  padding: 4px 10px;
  box-shadow: 4px 4px 12px 0 #00000033;
  background-color: #ffffff;
  border-radius: 4px;
  color: #ff1744;
}
.tags__validation-popup-text {
  font-size: 12px;
  line-height: 150%;
}
.tags__popup-anchor {
  width: 100%;
}
.multiuploader {
  background: #f5f5f5;
}
.multiuploader .sidebar-wrapper {
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  border: 3px solid #1185ed;
  display: flex;
  flex-direction: column;
  height: 95%;
  width: 455px;
  flex-grow: 0;
}
.multiuploader .editor--inactive:after,
.multiuploader .editor__group--inactive:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.7;
  z-index: 1001;
}
.multiuploader .editor .copyrights-checkbox .input-checkbox__checkbox:checked ~ .input-checkbox__label,
.multiuploader .editor__group .copyrights-checkbox .input-checkbox__checkbox:checked ~ .input-checkbox__label {
  font-weight: 400;
}
.multiuploader .editor__content-wrapper {
  padding-bottom: 30px;
}
.multiuploader .editor__group--collection {
  margin-top: 0;
}
.multiuploader .editor__group--collection .collection__dropdown {
  max-height: 382px;
}
.multiuploader .editor__group--collection .input-select:after {
  display: block !important;
}
.multiuploader .editor__group--collection .input-select--empty.input-select--active .input-select__dropdown {
  display: block;
}
.multiuploader .editor__group--collection .collection__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.multiuploader .editor__group--collection .collection__button div {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  color: #1185ed;
}
.multiuploader .editor__group--collection .collection__button div:first-of-type {
  font-size: 24px;
  margin-right: 8px;
  line-height: 16px;
}
.multiuploader .sidebar {
  position: relative;
}
.multiuploader .sidebar a {
  color: #1185ed;
}
.multiuploader .sidebar a:hover {
  color: #1185ed;
  text-decoration: underline;
}
.multiuploader .sidebar h5,
.multiuploader .sidebar .editor__description {
  padding: 0 0 10px 0;
}
.multiuploader .sidebar h5--link,
.multiuploader .sidebar .editor__description--link {
  color: black;
  text-decoration: underline;
  font-weight: 300;
  cursor: pointer;
}
.multiuploader .sidebar .tooltip__icon {
  line-height: 16px;
}
.multiuploader .sidebar .editor__group {
  position: relative;
  margin: 40px;
}
.multiuploader .sidebar .editor__group:first-child {
  margin-top: 0;
}
.multiuploader .sidebar .editor__group .heading-5--title {
  display: flex;
  align-items: center;
}
.multiuploader .sidebar .editor__group .heading-5--title .tooltip {
  margin-left: 8px;
}
.multiuploader .sidebar .editor__group .heading-5--title .tooltip .tooltip__text {
  width: 140px;
}
.multiuploader .sidebar .editor__group.tags .heading-5 {
  display: flex;
  align-items: center;
}
.multiuploader .sidebar .editor__group.tags .heading-5 > span {
  margin-left: 6px;
}
.multiuploader .sidebar .editor__group.tags .heading-5 .popup__trigger-wrapper {
  margin-left: auto;
  cursor: pointer;
}
.multiuploader .sidebar .description__input {
  min-height: 100px;
  overflow: hidden;
}
.multiuploader .sidebar .radio-group__container,
.multiuploader .sidebar .radio-group__list {
  display: grid;
  grid-template-columns: auto auto;
}
.multiuploader .sidebar .radio-group__item {
  width: 190px;
  margin: 10px 0;
}
.multiuploader .sidebar .radio-group__item--other {
  grid-row-end: 999;
  width: 200%;
}
.multiuploader .sidebar .tags .editor__description .tooltip {
  margin-left: 8px;
}
.multiuploader .sidebar .tags .editor__description .tooltip .tooltip__text {
  width: 320px;
}
.multiuploader .sidebar .tags__description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.multiuploader .sidebar .tags__progress {
  display: flex;
  justify-content: center;
  align-items: center;
}
.multiuploader .sidebar .tags__progress span {
  margin-right: 8px;
}
.multiuploader .sidebar .tags__container {
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #ffffff;
  padding: 11px 10px 6px;
  overflow: visible;
  min-height: 80px;
  position: relative;
}
.multiuploader .sidebar .tags__container--error {
  border-color: #ff1744;
}
.multiuploader .sidebar .tags__container .tag {
  white-space: normal;
}
.multiuploader .sidebar .tags__item {
  display: inline-block;
}
.multiuploader .sidebar .tags__name {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background: #00adee;
  color: #ffffff;
  padding: 5px;
  margin: 0 5px 5px 0;
}
.multiuploader .sidebar .tags__remove {
  position: static;
  line-height: 11px;
  height: 11px;
  padding: 0;
  margin-left: 5px;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-block;
}
.multiuploader .sidebar .tags__input-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 5px 0;
  min-width: 50px;
  border: none;
  margin: 0 0 5px 0;
  width: auto;
  background: #ffffff;
}
.multiuploader .sidebar .tags__input {
  padding-left: 1px;
}
.multiuploader .sidebar .tags__input--validation-error {
  caret-color: red;
}
.multiuploader .sidebar .tags__input:focus,
.multiuploader .sidebar .tags__input:focus-visible {
  outline: 0 solid transparent;
}
.multiuploader .sidebar .new-collection {
  margin-top: -15px;
}
.multiuploader .sidebar .new-collection label:last-of-type {
  margin-bottom: 10px;
  display: block;
}
.multiuploader .sidebar .checkbox-group .input-checkbox {
  margin: 10px 0;
}
.multiuploader .sidebar .checkbox-group .input-checkbox--other {
  grid-row-end: 999;
  width: 200%;
}
.multiuploader .sidebar .checkbox-group .input-checkbox--other input {
  padding: 4px 8px;
  font-weight: normal;
}
.multiuploader .sidebar .checkbox-group__list {
  display: grid;
  grid-template-columns: 50%;
  grid-template-areas: 'item item';
}
.multiuploader .sidebar .category__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4%;
  padding-top: 0;
}
.multiuploader .sidebar .category__container {
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  background: #ffffff;
  height: 260px;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 12px;
}
.multiuploader .sidebar .category__container--error {
  border-color: #ff1744;
}
.multiuploader .sidebar .price__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.multiuploader .sidebar .price__medium {
  flex-basis: 54%;
  margin-right: auto;
  position: relative;
}
.multiuploader .sidebar .price__other {
  flex-basis: 18%;
}
.multiuploader .sidebar .price__other div {
  margin-top: 7px;
  color: #6e6e6e;
}
.multiuploader .sidebar .price__info {
  color: #6e6e6e;
  margin-bottom: 8px;
}
.multiuploader .sidebar .price__progress {
  background: #1185ed;
  height: 1px;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 10px;
}
.multiuploader .sidebar .price__bubble {
  display: inline-block;
  position: relative;
  left: 0;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  margin: 5px 0;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
  transform: translateX(-50%);
}
.multiuploader .sidebar .price__bubble:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 12px;
  height: 12px;
  z-index: -1;
  transform: translateX(-50%) rotate(45deg);
  background: #ffffff;
}
.multiuploader .sidebar #price-sizes {
  display: flex;
  justify-content: space-around;
  margin: 0 0 15px 0;
}
.multiuploader .sidebar #price-sizes li {
  text-align: center;
}
.multiuploader .sidebar #price-sizes li span {
  margin: 5px 0 0 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #eee;
  width: 100%;
  display: block;
}
.multiuploader .sidebar .price-message {
  margin: 0 0 2px 0;
}
.multiuploader .sidebar .multi-tooltip {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 100%;
  cursor: help;
}
.multiuploader .sidebar .multi-tooltip span {
  width: 75%;
  display: block;
  padding: 10px 8px;
  border: 1px solid #ccc;
  position: absolute;
  top: 2px;
  right: 20px;
  width: 150px;
  text-align: center;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.17);
  display: none;
  z-index: 1;
}
.multiuploader .sidebar .multi-tooltip:hover span {
  display: block;
}
.multiuploader .sidebar .multi-tooltip:before {
  content: '?';
  position: absolute;
  top: 4px;
  right: 0;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 14px;
  height: 14px;
  text-align: center;
  padding: 0 0 0 2px;
  text-indent: -1px;
}
.multiuploader .edit-text-wrapper {
  z-index: 1;
  position: relative;
  background: #ffffff;
  margin: 20px 40px 26px;
  word-break: break-all;
}
.multiuploader .multi-submit-wrapper {
  padding: 7px 15px 15px;
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
}
.multiuploader .multi-submit-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.multiuploader .multi-submit-wrapper div img {
  margin-right: 6px;
}
.multiuploader .multi-submit-wrapper button {
  margin-top: 8px;
}
.multiuploader .tag-suggestions {
  position: absolute;
  top: 30px;
  left: 0;
  max-height: 130px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  z-index: 999;
  border-radius: 5px;
  min-width: 140px;
}
.multiuploader .tag-suggestions__header {
  background: rgba(249, 200, 206, 0.25);
  width: 100%;
  padding: 10px 15px 10px 10px;
  font-weight: bold;
  height: 25px;
  display: flex;
  align-items: center;
}
.multiuploader .tag-suggestions__phrase {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-weight: bold;
}
.multiuploader .tag-suggestions__phrase:hover {
  background: #f6f7f8;
}
.multiuploader .tag-suggestions__phrase:hover::after {
  content: '';
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  border-bottom: 2px solid #1185ed;
  border-right: 2px solid #1185ed;
  position: relative;
  top: -3px;
  margin-left: 15px;
}
.multiuploader .tag-suggestions__dismiss {
  bottom: 0;
  background: #f6f7f8;
  padding: 10px;
  width: 100%;
  text-transform: uppercase;
  font-size: 10px;
  height: 25px;
  display: flex;
  align-items: center;
  position: sticky;
}
.multiuploader .tag-suggestions__dismiss:hover span {
  color: #1185ed;
}
.popup-helper-content .popup__wrapper {
  max-width: 880px;
}
.popup-helper-content .popup__header {
  padding: 44px 0 40px;
  border: none;
  justify-content: center;
}
.popup-helper-content .popup__header--icon-close {
  position: absolute;
  top: 26px;
  right: 26px;
  cursor: pointer;
}
.popup-helper-content .popup__header--icon-close::after {
  height: 28px;
  width: 28px;
  font-weight: 100;
  font-size: 28px;
  content: '\00d7';
  color: #000;
}
.popup-helper-content .popup__content {
  padding-bottom: 0;
}
.popup-helper-content .popup__content .example__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}
.popup-helper-content .popup__content .example__list .example__item {
  padding: 12px 20px 12px 56px;
  background-color: #f6f7f8;
  border-radius: 16px;
  line-height: 20px;
  position: relative;
}
.popup-helper-content .popup__content .example__list .example__item--correct::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 24px;
  top: calc(50% - 8px);
  width: 12px;
  height: 8px;
  transform: rotate(-50deg);
  border-left: 1px solid #4cc863;
  border-bottom: 1px solid #4cc863;
}
.popup-helper-content .popup__content .popup-content__section-title,
.popup-helper-content .popup__content .popup-content__section-example {
  margin-bottom: 8px;
}
.popup-helper-content .popup__content .popup-content__section-content {
  margin-bottom: 16px;
  line-height: 20px;
}
.popup-helper-content .popup__content .popup-content__section-content ul {
  margin: 16px 0;
  list-style: disc;
}
.popup-helper-content .popup__content .popup-content__section-content ul > li {
  margin-bottom: 16px;
  margin-left: 20px;
}
.popup-helper-content .popup__content .example__container {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin-bottom: 0;
}
.popup-helper-content .popup__content .example__container--tags {
  gap: 20px;
}
.popup-helper-content .popup__content .example__container .example__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 20px 5px;
  background-color: #f6f7f8;
  border-radius: 8px;
  margin-bottom: 8px;
}
.popup-helper-content .popup__content .example__container .example__item--tag {
  padding: 12px 20px 12px 56px;
  border-radius: 16px;
}
.popup-helper-content .popup__content .example__container .example__item--tag.example__item--incorrect::after {
  left: 16px;
  top: 6px;
  border: none;
  background-color: transparent;
}
.popup-helper-content .popup__content .example__container .example__item--tag.example__item--correct::before {
  top: 12px;
  left: 24px;
}
.popup-helper-content .popup__content .example__container .example__item--tag.example__item--correct::after {
  content: none;
}
.popup-helper-content .popup__content .example__container .example__item > img {
  max-width: 160px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.popup-helper-content .popup__content .example__container .example__item > span {
  font-size: 14px;
}
.popup-helper-content .popup__content .example__container .example__item::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -14px;
  height: 28px;
  width: 28px;
  border: 1px solid #d8dde1;
  border-radius: 99px;
  background-color: white;
  font-weight: 100;
  font-size: 28px;
}
.popup-helper-content .popup__content .example__container .example__item--incorrect::after {
  content: '\00d7';
  color: #ff1744;
  text-align: center;
}
.popup-helper-content .popup__content .example__container .example__item--correct::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0px;
  right: -6px;
  width: 12px;
  height: 8px;
  transform: rotate(-50deg);
  border-left: 1px solid #4cc863;
  border-bottom: 1px solid #4cc863;
}
.popup-helper-content .popup__content .good-practices {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.popup-helper-content .popup__content .good-practices__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #ccd1d7;
}
.popup-helper-content .popup__content .good-practices__item--content {
  margin-bottom: 16px;
  line-height: 20px;
}
.popup-helper-content .popup__content .good-practices__item:first-of-type {
  padding-top: 0;
}
.popup-helper-content .popup__content .good-practices__item:last-of-type {
  padding-bottom: 8px;
  border-bottom: none;
}
.popup-helper-content .popup__content .good-practices__item > img {
  max-width: 160px;
  border-radius: 8px;
  margin-right: 28px;
}
.popup-helper-content .popup__footer {
  background-color: transparent;
  border: none;
  margin: 12px 0 20px;
  padding: 0;
}
.popup-helper-content .popup__footer .button {
  padding: 8px 16px;
}
.multiuploader input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 15px 0;
}
.multiuploader input[type='range']:focus {
  outline: none;
}
.multiuploader input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #d2d2d2;
  border-radius: 5px;
}
.multiuploader input[type='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;
}
.multiuploader input[type='range']:focus::-webkit-slider-runnable-track {
  background: #d2d2d2;
}
.multiuploader input[type='range']::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #d2d2d2;
  border-radius: 5px;
}
.multiuploader input[type='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;
}
.multiuploader input[type='range']::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
  color: transparent;
}
.multiuploader input[type='range']::-moz-range-progress {
  background: #1185ed;
}
.multiuploader input[type='range']::-moz-range-track {
  background: #d2d2d2;
}
.multiuploader input[type='range']::-ms-fill-lower {
  background: #d2d2d2;
  border-radius: 10px;
}
.multiuploader input[type='range']::-ms-fill-upper {
  background: #1185ed;
  border-radius: 10px;
}
.multiuploader input[type='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;
}
.multiuploader input[type='range']:focus::-ms-fill-lower {
  background: #d2d2d2;
}
.multiuploader input[type='range']:focus::-ms-fill-upper {
  background: #1185ed;
}
.multiuploader .inactive input[type='range']::-webkit-slider-runnable-track {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']:focus::-webkit-slider-runnable-track {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']::-moz-range-track {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']::-ms-fill-lower {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']::-ms-fill-upper {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']:focus::-ms-fill-lower {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']:focus::-ms-fill-upper {
  background: rgba(204, 204, 204, 0.3);
}
.multiuploader .inactive input[type='range']::-webkit-slider-thumb {
  background: #f0f0f0;
}
.multiuploader .inactive input[type='range']::-moz-range-thumb {
  background: #f0f0f0;
}
.multiuploader .inactive input[type='range']::-ms-thumb {
  background: #f0f0f0;
}
.multiuploader .image-cropper .image-wrapper-outer {
  position: relative;
  height: 480px;
  margin-top: 30px;
}
.multiuploader .image-cropper .image-wrapper {
  background: #ffffff;
  position: absolute;
  border-radius: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.multiuploader .image-cropper .image-wrapper img {
  max-height: 450px;
  max-width: 520px;
}
.multiuploader .landing-container {
  height: 100%;
  background-size: cover;
  position: relative;
  color: #ffffff;
}
.multiuploader .landing-container.success-page {
  overflow: hidden;
  height: calc(100vh - 165px);
  background: transparent url(/img/multiuploader/success-page/background.jpg) no-repeat left bottom;
  background-size: 100% 100%;
}
.multiuploader .landing-container.success-page .info h2,
.multiuploader .landing-container.success-page .info p {
  color: #000;
  text-shadow: none;
}
.multiuploader .landing-container.success-page .landing-content {
  top: 35%;
}
.multiuploader .landing-container.success-page .info {
  width: 100%;
  text-align: center;
}
.multiuploader .landing-container.success-page .info h1 {
  margin-bottom: 20px;
}
.multiuploader .landing-container.success-page .info button {
  margin-top: 40px;
  position: absolute;
}
.multiuploader .landing-container.success-page .info button img {
  position: relative;
  margin-right: 8px;
}
.multiuploader .landing-container.success-page .info h1,
.multiuploader .landing-container.success-page .info div {
  color: #ffffff;
}
.multiuploader .landing-container h1,
.multiuploader .landing-container h5 {
  color: #ffffff;
}
.multiuploader .landing-container h1 {
  margin-bottom: 0;
}
@media (min-width: 1367px) {
  .multiuploader .landing-container h1 {
    margin-bottom: 15px;
  }
}
.multiuploader .landing-container button {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 265px;
  margin: 15px 0 20px;
}
@media (min-width: 1367px) {
  .multiuploader .landing-container button {
    margin: 25px 0 40px;
  }
}
.multiuploader .landing-container button img {
  position: relative;
  margin-right: 8px;
}
.multiuploader .landing-container .landing-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
}
@media (min-height: 800px) {
  .multiuploader .landing-container .landing-overlay {
    align-items: center;
  }
}
.multiuploader .landing-container .landing-content {
  padding: 25px 0;
  width: 100%;
}
.multiuploader .landing-container img {
  position: absolute;
}
.multiuploader .landing-container.success-page .sloth {
  height: 350px;
  top: 30px;
  left: -10px;
}
.multiuploader .landing-container.success-page .whale {
  width: 180px;
  left: 25%;
  top: 70px;
}
.multiuploader .landing-container.success-page .mountains {
  bottom: -50px;
  left: -5%;
  width: 110%;
}
.multiuploader .landing-container.success-page .mountains-back {
  left: 30%;
  width: 40%;
  bottom: -20px;
}
.multiuploader .landing-container.success-page .eagle {
  right: -200px;
  bottom: -100px;
  height: 600px;
}
.multiuploader .landing-container.success-page .sun {
  width: 26%;
  left: 37%;
  bottom: -100px;
}
.multiuploader .landing-container.success-page .man {
  left: 3%;
  bottom: 80px;
  height: 550px;
}
.multiuploader .landing-container.success-page .hands {
  right: -40px;
  top: -130px;
  width: 650px;
}
.multiuploader .landing-container.success-page .clouds {
  width: 500px;
  left: 50px;
  top: 100px;
}
.multiuploader .messages .popup__wrapper {
  width: 600px;
}
.multiuploader .messages .messages-list {
  max-height: 260px;
}
.multiuploader .messages .messages-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.multiuploader .messages .messages-msgs {
  padding-left: 10px;
}
.multiuploader .messages .messages-msgs span {
  display: block;
}
.multiuploader .messages .messages-filename {
  word-break: break-all;
  max-width: 40%;
}
.multiuploader .messages .simplebar-track.vertical {
  right: 0;
  transform: none;
}
.multiuploader .messages .list {
  margin: 0;
}
.multiuploader .messages .messages-button {
  width: 50%;
}
.multiuploader .button__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.multiuploader .button__wrapper button {
  width: 49%;
}
.multiuploader .button__wrapper button:first-of-type {
  margin-right: 20px;
}
.react-slidedown {
  height: 0;
  transition-property: none;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.react-slidedown.transitioning {
  overflow-y: hidden;
}
.react-slidedown.closed {
  display: none;
}
.boost-discoverability__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.boost-discoverability__header:after {
  content: '';
  background-image: url(/img/svg/icons/icon_arrow-small.svg);
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s ease;
}
.boost-discoverability__header.active:after {
  transform: rotate(180deg);
}
@media (max-width: 1099px) {
  .multiuploader .preview-list li {
    width: 31.33333333%;
  }
}
@media (max-width: 899px) {
  .multiuploader .preview-list li {
    width: 48%;
  }
}
@media (max-width: 699px) {
  .multiuploader .preview-list {
    margin-left: 0;
  }
  .multiuploader .preview-list li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 6%;
  }
}
.start-page {
  background: #ffffff url(/img/multiuploader/start-page/background.svg) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
  padding-bottom: 50px;
}
.start-page__uploader-frame {
  width: 614px;
  text-align: center;
  margin: 50px auto 60px;
  background-color: rgba(246, 247, 248, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 0 78px;
  border: 2px dashed #ccd3d7;
  border-radius: 4px;
  color: #000;
}
.start-page__uploader-frame.drag-active {
  border: 2px dashed #1185ed;
}
.start-page__uploader-frame.drag-active * {
  pointer-events: none;
}
.start-page__upload-info {
  padding: 0 110px;
  margin-bottom: 34px;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 20px;
  text-align: left;
  color: #424a51;
}
.start-page__upload-instruction {
  margin-top: 32px;
}
.start-page__upload-button {
  padding: 10px 48px;
}
.start-page__upload-button.button.button--processing {
  background-position: center;
}
.start-page__upload-button img {
  position: relative;
  margin-right: 4px;
}
.start-page .link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 610px;
  padding: 96px 30px;
  border: 2px dotted #ccd1d7;
  border-radius: 4px;
  margin: 24px auto 0;
  background-color: #f6f7f8;
}
.upload-guidelines {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 10px 10px;
  color: #000;
}
@media (min-width: 1367px) {
  .upload-guidelines {
    margin: 20px auto 0;
  }
}
.upload-guidelines > div {
  display: flex;
  justify-content: space-between;
}
.upload-guidelines__title {
  width: 100%;
  text-align: center;
}
.upload-guidelines__subtitle {
  margin-bottom: 20px;
}
.upload-guidelines__dos-and-donts {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 21px;
}
.upload-guidelines__box {
  width: 49%;
  background-color: #f6f7f8;
  padding: 20px 30px;
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 10px;
}
@media (min-width: 1367px) {
  .upload-guidelines__box {
    margin-top: 20px;
    padding: 30px 40px;
  }
}
.upload-guidelines__item {
  padding-left: 30px;
  padding-right: 10px;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 1367px) {
  .upload-guidelines__item {
    padding-left: 38px;
    padding-right: 10px;
  }
}
.upload-guidelines__item p {
  margin-bottom: 20px;
}
.upload-guidelines__item p:last-child {
  margin-bottom: 0;
}
.upload-guidelines__item.with-checkmark::before {
  content: '';
  width: 12px;
  height: 8px;
  transform: rotate(-50deg);
  position: absolute;
  left: 2px;
  top: 7px;
  border-left: 1px solid #1185ed;
  border-bottom: 1px solid #1185ed;
}
.upload-guidelines__item.with-cross::before {
  content: '\00d7';
  width: 8px;
  height: 8px;
  position: absolute;
  left: 2px;
  top: 2px;
  color: #ff1744;
  font-weight: 100;
  font-size: 28px;
}
.cart__benefits {
  background: #f5f5f5;
  padding: 15px 10px 0 10px;
}
@media (min-width: 768px) {
  .cart__benefits {
    padding: 15px 15px 0 15px;
  }
}
.cart__benefits p {
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .cart__benefits p {
    font-size: 16px;
    line-height: 24px;
  }
}
.cart__benefits img {
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .cart__benefits img {
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1200px) {
  .cart__benefits {
    padding: 30px;
  }
}
.cart__benefits--triple .cart__benefits-section {
  width: calc(100% / 3);
}
.cart__benefits-section {
  width: 45%;
  flex-direction: column;
  padding-bottom: 15px;
  margin: 0 2px;
}
@media (min-width: 1200px) {
  .cart__benefits-section {
    width: 22%;
    padding-bottom: 0;
  }
}
.cart__benefits-section--wide {
  width: 45%;
}
@media (min-width: 1200px) {
  .cart__benefits-section--wide {
    width: 28%;
  }
}
.cart__benefits-section--wrap p {
  max-width: 140px;
}
@media (min-width: 768px) {
  .cart__benefits-section--wrap p {
    max-width: none;
  }
}
.cart__go-back {
  margin-left: -24px;
  width: 170px;
  cursor: pointer;
}
.cart__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cart__container {
    margin-top: 30px;
  }
}
.cart__section,
.cart__section--react {
  width: 100%;
}
@media (min-width: 992px) {
  .cart__section,
  .cart__section--react {
    width: 58%;
  }
}
.cart__section--shadow,
.cart__section--react--shadow {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .cart__section--shadow,
  .cart__section--react--shadow {
    width: 38%;
    flex-shrink: 0;
    margin-bottom: 30px;
    padding: 0;
    top: 30px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    background: #ffffff;
  }
}
.cart__section--shadow h3,
.cart__section--react--shadow h3 {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .cart__section--shadow h3,
  .cart__section--react--shadow h3 {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .cart__section--sticky,
  .cart__section--react--sticky {
    position: sticky;
  }
}
.cart__section .displate-club,
.cart__section--react .displate-club {
  width: 100%;
  position: relative;
  padding: 24px 0;
  display: flex;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 24px;
}
.cart__section .displate-club__image-wrapper,
.cart__section--react .displate-club__image-wrapper {
  border-radius: 8px;
  background: linear-gradient(100deg, #3d45d0 46.5%, #1185ed 100%);
  width: 140px;
  height: 155px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart__section .displate-club__info,
.cart__section--react .displate-club__info {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}
.cart__section .displate-club__title,
.cart__section--react .displate-club__title {
  font-size: 20px;
  line-height: 28px;
}
.cart__section .displate-club__price,
.cart__section--react .displate-club__price {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.cart__section .displate-club__description,
.cart__section--react .displate-club__description {
  font-size: 14px;
  line-height: 20px;
  color: #424a51;
}
.cart__section .displate-club__remove,
.cart__section--react .displate-club__remove {
  position: absolute;
  top: 24px;
  right: 0;
  cursor: pointer;
}
.cart__section-inner {
  padding: 30px 40px 0 40px;
}
.cart__section-footer {
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 100%;
  min-width: 100%;
}
.cart__section-footer object {
  margin-right: 7px;
}
.cart__items {
  opacity: 1;
  transition: all 0.3s ease;
}
.cart__items--processing,
.cart__items--processing-enter,
.cart__items--processing-enter-done {
  opacity: 0.5;
  pointer-events: none;
}
.cart__items--processing-exit {
  opacity: 1;
}
.cart__order-details-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.cart__order-details-item .mt--20 {
  margin-top: 0;
}
.cart__order-details-item .select {
  min-width: 200px;
}
.cart__order-details-item--start {
  align-items: flex-start;
}
.cart__quantity-info {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 7px 0 10px;
}
.cart__quantity-info--active {
  display: flex;
}
.cart .cart-item {
  border-top: 1px solid #d2d2d2;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px 0;
  position: relative;
}
.cart .cart-item--processing:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
}
.cart .cart-item:last-of-type {
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 30px;
}
.cart .cart-item__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 1;
  margin: 15px 0;
  width: 100%;
}
.cart .cart-item__heading .heading-4 {
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cart .cart-item__remove {
  cursor: pointer;
}
.cart .cart-item__remove img {
  width: 24px;
  height: 24px;
}
.cart .cart-item__image-wrapper {
  width: 30%;
  flex-shrink: 0;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.cart .cart-item__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: 90%;
  max-height: 90%;
}
.cart .cart-item__info {
  width: 65%;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cart .cart-item__property {
  flex-basis: 23%;
  width: 23%;
}
.cart .cart-item__property--quantity,
.cart .cart-item__property--frame {
  flex-basis: 32%;
}
.cart .cart-item__property--quantity .input-number__value {
  max-width: 60px;
}
.cart .cart-item__property--quantity,
.cart .cart-item__property--subtotal,
.cart .cart-item__property--size {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}
.cart .cart-item__property--quantity span,
.cart .cart-item__property--subtotal span,
.cart .cart-item__property--size span {
  margin-bottom: 10px;
}
.cart .cart-item__property--size > div {
  margin-top: 0;
  min-width: 80%;
}
.cart .cart-item__property--subtotal {
  flex-basis: 45%;
}
.cart .payment-providers {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.cart .payment-providers img {
  max-height: 28px;
}
.cart__klarna {
  padding: 0 15px;
  display: block;
}
@media screen and (min-width: 992px) {
  .cart__klarna {
    padding: 0;
  }
}
.cart__klarna::part(osm-container) {
  margin-bottom: 16px;
  border: none;
  border-top: 1px solid #d2d2d2;
  padding: 16px 0 0;
}
.cart__klarna::part(osm-message),
.cart__klarna::part(osm-cta),
.cart__klarna::part(osm-legal) {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
}
.cart__klarna::part(osm-message),
.cart__klarna::part(osm-cta) {
  font-size: 14px;
  line-height: 20px;
}
.cart__klarna::part(osm-cta) {
  margin-left: 4px;
}
.cart__klarna::part(osm-legal) {
  font-size: 12px;
  line-height: 16px;
}
.cart__klarna::part(osm-message) {
  font-weight: 600;
}
.cart__upsell {
  display: none;
  padding: 0 16px;
}
.cart__upsell.visible {
  display: block;
}
.cart__upsell .not-visible {
  display: none;
  height: 0;
  width: 0;
  padding: 0;
}
.cart__upsell h3 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 24px;
}
.cart__upsell--items-wrapper {
  margin-top: 24px;
}
.cart__upsell--item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cart__upsell--item .description--wrapper {
  display: flex;
}
.cart__upsell--item .description--wrapper > img,
.cart__upsell--item .description--wrapper > a > img {
  width: 168px;
  height: 168px;
}
.cart__upsell--item .description {
  width: 100%;
  max-width: 341px;
  margin-left: 16px;
}
.cart__upsell--item .description .title {
  font-size: 16px;
  line-height: 24px;
}
.cart__upsell--item .description .price {
  margin-top: 2px;
  color: #616970;
  font-size: 16px;
  line-height: 24px;
}
.cart__upsell--item .description .price.loading {
  content: url('/img/loaders/loader-dark.svg');
  width: 16px;
  height: auto;
}
.cart__upsell--item .description .packing {
  color: #616970;
  font-weight: 600;
}
.cart__upsell--item .description .details {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #424a51;
}
.cart__upsell--item .description .details a {
  color: #1185ed;
}
.cart__upsell--item .description ul {
  padding-top: 16px;
  font-size: 14px;
  line-height: 20px;
  list-style: none;
}
.cart__upsell--item .description ul li {
  margin-top: 8px;
}
.cart__upsell--item .description ul li img {
  margin-right: 12px;
}
.cart__upsell--item button {
  margin-top: 32px;
  height: 40px;
  width: 100%;
  align-self: flex-end;
}
.cart__upsell--item button > img {
  width: 20px;
  height: auto;
  margin-top: -2px;
}
.cart__upsell--item button.button--processing {
  background-image: url('/img/loaders/loader-blue.svg');
  background-position: center;
  height: 40px;
}
.cart__upsell--item button.button--inactive img {
  content: url('/img/abtest/rl2114/icon_cart_add_white.svg');
}
@media (min-width: 1025px) {
  .cart__upsell {
    padding: 0 30px;
  }
  .cart__upsell h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .cart__upsell--items-wrapper {
    margin-top: 32px;
  }
  .cart__upsell--item {
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 48px;
  }
  .cart__upsell--item .description h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .cart__upsell--item .price {
    margin-top: 0;
    color: #424a51;
  }
  .cart__upsell--item .price .title {
    text-align: right;
  }
  .cart__upsell--item .price strong {
    color: #10111a;
    font-size: 28px;
    line-height: 32px;
  }
  .cart__upsell--item .price strong.loading {
    content: url('/img/loaders/loader-dark.svg');
    width: 32px;
    height: auto;
    margin-top: 8px;
    margin-left: 2px;
  }
  .cart__upsell--item .price .packing {
    color: #10111a;
    font-weight: 600;
  }
  .cart__upsell--item .price .details {
    margin: 12px 0;
  }
  .cart__upsell--item > button {
    height: 40px;
    width: 140px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
  }
}
body.drawer-opened {
  overflow: hidden !important;
}
@media (min-width: 1024px) {
  body.drawer-opened {
    padding-right: var(--scrollBarWidth);
  }
}
.cart-drawer__item {
  display: flex;
  gap: 16px;
}
.cart-drawer__image-wrapper {
  position: relative;
  width: 106px;
}
.cart-drawer__image-wrapper--accessory {
  display: flex;
  align-items: center;
  background-color: #f5f4f9;
  aspect-ratio: 0.71428571;
}
.cart-drawer__image-wrapper::before,
.cart-drawer__image-wrapper::after {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cart-drawer__image-wrapper::before {
  z-index: 2;
}
.cart-drawer__image-wrapper::after {
  z-index: 1;
}
.cart-drawer__image-wrapper--horizontal.cart-drawer__image-wrapper--64::before {
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_h_1.png');
}
.cart-drawer__image-wrapper--horizontal.cart-drawer__image-wrapper--128::before {
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_h_1.png');
}
.cart-drawer__image-wrapper--horizontal.cart-drawer__image-wrapper--256::before {
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_h_2.png');
}
.cart-drawer__image-wrapper--horizontal.cart-drawer__image-wrapper--512::before {
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_h_1.png');
}
.cart-drawer__image-wrapper--vertical.cart-drawer__image-wrapper--64::before {
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_1.png');
}
.cart-drawer__image-wrapper--vertical.cart-drawer__image-wrapper--128::before {
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_1.png');
}
.cart-drawer__image-wrapper--vertical.cart-drawer__image-wrapper--256::before {
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_2.png');
}
.cart-drawer__image-wrapper--vertical.cart-drawer__image-wrapper--512::before {
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_1.png');
}
.cart-drawer__image-wrapper--horizontal.cart-drawer__image-wrapper--gloss::after {
  background-image: url('/img/visualisation/canvas/gloss/gloss_h.png');
}
.cart-drawer__image-wrapper--vertical.cart-drawer__image-wrapper--gloss::after {
  background-image: url('/img/visualisation/canvas/gloss/gloss_v.png');
}
.cart-drawer__image {
  width: 106px;
  aspect-ratio: 0.71428571;
}
.cart-drawer__image--horizontal {
  aspect-ratio: 1.4;
}
.cart-drawer__image--frame {
  width: calc(106px * 0.9);
  margin: 5.5%;
}
.cart-drawer__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.cart-drawer__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.cart-drawer__name.skeleton {
  height: 28px;
  width: 100px;
}
@keyframes pulse {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -135% 0;
  }
}
.cart-drawer .skeleton {
  background: linear-gradient(-90deg, #d8dde1, #eceff4 50%, #d8dde1);
  background-size: 400% 400%;
  animation: pulse 1.2s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer__price-wrapper {
  display: flex;
  gap: 4px;
  align-items: baseline;
  height: 28px;
}
.cart-drawer__price-wrapper--loading {
  opacity: 0.5;
}
.cart-drawer__price {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.cart-drawer__price--discounted {
  color: #e61e39;
}
.cart-drawer__price--regular {
  color: #424a51;
  text-decoration: line-through;
  font-size: 16px;
  line-height: normal;
}
.cart-drawer__price.skeleton {
  height: 40px;
  width: 150px;
}
.cart-drawer__per-item {
  font-size: 14px;
  line-height: 20px;
  color: #424a51;
}
.cart-drawer__lowest-price {
  color: #424a51;
  font-size: 14px;
  line-height: 20px;
}
.cart-drawer__warning {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #424a51;
}
.cart-drawer__warning-icon {
  margin-top: 1px;
}
.cart-item-options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.cart-item-options__frame {
  position: relative;
  height: 100%;
}
.cart-item-options__frame--0 {
  left: 0;
}
.cart-item-options__frame--64 {
  left: -100%;
}
.cart-item-options__frame--128 {
  left: -200%;
}
.cart-item-options__frame--256 {
  left: -300%;
}
.cart-item-options__frame--512 {
  left: -400%;
}
.cart-item-options__label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin: 16px 0 4px;
}
@media screen and (min-width: 1024px) {
  .cart-item-options__label {
    margin: 24px 0 4px;
  }
}
.cart-item-options__save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cart-item-options-skeleton {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.cart-item-options-skeleton__label {
  height: 14px;
  margin: 28px 0 6px;
  width: 110px;
}
.cart-item-options-skeleton__quantity {
  height: 32px;
  width: 120px;
}
.cart-item-options-skeleton__picker {
  height: 40px;
  width: 215px;
}
.pills-picker {
  display: flex;
  background-color: #eceff4;
  border-radius: 54px;
  width: fit-content;
  position: relative;
  transition: width 0.2s ease-in-out;
}
.pills-picker__glider {
  border: 2px solid #d8dde1;
  border-radius: 54px;
  position: absolute;
  height: 100%;
  background-color: #ffffff;
  display: block;
  z-index: 0;
  transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
  animation: fadeIn 0.2s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: auto;
}
.pills-picker--transparent {
  background-color: #ffffff;
}
.pills-picker--transparent__glider {
  border: none;
  background-color: #ebf8ff;
}
.pills-picker__tooltip {
  display: flex;
  padding: 8px;
  align-items: center;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  max-width: 190px;
  transform: translate(-50%, 10%);
}
.pills-picker__tooltip::before {
  box-shadow: unset !important;
  left: 50% !important;
}
.option-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  position: relative;
  color: #424a51;
  padding: 8px 16px;
  cursor: pointer;
  border: 2px solid transparent;
  z-index: 1;
  white-space: nowrap;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}
.option-label:hover {
  color: #1185ed;
}
.option-label--active {
  color: #1185ed;
  transition: 0.2s ease-in-out;
}
.option-label--loading {
  pointer-events: none;
}
.option-label__skeleton {
  top: -100%;
  position: relative;
  border-radius: 12px;
}
.option-label--disabled {
  color: #8d9ba1;
  cursor: default;
  pointer-events: none;
}
.option-label__radio {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}
.option-label__wrapper {
  display: inline;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.option-label__badge {
  padding: 2px 8px;
  background-color: #4cc863;
  border-radius: 12px;
  position: absolute;
  z-index: 9;
  color: #ffffff;
  text-align: center;
  top: -6px;
  left: 75%;
  font-size: 12px;
  line-height: 20px;
}
.option-label__description {
  margin-left: 8px;
  display: none;
}
.option-label__description--active {
  display: inline;
  animation: fadeIn 0.3s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.circle-image-picker__options {
  display: flex;
  gap: 8px;
}
.circle-image-option {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.circle-image-option:hover .circle-image-option__tooltip {
  visibility: visible;
  opacity: 1;
}
.circle-image-option__image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: solid 1px #8d9ba1;
}
.circle-image-option__image-wrapper:hover {
  border-color: #1185ed;
}
.circle-image-option__image-wrapper--disabled {
  opacity: 0.3;
  cursor: default;
}
.circle-image-option__image-wrapper--checked {
  border: 2px solid #1185ed !important;
}
.circle-image-option__hidden-input {
  display: none;
}
.circle-image-option__tooltip {
  font-size: 12px;
  line-height: 16px;
  border-radius: 4px;
  padding: 4px;
  text-align: center;
  text-transform: capitalize;
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  background: #ffffff;
  z-index: 1;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.2));
  bottom: 64px;
  left: 50%;
  transform: translate(-50%, 68%);
  visibility: hidden;
  white-space: nowrap;
}
.circle-image-option__tooltip::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transform-origin: center center;
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
}
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quantity-selector__button {
  cursor: pointer;
  border: 1px solid #ccd1d7;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-selector__button:hover {
  color: #1185ed;
}
.quantity-selector__button:disabled {
  color: #8d9ba1;
  cursor: default;
}
.quantity-selector__value {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  width: 2ch;
  text-align: center;
}
.drawer {
  position: fixed;
  z-index: 10000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  opacity: 0;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0, 0, 0.1, 1), opacity 0.25s cubic-bezier(0, 0, 0.1, 1);
  max-height: 80vh;
}
@supports (height: 100dvh) {
  .drawer {
    max-height: 80dvh;
  }
}
@media screen and (min-width: 1024px) {
  .drawer {
    top: 0;
    height: 100%;
    width: 440px;
    max-height: unset;
    border-radius: 0;
    bottom: unset;
    margin-right: 0;
    transform: translateX(440px);
  }
}
.drawer--opened {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .drawer--opened {
    transform: translateX(20px);
    margin-right: 20px;
    width: 440px;
  }
}
.drawer__box {
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}
.drawer__header {
  display: flex;
  position: sticky;
  justify-content: space-between;
  padding: 32px 16px;
  z-index: 100;
  top: 0;
  background-color: #ffffff;
}
.drawer__header--scrolled {
  box-shadow: 0px 2px 15px rgba(16, 17, 26, 0.14);
}
@media screen and (min-width: 1024px) {
  .drawer__header {
    padding: 32px;
    margin: 0;
  }
}
.drawer__close {
  cursor: pointer;
}
.drawer__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.drawer__title-icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.drawer__title-text {
  width: 100%;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  line-height: 24px;
}
.drawer__content {
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .drawer__content {
    padding: 32px;
  }
}
.drawer__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
}
.drawer__backdrop--opened {
  opacity: 0.5;
  pointer-events: auto;
}
.drawer__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  justify-content: center;
  padding: 32px 16px;
}
@media screen and (min-width: 1024px) {
  .drawer__footer {
    padding: 32px 32px 48px;
  }
}
.dc-popup {
  max-height: 90vh;
}
@supports (height: 100dvh) {
  .dc-popup {
    max-height: 90dvh;
  }
}
@media (min-width: 1024px) {
  .dc-popup {
    max-width: 480px;
  }
}
.dc-popup button:focus,
.dc-popup a:focus,
.dc-popup [tabindex]:focus {
  outline: 2px solid #1185ed;
  outline-offset: 2px;
}
.dc-popup__title {
  display: flex;
}
.dc-popup__title-icon {
  display: flex;
  margin-right: 8px;
}
.dc-popup__benefits-list li {
  display: flex;
  font-size: 18px;
  line-height: 24px;
}
.dc-popup__benefits-list li:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .dc-popup__benefits-list li {
    font-size: 16px;
    line-height: 24px;
  }
}
.dc-popup__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;
}
.dc-popup__benefits-list-checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: 1px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: translateY(-1px) rotate(45deg);
}
.dc-popup__price {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 12px 0 16px 0;
}
@media (min-width: 1024px) {
  .dc-popup__price {
    margin: 8px 0 24px 0;
  }
}
.dc-popup__price-value {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .dc-popup__price-value {
    font-size: 24px;
    line-height: 24px;
  }
}
.dc-popup__price-info {
  text-align: right;
  font-size: 14px;
  line-height: 16px;
}
.dc-popup__buttons {
  display: flex;
  flex-direction: column;
}
.dc-popup__buttons button {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
}
.dc-popup__buttons button:focus {
  outline: 2px solid #1185ed;
  outline-offset: 2px;
}
.dc-popup__buttons button:first-child {
  margin-bottom: 12px;
}
@media (max-width: 375px), (min-width: 1024px) {
  .dc-popup__buttons {
    width: 100%;
    flex-direction: row-reverse;
  }
  .dc-popup__buttons button:first-child {
    margin-bottom: 0;
    margin-left: 8px;
  }
}
/* Cart page */
.choice-block {
  float: left;
  padding: 52px 64px 0 0;
  width: 324px;
}
.choice-block h2 {
  padding: 0 0 30px;
}
.form2 .row4 {
  line-height: 32px;
  margin: 38px 0 0;
  padding: 18px 0;
  text-align: center;
  width: 396px;
}
.form2 .row4 {
  border-top: 1px solid #d2d2d2;
}
.blue-button2,
.black-button,
.red-button {
  border-radius: 6px;
  cursor: pointer;
  height: 37px;
  line-height: 37px;
}
input.blue-button2,
input.black-button {
  line-height: 31px;
}
.blue-button2 span {
  background: rgba(0, 0, 0, 0) url('/img/bg_arrow_button.png') no-repeat scroll right center;
  display: inline-block;
  padding: 0 20px 0 0;
}
.blue-button:hover,
.gray-button:hover,
.black-button:hover,
.red-button:hover {
  background-position: left bottom;
}
.form2 .blue-button2 {
  width: 154px;
}
.input1 {
  border: 1px solid #d2d2d2;
  border-radius: 7px;
  box-shadow: 1px 1px 0 #b2b2b2 inset, -1px -1px 0 #dedede inset;
  color: #000;
  line-height: 22px;
  padding: 8px 13px;
}
.select2 {
  text-align: left;
}
/* ============================ START CART ================================== */
@media (min-width: 992px) {
  #cart-container .col-md-5 {
    width: 37.666667%;
  }
  #cart-container .col-md-7 {
    width: 62.333333%;
  }
}
.btn--checkout-btn {
  display: block;
  width: 100%;
  margin: 16px auto;
  max-width: none;
}
.show-discount-field {
  text-align: left;
  display: block;
  cursor: pointer !important;
}
.discount-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #d2d2d2;
  float: right;
  margin: 6px 27px 6px 6px;
}
.taxes-included-info {
  display: none;
}
.price-details {
  padding: 24px 0px !important;
}
.price-details-labels span {
  padding: 10px 0 10px 0px;
}
.cart__section--footer {
  text-align: center;
  background: #f5f5f5;
  padding: 10px;
  margin-top: -10px;
  border-top: 1px solid #d2d2d2;
}
.item-in-cart-wrap-box {
  position: relative;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}
.item-in-cart-wrap-box div.d__flex.d__relative {
  border-bottom: 1px solid #d2d2d2;
}
.item-in-cart-wrap-box div.d__flex.d__relative:last-of-type {
  margin-bottom: 30px;
}
.item-in-cart-wrap-box .cart-remove {
  z-index: 9;
  cursor: pointer;
}
.item-in-cart-wrap-box .cart-remove object {
  pointer-events: none;
}
.item-in-cart-wrap-box hr {
  margin: 30px 0;
}
.item-in-cart-wrap-box h1 + hr {
  margin: 30px 0 0;
}
@media (max-width: 400px) {
  .item-in-cart-wrap-box {
    padding: 0;
  }
}
.item-in-cart-box {
  background-color: #ffffff;
  display: block;
  padding: 30px;
  width: 100%;
}
.item-in-cart-box .input-select {
  margin-top: 5px;
}
.checkout-cart-box {
  transition: box-shadow 0.3s ease;
  padding: 0 54px;
  margin: 28px 0;
}
@media (min-width: 992px) {
  .checkout-cart-box {
    margin: 0 0 28px 0;
  }
}
.checkout-cart-box .price-details {
  width: 49%;
}
.shipping-cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0 10px 0px;
}
@media (min-width: 768px) {
  .shipping-cart {
    width: 210px;
  }
}
.shipping-cart-tooltip {
  margin-left: 8px;
  width: 20px;
}
.shipping-cart-tooltip object {
  vertical-align: bottom;
}
.shipping-cart-tooltip .shipping-cart-tooltip-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 11px 10px 8px 10px;
  width: 285px;
}
.shipping-cart-tooltip .shipping-cart-tooltip-content img {
  width: 106px;
}
.shipping-cart-tooltip .shipping-cart-tooltip-content p {
  margin-top: -2px;
  padding: 0 7px 0 5px;
}
.shipping-cart-tooltip .shipping-cart-tooltip-content:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 20px;
}
.shipping-cart-tooltip .tooltip__text {
  left: -101px;
}
.shipping-cart-tooltip .tooltip__text:after {
  left: 100px;
}
.shipping-cart-tooltip .tooltip__icon {
  cursor: pointer;
}
.image-in-cart {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
}
.image-in-cart img {
  width: 100%;
  object-fit: cover;
}
.image-in-cart:not(.image-in-cart--frame) img:not(.cart-item__image-element--accessory) {
  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);
}
.image-in-cart--finish-gloss:after {
  content: '';
  position: absolute;
  background-image: url('/img/visualisation/canvas/gloss/gloss_v.png');
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-in-cart--finish-gloss.image-in-cart--horizontal:after {
  background-image: url('/img/visualisation/canvas/gloss/gloss_h.png');
}
.image-in-cart--frame-64.image-in-cart--vertical img {
  width: 86%;
  margin: 7%;
  vertical-align: middle;
}
.image-in-cart--frame-64.image-in-cart--horizontal img {
  width: 90%;
  margin: 5.5%;
  vertical-align: middle;
}
.image-in-cart--frame-64.image-in-cart--vertical::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_2.png');
}
.image-in-cart--frame-64.image-in-cart--horizontal::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_natural_wood_patterns_h_2.png');
}
.image-in-cart--frame-128.image-in-cart--vertical img {
  width: 86%;
  margin: 7%;
  vertical-align: middle;
}
.image-in-cart--frame-128.image-in-cart--horizontal img {
  width: 90%;
  margin: 5.5%;
  vertical-align: middle;
}
.image-in-cart--frame-128.image-in-cart--vertical::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_2.png');
}
.image-in-cart--frame-128.image-in-cart--horizontal::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_graphites_h_2.png');
}
.image-in-cart--frame-256.image-in-cart--vertical img {
  width: 86%;
  margin: 7%;
  vertical-align: middle;
}
.image-in-cart--frame-256.image-in-cart--horizontal img {
  width: 90%;
  margin: 5.5%;
  vertical-align: middle;
}
.image-in-cart--frame-256.image-in-cart--vertical::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_2.png');
}
.image-in-cart--frame-256.image-in-cart--horizontal::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_white_wood_patterns_h_2.png');
}
.image-in-cart--frame-512.image-in-cart--vertical img {
  width: 86%;
  margin: 7%;
  vertical-align: middle;
}
.image-in-cart--frame-512.image-in-cart--horizontal img {
  width: 90%;
  margin: 5.5%;
  vertical-align: middle;
}
.image-in-cart--frame-512.image-in-cart--vertical::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_2.png');
}
.image-in-cart--frame-512.image-in-cart--horizontal::before {
  content: '';
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url('/img/visualisation/canvas/frames/frames_black_wood_patterns_h_2.png');
}
.cart-item-details-list {
  padding: 5px 0 0;
  margin-left: 0px;
  display: flex;
  flex-wrap: wrap;
}
.cart-item-details-list > div {
  padding: 0;
}
.cart-order-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.cart-order-box.shipping-cart-box {
  border-top: 1px solid #d5d5d5;
}
.cart-order-details-left {
  padding: 24px 0px 24px 0;
}
.cart-order-details-right {
  padding: 12px 62px;
}
.cart-order-details-left > span {
  display: block;
  padding: 8px 0 8px 52px;
}
.cart-order-details-right > span {
  display: block;
  padding: 8px 0 8px;
  float: right;
  clear: right;
}
.cart-order-box.price-box {
  display: flex;
  flex-wrap: wrap;
  padding: 22px 15% 0 52px;
  border-top: 1px solid #d2d2d2;
}
.cart-order-box.price-box span:last-child {
  float: right;
  clear: right;
}
.cart-order-box.price-box > div {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
}
.cart-order-box.price-box .alltaxes {
  display: flex;
  flex-basis: 100%;
  text-align: right;
  margin-bottom: 10px;
  justify-content: flex-end;
}
.approximate-cost {
  position: relative;
  text-align: center;
}
.approximate-cost a {
  margin-top: 12px;
}
.approximate-cost img.pay-cards {
  display: block;
  width: 184px;
  margin: 20px auto;
}
.checkout-button-box {
  margin-top: 22px;
}
.checkout-button-box a {
  width: 180px;
  line-height: 50px;
  height: 50px;
  display: block;
}
.symilarity-cart-box {
  display: inline-block;
  background-color: #ffffff;
  margin-top: 15px;
  margin-bottom: 30px;
  width: 100%;
}
.symilarity-cart-box a:nth-of-type(2) {
  margin: 0 10%;
}
.symilarity-cart-box 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);
  max-height: 265px;
}
.cart-image-wrapper {
  position: relative;
}
.info-box {
  display: block;
  line-height: 35px;
  padding: 12px;
}
.cart-updater-overlay {
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.9);
  position: absolute;
  display: none;
}
#ajax-waiter {
  border-radius: 16px;
  height: 32px;
  width: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background-color: transparent;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
.checkout-box-details {
  margin: 30px 0;
  padding: 20px 43px;
}
.checkout-box-details .shipping-details li {
  line-height: 30px;
  position: relative;
  margin-left: 20px;
}
.checkout-box-details .shipping-details li img {
  margin-right: 10px;
}
.checkout-box-details .shipping-details li:before {
  content: url('/img/check-img.png');
  position: absolute;
  left: -25px;
}
@media (min-width: 992px) {
  .checkout-box-details {
    padding: 20px 43px;
  }
}
.cart-item__outer-container {
  padding: 24px 0;
}
.cart-item__container {
  display: flex;
  gap: 16px;
}
.cart-item__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.cart-item__details--horizontal {
  gap: 24px;
}
.cart-item__image-container {
  width: 140px;
}
.cart-item__image-container--horizontal {
  width: 148px;
}
.cart-item__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 2px;
  grid-column: 2;
}
.cart-item__feature {
  color: #10111a;
  margin-bottom: 12px;
  grid-column: 2;
}
.cart-item__edit {
  color: #1185ed;
  display: flex;
  gap: 2px;
  font-weight: 600;
  cursor: pointer;
  grid-column: 2;
  line-height: 24px;
  align-items: center;
}
.cart-item__price-wrapper {
  display: flex;
  gap: 4px;
  align-items: baseline;
  grid-column: 2;
}
.cart-item__price {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.cart-item__price--discounted {
  color: #e61e39;
}
.cart-item__price--regular {
  color: #424a51;
  text-decoration: line-through;
  font-size: 16px;
  line-height: normal;
}
.cart-item__lowest-price {
  font-size: 14px;
  color: #424a51;
  line-height: 20px;
  grid-column: 2;
}
.cart-item__warning {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #424a51;
  grid-column: 2;
}
.cart-item__warning-icon {
  margin-top: 1px;
}
.cart-item__header {
  display: flex;
  justify-content: space-between;
  grid-column: 2;
  margin-bottom: 2px;
}
.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item__remove-icon {
  pointer-events: none;
  width: 24px;
  height: 24px;
}
.cart-item__info-box {
  border-radius: 4px;
  background-color: #f6f7f8;
  padding: 16px;
  font-size: 14px;
  margin-top: 16px;
  line-height: 20px;
}
.cart-item__info-wrapper {
  display: flex;
  gap: 8px;
}
.cart-item__info-icon-wrapper {
  height: 22px;
  display: flex;
  align-items: center;
}
.cart-item__feature-separator {
  color: #8d9ba1;
  margin: 0 4px;
}
.cart-item__feature-detail {
  white-space: nowrap;
}
.cart-item__image-wrapper--accessory {
  height: 196px;
  display: flex;
  align-items: center;
  background-color: #f5f4f9;
}
.cart-item__image-element--accessory {
  box-shadow: none;
  outline: none;
  object-fit: contain;
}
/* ============================== END CART ================================== */
.cart-discount-box {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  padding: 16px 0;
  margin: 0 0px 8px 0px;
  color: #6e6e6e;
}
.cart-discount-box .discount__toggle {
  color: #1185ed;
  cursor: pointer;
}
.cart-discount-box .discount__toggle:hover {
  text-decoration: underline;
}
.cart-discount-box .discount__form-wrapper {
  margin: 10px 0;
}
.cart-discount-box .discount__form-wrapper--hidden {
  display: none;
}
.cart-discount-box .discount__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-discount-box .discount__input {
  background: #ffffff;
  width: 60%;
}
.cart-discount-box .discount__input:focus,
.cart-discount-box .discount__input:hover,
.cart-discount-box .discount__input:active {
  background: #ffffff;
}
.cart-discount-box .discount__label {
  color: #6e6e6e;
}
.cart-discount-box .discount__button {
  flex-grow: 1;
}
.cart-discount-box .discount__message--no-existing-code {
  color: #000;
}
.cart-discount-box .discount__message--displate-club-voucher {
  margin-top: 15px;
  padding: 15px 15px;
  color: #000;
  display: flex;
  place-items: flex-start;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
}
.cart-discount-box .discount__message--displate-club-voucher object {
  margin: 2px 10px 0 0;
}
.cart-discount-box .discount__info--shipping {
  color: #000;
}
.promo-box {
  font-size: 0.875rem;
  line-height: 20px;
  color: #10111a;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff6eb;
  margin: 0 15px 16px;
}
@media screen and (min-width: 992px) {
  .promo-box {
    margin: 0 0 24px;
  }
}
.promo-box__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.promo-box__countdown {
  font-weight: 600;
  display: inline-block;
}
.promo-box__code {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #10111a;
  padding-left: 0;
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.bought-together {
  display: inline-block;
  background-color: #ffffff;
  margin-top: 15px;
  margin-bottom: 30px;
  width: 100%;
}
.bought-together 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);
  max-height: 265px;
}
.bought-together__heading {
  padding-bottom: 25px;
}
.bought-together__container {
  display: flex;
  align-items: center;
  gap: 10%;
}
.bought-together__tile {
  flex: 1;
}
.edit-profile .popup__wrapper {
  width: 825px;
  max-width: none;
}
.edit-profile .popup__content {
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .edit-profile .popup__content {
    padding-bottom: 30px;
  }
}
.edit-profile:not(.popup--active) .edit-profile__item--active .edit-profile__label {
  visibility: hidden;
}
.edit-profile .edit-profile__item {
  border-bottom: 1px solid #d2d2d2;
  max-height: 65px;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-body .edit-profile .edit-profile__item {
  height: unset;
}
.edit-profile .edit-profile__item--active .edit-profile__label {
  opacity: 1;
  visibility: visible;
}
.edit-profile .edit-profile__item--success {
  background-image: url('/img/onboarding/upload_checkmark.svg');
  background-repeat: no-repeat;
  background-position: right center;
  max-height: 65px;
  cursor: default;
}
.edit-profile .edit-profile__item--profile.edit-profile__item--active {
  max-height: 340px;
}
.edit-profile .edit-profile__item--profile.edit-profile__item--active.edit-profile__item--with-error {
  max-height: 360px;
}
.edit-profile .edit-profile__item--cover .cover-image-wrapper {
  position: relative;
}
.mobile-body .edit-profile .edit-profile__item--cover .cover-image-wrapper:after {
  content: none;
}
.edit-profile .edit-profile__item--cover img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.edit-profile .edit-profile__item--cover.edit-profile__item--active {
  max-height: 245px;
}
@media (min-width: 768px) {
  .edit-profile .edit-profile__item--cover.edit-profile__item--active {
    max-height: 300px;
  }
}
.edit-profile .edit-profile__item--cover.edit-profile__item--active.edit-profile__item--with-error {
  max-height: 265px;
}
@media (min-width: 768px) {
  .edit-profile .edit-profile__item--cover.edit-profile__item--active.edit-profile__item--with-error {
    max-height: 320px;
  }
}
.edit-profile .edit-profile__item--description.edit-profile__item--active {
  border-bottom: none;
  max-height: 350px;
}
.mobile-body .edit-profile .edit-profile__item--description.edit-profile__item--active {
  max-height: 540px;
}
@media (min-width: 768px) {
  .edit-profile .edit-profile__item--description.edit-profile__item--active {
    border-bottom: 1px solid #d2d2d2;
    max-height: initial;
    height: inherit;
  }
}
.edit-profile .edit-profile__heading {
  padding-top: 20px;
  cursor: pointer;
}
.edit-profile .edit-profile__heading + .edit-profile__label {
  margin-top: 20px;
}
.edit-profile .edit-profile__label {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.edit-profile .edit-profile__error {
  display: none;
}
.edit-profile .edit-profile__buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-top: 1px solid #d2d2d2;
  min-height: 65px;
}
@media (min-width: 768px) {
  .edit-profile .edit-profile__buttons {
    position: relative;
    padding: 0;
    border-top: none;
    min-height: 50px;
  }
}
.edit-profile .edit-profile__buttons button {
  width: 100%;
}
@media (min-width: 768px) {
  .edit-profile .edit-profile__buttons button {
    width: 35%;
  }
}
.edit-profile .edit-profile__skip {
  margin-left: auto;
}
.edit-profile .edit-profile__save {
  margin-left: 10px;
}
.edit-profile .edit-profile__save--onboarding {
  display: none;
  margin-left: auto;
  max-width: 50%;
}
.edit-profile .edit-profile__form {
  max-width: 400px;
  width: 100%;
  margin: 20px auto 0;
}
.edit-profile .edit-profile__twitch,
.edit-profile .edit-profile__youtube {
  position: relative;
  padding-left: 50px;
  display: flex;
  justify-content: flex-start;
  background-repeat: no-repeat;
}
.edit-profile .edit-profile__twitch input,
.edit-profile .edit-profile__youtube input {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  border: none;
  box-shadow: none;
  outline: 0;
  background: none;
  width: 100%;
}
.edit-profile .edit-profile__youtube {
  background-image: url('/img/onboarding/youtube_icon.svg');
  background-position: 15px center;
}
.edit-profile .edit-profile__twitch {
  background-image: url('/img/onboarding/twitchtv_icon.svg');
  background-position: 17px center;
}
.edit-profile .edit-profile__file {
  display: none;
  cursor: pointer;
}
.edit-profile .edit-profile__button {
  cursor: pointer;
}
.edit-profile .edit-profile__button--avatar {
  position: relative;
}
.edit-profile .edit-profile__button--avatar * {
  pointer-events: none;
}
.edit-profile.edit .edit-profile__button--avatar img,
.edit-profile.edit .edit-profile__item--cover img {
  filter: brightness(0.4);
}
#buy-your-own {
  min-height: 530px;
}
body.byo-body {
  background: #f5f5f5;
}
body.byo-body .checkout__section--sticky {
  background: #ffffff;
}
.checkout .buy-your-own__go-back {
  margin-top: -6px;
}
.buy-your-own .cart {
  margin-top: 40px;
}
.buy-your-own .cart__section--sticky {
  top: 102px;
}
.buy-your-own__title {
  position: absolute;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  top: 10px;
  left: 145px;
  font-size: 14px;
}
.buy-your-own__title:hover {
  text-decoration: none;
}
.buy-your-own__title + div {
  margin-left: auto;
}
.buy-your-own__main {
  margin-top: 40px;
}
.buy-your-own__summary-button {
  cursor: pointer;
  position: relative;
}
.buy-your-own__summary-button:hover,
.buy-your-own__summary-button:hover .button {
  text-decoration: none;
}
.buy-your-own__summary-button:hover .button {
  background: #1185ed;
  cursor: pointer;
}
.buy-your-own__summary-button .button {
  position: absolute;
  left: 19px;
  top: -3px;
}
.buy-your-own__summary-button object,
.buy-your-own__summary-button--disabled {
  pointer-events: none;
}
.buy-your-own__quantity-info {
  margin-left: 3px;
}
.buy-your-own__go-back {
  margin-top: 30px;
  margin-left: -24px;
  width: 150px;
  cursor: pointer;
}
.buy-your-own__go-back:hover,
.buy-your-own__go-back:active {
  text-decoration: none;
}
.buy-your-own__collection-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.buy-your-own__collection-select .select {
  width: 250px;
}
.buy-your-own__collection-select .label {
  margin: 0;
  padding: 0;
  min-width: 100px;
}
.buy-your-own__weight-info {
  background: #1185ed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 62px;
  height: 40px;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 5;
  overflow: hidden;
}
.buy-your-own__weight-info object {
  margin-right: 12px;
}
.buy-your-own .searchbar {
  width: 100%;
  min-width: 300px;
  margin-left: 15px;
  flex-grow: 0;
  position: relative;
}
.buy-your-own .searchbar__input {
  width: 100%;
}
.buy-your-own .searchbar__icon {
  top: 7px;
}
.buy-your-own .searchbar__icon:not(.searchbar__icon--disabled) {
  cursor: pointer;
}
.buy-your-own .searchbar .input-hint--error {
  position: absolute;
  left: 8px;
  right: -10px;
  bottom: -45px;
  text-align: left;
}
.buy-your-own .displate-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
}
.buy-your-own .displate-list .displate-item {
  width: 20%;
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.buy-your-own .displate-list .displate-item--placeholder .displate-item__image-wrapper--inner {
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.buy-your-own .displate-list .displate-item--placeholder .displate-item__title {
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  height: 22px;
  width: 100px;
}
.buy-your-own .displate-list .displate-item--placeholder .displate-item__button {
  background: linear-gradient(-90deg, #e6e6e6 0%, #ececec 50%, #e6e6e6 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
  height: 20px;
  width: 60px;
  pointer-events: none;
}
.buy-your-own .displate-list .displate-item--horizontal .displate-item__image-wrapper--inner {
  position: relative;
  height: 168px;
  width: 234px;
}
.buy-your-own .displate-list .displate-item--horizontal .displate-item__in-cart {
  height: 168px;
  width: 234px;
}
.buy-your-own .displate-list .displate-item--vertical .displate-item__image-wrapper--inner {
  position: relative;
  width: 168px;
  height: 234px;
}
.buy-your-own .displate-list .displate-item--vertical .displate-item__in-cart {
  width: 168px;
  height: 234px;
}
.buy-your-own .displate-list .displate-item__image-wrapper--outer {
  height: 234px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: stretch;
  position: relative;
}
.buy-your-own .displate-list .displate-item__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%;
}
.buy-your-own .displate-list .displate-item__in-cart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.buy-your-own .displate-list .displate-item__in-cart object {
  width: 35px;
  height: 35px;
  margin-left: 5px;
  margin-bottom: 5px;
}
.buy-your-own .displate-list .displate-item__title {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  margin: 10px 0 5px;
  text-align: center;
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.buy-your-own .displate-list .displate-item__button {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  color: #1185ed;
  font-size: 14px;
  cursor: pointer;
}
.byo-popup {
  overflow-x: visible;
  min-width: 500px;
}
.byo-popup__sizes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.byo-popup__size {
  width: 32%;
  max-width: 135px;
  border: 1px solid #d2d2d2;
  position: relative;
  cursor: pointer;
}
.byo-popup__size:after {
  content: '';
  display: 'block';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}
.byo-popup__size--active:after {
  border: 2px solid #1185ed;
}
.byo-popup__size:nth-of-type(1),
.byo-popup__size:nth-of-type(2) {
  margin-right: 2%;
}
.byo-popup__size-heading {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d2d2d2;
}
.byo-popup__size-image {
  width: calc(100% + 2px);
  margin: -1px;
}
.byo-popup__finish {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
}
.byo-popup__finish .input-radio {
  margin-right: 20px;
  width: auto;
}
.byo-popup__finish .input-radio__label {
  text-transform: capitalize;
}
.byo-popup__frames {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.byo-popup__frames .tooltip {
  max-height: none;
}
.byo-popup__frames .tooltip__text {
  width: 120px;
  margin-bottom: 30px;
}
.byo-popup__frame {
  border: 1px solid #d2d2d2;
}
.byo-popup__frame img {
  width: 50px;
  height: 50px;
}
.byo-popup__frame--active {
  border: 2px solid #1185ed;
}
.byo-popup__frame--active img {
  width: 49px;
  height: 49px;
}
.byo-popup__quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
}
.byo-popup__weight-info {
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  padding: 5px;
  border-radius: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}
.byo-popup__weight-info object {
  margin-right: 8px;
  margin-left: 6px;
}
.byo-popup .input-number {
  width: 150px;
}
.byo-popup__label {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
  flex-shrink: 0;
}
.byo-popup__upgrades {
  max-height: 0;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
.byo-popup__upgrades--active {
  max-height: 134px;
  overflow: visible;
}
.byo-popup__upgrades--fade-in-enter {
  max-height: 0;
  overflow: hidden;
}
.byo-popup__upgrades--fade-in-enter-active {
  max-height: 134px;
  overflow: hidden;
  pointer-events: none;
}
.byo-popup__upgrades--fade-in-enter-done {
  max-height: 134px;
  overflow: visible;
}
.byo-popup--loading {
  pointer-events: none;
}
.byo-popup--loading::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(210, 210, 210, 0.3);
}
.tax-data__column {
  flex: 1;
}
.tax-data__grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-gap: 12px 8px;
}
.tax-data__grid .text-bold {
  grid-column: 2;
}
/* ======================= start kanapa najnowsza ====================== */
.landing-plates-row {
  position: relative;
  top: 40px;
  margin: 0 auto;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .landing-plates-row {
    flex-wrap: nowrap;
    top: 50px;
  }
}
.landing-plate {
  display: inline-block;
  position: relative;
  width: 48%;
  height: 185px;
}
@media (min-width: 576px) {
  .landing-plate {
    height: 215px;
    width: 27%;
    margin: 10px 11.5% 0;
  }
}
@media (min-width: 768px) {
  .landing-plate {
    width: 21%;
    height: 270px;
    margin: 0 2% 20px;
  }
}
@media (min-width: 992px) {
  .landing-plate {
    height: 290px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .landing-plate {
    height: 315px;
  }
}
.landing-plate .landing-plate-link {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 85%;
  max-height: 260px;
  width: 100%;
  background-image: url('/img/loaders/loader-dark.svg');
  background-position: center center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
.landing-plate .landing-plate-link .landing-plate-image-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-plate .landing-plate-link .landing-plate-image-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.landing-plate .landing-plate-link .landing-plate-image-inner:hover .plate-hover {
  display: flex;
}
.landing-plate .landing-plate-link .landing-plate-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;
}
.landing-plate .landing-plate-link .landing-plate-image-inner .item-in-cart span {
  margin-top: 6px;
  color: #ffffff;
}
.landing-plate .landing-plate-link .landing-plate-image-inner.horizontal {
  max-width: 140px;
}
.landing-plate .landing-plate-link .landing-plate-image-inner.horizontal .landing-plate-image,
.landing-plate .landing-plate-link .landing-plate-image-inner.horizontal .item-in-cart {
  width: 100%;
  max-width: 235px;
}
@media (min-width: 576px) {
  .landing-plate .landing-plate-link .landing-plate-image-inner.horizontal {
    max-width: 100%;
  }
}
.landing-plate .landing-plate-link .landing-plate-image-inner.vertical {
  max-height: 235px;
}
.landing-plate .landing-plate-link .landing-plate-image-inner.vertical .landing-plate-image,
.landing-plate .landing-plate-link .landing-plate-image-inner.vertical .item-in-cart {
  max-width: 102px;
}
@media (min-width: 576px) {
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .landing-plate-image,
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .item-in-cart {
    max-width: 118px;
  }
}
@media (min-width: 768px) {
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .landing-plate-image,
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .item-in-cart {
    max-width: 148px;
  }
}
@media (min-width: 1200px) {
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .landing-plate-image,
  .landing-plate .landing-plate-link .landing-plate-image-inner.vertical .item-in-cart {
    max-width: 168px;
  }
}
.landing-plate .landing-plate-link .landing-plate-image-inner .landing-plate-image.loaded {
  border-radius: 2%;
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.landing-plate .star-wish-wrapper-hp-feed.wish-feed--desktop {
  top: 8px;
  right: 8px;
  padding: 0;
  z-index: 999;
  width: auto;
  height: auto;
  display: none;
}
.landing-plate img.loaded + .star-wish-wrapper-hp-feed.wish-feed--desktop {
  display: block;
}
.landing-plate .star-wishlist-item {
  content: url('/img/icons/wishlist_star_collection.svg');
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
  background: none;
}
.landing-plate .star-wishlist-item.active {
  content: url('/img/icons/wishlist_starred_collection.svg');
  background: none;
}
.landing-plate .small-star-wishlist {
  right: 0;
  width: 20px;
  height: 20px;
}
.landing-plate .landing-plate-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-plate .landing-plate-description span:first-of-type {
  display: inline-block;
  max-width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.landing-plate smallcurrency {
  font-size: 16px;
}
.landing-plate .landing-plate-author {
  margin-top: -10px;
}
.container.landing-plates-row {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .container.landing-plates-row {
    justify-content: space-between;
  }
}
/* ======================= end kanapa najnowsza ====================== */
.collection-header-view {
  background: #f5f5f5;
  box-shadow: inset 0 50px 100px rgba(0, 0, 0, 0.03), inset 0 -50px 100px rgba(0, 0, 0, 0.12);
  width: 110vw;
  position: relative;
  left: -5vw;
  padding: 0 5vw;
}
.collection-header-view > .container {
  background-image: url('/img/collection/collection_background.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  padding: 20px 0 50px 0;
  min-height: 700px;
}
@media (min-width: 768px) {
  .collection-header-view > .container {
    padding: 20px 0;
    min-height: 550px;
  }
}
@media (min-width: 992px) {
  .collection-header-view > .container {
    min-height: 664px;
  }
}
.collection-header-view.no-background {
  box-shadow: none;
  background: none;
}
.collection-header-view.no-background .container {
  background-image: none;
  min-height: initial;
}
@media (min-width: 992px) {
  .collection-header-view {
    background-size: initial;
  }
}
.collection-scroll-down {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  margin-bottom: 1%;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .collection-scroll-down {
    margin-bottom: 8%;
  }
}
.collection-scroll-down:hover {
  transform: translate(-50%, 5px);
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.4));
}
.collection-breadcrumbs {
  color: #6e6e6e;
  padding-left: 15px;
}
.collection-breadcrumbs a {
  color: inherit;
}
.collection-breadcrumbs .separator {
  display: inline-block;
  margin: 0 3px;
}
.collection-data {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 10px;
  flex-wrap: wrap;
  color: #000;
  font-size: 16px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .collection-data {
    flex-wrap: nowrap;
  }
}
.collection-data h1 {
  flex-basis: 100%;
  text-align: left !important;
}
@media (min-width: 576px) {
  .collection-data h1 {
    flex-basis: auto;
  }
}
.collection-data div {
  margin-bottom: 7px;
}
.collection-data div a {
  color: #000;
}
.collection-data > span {
  margin: 0 7px 7px 7px;
  color: #00efd2;
}
.collection-data > span:first-of-type {
  display: none;
}
@media (min-width: 576px) {
  .collection-data > span:first-of-type {
    display: inline;
  }
}
.collection-share-wrapper {
  margin-left: auto;
  margin-right: 7%;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.collection-share-wrapper h2,
.collection-share-wrapper p {
  font-size: 16px;
  font-weight: normal;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.collection-share-wrapper .tooltip-text a {
  color: #1185ed;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.collection-share-wrapper .tooltip-text a:hover {
  text-decoration: underline;
}
.collection-share-wrapper object {
  margin: 0 0 0 5px;
}
.collection-share-wrapper .tooltip-text {
  display: none;
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
  position: absolute;
  transition: opacity 0.3s;
  width: 185px;
  padding: 10px;
  border-radius: 5px;
  top: 26px;
  right: -10px;
  font-size: 11px;
  z-index: 1000;
  -webkit-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.1);
}
.collection-share-wrapper .tooltip-text span {
  padding-top: 10px;
  display: block;
}
.collection-share-wrapper .tooltip-text.tooltip-active {
  visibility: visible;
  opacity: 1;
  top: 25px;
}
@media (max-width: 1129px) {
  .collection-share-wrapper .tooltip-text {
    right: 0;
    left: auto;
    top: 100%;
    margin-top: 5px;
  }
}
.collection-share-wrapper .collection-share-modal {
  left: auto;
  top: -40px;
  right: -20px;
  transform: none;
}
@media (min-width: 1200px) {
  .collection-share-wrapper .collection-share-modal {
    min-width: 430px;
  }
}
.collection-description {
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  display: none;
}
@media (min-width: 575px) {
  .collection-description {
    display: block;
  }
}
.collection-description .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .collection-description .container {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.collection-description .container h2 {
  margin-right: auto;
  flex-basis: 100%;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .collection-description .container h2 {
    flex-basis: auto;
    margin: 0;
    margin-right: auto;
  }
}
.collection-description .container div {
  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;
}
@media (min-width: 768px) {
  .collection-description .container div {
    margin-left: 25px;
  }
}
@media (min-width: 992px) {
  .collection-description .container div {
    margin-left: 65px;
  }
}
.collection-description .container p {
  margin-left: 15px;
}
.collection-more {
  margin-top: 50px;
}
.author-name-text {
  word-break: break-all;
}
.author-name-text:hover {
  color: #cacbcb;
}
.imageLink > img {
  width: 400px;
  height: 400px;
}
li.polaroid {
  cursor: pointer;
}
.collection-quality {
  display: none;
  flex-basis: 100%;
  position: relative;
  height: 300px;
  margin-bottom: 70px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .collection-quality {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .collection-quality {
    height: 370px;
  }
}
@media (min-width: 1200px) {
  .collection-quality {
    height: 400px;
  }
}
.collection-quality h2 {
  text-transform: none;
  text-align: left;
  max-width: 1270px;
  width: 100%;
  margin: 30px auto 0 auto;
  padding-left: 20px;
}
.collection-quality h2 span {
  color: #00efd2;
}
.collection-quality-outer {
  background: #f5f5f5;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -50vw;
  width: 100vw;
  text-align: center;
}
.collection-quality-inner {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  overflow-x: scroll;
  overflow-y: hidden;
}
@media (min-width: 768px) {
  .collection-quality-inner {
    overflow-x: visible;
  }
}
@media (min-width: 992px) {
  .collection-quality-inner {
    overflow-y: visible;
  }
}
.collection-quality-inner:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -50px;
  right: -50px;
  top: 0;
  box-shadow: inset 0 -60px 100px rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}
.collection-quality-inner .collection-quality-image {
  display: block;
  height: 270px;
  padding-left: 50px;
  margin-bottom: -10px;
  z-index: 3;
}
@media (min-width: 768px) {
  .collection-quality-inner .collection-quality-image {
    max-width: 100%;
    height: auto;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .collection-quality-inner .collection-quality-image {
    display: none;
  }
}
.collection-quality-inner .quality-images {
  display: none;
  justify-content: space-around;
  align-items: flex-end;
  position: relative;
  flex-wrap: wrap;
  border-bottom: 1px solid #d2d2d2;
  z-index: 3;
  width: 100%;
}
@media (min-width: 992px) {
  .collection-quality-inner .quality-images {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .collection-quality-inner .quality-images {
    width: 104%;
    margin-left: -2%;
    margin-top: -30px;
    justify-content: space-between;
  }
}
.collection-quality-inner .quality-images .tooltip__icon {
  font-size: 0;
}
.collection-quality-inner .quality-images .tooltip__icon img {
  width: 16px;
}
.collection-quality-inner .quality-images__item {
  flex-basis: 20%;
  text-align: center;
  position: relative;
  justify-content: center;
}
.collection-quality-inner .quality-images__image {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.collection-quality-inner .quality-images__text {
  display: block;
  white-space: nowrap;
  margin: 0 8px;
  z-index: 10;
}
.collection-quality-inner .quality-images__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 3px 5px 2px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  position: absolute;
  transition: all 1s;
  top: 100%;
  right: 0;
  opacity: 1;
}
.collection-quality-inner .quality-images__info img {
  width: 18px;
}
.collection-quality-inner .quality-images__info.fadeInRight {
  opacity: 0;
  right: -120px;
  transition: all 1s ease;
}
.collection-quality-inner .quality-images__info--first-one {
  top: 7%;
  right: -4%;
}
.collection-quality-inner .quality-images__info--first-two {
  top: 24%;
  right: -4%;
}
.collection-quality-inner .quality-images__info--first-three {
  top: 41%;
  right: -4%;
}
.collection-quality-inner .quality-images__info--first-four {
  top: 58%;
  right: -4%;
}
.collection-quality-inner .quality-images__info--first-five {
  top: 75%;
  right: -4%;
}
.collection-quality-inner .quality-images__info--second-one {
  top: 15%;
  right: -14%;
}
.collection-quality-inner .quality-images__info--second-two {
  top: 34%;
  right: -13%;
}
.collection-quality-inner .quality-images__info--second-three {
  top: 54%;
  right: -12%;
}
.collection-quality-inner .quality-images__info--second-four {
  top: 73%;
  right: -25%;
}
.collection-quality-inner .quality-images__info--third-one {
  right: -14%;
  top: 40%;
}
.collection-quality-inner .quality-images__info--third-one.fadeInRight {
  right: -150px;
}
@media screen and (max-width: 768px) {
  .collection-quality-inner .quality-images__info--third-one {
    right: 0;
  }
}
.collection-quality-inner .quality-images__info--fourth-one {
  right: 0;
  top: 86%;
}
.collection-quality-inner .quality-images .patent {
  position: absolute;
  top: -7px;
  right: 0;
}
@media (min-width: 768px) {
  .collection-quality-inner .quality-images .patent {
    top: 0;
  }
}
.collection-quality-inner .quality-images .patent object {
  height: 45px;
  width: 45px;
}
.collection-quality-inner .quality-images .patent .text--tiny {
  line-height: 14px;
  text-align: center;
}
.pagination-brands-wrapper {
  padding-top: 20px;
  background: #ffffff;
  padding-bottom: 30px;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.pagination-brands-wrapper .search-pagination {
  max-width: 1240px;
  padding: 15px 15px 0;
  margin: 0 auto;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0 !important;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#cboxOverlay {
  background: url('/img/jquery-colorbox/overlay.png') repeat 0 0;
  opacity: 0.9;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px 0;
}
#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px 0;
}
#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px -29px;
}
#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px -29px;
}
#cboxMiddleLeft {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') left top repeat-y;
}
#cboxMiddleRight {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') right top repeat-y;
}
#cboxTopCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 0 repeat-x;
}
#cboxBottomCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 -29px repeat-x;
}
#cboxContent {
  background: #ffffff;
  overflow: hidden;
}
.cboxIframe {
  background: #ffffff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #d2d2d2;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #d2d2d2;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #d2d2d2;
}
#cboxLoadingOverlay {
  background: url('/img/jquery-colorbox/loading_background.png') no-repeat center center;
}
#cboxLoadingGraphic {
  background: url('/img/jquery-colorbox/loading.gif') no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}
/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
}
.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;
}
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url('/img/jquery-colorbox/overlay.png') repeat 0 0;
  opacity: 0.9;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px 0;
}
#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px 0;
}
#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px -29px;
}
#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px -29px;
}
#cboxMiddleLeft {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') left top repeat-y;
}
#cboxMiddleRight {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') right top repeat-y;
}
#cboxTopCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 0 repeat-x;
}
#cboxBottomCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 -29px repeat-x;
}
#cboxContent {
  background: #ffffff;
  overflow: hidden;
}
.cboxIframe {
  background: #ffffff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #d2d2d2;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #d2d2d2;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #d2d2d2;
}
#cboxLoadingOverlay {
  background: url('/img/jquery-colorbox/loading_background.png') no-repeat center center;
}
#cboxLoadingGraphic {
  background: url('/img/jquery-colorbox/loading.gif') no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}
/********* 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 ***********/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url('/img/jquery-colorbox/overlay.png') repeat 0 0;
  opacity: 0.9;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px 0;
}
#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px 0;
}
#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -101px -29px;
}
#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -130px -29px;
}
#cboxMiddleLeft {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') left top repeat-y;
}
#cboxMiddleRight {
  width: 21px;
  background: url('/img/jquery-colorbox/controls.png') right top repeat-y;
}
#cboxTopCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 0 repeat-x;
}
#cboxBottomCenter {
  height: 21px;
  background: url('/img/jquery-colorbox/border.png') 0 -29px repeat-x;
}
#cboxContent {
  background: #ffffff;
  overflow: hidden;
}
.cboxIframe {
  background: #ffffff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #d2d2d2;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #d2d2d2;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #d2d2d2;
}
#cboxLoadingOverlay {
  background: url('/img/jquery-colorbox/loading_background.png') no-repeat center center;
}
#cboxLoadingGraphic {
  background: url('/img/jquery-colorbox/loading.gif') no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('/img/jquery-colorbox/controls.png') no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}
/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
}
#abouts-container {
  margin-top: 36px;
  display: flex;
}
@media (max-width: 768px) {
  #abouts-container {
    flex-direction: column-reverse;
  }
}
#leftcol {
  padding: 0;
  margin-right: 5%;
  width: 25%;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  #leftcol {
    width: 100%;
    margin-right: 0;
  }
}
#rightcol {
  border: 1px solid #d2d2d2;
  margin-bottom: 36px;
  padding: 0;
  width: 70%;
}
@media (max-width: 768px) {
  #rightcol {
    width: 100%;
  }
}
#rightcol.rightcol--no-border {
  border: none;
}
#rightcol .table--bordered {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
#rightcol .table--bordered th,
#rightcol .table--bordered td {
  padding: 5px;
  border: 1px solid black;
}
#rightcol .about-faq__table {
  font-size: 14px;
  overflow-x: auto;
}
.subnav {
  border: 1px solid #d2d2d2;
  padding: 0;
}
.subnav hr {
  margin: 0;
}
.subnav div,
.copyright div,
.subnav ul,
.copyright ul {
  display: block;
  line-height: 35px;
  margin: 0;
  padding: 0;
}
.subnav div a,
.copyright div a,
.subnav ul a,
.copyright ul a {
  display: block;
  padding: 10px 18px;
}
.subnav div a:hover,
.copyright div a:hover,
.subnav ul a:hover,
.copyright ul a:hover {
  background: #1185ed none repeat scroll 0 0;
  color: #ffffff;
}
.subnav div a.active,
.copyright div a.active,
#leftcol > .subnav > ul > li > a.active,
.copyright .subnav > ul a.active {
  background: #1185ed none repeat scroll 0 0;
  color: #ffffff;
}
.subnav div a.active:hover,
.subnav ul a.active:hover {
  text-decoration: none;
}
.copyright {
  border-top: 1px solid #f5f5f5;
  position: relative;
  padding: 16px 0 0;
}
.tips-for-artists {
  border: 1px solid #d2d2d2;
}
/* About-us */
.about__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about__container img {
  max-height: 34px;
}
.about__item {
  width: 33%;
  flex-basis: 33%;
}
.about__item object {
  height: 70px;
}
.about__item--title span {
  color: #000;
}
.about__image {
  width: 100%;
}
.about__image--full {
  margin-left: -30px;
  width: calc(100% + 60px);
}
.about__image--logo {
  width: 165px;
}
.about__shipping {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about__shipping {
    flex-direction: row;
  }
}
.about__ue-wrapper {
  border: 1px solid #d2d2d2;
}
.about__additional-links {
  padding: 25px;
  color: #1185ed;
  background-color: #f5f5f5;
}
.about__additional-links p:not(:first-child) {
  margin-top: 16px;
}
/* ======================== 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 *****/
/**** START HYPE BLOCK ON POLAROID 280 *****/
.tile-collection .tile-top-info div:last-child {
  border-bottom: none;
}
.tile-collection .hype-block {
  padding: 12px 0;
  text-align: center;
  display: block;
  margin: 0 12px;
  border-bottom: 1px solid #d2d2d2;
}
/* hype counter */
.tile-collection .hype-block span.hype-cunter {
  background: #ffffff;
  border-top: 1px solid #bab9b6;
  border-left: 1px solid #bab9b6;
  border-bottom: 1px solid #e8e7e3;
  border-right: 1px solid #e8e7e3;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  line-height: 16px;
  display: inline-block;
  height: 19px;
  padding: 1px 10px 3px 10px;
  position: relative;
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' on;
  -webkit-font-feature-settings: 'lnum' on;
  -moz-font-feature-settings: 'lnum' on;
}
.tile-collection .hype-block img {
  margin-right: 8px;
}
/* left side arrow on hype (like) counter */
.tile-collection .arrow {
  background: url(/img/comment_arrow.png) no-repeat;
  width: 6px;
  height: 9px;
  position: absolute;
  z-index: 5;
  left: -6px;
  top: 5px;
}
/**** END HYPE BLOCK ON POLAROID 280 *****/
.tile-collection .description {
  text-align: left;
  padding: 12px 0;
  margin: 0 12px;
  display: block;
  border-bottom: 1px solid #d2d2d2;
  word-break: break-all;
}
/***** START AUTHOR & COMMENTS ON POLAROID 280 ******/
.tile-collection .author img,
.tile-collection .respond img,
.tile-collection .comments img {
  float: left;
}
.tile-collection .author {
  color: #d2d2d2;
  padding: 12px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid #d2d2d2;
}
.tile-collection .author .txtb {
  display: table-cell;
  height: 30px;
  padding-left: 12px;
  vertical-align: middle;
  width: 220px;
}
.tile-collection .author a:hover {
  color: #cacbcb !important;
}
/***** END AUTHOR ON POLAROID 280 ******/
/**** STARt COMMENTS & RESPOND COMMENT *****/
.tile-collection .comments {
  background: #f5f5f5;
}
.tile-collection .comments ol li {
  padding: 12px 12px 12px 12px;
  border-top: 1px solid #d2d2d2;
  margin: 0;
}
.tile-collection .comments ol li.comment .txtb {
  display: table-cell;
  vertical-align: middle;
  padding-left: 12px;
  word-break: break-all;
  width: 220px;
}
.tile-collection .txtb {
  color: #d2d2d2;
  line-height: 15px;
  padding-left: 42px;
}
.tile-collection .respond {
  padding: 12px;
  position: relative;
  background: #f5f5f5;
  border-top: 1px solid #d2d2d2;
}
.tile-collection .respond .arrow {
  left: 47px;
  top: 22px;
}
.tile-collection .respond .input {
  background: #ffffff;
  border: 1px solid #d2d2d2;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 215px;
  height: 30px;
  float: left;
  padding: 6px 10px;
  margin: 0 5px 0 0;
  color: #333;
  line-height: 14px;
  position: relative;
}
.tile-collection .respond .arrow {
  left: 47px;
  top: 22px;
}
.tile-collection .respond .blue-button {
  width: 50px;
  height: 30px;
  float: left;
  margin: 0;
  line-height: 28px;
  text-shadow: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
}
.tile-collection .comments a:hover {
  color: #cacbcb !important;
}
.comment-admin-edit {
  width: 10px;
  height: 10px;
  background: #ff0000 none repeat scroll 0% 0%;
  float: right;
  right: 2px;
  top: 2px;
  position: absolute;
  cursor: pointer;
}
/**** END COMMENTS & RESPOND COMMENT *****/
/* ================== START COLOR PALLETE FOR BROWSE COLOR ================== */
.color-button {
  height: 40px !important;
  width: 40px !important;
  margin: 0px 10px 10px 0 !important;
  border: none;
  border-radius: 0;
  display: inline-block !important;
  background-size: cover;
}
/* ==================== END COLOR PALLETE FOR BROWSE COLOR ================== */
#back-to-top {
  background: url(/img/main_page_lift/scroll-to-top.png) 0 0;
  display: block;
  height: 45px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  width: 45px;
  z-index: 10000;
}
#back-to-top:hover {
  background: url(/img/main_page_lift/scroll-to-top.png) 0 0;
}
#back-to-top.visible {
  visibility: visible;
}
.statusbar_new#similarity {
  background-color: transparent;
  box-shadow: none;
}
.statusbar_new .collection-name h3 {
  text-align: center;
}
/*============================= END TILES - kafelki małe ==================================*/
/* ================== 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 ======================== */
.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;
  }
}
.gradient-overlay:after,
.user-profile.public .container.artist:after,
.user-profile.public .container.brandshop:after,
.user-profile.public .container.influencer:after,
.public .artist .user-profile-header:after,
.public .brandshop .user-profile-header:after,
.public .influencer .user-profile-header:after {
  content: '';
  display: block;
  width: 100%;
  height: calc(100% - 2px);
  position: absolute;
  top: 2px;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 10;
}
.user-profile {
  z-index: 2;
  position: relative;
}
.user-profile.public .container {
  max-width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.mobile-body .user-profile.public .container {
  margin: 0;
  pointer-events: none;
}
.mobile-body .user-profile.public .container.artist:hover,
.mobile-body .user-profile.public .container.brandshop:hover,
.mobile-body .user-profile.public .container.influencer:hover {
  display: none;
}
.user-profile.public .container.artist .user-profile-header-bg,
.user-profile.public .container.brandshop .user-profile-header-bg,
.user-profile.public .container.influencer .user-profile-header-bg {
  width: 120%;
  height: 120%;
  display: block;
  position: absolute;
  filter: blur(20px);
  top: -10%;
  left: -10%;
  background-size: cover;
  opacity: 0.8;
  background-position: center center;
}
.mobile-body .user-profile.public .container.artist .user-profile-header-bg,
.mobile-body .user-profile.public .container.brandshop .user-profile-header-bg,
.mobile-body .user-profile.public .container.influencer .user-profile-header-bg {
  display: none;
}
.user-profile-basic {
  margin: 0 auto 7px;
  align-self: flex-end;
  text-align: center;
  z-index: 20;
  position: relative;
}
.user-profile-basic .profile_link:active,
.user-profile-basic .profile_link:hover {
  text-decoration: none;
}
.user-profile-basic h2,
.user-profile-basic .heading-5 {
  line-break: anywhere;
  color: #ffffff;
}
.user .user-profile-basic h2,
.user .user-profile-basic .heading-5,
.private .user-profile-basic h2,
.private .user-profile-basic .heading-5,
.public .container:not(.artist):not(.influencer):not(.brandshop) .user-profile-basic h2,
.public .container:not(.artist):not(.influencer):not(.brandshop) .user-profile-basic .heading-5 {
  color: #000;
}
.user-profile-header.hover-active:hover .user-cover-change-img,
.container:hover .user-cover-change-img {
  opacity: 1;
}
.mobile-body .user-profile-header.hover-active:hover .user-cover-change-img,
.mobile-body .container:hover .user-cover-change-img {
  display: none;
}
.user-profile-header {
  display: flex;
  align-items: flex-end;
  padding: 25px 30px;
  justify-content: space-between;
  position: relative;
  background: #f5f5f5;
  max-width: 1240px;
  margin: auto;
  z-index: 15;
  background-position: center center;
}
.user-profile-header .create-profile {
  border: 0;
  background: none;
  color: #1185ed;
  font-weight: 600;
}
.mobile-body .user-profile-header * {
  pointer-events: none;
}
.public .artist .user-profile-header,
.public .brandshop .user-profile-header,
.public .influencer .user-profile-header {
  display: flex;
  align-items: flex-end;
  padding: 25px 30px;
  height: 400px;
  justify-content: space-between;
  position: relative;
  background-size: 100% auto;
  background-repeat: no-repeat;
  max-width: 1240px;
  margin: auto;
  background-size: cover;
  background-position: center center;
}
.mobile-body .public .artist .user-profile-header,
.mobile-body .public .brandshop .user-profile-header,
.mobile-body .public .influencer .user-profile-header {
  height: 285px;
  background-size: cover;
}
.public .artist .user-profile-header .user-profile-content,
.public .brandshop .user-profile-header .user-profile-content,
.public .influencer .user-profile-header .user-profile-content {
  position: absolute;
  top: 50%;
}
.public .artist .user-profile-header--hover .user-cover-change-img,
.public .brandshop .user-profile-header--hover .user-cover-change-img,
.public .influencer .user-profile-header--hover .user-cover-change-img {
  opacity: 1;
}
.public .artist .user-profile-header .user-profile-avatar,
.public .brandshop .user-profile-header .user-profile-avatar,
.public .influencer .user-profile-header .user-profile-avatar {
  position: relative;
  background: #ffffff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 0;
  margin: 0 auto 33px;
  overflow: hidden;
  border: 7px solid #ffffff;
  z-index: 20;
}
.public .artist .user-profile-header .user-profile-avatar .lazy-load-image-background,
.public .brandshop .user-profile-header .user-profile-avatar .lazy-load-image-background,
.public .influencer .user-profile-header .user-profile-avatar .lazy-load-image-background {
  height: 100%;
  width: 100%;
}
.public .artist .user-profile-header .user-profile-avatar .lazy-load-image-background::before,
.public .brandshop .user-profile-header .user-profile-avatar .lazy-load-image-background::before,
.public .influencer .user-profile-header .user-profile-avatar .lazy-load-image-background::before {
  top: 0;
  left: 0;
}
.mobile-body .public .artist .user-profile-header .user-profile-avatar,
.mobile-body .public .brandshop .user-profile-header .user-profile-avatar,
.mobile-body .public .influencer .user-profile-header .user-profile-avatar {
  width: 120px;
  height: 120px;
  border-width: 5px;
  margin-bottom: 16px;
}
.public .artist .user-profile-header .user-profile-avatar img,
.public .brandshop .user-profile-header .user-profile-avatar img,
.public .influencer .user-profile-header .user-profile-avatar img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.public .artist .user-profile-header .user-profile-avatar.error-border,
.public .brandshop .user-profile-header .user-profile-avatar.error-border,
.public .influencer .user-profile-header .user-profile-avatar.error-border {
  border-color: #ff1744;
}
.public .artist .user-profile-header #avatar_image_input,
.public .brandshop .user-profile-header #avatar_image_input,
.public .influencer .user-profile-header #avatar_image_input,
.public .artist .user-profile-header #cover_image_input,
.public .brandshop .user-profile-header #cover_image_input,
.public .influencer .user-profile-header #cover_image_input {
  display: none;
}
.public .artist .user-profile-header.error-border,
.public .brandshop .user-profile-header.error-border,
.public .influencer .user-profile-header.error-border {
  border: 0;
}
.public .artist .user-profile-header.error-border:before,
.public .brandshop .user-profile-header.error-border:before,
.public .influencer .user-profile-header.error-border:before {
  box-shadow: inset 0 0 0px 6px #ff1744;
}
.public .artist .user-profile-header .error-upload-img,
.public .brandshop .user-profile-header .error-upload-img,
.public .influencer .user-profile-header .error-upload-img {
  margin-top: -35px;
  color: #ff1744;
  position: absolute;
  text-align: center;
  width: 100%;
  display: none;
}
.public .artist .user-profile-header .create-profile,
.public .brandshop .user-profile-header .create-profile,
.public .influencer .user-profile-header .create-profile {
  border: 0;
  background: none;
  color: #1185ed;
}
.public .artist .user-profile-header .user-profile-change-img,
.public .brandshop .user-profile-header .user-profile-change-img,
.public .influencer .user-profile-header .user-profile-change-img,
.public .artist .user-profile-header .user-cover-change-img,
.public .brandshop .user-profile-header .user-cover-change-img,
.public .influencer .user-profile-header .user-cover-change-img {
  position: absolute;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s;
  background-image: url('/img/icons/icon_photo_cam_wht.svg');
  background-size: 38px;
  background-position: center center;
  padding: 0;
  margin: 0;
}
.public .artist .user-profile-header .user-profile-change-img--active,
.public .brandshop .user-profile-header .user-profile-change-img--active,
.public .influencer .user-profile-header .user-profile-change-img--active,
.public .artist .user-profile-header .user-cover-change-img--active,
.public .brandshop .user-profile-header .user-cover-change-img--active,
.public .influencer .user-profile-header .user-cover-change-img--active {
  opacity: 1;
}
.public .artist .user-profile-header .user-cover-change-img,
.public .brandshop .user-profile-header .user-cover-change-img,
.public .influencer .user-profile-header .user-cover-change-img {
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding-left: 46px;
  text-align: left;
  background-position-x: 12px;
  line-height: 38px;
  padding-top: 3px;
  padding-right: 13px;
  background-size: 25px;
  border: 0;
  z-index: 20;
  width: auto;
}
.public .artist .user-profile-header .user-profile-change-img,
.public .brandshop .user-profile-header .user-profile-change-img,
.public .influencer .user-profile-header .user-profile-change-img {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.public .artist .user-profile-header .user-profile-promobox,
.public .brandshop .user-profile-header .user-profile-promobox,
.public .influencer .user-profile-header .user-profile-promobox {
  width: 303px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
}
.public .artist .user-profile-header .user-profile-promobox h4,
.public .brandshop .user-profile-header .user-profile-promobox h4,
.public .influencer .user-profile-header .user-profile-promobox h4 {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 3px;
}
.public .artist .user-profile-header .user-profile-promobox .promoted,
.public .brandshop .user-profile-header .user-profile-promobox .promoted,
.public .influencer .user-profile-header .user-profile-promobox .promoted {
  width: 86px;
}
.public .artist .user-profile-header .user-profile-promobox .promoted img,
.public .brandshop .user-profile-header .user-profile-promobox .promoted img,
.public .influencer .user-profile-header .user-profile-promobox .promoted img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 992px) {
  .public .artist .user-profile-header .user-profile-promobox,
  .public .brandshop .user-profile-header .user-profile-promobox,
  .public .influencer .user-profile-header .user-profile-promobox {
    display: none;
  }
}
.button-wrap {
  display: inline-flex;
  position: relative;
  z-index: 20;
  top: -21px;
  margin-bottom: -21px;
}
.button-wrap button {
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 39px;
}
.button-wrap button.twitch {
  background-color: #6441a4;
  background-image: url('/img/icons/icon_twitchtv_wht.svg');
}
.button-wrap button.twitch:hover {
  background-color: #7d5abe;
}
.button-wrap button.youtube {
  background-color: #f00;
  background-image: url('/img/icons/icon_youtube_wht.svg');
}
.button-wrap button.youtube:hover {
  background-color: #ff3333;
}
.user-profile-description {
  position: relative;
  align-content: space-between;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.user-profile-description .description-text {
  border: 1px solid transparent;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .user-profile-description .description-text {
    max-width: 65%;
  }
}
.user-profile-description .user-profile-description-text {
  text-align: center;
  align-self: center;
  word-wrap: break-word;
}
.user-profile-description .user-profile-description-buttons {
  position: relative;
  display: flex;
  flex-basis: 100%;
}
.user-profile-description .user-profile-description-buttons button {
  width: 150px;
}
.user-profile-description.with-buttons .user-profile-description-text {
  padding: 15px;
  padding-top: 17px;
}
.user-profile-description.with-buttons .user-profile-description-buttons {
  margin-top: 10px;
}
.user-profile-description .error-upload-img,
.user-profile-description .error-description {
  margin-top: 10px;
  color: #ff1744;
  display: none;
  position: absolute;
  bottom: 5px;
}
.user-profile-description .user-description-change-cancel,
.user-profile-description .user-description-change-edit,
.user-profile-description .user-description-change-save {
  position: absolute;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  cursor: pointer;
}
.user-profile-description .user-description-change-cancel:focus,
.user-profile-description .user-description-change-edit:focus,
.user-profile-description .user-description-change-save:focus {
  outline: 0;
}
.user-profile-description .user-description-change-cancel {
  right: 15px;
  bottom: 6px;
  display: none;
  transition: none;
}
.user-profile-description .user-description-change-save {
  right: 114px;
  bottom: 6px;
  padding-left: 30px;
  background-image: url('/img/icons/check-save.png');
  display: none;
  transition: none;
}
.user-profile-description .user-description-change-edit {
  padding-left: 17px;
  background-image: url(/img/icons/icon_edit.svg);
  border: 0;
  background-color: transparent;
  box-shadow: none;
  min-height: 22px;
}
.profile-filters {
  display: flex;
  margin: 45px 0 0;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.profile-filters .filters {
  width: 100%;
  margin: 10px 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .profile-filters .filters {
    width: 31%;
    flex-wrap: wrap;
  }
}
.profile-filters .filters .profile__filter {
  width: 75%;
}
@media (min-width: 768px) {
  .profile-filters .filters .profile__filter {
    width: 305px;
  }
}
.error-border {
  border: 1px solid #ff1744;
}
.profile-notification {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 10% 30px;
  position: relative;
  width: 100%;
}
.profile-notification h1 {
  flex-basis: 100%;
  line-height: initial;
  text-transform: none;
}
.profile-notification h1 + p {
  flex-basis: 100%;
  margin: 35px 0;
}
.profile-notification h1 + h4 {
  flex-basis: 100%;
  margin: 35px 0;
}
@media (max-width: 991px) {
  .action-buttons {
    width: 80px;
  }
}
.browse-displate-list-container .wookmark-inactive {
  flex-basis: 100%;
  text-align: left;
  text-transform: none;
}
.browse-displate-list-container .wookmark-inactive span {
  color: #00efd2;
}
.magnets {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .magnets {
    padding: 0;
  }
}
.collections-filters-wrapper {
  text-align: right;
}
.collections-filters-wrapper .header-standard {
  float: left;
  text-align: left;
  padding: 0;
  line-height: 1;
  text-transform: none;
  text-align: center;
}
.collections-filters-wrapper .header-standard span {
  color: #00efd2;
}
.collections-filters,
.collections-filters-category {
  position: relative;
  display: inline-block;
  cursor: pointer;
  min-width: 185px;
}
.filters-wrapper-responsive {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.filters-wrapper-responsive > div {
  display: flex;
}
@media (min-width: 992px) {
  .filters-wrapper-responsive {
    align-items: center;
  }
}
.filters-wrapper-responsive h1 {
  width: 100%;
}
@media (min-width: 992px) {
  .filters-wrapper-responsive h1 {
    width: initial;
  }
}
.filters-wrapper-responsive .collections-filters-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .filters-wrapper-responsive .collections-filters-container {
    margin-top: 0;
  }
}
.filters-wrapper-responsive .collections-filters-container .input-select {
  vertical-align: top;
}
.filters-wrapper-responsive .collections-filters-container p {
  text-align: left;
  margin-right: 10px;
  display: block;
}
.filters-wrapper-responsive .collections-filters-container--double {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0;
}
.filters-wrapper-responsive .collections-filters-container--double p {
  display: block;
}
@media (min-width: 1200px) {
  .filters-wrapper-responsive .collections-filters-container--double p {
    display: inline-block;
  }
}
.ajaxLoader {
  display: block;
  background: url(/images/ajax-loader.gif) no-repeat center;
  width: 100%;
  height: 150px;
  margin: 0 auto;
}
/* Hide all the children of the 'loading' element */
.ajaxLoader * {
  display: none;
}
.survey__wrapper {
  max-width: 800px;
  text-align: center;
  border-radius: 4px;
  margin: 20px auto;
}
@media (min-width: 768px) {
  .survey__wrapper {
    margin: 50px auto;
  }
}
.survey__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.survey__rating {
  display: flex;
  justify-content: center;
  align-items: center;
}
.survey__rating-item {
  height: 36px;
  width: 50px;
  margin: 0 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  font-size: 16px;
}
.survey__rating-item--active {
  border: 3px solid #1185ed;
}
@media (min-width: 576px) {
  .survey__rating-item {
    height: 50px;
    font-size: 22px;
    margin: 0 4px;
  }
}
.survey__textarea {
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .survey__textarea {
    max-width: 65%;
  }
}
.survey__submit {
  width: 100%;
}
@media (min-width: 576px) {
  .survey__submit {
    max-width: 65%;
  }
}
.survey__comment {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.survey__comment--active {
  max-height: 300px;
}
/* ===== POPUP WARNING ===== */
.gallery_name_err {
  color: #ff1744;
}
/* ==== START style przeniesione z interiorow i innych kanap === */
.dynamic-elements img {
  display: inline-block;
  margin: auto;
}
.dynamic-elements img:hover {
  opacity: 0.5;
}
.dynamic-elements {
  position: absolute;
  text-align: justify;
}
.dynamic-elements:after {
  content: '';
  width: 100%;
  display: inline-block;
  line-height: 0;
}
.statusbar_new {
  background: #ffffff;
  margin-top: 34px;
  margin-bottom: 21px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 1px;
}
.statusbar_header {
  padding-top: 12px;
  padding-bottom: 12px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 1140px;
  max-width: 75%;
}
.statusbar_header > h1 {
  text-align: center;
}
.fof-desktop {
  box-shadow: none;
  margin-bottom: 36px;
}
.sar-left {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 38px;
  height: inherit;
}
.sar-right {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 38px;
  height: inherit;
}
.flex-content {
  text-align: center;
}
/* ==== END style przeniesione z interiorow i innych kanap === */
/* START LANDING B2b */
.b2b-landing h3 {
  padding: 50px 0;
}
.b2b-landing form label {
  float: right;
  line-height: 31px;
}
.b2b-landing form .row {
  margin-top: 11px;
}
.b2b-landing form .row:first-child {
  margin-top: 0px;
}
.b2b-landing form .muted-text {
  font-style: italic;
  color: #d2d2d2;
}
.b2b-landing form input,
.b2b-landing form select {
  width: 210px;
}
.b2b-landing form input.wide {
  width: 210px;
}
.b2b-landing form .displate-btn {
  width: 210px;
  padding: 7px;
}
.landing-b2b.container-fluid .container {
  position: relative;
}
.landing-b2b.container-fluid h1 {
  position: absolute;
  z-index: 999;
  top: -81px;
  color: #ffffff;
}
.landing-b2b.container-fluid {
  background: #ffffff;
}
.b2b-landing-right-img {
  width: 73%;
  margin-left: 10%;
}
/* STOP LANDING B2b */
ul.menu-brands-list {
  margin-top: 6px;
}
ul.menu-brands-list li {
  float: left;
  display: block;
  margin-right: 13px;
  height: 244px;
}
ul.menu-brands-list-1 li {
  margin-right: 10px;
}
ul.menu-brands-list-1 li:hover img {
  filter: brightness(90%);
}
ul.menu-brands-list-3 li {
  width: 401px;
}
ul.menu-brands-list-2 li {
  width: 610px;
}
ul.menu-brands-list li:last-child {
  margin-right: 0;
}
div.cart-buying-not-possible-box {
  background-color: #f6ece1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border-radius: 4px;
  margin: 0 15px 28px 15px;
}
div.product-cant-buy-message {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .landing-b2b.container-fluid h1 {
    top: -151px;
  }
}
/* ============ Bootstrap offset ============= */
.validation-error {
  outline: 2px solid red;
}
/* Popup*/
.gallery-form {
  /*width: 600px;*/
  float: left;
  padding: 40px;
  color: #000;
}
.gallery-form .row {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.gallery-form .row2 {
  margin-bottom: 20px;
}
.gallery-form label {
  width: 230px;
  float: left;
  margin-right: 20px;
  text-align: right;
  line-height: 38px;
}
.gallery-form .input2 {
  background: #e5e5e5;
  width: 275px;
}
.gallery-form .blue-button2 {
  width: 103px;
  float: left;
}
.gallery-form .choose {
  float: left;
  height: 38px;
  color: #000;
  line-height: 38px;
}
.gallery-form .choose label {
  width: 130px;
  float: left;
  margin: 0;
  text-align: left;
  line-height: 38px;
}
.gallery-form .choose input {
  margin-right: 15px;
}
.gallery-form .error {
  float: left;
  margin-left: 20px;
}
/*ORDER SUCCESSFUL*/
#order-success-h2 {
  margin-top: 30px;
  padding-bottom: 25px;
}
#order-success-img {
  width: 90%;
  margin-bottom: 15px;
  margin-top: 5px;
  max-width: 400px;
}
#order-success-text-p {
  width: 85%;
  margin: auto;
  line-height: 20px;
}
#order-success-n {
  color: #1185ed;
}
/*END OF ORDER SUCCESSFUL*/
/*navigation - centered anchors*/
.visible-lg div a {
  margin-right: 9px;
}
@-moz-document url-prefix() {
  .visible-lg div a {
    margin-right: 23px;
  }
}
/*logged:*/
.menu-one-pos-backgr a {
  margin-right: 20px;
}
.search-box-logged {
  margin-left: 30px;
}
/*end navigation centered anchors*/
.order-history {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 526px);
}
@media (min-width: 992px) {
  .order-history {
    min-height: calc(100vh - 592px);
  }
}
@media (min-width: 1136px) {
  .order-history {
    min-height: calc(100vh - 573px);
  }
}
@media (min-width: 992px) {
  .order-history {
    min-height: calc(100vh - 592px);
  }
}
@media (min-width: 1136px) {
  .order-history {
    min-height: calc(100vh - 573px);
  }
}
.order-history .row {
  width: 100%;
}
.order-history .order-info {
  text-align: center;
  margin: 30px 30px 10px;
}
.order-history .order-info .order-id {
  margin: 5px;
}
.order-history .order-item--limited {
  background: #ffffff url('/img/patterns/limited_pattern.svg') center no-repeat;
  background-size: cover;
  border: 1px solid #d2d2d2;
}
.order-history table {
  width: 100%;
}
.order-history table .header {
  background: #1185ed;
  border: 1px solid #35a9cc;
  text-align: center;
  color: white;
}
.order-history table .header td {
  padding: 13px 5px;
}
.order-history table .order-item td {
  text-align: center;
  vertical-align: middle;
  padding: 6px;
}
.order-history table .order-item td .no-image {
  width: 100px;
  height: 100px;
  background: #a2a2a2;
  display: inline-block;
}
.order-history .summary {
  text-align: right;
}
.order-history .summary div {
  padding-right: 40px;
}
.order-history .total {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  margin: 10px 3px;
  padding: 10px 40px 10px 5px;
  text-align: right;
}
.empty-order-history {
  margin: 40px 0;
}
.empty-order-history h1 {
  text-align: center;
  margin: 10px;
}
.empty-order-history h2 {
  text-align: center;
}
.thank-you-page {
  display: flex;
  flex-wrap: wrap;
  padding: 5% 0;
  justify-content: center;
}
.thank-you-page h1 {
  flex-basis: 100%;
}
.thank-you-page__box {
  flex-basis: 80%;
}
@media (min-width: 992px) {
  .thank-you-page__box {
    flex-basis: 24%;
  }
}
.thank-you-page__box img {
  max-height: 46px;
}
.contest .baner-section {
  margin-bottom: 20px;
}
.contest .baner-section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.contest .btn-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contest .contest-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.contest .contest-list .browse-list-item {
  margin: 0 auto 0 0;
}
@media (max-width: 668px) {
  .contest .btn-section {
    flex-direction: column;
    align-items: center;
  }
}
.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);
  }
}
.about--widget {
  position: relative;
}
.about--widget .btn-create {
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  background-color: #1185ed;
}
.about--widget .btn-create.header {
  margin-bottom: 50px;
}
.about--widget .about--header {
  display: flex;
  align-items: center;
  padding: 30px;
  position: relative;
  justify-content: flex-end;
}
.about--widget .about--header .about--header--info,
.about--widget .about--header .about--header--img {
  width: 45%;
}
.about--widget .about--header .about--header--img {
  z-index: 99;
}
.about--widget .about--header .about--header--img img {
  width: 100%;
  height: auto;
}
.about--widget .about--header .about--header__description {
  margin: 20px 0 30px;
}
.about--widget .about--header .criss--small {
  position: absolute;
  height: 80%;
  width: 70px;
  left: 0;
  top: 0;
}
.about--widget .about--header .criss--small img {
  width: 100%;
  height: 100%;
}
.about--widget .about--header .criss--big {
  position: absolute;
  height: 50%;
  width: 120px;
  right: 0;
  bottom: -20%;
}
.about--widget .about--header .criss--big img {
  width: 100%;
  height: 100%;
}
.about--widget .about--instruction {
  padding: 0 30px 30px;
  background-color: #f4f4f4;
}
.about--widget .about--instruction .about--step {
  padding: 30px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 10px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.about--widget .about--instruction .about--step__text {
  width: 45%;
}
.about--widget .about--instruction .about--step__text .img--arrow {
  width: 30px;
}
.about--widget .about--instruction .about--step__text h4 {
  margin: 10px 0;
  text-align: left;
}
.about--widget .about--instruction .about--step__text p,
.about--widget .about--instruction .about--step__text li {
  padding-left: 42px;
}
.about--widget .about--instruction .about--step__text li {
  padding-left: 53px;
  position: relative;
}
.about--widget .about--instruction .about--step__text li:before {
  content: '\2022';
  position: absolute;
  margin-left: -8px;
}
.about--widget .about--instruction .about--step__text span.numer--step {
  font-variant-numeric: oldstyle-nums;
  color: #000;
}
.about--widget .about--instruction .about--step__img {
  width: 45%;
  text-align: center;
}
.about--widget .about--instruction .about--step__img img.custom-img {
  width: 250px;
}
.about--widget .about--instruction .about--step__img img {
  max-width: 100%;
  height: auto;
}
.about--widget .about--pay-info {
  padding: 0 30px 30px;
}
.about--widget .about--pay-info .about--pay--details {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about--widget .about--pay-info img {
  width: 90px;
  margin: 0 20px;
}
.about--widget .about--trick {
  margin-top: 30px;
  padding: 0 30px 30px;
  display: flex;
  justify-content: space-between;
}
.about--widget .about--trick .text-mark {
  color: #00efd2;
  margin: 10px 0;
}
.about--widget .about--trick .about--trick--info {
  width: 35%;
}
.about--widget .about--trick .about--trick--img {
  position: relative;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.about--widget .about--trick .about--trick--img img {
  width: 100%;
  height: auto;
}
.about--widget .about--trick .about--trick--img .criss--footer {
  position: absolute;
  top: 60%;
  z-index: -1;
}
.about--widget .about--trick .about--trick--img .criss--footer img {
  width: 150px;
}
.about--widget .text--info {
  padding: 30px 0;
}
.about--widget .text--info span {
  color: #00efd2;
}
.about--widget .fix--section {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(235, 235, 235, 0.85);
  z-index: 3;
}
.about--widget .fix--section p {
  margin-left: 20px;
}
@media all and (max-width: 768px) {
  .about--widget .about--header {
    flex-direction: column;
  }
  .about--widget .about--header .about--header--info {
    width: 80%;
    text-align: center;
    margin-bottom: 20px;
  }
  .about--widget .about--header .criss--small {
    height: 50%;
  }
  .about--widget .about--instruction .about--step {
    flex-direction: column;
  }
  .about--widget .about--instruction .about--step__text {
    width: 100%;
    margin-bottom: 20px;
  }
  .about--widget .about--trick {
    flex-direction: column;
  }
  .about--widget .about--trick .about--trick--info {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 475px) {
  .about--widget .about--header .criss--small,
  .about--widget .about--header .criss--big {
    display: none;
  }
  .about--widget .about--header .about--header--info,
  .about--widget .about--header .about--header--img {
    width: 100%;
  }
  .about--widget .about--instruction .about--step__img,
  .about--widget .about--trick .about--trick--img {
    width: 100%;
  }
  .about--widget .text--info {
    padding: 0;
  }
  .about--widget .about--pay-info {
    padding-bottom: 0;
  }
  .about--widget .about--trick {
    margin-top: 0;
  }
}
.categorySelector {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d2d2d2;
  width: 100%;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 5px;
}
.categorySelector__item {
  flex-basis: 50%;
  padding: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.categorySelector__item.disabled {
  color: #d2d2d2;
}
.categorySelector__item input {
  margin: 0;
}
.categorySelector__item input:checked + label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.categorySelector__item label {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  margin-left: 5px;
}
/* ===================== 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 ======================== */
.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;
}
.calculator {
  flex-grow: 1;
  margin-right: 0;
}
@media (min-width: 992px) {
  .calculator {
    margin-right: 30px;
  }
}
.calculator .tooltipn__icon object {
  margin-bottom: -2px;
}
.calculator__wrapper {
  background: #f5f5f5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
  margin-top: auto;
  position: relative;
}
@media (min-width: 768px) {
  .calculator__wrapper {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .calculator__wrapper {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .calculator__wrapper {
    padding: 40px;
  }
}
.calculator__text {
  max-width: 350px;
}
.calculator__text strong {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.calculator__text--m {
  width: 130%;
  margin-left: -15%;
}
.calculator__item {
  flex-basis: 23%;
  position: relative;
}
.calculator__item > img {
  max-width: 100%;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .calculator__item > img {
    position: absolute;
    bottom: 110%;
    transform: translateX(-50%);
  }
}
.calculator__item--labels {
  flex-basis: 0;
  align-self: stretch;
  padding: 0;
}
@media (min-width: 768px) {
  .calculator__item--labels {
    flex-basis: 27%;
    align-self: auto;
    padding: auto;
  }
}
.calculator__item--labels .tooltip__icon img {
  margin-top: -3px;
}
.calculator__item--labels .tooltip__icon:hover img {
  content: url('/img/icons/question-mark-blue.png');
}
.calculator__item--labels .tooltip__text {
  width: 220px;
  white-space: normal;
}
.calculator__item--m {
  flex-basis: 33%;
  margin-top: 150px;
  margin-right: 0;
}
.calculator__item--m img {
  height: 100px;
}
@media (min-width: 375px) {
  .calculator__item--m {
    margin-top: 110px;
  }
}
@media (min-width: 768px) {
  .calculator__item--m {
    flex-basis: 19%;
    margin-top: 0;
    margin-right: 30px;
  }
  .calculator__item--m img {
    height: auto;
  }
}
.calculator__item--l {
  flex-basis: 33%;
  z-index: 3;
  white-space: nowrap;
  margin-right: 0;
}
.calculator__item--l img {
  height: 145px;
  max-width: 100px;
}
@media (min-width: 768px) {
  .calculator__item--l {
    flex-basis: 26%;
    margin-right: 30px;
  }
  .calculator__item--l img {
    height: auto;
    max-width: 100%;
  }
}
.calculator__item--xl {
  flex-basis: 33%;
  z-index: 2;
  white-space: nowrap;
}
.calculator__item--xl img {
  height: 200px;
  max-width: 140px;
  position: absolute;
  bottom: 110%;
  right: -6px;
}
@media (min-width: 576px) {
  .calculator__item--xl img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .calculator__item--xl img {
    height: auto;
    bottom: 110%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .calculator__item--xl {
    flex-basis: 35%;
  }
}
.calculator__label--heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
}
@media (min-width: 768px) {
  .calculator__label--heading {
    position: relative;
    width: auto;
  }
}
.calculator__label--commission {
  display: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .calculator__label--commission {
    display: block;
  }
}
.calculator__label--price {
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .calculator__label--price {
    display: block;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .calculator__label--price {
    padding-bottom: 15px;
  }
}
.calculator__range-input {
  position: relative;
}
.calculator__bubble {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
}
.calculator__price-m {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 14px;
  margin: 3px auto;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.calculator__price-m::-ms-expand {
  display: none;
}
.calculator__placeholder {
  position: relative;
  height: 35px;
  white-space: nowrap;
  margin-top: 10px;
}
.calculator__placeholder img {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-top: -5px;
  z-index: 5;
}
.calculator__placeholder p {
  position: absolute;
  left: 0;
  top: 2px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.calculator__placeholder ~ .show-xs:not(.calculator__price-m),
.calculator__placeholder + p {
  margin-top: 0;
  padding-top: 0;
}
.calculator .show-xs {
  display: block;
}
@media (min-width: 768px) {
  .calculator .show-xs {
    display: none;
  }
}
.calculator .hide-xs {
  display: none;
}
@media (min-width: 768px) {
  .calculator .hide-xs {
    display: block;
  }
}
.calculator .show-s {
  display: block;
}
@media (min-width: 992px) {
  .calculator .show-s {
    display: none;
  }
}
.calculator .hide-s {
  display: none;
}
@media (min-width: 992px) {
  .calculator .hide-s {
    display: block;
  }
}
.share-and-earn {
  background: #f5f5f5;
  flex-basis: 100%;
  padding: 20px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .share-and-earn {
    padding: 40px 35px 25px;
  }
}
@media (min-width: 992px) {
  .share-and-earn {
    flex-basis: 25%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .share-and-earn {
    padding: 33px 35px 25px;
  }
}
.share-and-earn .social__icons {
  display: flex;
  justify-content: space-between;
}
.share-and-earn .social__icons img {
  height: 40px;
}
/* ============ 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;
}
.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;
}
.takedown-request__wrapper {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
.takedown-request__wrapper--rodo {
  background-color: #f5f5f5;
  padding: 15px;
  text-align: initial;
  font-size: 12px;
  line-height: 20px;
}
.takedown-request__phone {
  display: flex;
  justify-content: space-between;
}
.takedown-request__dialing-code {
  width: 30%;
  min-width: 0;
}
@media (min-width: 992px) {
  .takedown-request__dialing-code {
    width: 20%;
  }
}
.takedown-request__phone-number {
  min-width: 0;
}
.takedown-request__file-upload {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.takedown-request__file-upload button {
  flex-grow: 0;
}
@media (min-width: 992px) {
  .takedown-request__file-upload button {
    margin-right: 30px;
    width: 265px;
  }
}
.takedown-request__file-upload p {
  color: #6e6e6e;
}
@media (min-width: 992px) {
  .takedown-request__file-upload p {
    width: 300px;
  }
}
.takedown-request__file-info {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.takedown-request__file-remove {
  width: 24px;
  height: 24px;
  border: none;
  background: url('/img/icons/close-icon.png');
  background-size: contain;
}
.takedown-request__file-error {
  flex-basis: 100%;
}
.takedown-request__submit {
  width: 100%;
}
@media (min-width: 992px) {
  .takedown-request__submit {
    width: 265px;
  }
}
.takedown-request__urls {
  min-height: 84px;
  overflow: hidden;
}
.takedown-request .tag ~ .takedown-request__urls-input {
  margin-left: 10px;
}
.takedown-request__urls-input {
  display: inline-block;
  border: none;
  outline: 0;
  width: 300px;
  min-width: 30px;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
}
.takedown-request__urls-input:focus::placeholder {
  color: transparent;
}
.takedown-request__image {
  max-width: 80px;
}
.takedown-request__landing {
  padding: 70px 0;
  max-width: 345px;
}
@media (min-width: 768px) {
  .takedown-request__landing {
    padding: 130px 0;
    max-width: 800px;
  }
}
.takedown-request__paragraph {
  margin-left: auto;
  margin-right: auto;
  max-width: 345px;
}
@media (min-width: 768px) {
  .takedown-request__paragraph {
    max-width: 600px;
  }
}
.takedown-request__captcha-div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.takedown-request__captcha-div.error {
  border-color: #ff1744;
}
.takedown-request__captcha-div.error + p {
  display: flex !important;
  visibility: visible !important;
  justify-content: center;
  color: #ff1744;
  width: 100%;
}
.item-upgrades {
  position: relative;
  z-index: 10;
  opacity: 1;
  transform: translateZ(0);
  text-align: center;
}
.item-upgrades__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.item-upgrades__row .row-wrapper {
  display: flex;
}
.item-upgrades__row .tooltip:not(:last-child) {
  margin-right: 6px;
}
.item-upgrades__row .input__holder {
  flex-basis: 67%;
  display: flex;
  justify-content: flex-start;
}
.item-upgrades__row input[type='radio'] {
  display: none;
}
.item-upgrades__row input[type='radio']:checked + .tooltip__icon .item-upgrades__frame {
  border: 2px solid #1185ed;
  margin: 1px;
  pointer-events: none;
}
.item-upgrades__row input[type='radio']:checked + .tooltip__icon .item-upgrades__frame .frame-img {
  border: none;
}
.item-upgrades__row:first-child {
  margin-bottom: 15px;
}
.item-upgrades__label {
  flex-basis: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.item-upgrades__label .tooltip__icon {
  display: flex;
  margin-left: 6px;
}
.item-upgrades__label .tooltip__text {
  margin-left: 3px;
}
.item-upgrades__frames {
  flex-basis: 11%;
  border: 2px solid transparent;
  cursor: pointer;
}
.item-upgrades__frames .frame-img {
  height: 55px;
  width: 100%;
  max-width: 55px;
  border: 1px solid #d2d2d2;
}
.item-upgrades__frames .frame-img img {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .item-upgrades__frames img {
    height: 51px;
    width: 51px;
  }
}
.item-upgrades__frames--active {
  border: 2px solid #1185ed;
  pointer-events: none;
}
.item-upgrades__frames--no-frame {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .item-upgrades__frames--no-frame {
    margin-bottom: 0;
  }
}
.item-upgrades--disabled label:not(.label--default):not(.picker-select__option--sizes) {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 768px) {
  .item-upgrades__label .tooltip__icon {
    margin-left: 0;
  }
}
@media screen and (min-width: 1270px) {
  .item-upgrades__row {
    flex-direction: row;
    align-items: center;
  }
  .item-upgrades__label {
    margin-bottom: 0;
  }
}
.customize-hp .popup__wrapper {
  max-width: none;
}
@media (min-width: 992px) {
  .customize-hp .popup__wrapper {
    width: 825px;
  }
}
.customize-hp .popup__content {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .customize-hp .popup__content {
    padding-bottom: 30px;
  }
}
.customize-hp .customize-hp__buttons button {
  width: 100%;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__buttons button {
    width: 35%;
  }
}
.customize-hp .customize-hp__tags {
  font-size: 0;
  text-align: left;
  padding-bottom: 20px;
  max-height: 160px;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__tags {
    text-align: center;
    max-height: none;
    height: auto;
  }
}
.customize-hp .customize-hp__tags--active {
  height: auto;
  max-height: none;
}
.customize-hp .customize-hp__tags .tag {
  margin: 7px 14px 7px 0;
  user-select: none;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__tags .tag {
    margin: 7px;
  }
}
.customize-hp .customize-hp__keywords-wrapper {
  min-height: 48px;
  padding-bottom: 6px;
  margin-top: 10px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__keywords-wrapper {
    margin-top: 0;
    flex-wrap: nowrap;
  }
}
.customize-hp .customize-hp__keywords-wrapper .tag {
  margin: 7px 14px 7px 0;
  user-select: none;
}
.customize-hp .customize-hp__close-search {
  display: none;
  content: '';
  width: 26px;
  height: 26px;
  background: transparent url('/img/icons/close-icon.png') center no-repeat;
  background-size: contain;
  border: none;
  outline: 0;
  z-index: 12;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 20px;
}
.customize-hp .customize-hp__form {
  position: relative;
}
.customize-hp .customize-hp__form--sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 20px 0;
  margin: 0 20px;
  border-bottom: 1px solid #d2d2d2;
  width: calc(100% - 40px);
}
.customize-hp .customize-hp__form--sticky ~ .customize-hp__tags {
  padding-top: 40px;
}
.customize-hp .customize-hp__form--active {
  position: fixed;
  top: 0;
  background: #ffffff;
  width: 100%;
  height: 100vh;
  z-index: 11;
  padding: 60px 20px 0;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__form--active {
    position: relative;
    top: 0;
    padding: 0;
    margin: 0;
    background: none;
    width: auto;
    height: auto;
    z-index: 1;
  }
}
.customize-hp .customize-hp__form--active .customize-hp__close-search {
  display: block;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__form--active .customize-hp__close-search {
    display: none;
  }
}
.customize-hp .customize-hp__form--active .customize-hp__autocomplete {
  display: block;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__form--active .customize-hp__autocomplete {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 992px) {
  .customize-hp .customize-hp__form--active .customize-hp__autocomplete {
    max-height: 282px;
  }
}
.customize-hp .customize-hp__form--active .customize-hp__input {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__form--active .customize-hp__input {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  }
}
.customize-hp .customize-hp__form--active .customize-hp__input-image img {
  filter: none;
}
.customize-hp .customize-hp__input-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.customize-hp .customize-hp__input-image img {
  filter: grayscale(100%);
  width: 14px;
}
.customize-hp .customize-hp__input-wrapper {
  position: relative;
}
.customize-hp .customize-hp__autocomplete {
  display: none;
  position: absolute;
  transition: all 0.3s ease;
  height: 100%;
  width: calc(100% + 40px);
  margin-left: -20px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__autocomplete {
    display: none;
    top: calc(100% - 1px);
    width: 100%;
    margin-left: 0;
    border: 1px solid #d2d2d2;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 400px;
    height: auto;
    overflow: hidden;
  }
}
.customize-hp .customize-hp__autocomplete-item {
  line-height: 22px;
  padding: 10px 20px;
  border-bottom: 1px solid #d2d2d2;
  display: block;
  pointer-events: auto;
}
.customize-hp .customize-hp__autocomplete-item:first-of-type {
  border-top: 1px solid #d2d2d2;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__autocomplete-item {
    padding: 9px 14px;
    border: none;
  }
  .customize-hp .customize-hp__autocomplete-item:first-of-type {
    border: none;
    margin-top: 0;
  }
}
.customize-hp .customize-hp__autocomplete-item:hover {
  background: #f5f5f5;
  cursor: pointer;
}
.customize-hp .customize-hp__counter-wrapper {
  line-height: 37px;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}
.customize-hp .customize-hp__counter-wrapper--error {
  color: #ff1744;
  line-height: 20px;
}
.customize-hp .customize-hp__error {
  padding: 0;
}
.customize-hp .customize-hp__skip {
  margin-left: auto;
  display: none;
}
.customize-hp .customize-hp__save--onboarding {
  max-width: 50%;
  margin-left: auto;
}
@media (min-width: 768px) {
  .customize-hp .customize-hp__save--onboarding {
    max-width: none;
  }
}
.customize-hp .customize-hp__cancel ~ .customize-hp__save {
  margin-left: 10px;
}
.customize-hp .customize-hp__show-more-tags {
  cursor: pointer;
  display: block;
}
.customize-hp-widget {
  position: relative;
  min-height: 300px;
}
.create-profile .popup__wrapper {
  width: 825px;
  max-width: none;
}
.create-profile .popup__content {
  padding-bottom: 84px;
}
@media (min-width: 768px) {
  .create-profile .popup__content {
    padding-bottom: 30px;
  }
}
.create-profile:not(.popup--active) .create-profile__item--active .create-profile__label {
  visibility: hidden;
}
.create-profile .create-profile__item {
  border-bottom: 1px solid #d2d2d2;
  max-height: 65px;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.create-profile .create-profile__item--active .create-profile__label {
  opacity: 1;
  visibility: visible;
}
.create-profile .create-profile__item--success {
  background-image: url('/img/onboarding/upload_checkmark.svg');
  background-repeat: no-repeat;
  background-position: right center;
  max-height: 65px;
  cursor: default;
}
.create-profile .create-profile__item--profile.create-profile__item--active {
  max-height: 265px;
}
.create-profile .create-profile__item--profile.create-profile__item--active.create-profile__item--with-error {
  max-height: 275px;
}
.create-profile .create-profile__item--cover img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.create-profile .create-profile__item--cover.create-profile__item--active {
  max-height: 245px;
}
@media (min-width: 768px) {
  .create-profile .create-profile__item--cover.create-profile__item--active {
    max-height: 300px;
  }
}
.create-profile .create-profile__item--cover.create-profile__item--active.create-profile__item--with-error {
  max-height: 265px;
}
@media (min-width: 768px) {
  .create-profile .create-profile__item--cover.create-profile__item--active.create-profile__item--with-error {
    max-height: 320px;
  }
}
.create-profile .create-profile__item--description.create-profile__item--active {
  border-bottom: none;
  max-height: 350px;
}
@media (min-width: 768px) {
  .create-profile .create-profile__item--description.create-profile__item--active {
    border-bottom: 1px solid #d2d2d2;
    max-height: 400px;
  }
}
.create-profile .create-profile__heading {
  padding-top: 20px;
  cursor: pointer;
}
.create-profile .create-profile__label {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.create-profile .create-profile__error {
  display: none;
}
.create-profile .create-profile__buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-top: 1px solid #d2d2d2;
  min-height: 65px;
}
@media (min-width: 768px) {
  .create-profile .create-profile__buttons {
    position: relative;
    padding: 0;
    border-top: none;
    min-height: 50px;
  }
}
.create-profile .create-profile__buttons button {
  width: 100%;
}
@media (min-width: 768px) {
  .create-profile .create-profile__buttons button {
    width: 35%;
  }
}
.create-profile .create-profile__skip {
  margin-left: auto;
}
.create-profile .create-profile__save--onboarding {
  display: none;
  margin-left: auto;
  max-width: 50%;
}
.create-profile .create-profile__cancel ~ .create-profile__save {
  margin-left: 10px;
}
.create-profile .create-profile__form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.create-profile .create-profile__twitch,
.create-profile .create-profile__youtube {
  position: relative;
  padding-left: 50px;
  display: flex;
  justify-content: flex-start;
  background-repeat: no-repeat;
}
.create-profile .create-profile__twitch input,
.create-profile .create-profile__youtube input {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 300;
  border: none;
  box-shadow: none;
  outline: 0;
  background: none;
  width: 100%;
  margin-left: 5px;
  font-size: 16px;
}
.create-profile .create-profile__youtube {
  background-image: url('/img/onboarding/youtube_icon.svg');
  background-position: 15px center;
}
.create-profile .create-profile__twitch {
  background-image: url('/img/onboarding/twitchtv_icon.svg');
  background-position: 17px center;
}
.create-profile .create-profile__file {
  display: none;
  cursor: pointer;
}
.create-profile .create-profile__button {
  cursor: pointer;
}
.create-profile .create-profile__button--avatar * {
  pointer-events: none;
}
.create-wishlist .popup__wrapper {
  width: 825px;
  max-width: none;
}
.create-wishlist .create-wishlist__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.create-wishlist .create-wishlist__image img {
  max-width: 105%;
  margin-left: 20px;
}
.create-wishlist .create-wishlist__button {
  display: inline-block;
}
@media (min-width: 428px) {
  .create-wishlist .create-wishlist__image img {
    margin-left: unset;
  }
}
@media (min-width: 768px) {
  .create-wishlist .create-wishlist__image img {
    all: unset;
  }
}
.share-links .popup__wrapper {
  width: 825px;
  max-width: none;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .share-links .popup__wrapper {
    padding-bottom: 0;
  }
}
.share-links .share-links__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}
@media (min-width: 768px) {
  .share-links .share-links__wrapper {
    flex-direction: row;
  }
}
.share-links .share-links__item {
  flex-basis: auto;
  flex-grow: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .share-links .share-links__item {
    flex-basis: 50%;
  }
}
.share-links .share-links__item:first-of-type img {
  max-width: 70%;
}
.share-links .share-links__image--desktop {
  margin-bottom: -30px;
}
.share-links .share-links__image--mobile {
  margin-right: -30px;
  margin-bottom: -40px;
  max-width: 95%;
}
.popup.earn-money .popup__wrapper {
  max-width: 900px;
}
.popup.earn-money .earn-money__prices {
  display: grid;
  grid-template-columns: 32fr 48fr 64fr;
  grid-gap: 2%;
  align-items: center;
  width: 98%;
}
.popup.earn-money .popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup.earn-money .content__row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .popup.earn-money .content__row {
    flex-direction: row;
  }
}
.popup.earn-money .content__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.popup.earn-money .content__col--print-your-own {
  margin-left: 0;
}
.popup.earn-money .content__col--print-your-own .col-img {
  flex-direction: column;
}
.popup.earn-money .content__col--print-your-own .col-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .popup.earn-money .content__col {
    width: 33%;
    margin-bottom: 0;
  }
  .popup.earn-money .content__col--print-your-own {
    margin-left: 20px;
  }
  .popup.earn-money .content__col--print-your-own .col-text {
    margin-top: 20px;
  }
}
.popup.earn-money .content__col .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}
.popup.earn-money .content__col .col-img img {
  max-height: 100%;
  max-width: 100%;
}
.popup.earn-money .content__col .col-text {
  text-align: center;
}
.onboarding {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  pointer-events: none;
  transform: translateZ(10px);
}
.onboarding > * {
  pointer-events: auto;
}
@media (min-width: 768px) {
  .onboarding {
    height: auto;
    min-height: none;
  }
}
.onboarding .onboarding__popup.popup--active {
  background: none;
}
.onboarding--active {
  background: rgba(245, 245, 245, 0.9);
}
.settings {
  background: #f5f5f5 url('/img/patterns/blue_pattern_1.png');
  background-position: center;
  background-repeat: repeat-y;
}
.settings__deactivate {
  height: 223px;
}
.settings__deactivate--loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.settings__deactivate--loading > img {
  width: 50px;
  height: 50px;
}
.settings__deactivate--error {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.settings__deactivate--error > img {
  width: 100px;
  height: auto;
}
.settings__deactivate--error p {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .settings {
    padding: 60px 0;
    margin-bottom: 0;
  }
  .settings__deactivate {
    height: 205px;
  }
}
.settings__cards {
  width: 35px;
}
@media (min-width: 768px) {
  .settings__cards {
    width: initial;
  }
}
.settings__container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  padding: 40px 0 30px;
  min-height: 500px;
}
.settings__container h1 {
  padding-left: 25px;
}
@media (min-width: 576px) {
  .settings__container {
    padding: 35px 0;
  }
  .settings__container h1 {
    padding-left: 35px;
  }
}
@media (min-width: 992px) {
  .settings__container {
    padding: 48px 0;
  }
  .settings__container h1 {
    padding-left: 48px;
  }
}
.settings-tab__container {
  padding: 20px 20px 0 20px;
}
.settings-tab__container .payment-update .link {
  margin: 0 4px;
}
@media (min-width: 992px) {
  .settings-tab__container {
    padding: 20px 48px 0 48px;
  }
}
.settings-tab__details {
  display: flex;
  flex-wrap: wrap;
}
.settings-tab__details--small,
.settings-tab__details--medium,
.settings-tab__details--medium-margin,
.settings-tab__details--full {
  width: 100%;
  margin: 10px 0;
  word-break: break-all;
}
.settings-tab__details--medium div {
  width: 100%;
  margin-bottom: 15px;
}
.settings-tab__details--medium div:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .settings-tab__details--medium div {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .settings-tab__details--small {
    width: 25%;
    margin: 15px 0;
  }
  .settings-tab__details--medium {
    width: 50%;
  }
  .settings-tab__details--medium-margin {
    width: 50%;
    margin: 15px 0;
  }
  .settings-tab__details--full {
    width: 100%;
    margin: 15px 0;
  }
}
.settings-tab__details--edit {
  position: absolute;
  top: 15px;
  right: 0;
  width: auto;
  font-size: 14px;
}
@media (min-width: 992px) {
  .settings-tab__details--edit {
    display: flex;
    align-self: center;
    justify-content: flex-end;
    width: 25%;
    position: static;
    font-size: initial;
  }
}
.settings-tab__details--bordered {
  border-top: 1px solid #d2d2d2;
  margin: 0;
}
.settings-tab__details--bordered:last-of-type {
  border-bottom: 1px solid #d2d2d2;
}
.settings-tab__add-tax-data {
  width: 100%;
}
.settings-tab__add-tax-data .popup__trigger-wrapper {
  width: 100%;
}
.settings-tab__add-button {
  width: 100%;
  color: #1185ed;
  display: flex;
  align-items: center;
  height: 216px;
  cursor: pointer;
  justify-content: center;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.settings-tab__add-button svg {
  margin-right: 10px;
}
.settings__copy {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  .settings__copy {
    position: static;
  }
}
.settings__tip {
  display: flex;
  justify-content: flex-start;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
}
.settings__tip object {
  margin-top: 7px;
}
.settings__tip p {
  padding-top: 2px;
  font-size: 12px;
}
.settings__tip p span {
  font-size: 12px;
}
@media (min-width: 768px) {
  .settings__tip p {
    font-size: initial;
  }
  .settings__tip p span {
    font-size: initial;
  }
}
.settings__dc-payment {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .settings__dc-payment {
    flex-direction: row;
    align-items: center;
  }
}
.settings__dc-payment-failed {
  display: flex;
  margin-top: 4px;
}
.settings__dc-payment-failed .svg-icon {
  align-items: flex-start;
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .settings__dc-payment-failed {
    margin-top: 0;
    margin-left: 12px;
  }
}
.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;
}
.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;
}
.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);
}
.categories-container {
  max-width: 1270px;
  margin: 20px auto;
  width: auto;
}
@media (max-width: 996px) {
  .categories-container {
    margin: 20px -30px;
    padding: 0 30px;
    width: calc(100% + 70px);
  }
}
@media (min-width: 998px) {
  .categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flext-start;
  }
}
.categories-container .category-tile {
  display: block;
  padding: 5px;
  max-width: 294px;
  max-height: 259px;
  width: 100%;
  margin: 15px 7px;
  border: 1px solid #d2d2d2;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 997px) {
  .categories-container .category-tile {
    max-height: 175px;
    margin: 10px 15px 10px -7.5px;
  }
}
@media (min-width: 998px) {
  .categories-container .category-tile {
    flex-basis: 25%;
  }
  .categories-container .category-tile:hover {
    text-decoration: none;
    transform: scale(1.05);
  }
}
.categories-container .category-image {
  width: 100%;
  max-height: 194px;
  max-width: 294px;
  overflow: hidden;
}
.categories-container .category-image img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin-top: -44px;
}
@media (max-width: 768px) {
  .categories-container .category-image {
    max-height: 140px;
  }
}
.categories-container .category-descritpion {
  padding: 10px 15px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .categories-container .category-descritpion {
    padding: 0 5px;
  }
}
.categories-container .category-descritpion span {
  display: block;
}
.categories-container .category-descritpion span:first-of-type {
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
}
.categories-container .slick-list {
  overflow: visible;
}
.categories-container .slick-slide {
  transition: all 0.3s ease;
  position: relative;
  padding: 0 7.5px;
}
.categories-container .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.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;
}
.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%;
  }
}
.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%;
}
.promo-benefits {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}
@media (min-width: 576px) {
  .promo-benefits {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .promo-benefits {
    flex-direction: row;
    max-width: 100%;
    margin: initial;
    padding-bottom: 55px;
  }
}
.promo-benefits__heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #10111a;
  text-align: center;
}
@media (min-width: 992px) {
  .promo-benefits__heading {
    min-width: 360px;
    flex-shrink: 0;
    text-align: start;
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 1100px) {
  .promo-benefits__heading {
    min-width: 420px;
    font-size: 36px;
    line-height: 48px;
  }
}
.promo-benefits__heading .influencer-name {
  font-weight: 700;
  color: #00efd2;
}
.promo-benefits__benefits-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 576px) {
  .promo-benefits__benefits-wrapper {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .promo-benefits__benefits-wrapper {
    justify-content: flex-start;
    margin-left: auto;
    margin-top: 0;
    margin-right: auto;
  }
}
.promo-benefits__benefits-column {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .promo-benefits__benefits-column:first-child {
    margin-left: 20px;
    margin-right: 70px;
  }
}
.promo-benefits__benefit {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .promo-benefits__benefit {
    align-items: flex-start;
  }
  .promo-benefits__benefit:first-child {
    margin-bottom: 40px;
  }
  .promo-benefits__benefit:last-child {
    margin-top: auto;
  }
}
.promo-benefits__benefit .svg-icon {
  margin-right: 24px;
}
.promo-benefits__benefit .benefit-text {
  display: flex;
  font-weight: 600;
  color: #10111a;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 576px) {
  .promo-benefits__benefit .benefit-text {
    max-width: 170px;
  }
}
@media (min-width: 992px) {
  .promo-benefits__benefit .benefit-text {
    font-size: 20px;
    line-height: 30px;
    max-width: 210px;
  }
}
.promo-benefits-container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}
@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;
}
#popup-upload-select-collection .input-select__dropdown {
  top: auto;
  bottom: -30px;
  z-index: 1001;
}
#popup-upload-select-collection .simplebar-scroll-content {
  margin-bottom: -20px !important;
}
.unsubscribe-page__box {
  margin-top: 24px;
  text-align: center;
  padding: 16px;
}
.unsubscribe-page__box p {
  padding-top: 16px;
}
.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;
  }
}
.feed--placeholder {
  transition: all 0.3s linear;
  pointer-events: none;
}
.feed--placeholder .heading-placeholder {
  width: 150px;
  height: 28px;
  margin: 25px 0;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
@media (min-width: 992px) {
  .feed--placeholder .heading-placeholder {
    margin: 0;
    height: 36px;
  }
}
.feed--placeholder .displate-tile__image-wrapper {
  background-image: none;
}
.feed--placeholder .displate-tile__inner-container,
.feed--placeholder .displate-slider__item {
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.feed--placeholder .slick-next {
  opacity: 0;
}
.homepage-feed {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .homepage-feed .displate-slider .slick-slide {
    margin: 0 3px;
  }
}
.homepage-feed .customize-hp {
  height: 100vh;
}
@media (min-width: 768px) {
  .homepage-feed .customize-hp {
    height: auto;
  }
}
.homepage-feed .homepage-feed__add-keywords {
  padding: 5px 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .homepage-feed .homepage-feed__add-keywords {
    padding: 10px 0;
  }
}
.homepage-feed .homepage-feed__add-keywords--bottom {
  border-bottom: 1px solid #d2d2d2;
}
.homepage-feed .homepage-feed__add-keywords--top {
  border-top: 1px solid #d2d2d2;
}
.homepage-feed .homepage-feed__add-keywords--disabled .homepage-feed__keywords-info,
.homepage-feed .homepage-feed__add-keywords--disabled .homepage-feed__keywords-button strong,
.homepage-feed .homepage-feed__add-keywords--disabled span,
.homepage-feed .homepage-feed__add-keywords--disabled strong {
  color: #6e6e6e;
}
.homepage-feed .homepage-feed__add-keywords--disabled .homepage-feed__keywords-info:hover,
.homepage-feed .homepage-feed__add-keywords--disabled .homepage-feed__keywords-button strong:hover,
.homepage-feed .homepage-feed__add-keywords--disabled span:hover,
.homepage-feed .homepage-feed__add-keywords--disabled strong:hover {
  text-decoration: none;
  cursor: default;
}
.homepage-feed .homepage-feed__keywords-button {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.homepage-feed .homepage-feed__keywords-button strong {
  font-size: 22px;
  margin-right: 5px;
  color: #1185ed;
}
.homepage-feed .homepage-feed__keywords-info {
  padding-left: 16px;
  margin-top: 4px;
}
.homepage-feed .homepage-feed__container {
  padding: 10px 0 10px;
}
@media (min-width: 992px) {
  .homepage-feed .homepage-feed__container {
    padding: 25px 0 10px;
  }
}
.homepage-feed .homepage-feed__oops {
  display: flex;
  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) {
  .homepage-feed .homepage-feed__oops {
    background-position: 230% 110%;
  }
}
@media (min-width: 768px) {
  .homepage-feed .homepage-feed__oops {
    margin: 15px 0 35px;
    background-position: 90% 128%;
    padding: 30px;
  }
}
.homepage-feed .homepage-feed__oops .homepage-feed__oops-image {
  margin: 0 15px 0 0;
}
@media (min-width: 768px) {
  .homepage-feed .homepage-feed__oops .homepage-feed__oops-image {
    margin: 0 30px 0 0;
  }
}
.homepage-feed .homepage-feed__oops .homepage-feed__oops-image object {
  width: 72px;
  height: 72px;
}
.feeds-slider__container {
  position: relative;
  padding: 4px 0;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .feeds-slider__container {
    padding: 0 0 30px;
  }
}
@media (min-width: 992px) {
  .feeds-slider__container {
    padding: 0;
  }
}
.feeds-slider__container:hover .displate-slider {
  transition: z-index 0s ease 0.1s;
  z-index: 10;
}
.feeds-slider__container .displate-slider {
  transition: z-index 0s ease 0.3s;
  z-index: 1;
  margin-top: 5px;
}
@media (min-width: 992px) {
  .feeds-slider__container .displate-slider {
    margin-top: 0;
  }
}
.feeds-slider__container .tag {
  margin: 5px 0 10px 0;
  z-index: 3;
  position: relative;
}
@media (min-width: 768px) {
  .feeds-slider__container .tag {
    margin: 0;
  }
}
.feeds-slider__container--removed {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0 !important;
  padding: 0 !important;
}
.feeds-slider__container--hidden {
  display: none;
}
.feeds-slider__container--badge {
  padding-top: 10px;
  margin: 20px 0 30px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
}
@media (min-width: 992px) {
  .feeds-slider__container--badge {
    padding-top: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
  }
}
.feeds-slider__container--badge:before {
  position: absolute;
  top: -7px;
  right: -10px;
  width: auto;
  padding: 0 40px 0 20px;
  font-size: 12px;
  background: #ffffff;
}
.feeds-slider__container--badge:after {
  position: absolute;
  top: -8px;
  right: 0;
}
@media (min-width: 768px) {
  .feeds-slider__container--recently-viewed {
    margin-bottom: 10px;
  }
  .feeds-slider__container--recently-viewed .displate-slider {
    margin-top: 0;
  }
}
.feeds-slider__container--recently-viewed img {
  max-width: 100%;
}
.feeds-slider__container:last-of-type {
  border-bottom: none;
}
@media (min-width: 992px) {
  .feeds-slider__container {
    padding: 10px 0 10px;
  }
}
.feeds-slider__container .feeds-slider__title {
  text-transform: capitalize;
  margin-bottom: 8px;
  z-index: 1;
}
@media (min-width: 768px) {
  .feeds-slider__container .feeds-slider__title {
    margin-bottom: 0;
  }
}
.feeds-slider__container.recommended-artist-feed > .displate-slider {
  margin: 15px 0;
  width: 100%;
  left: 0;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider .displate-slider__slider {
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider .collection {
  flex-basis: 100%;
  margin: 0;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider .collection__title {
  font-size: 22px;
  display: table;
  table-layout: fixed;
  width: 100%;
  font-family: 'proxima-nova', Corbel, Arial, sans-serif;
  font-weight: 600;
  -webkit-user-drag: none;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider .collection__title a {
  display: table-cell;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider .collection__artist-info {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 10px;
}
.feeds-slider__container.recommended-artist-feed > .displate-slider + .swiper-nav .swiper-nav__button {
  top: 50%;
}
.popup-v2__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.popup-v2__backdrop--open {
  opacity: 1;
  pointer-events: auto;
}
.popup-v2__container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.popup-v2__container--open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .popup-v2__container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.popup-v2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  min-height: 20vh;
  max-height: 80vh;
}
@supports (height: 100dvh) {
  .popup-v2 {
    min-height: 20dvh;
    max-height: 80dvh;
  }
}
.popup-v2--open {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .popup-v2 {
    position: relative;
    max-height: 50vh;
    min-width: 30vw;
    width: auto;
    max-width: 60vw;
    border-radius: 8px;
    bottom: unset;
    margin-right: 0;
    transform: scale(0);
    max-height: unset;
  }
  .popup-v2--open {
    transform: scale(1);
  }
}
.popup-v2__close {
  position: absolute;
  top: 32px;
  right: 16px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .popup-v2__close {
    top: 24px;
    right: 24px;
  }
}
.popup-v2__title {
  padding: 32px 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .popup-v2__title {
    padding: 24px 24px 0;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.popup-v2__content {
  padding: 0 16px 32px;
  min-height: 0;
  overflow-y: auto;
  flex: 1;
}
@media (min-width: 1024px) {
  .popup-v2__content {
    padding: 0 24px 24px;
  }
}
.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;
  }
}
/* 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;
}
@media screen and (min-width: 768px) {
  .slider-artists {
    margin: 25px -7px -15px -7px;
  }
}
.slider-artists .slick-slide {
  margin: 0px 1vw 0 1.5vw;
}
@media screen and (min-width: 768px) {
  .slider-artists .slick-slide {
    margin: 0;
  }
}
.slider-artists .slick-slide.slick-active.slick-current .slider-artists-wrapper__item {
  border-right: 1px solid #d2d2d2;
}
.slider-artists--placeholder {
  transition: all 0.3s linear;
  pointer-events: none;
}
.slider-artists--placeholder .heading-placeholder {
  width: 150px;
  height: 28px;
  margin: 25px 0;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
@media (min-width: 992px) {
  .slider-artists--placeholder .heading-placeholder {
    margin: 0;
    height: 36px;
  }
}
.slider-artists--placeholder .displate-tile__image {
  background-image: none;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.slider-artists--placeholder .slider-artists-wrapper__image-author {
  height: 56px;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.slider-artists--placeholder .slider-artists-wrapper__text .tags-artist .tag,
.slider-artists--placeholder .slider-artists-wrapper__author-name a,
.slider-artists--placeholder .slider-artists-wrapper__link,
.slider-artists--placeholder .slider-artists-wrapper__text .count-artist__text,
.slider-artists--placeholder .slider-artists-wrapper__text .count-artist__text--blue {
  color: transparent;
  background: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
.slider-artists--placeholder .slick-next {
  opacity: 0;
}
.slider-artists-wrapper {
  padding: 0;
}
.slider-artists-wrapper__item-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .slider-artists-wrapper__item-wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .slider-artists-wrapper__item-wrapper {
    padding: 0 22px 0 15px;
  }
}
.slider-artists-wrapper__image {
  flex-basis: 55px;
  position: relative;
  padding: 7px;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__image {
    flex-basis: 70px;
  }
}
.slider-artists-wrapper__image-author {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 41px;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__image-author {
    height: 56px;
  }
}
.slider-artists-wrapper__image::before {
  content: '';
  position: absolute;
  background-image: url(/img/what-a-displate/green_circle.png);
  width: 100%;
  height: 70px;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .slider-artists-wrapper__image::before {
    height: 55px;
  }
}
.slider-artists-wrapper__text {
  flex-basis: calc(100% - 77px);
  padding-left: 15px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .slider-artists-wrapper__text {
    padding-left: 0;
    flex-basis: 100%;
  }
}
.slider-artists-wrapper__text .count-artist {
  margin: 0 0 15px 0;
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 576px) {
  .slider-artists-wrapper__text .count-artist {
    justify-content: initial;
  }
}
@media screen and (max-width: 768px) {
  .slider-artists-wrapper__text .count-artist {
    margin: 0;
  }
}
.slider-artists-wrapper__text .count-artist__text {
  margin: 5px 10px 0 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider-artists-wrapper__text .count-artist__text {
    margin-top: 0;
    margin-bottom: 5px;
  }
}
.slider-artists-wrapper__text .count-artist__text--blue {
  color: #1185ed;
  font-weight: 700;
  display: flex;
}
@media screen and (min-width: 576px) {
  .slider-artists-wrapper__text .count-artist__text--blue {
    display: initial;
  }
}
.slider-artists-wrapper__text .count-artist__text--cyan {
  color: #00efd2;
  font-weight: 700;
}
.slider-artists-wrapper__text .count-artist__text--dot {
  margin-right: 10px;
}
.slider-artists-wrapper__text .tags-artist {
  margin-bottom: 10px;
  min-height: 34px;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__text .tags-artist {
    margin-bottom: 20px;
    min-height: 74px;
  }
}
.slider-artists-wrapper__text .tags-artist__tag {
  color: #000;
  margin: 5px 5px 5px 0;
  display: inline-block;
  padding: 5px;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__text .tags-artist__tag {
    padding: 5px 10px;
  }
}
.slider-artists-wrapper__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 100%;
}
.slider-artists-wrapper__author-name {
  margin: 10px 0 5px;
  font-size: 22px;
}
.slider-artists-wrapper__author-name a {
  color: #000;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__author-name {
    margin: 0;
  }
}
.slider-artists-wrapper__link {
  color: #1185ed;
}
.slider-artists-wrapper__link:active,
.slider-artists-wrapper__link:focus,
.slider-artists-wrapper__link:hover {
  color: #1185ed !important;
}
.slider-artists-wrapper__link--mobile {
  margin-bottom: 15px;
  flex-basis: 100%;
}
.slider-artists-wrapper__link:hover {
  text-decoration: underline;
}
.slider-artists-wrapper__links {
  display: flex;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__links {
    height: 191px;
  }
}
.slider-artists-wrapper__links-link {
  flex-basis: 22.2%;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .slider-artists-wrapper__links-link {
    margin-right: 30px;
  }
}
.slider-artists-wrapper__links-link:last-of-type {
  margin-right: 0;
}
.slider-artists-wrapper__links img {
  display: block;
  width: 100%;
  border-radius: 2%;
  outline: 2px solid hsla(0, 0%, 100%, 0.25);
  outline-offset: -2px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}


/*# */