.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
/* Text utils */
.has-text-left {
  text-align: left;
}
.has-text-center {
  text-align: center;
}
.has-text-right {
  text-align: right;
}
.has-text-justify {
  text-align: justify;
}
/* Display utils */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.ov-hidden {
  overflow: hidden;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
/* Flex utils */
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-align-center {
  align-items: center;
}
.flex-align-flex-start {
  align-items: flex-start;
}
.flex-align-flex-end {
  align-items: flex-end;
}
.flex-align-stretch {
  align-items: stretch;
}
.flex-justify-center {
  justify-content: center;
}
.flex-justify-flex-start {
  justify-content: flex-start;
}
.flex-justify-flex-end {
  justify-content: flex-end;
}
.flex-justify-stretch {
  justify-content: stretch;
}
.flex-justify-space-between {
  justify-content: space-between;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
/* Dimension utils */
.is-full-width {
  width: 100%;
}
.is-full-height {
  height: 100%;
}
.checkbox,
.radio {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
.btn[disabled] {
  pointer-events: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.form-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.6rem 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: thin solid #ccc;
  border-radius: 0.4rem;
  -webkit-box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  font-family: 'IBM Plex Sans', sans-serif;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group .form-control,
.input-group-addon {
  display: table-cell;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.btn-group .form-control:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.Popover {
  z-index: 100;
  background: var(--color-modal);
  display: block !important;
  transition-property: none !important;
  border-radius: 1.2rem;
  box-shadow: none;
  padding: 0;
  border: thin solid var(--color-neutral);
  overflow: hidden;
}
.Popover--colored {
  background: #F1B072;
  color: #000000;
}
.Popover--with-padding {
  padding: 1.2rem;
}
.Popover-tip {
  display: none !important;
}
.Toastify__toast-container {
  z-index: 99999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 0.4rem;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
}
.Toastify__toast {
  position: relative;
  min-height: 6.4rem;
  box-sizing: border-box;
  margin-bottom: 1.6rem;
  padding: 0.8rem;
  border-radius: 0.4rem;
  box-shadow: 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.1), 0 0.2rem 1.5rem 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: var(--color-regular-links);
}
.Toastify__toast--success {
  background: var(--color-accent);
}
.Toastify__toast--warning {
  background: var(--color-warning);
}
.Toastify__toast--error {
  background: var(--color-tertiary);
}
.Toastify__toast-body {
  margin: auto 0;
  padding: 0.6rem;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.2s;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s ease;
  align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 1.6rem;
  width: 1.4rem;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
.ql-container strong {
  font-weight: 600;
}
:root {
  --slide-in-easing: cubic-bezier(0.19, 1, 0.22, 1);
}
:root {
  color-scheme: normal;
  --font-main: 'IBM Plex Sans', sans-serif;
  --base-unit-xxl: calc(var(--base-unit-m) * 8);
  --base-unit-xl: calc(var(--base-unit-m) * 4);
  --base-unit-l: calc(var(--base-unit-m) * 2);
  --base-unit-m: 0.6rem;
  --base-unit-s: calc(var(--base-unit-m) / 2);
  --gap-small: 0.6rem;
  --gap-regular: 1.2rem;
  --safe-area-left: 0rem;
  --safe-area-top: 0rem;
  --safe-area-right: 0rem;
  --safe-area-bottom: 0rem;
  --safe-area-paddings: var(--safe-area-top) var(--safe-area-right) var(--safe-area-bottom) var(--safe-area-left);
  --unified-padding-right-xsmall: calc(var(--base-unit-m) + var(--safe-area-right));
  --unified-padding-left-xsmall: calc(var(--base-unit-m) + var(--safe-area-left));
  --unified-padding-right-small: calc(((var(--base-unit-m) + var(--base-unit-l)) / 2) + var(--safe-area-right));
  --unified-padding-left-small: calc(((var(--base-unit-m) + var(--base-unit-l)) / 2) + var(--safe-area-left));
  --unified-padding-top-small: calc((var(--base-unit-m) + var(--base-unit-l)) / 2);
  --unified-padding-bottom-small: calc((var(--base-unit-m) + var(--base-unit-l)) / 2);
  --unified-paddings-small: var(--unified-padding-top-small) var(--unified-padding-right-small) var(--unified-padding-bottom-small) var(--unified-padding-left-small);
  --unified-padding-right-large: calc((var(--base-unit-m) + var(--base-unit-l)) + var(--safe-area-right));
  --unified-padding-left-large: calc((var(--base-unit-m) + var(--base-unit-l)) + var(--safe-area-left));
  --unified-padding-top-large: var(--base-unit-m);
  --unified-padding-bottom-large: var(--base-unit-m);
  --unified-paddings-large: var(--unified-padding-top-large) var(--unified-padding-right-large) var(--unified-padding-bottom-large) var(--unified-padding-left-large);
  --border-radius-primary: 0.6rem;
  --color-warning: #F2C94C;
  --color-accent: #42CD7A;
  --color-accent-dark: #079662;
  --color-accent-light: #4CE2A3;
  --color-primary: #3A65FF;
  --color-primary-dark: #2F5AF3;
  --color-primary-darkest: #2754AF;
  --color-secondary: #F1B072;
  --color-secondary-dark: #161616;
  --color-tertiary: #FF4848;
  --color-attention: #B23636;
  --color-primary-light: #5FA1FD;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-orange: #D77920;
  --color-grey-0: #f5f4f4;
  --color-grey-1: #efeced;
  --color-grey-4: #899392;
  --color-grey-5: #e9e4e6;
  --color-grey-6: #808080;
  --color-grey-7: #4d4d4d;
  --color-grey-8: #575757;
  --color-grey-9: #B5B5B5;
  --color-grey-10: #525252;
  --color-grey-11: #232323;
  --color-grey-12: #D0D0D0;
  --color-grey-13: #353535;
  --color-grey-14: #707070;
  --color-grey-15: #434343;
  --color-grey-16: #5C6464;
  --color-grey-17: #D9D9D9;
  --color-grey-18: #BABABA;
  --color-grey-19: #D3D3D3;
  --color-grey-20: #A1A1A1;
  --color-dark-blue-1: #40515f;
  --color-yellow-1: #fff800;
  --color-red-1: #f00;
  --color-primary-links: #5BBAFF;
  --color-neutral: #272B2B;
  --color-neutral-dark: #171717;
  --color-neutral-not-so-light: #4B5252;
  --color-neutral-lightest: #BDBDBD;
  --color-neutral-light: #7D7D7D;
  --color-regular-links: #4A90E2;
  --color-regular-links-visited: #52759E;
  --color-font-main-light: white;
  --color-border: var(--color-neutral);
  --color-border-color: #353535;
  --color-border-light: var(--color-neutral-lightest);
  --color-modal: #1c1c1c;
  --color-purple: #967FDB;
  --color-grey-300: #191B1B;
  --color-grade-ou: #21FC87;
  --color-grade-ex: #76F366;
  --color-grade-vg: #C7EA45;
  --color-grade-gd: #ECC834;
  --color-grade-fr: #EB8632;
  --color-grade-pr: #EA4A30;
  --toolbar-height: 5rem;
  --header-height: 5.6rem;
  --media-xs: 80px;
  --media-s: 160px;
  --media-m: 320px;
  --media-l: 480px;
  --screen-xxs: 320px;
  --screen-xs: 576px;
  --screen-sm: 768px;
  --screen-md: 992px;
  --screen-lg: 1200px;
  --screen-ml: 1366px;
  --screen-xlg: 1475px;
  --screen-xxlg: 1600px;
  --screen-xxxlg: 2500px;
  --border-radius-secondary: 0.3rem;
}
@supports (padding: env(safe-area-inset)) {
  :root {
    --safe-area-left: env(safe-area-inset-left);
    --safe-area-top: env(safe-area-inset-top);
    --safe-area-right: env(safe-area-inset-right);
    --safe-area-bottom: env(safe-area-inset-bottom);
  }
}
* {
  box-sizing: border-box;
}
html {
  font-weight: 400;
  font-size: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  background: #000000;
}
@media screen and (max-width: 767.9px) {
  html {
    font-size: 9px;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10.5px;
  }
}
@media screen and (min-width: 2500px) {
  html {
    font-size: 11px;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
body {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
body::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
body::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
body::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
body::-webkit-scrollbar-corner {
  display: none;
}
@media only screen and (max-width: 576px) {
  body {
    margin-bottom: 0;
  }
}
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 500;
}
button {
  font-size: inherit;
  font-family: inherit;
}
#app {
  height: 100%;
}
.cwp-has-fullscreen-element {
  position: fixed;
  overflow: hidden;
}
.has-custom-scroll::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.has-custom-scroll::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.has-custom-scroll::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.has-custom-scroll::-webkit-scrollbar-corner {
  display: none;
}
.cw-icon {
  flex-shrink: 0;
  fill: currentColor;
  width: 1em;
  height: 1em;
}
.dndActive * {
  cursor: grabbing !important;
}
.dropNotAllowed * {
  cursor: not-allowed !important;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    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;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}

.U_EFnCrytzro_fwhUjVf {
  display: block;
  margin: 0;
  line-height: 2rem;
  font-size: 1.6rem;
  text-align: left;
  word-break: break-word;
  color: var(--color-white);
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.metricScaleContainerLabel {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 2px;
  white-space: nowrap;
}
.metricScaleContainerXSmall {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  flex: auto;
}
.metricScaleContainerXSmallABS {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: auto;
  line-height: 1;
  padding-top: 6px;
}
.metricScaleContainerXSmallScale {
  display: flex;
  align-items: flex-end;
  margin: 0 1px;
}
.metricScaleContainerSmall {
  min-height: 4rem;
}
.metricScaleContainerSmallTitle {
  font-size: 1rem;
  color: var(--text-color);
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.metricScaleContainerSmallIcon {
  color: var(--icon-color);
  margin: 0 0.2rem;
  font-size: 1.3rem;
  display: flex;
}
.metricScaleContainerMedium {
  min-height: 2rem;
}
.metricScaleContainerMediumWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background-color);
  margin-top: 0.3rem;
}
.metricScaleContainerMediumTitle {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-color);
  padding-right: 4px;
  overflow: hidden;
}
.metricScaleContainerMediumIcon {
  color: var(--icon-color);
  font-size: 1.2rem;
  display: flex;
  padding: 0 0.6rem;
}
.metricScaleContainerMediumScale {
  flex-basis: 50%;
}
.metricScaleContainerLarge {
  min-height: 2.6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background-color);
  padding-left: 0.6rem;
}
.metricScaleContainerLargeIcon {
  color: var(--icon-color);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  margin-right: 0.6rem;
}
.metricScaleContainerLargeTitle {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 2px;
  white-space: nowrap;
  font-size: 1.5rem;
  color: var(--label-color);
}
.metricScaleContainerLargeABS {
  font-size: 1.6rem;
  color: var(--text-color);
  margin-left: auto;
  margin-right: 0.6rem;
}
.metricScaleContainerLargeScale {
  flex-basis: 50%;
  flex-shrink: 0;
}
.metricScaleContainerActive {
  --icon-color: #ffffff;
  --label-color: #BDBDBD;
  --text-color: #ffffff;
  --background-color: #171717;
}
.metricScaleContainerInactive {
  --icon-color: #7D7D7D;
  --label-color: #7D7D7D;
  --text-color: #7D7D7D;
  --background-color: none;
}
.metricScaleContainerInactive .spreadV2LabelLink {
  pointer-events: none;
  color: var(--text-color) !important;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.metricBar {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.link {
  text-decoration: none;
  color: var(--color-regular-links);
  text-underline-position: under;
}
@media (hover: hover) {
  .link:hover {
    text-decoration: underline;
  }
}
.link:visited {
  color: var(--color-regular-links-visited);
}
.nav {
  color: var(--color-font-main-light);
  text-decoration: none;
  text-underline-position: under;
}
@media (hover: hover) {
  .nav:hover {
    text-decoration: underline;
  }
}
.nav:visited {
  color: var(--color-font-main-light);
}

.EXj6e_vy_snIcWr9JXlg {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.zcV6RCpFEH_JucWba0Pu {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .xUWmBSjZglIBuf7Tjyor {
    font-size: 0.475vw;
  }
}
.eCB7tgylLYNtla93U1pl {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.pNxFSdxi6jz4uo1lPqM1 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.neoXhW2c3rqdLyx9yl_5 strong {
  font-weight: 600;
}
.neoXhW2c3rqdLyx9yl_5 p {
  margin: 0;
}
.neoXhW2c3rqdLyx9yl_5 p:last-child {
  margin-bottom: 0;
}
.neoXhW2c3rqdLyx9yl_5 img {
  max-width: 100%;
}
.neoXhW2c3rqdLyx9yl_5 a {
  color: var(--color-primary-links);
}

.IhtShE37gII1t2ovvfwg {
  max-height: 100%;
  font-size: 1.6rem;
  text-align: left;
  word-break: break-word;
  color: var(--color-white);
}

.f0vCoQywbi8BgACXHMbO {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.YzCIW8i4koHl7cD55h8q {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  ._v8J3ETtmtSbh7AZiB_2 {
    font-size: 0.475vw;
  }
}
.ZvehZ9ZazAIZHPBbz0KR {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.GQbylf9Q76cG0V9_inKv {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.GBdS3oFjA_JXmAobc1Cp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.GBdS3oFjA_JXmAobc1Cp span {
  display: inline-block;
  border-radius: 50%;
  margin: 0 0.4rem;
  animation: Q3801htlaXLFMEFJugOI 1s ease-in infinite;
}
.GBdS3oFjA_JXmAobc1Cp span:nth-child(2) {
  animation-delay: 0.3s;
}
.GBdS3oFjA_JXmAobc1Cp span:last-child {
  animation-delay: 0.7s;
}
.XJ_GNvHLaNz6ZLPHKq4f {
  padding: 2.2rem 0;
}
.XJ_GNvHLaNz6ZLPHKq4f span {
  height: 1.6rem;
  width: 1.6rem;
  margin: 0 0.4rem;
}
.v2ERFUQugiDSuX3jtnH1 {
  padding: 1.8rem 0;
}
.v2ERFUQugiDSuX3jtnH1 span {
  height: 1.2rem;
  width: 1.2rem;
  margin: 0 0.4rem;
}
.Jdc0p1QameeiCs_ofBEs {
  padding: 1.6rem 0;
}
.Jdc0p1QameeiCs_ofBEs span {
  height: 0.6rem;
  width: 0.6rem;
  margin: 0 0.2rem;
}
.wlqQCNVNd4hHRJkE0KfQ {
  padding: 1.6rem 0;
}
.wlqQCNVNd4hHRJkE0KfQ span {
  height: 0.3rem;
  width: 0.3rem;
  margin: 0 0.1rem;
}
.hMf9RIbXonqcMjja3BcH span:first-child {
  background: #2F5AF3;
}
.hMf9RIbXonqcMjja3BcH span:nth-child(2) {
  background: #42CD7A;
}
.hMf9RIbXonqcMjja3BcH span:last-child {
  background: #FF4848;
}
.vaj8GMEs7JdTBEdRWjLi span {
  background-color: #000000;
}
.Qjbw_ocHQ0CtDCDXukSj span {
  background-color: #ffffff;
}
@keyframes Q3801htlaXLFMEFJugOI {
  0% {
    transform: translateY(0rem);
  }
  25% {
    transform: translateY(-0.5rem);
  }
  50% {
    transform: translateY(0rem);
  }
  75% {
    transform: translateY(0.5rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.btn {
  position: relative;
  color: inherit;
  display: inline-flex;
  font-weight: 400;
  white-space: nowrap;
  user-select: none;
  text-transform: none;
  overflow: visible;
  font-family: 'IBM Plex Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: thin solid transparent;
  outline: none;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  line-height: 1;
}
.btn .cw-icon {
  font-size: 2.4rem;
}
.btn--image .btnContentWrapper {
  justify-content: center;
}
.btn--image img {
  width: 80%;
  height: 80%;
}
.btn--xl {
  padding: 0.6rem 1.8rem;
  font-size: 1.6rem;
  height: 5.4rem;
}
.btn--xl.btn--icon {
  font-size: 3.6rem;
  width: 5.4rem;
  padding: 0.2rem 0.4rem;
}
.btn--xl.btn--icon .cw-icon {
  font-size: 3.6rem;
}
.btn--xl.btn--image {
  width: 5.4rem;
  padding: 0;
}
.btn--m {
  padding: 0.6rem 1.8rem;
  font-size: 1.6rem;
  height: 3.6rem;
}
.btn--m.btn--icon {
  font-size: 2.4rem;
  width: 3.6rem;
  padding: 0.2rem 0.4rem;
}
.btn--m.btn--icon .cw-icon {
  font-size: 2.4rem;
}
.btn--m.btn--image {
  width: 3.6rem;
  padding: 0;
}
.btn--ml {
  padding: 0.6rem 1.8rem;
  font-size: 1.6rem;
  height: 4.4rem;
}
.btn--ml.btn--icon {
  font-size: 2.5rem;
  width: 4.4rem;
  padding: 0.2rem 0.4rem;
}
.btn--ml.btn--icon .cw-icon {
  font-size: 2.5rem;
}
.btn--ml.btn--image {
  width: 4.4rem;
  padding: 0;
}
.btn--s {
  padding: 0.4rem 2.2rem;
  font-size: 1rem;
  height: 2.4rem;
}
.btn--s .cw-icon {
  font-size: 1.6rem;
}
.btn--s.btn--icon {
  width: 2.4rem;
  font-size: 1.6rem;
  padding: 0.2rem 0.4rem;
}
.btn--s.btn--icon .cw-icon {
  font-size: 1.6rem;
}
.btn--s.btn--image {
  width: 2.4rem;
  padding: 0;
}
.btn--xs {
  padding: 0.1rem 0.4rem;
  font-size: 1.4rem;
  height: 2rem;
}
.btn--xs .cw-icon {
  font-size: 1.4rem;
}
.btn--xs.btn--icon {
  width: 2rem;
}
.btn--xs.btn--icon .cw-icon {
  font-size: 1.4rem;
}
.btn--xs.btn--image {
  width: 2rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn:disabled,
.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:not(.btn--silent):focus {
  box-shadow: 0 0 0.4rem var(--color-neutral-lightest);
  border-color: var(--color-black);
}
.btn.btn--without-paddings {
  padding: 0;
}
.btn--silent {
  cursor: default;
}
.btn--text-eillipsis span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline;
}
.btn a {
  color: inherit;
  text-decoration: none;
}
.btnContentWrapper {
  display: inline-flex;
  align-items: center;
}
.buttonIconLeft > .cw-icon {
  margin-right: 1rem;
}
.buttonIconRight > .cw-icon {
  margin-left: 1rem;
}
.buttonDefault {
  background-color: var(--color-neutral);
  color: var(--color-white);
}
.buttonDefault:not(.btn--silent):hover {
  background-color: #4d4d4d;
}
.buttonDefault:not(.btn--silent):active {
  background-color: #1F1F1F;
}
.buttonDefault.btn--active.btn--active-default {
  background-color: var(--color-white);
  color: var(--color-black);
}
.buttonDefault.btn--active.btn--active-ambient {
  background-color: var(--color-grey-6);
  color: var(--color-white);
}
.buttonDefault.btn--active.btn--active-ambient:focus {
  box-shadow: none;
  border-bottom-color: transparent;
}
.buttonPrimary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.buttonPrimary:not(.btn--silent):hover {
  background-color: #4a72ff;
}
.buttonPrimary.btn--active {
  background-color: #2353ff;
}
.buttonSecondary {
  background-color: var(--color-secondary);
  color: var(--color-black);
}
.buttonSecondary:not(.btn--silent):hover {
  background: #EBC39D;
}
.buttonSecondary.btn--active {
  background-color: #9E7C5B;
}
.buttonTertiary {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}
.buttonTertiary:not(.btn--silent):hover {
  background: #FF6E6E;
}
.buttonTertiary.btn--active {
  background-color: #BF3636;
}
.buttonQuaternary {
  background-color: var(--color-warning);
  color: var(--color-black);
}
.buttonQuaternary:not(.btn--silent):hover {
  background: #F5D77A;
}
.buttonQuaternary.btn--active {
  background-color: #EEBA1B;
}
.buttonAccent {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.buttonAccent:not(.btn--silent):hover {
  background: #66D994;
}
.buttonAccent.btn--active {
  background-color: #2D8C53;
}
.buttonGhost {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  opacity: 0.8;
}
.buttonGhost:not(.btn--silent):hover {
  opacity: 1;
}
.buttonGhost.btn--active {
  opacity: 1;
  background-color: var(--color-white);
  color: var(--color-black);
}
.buttonGhost:disabled,
.buttonGhost.btn--disabled {
  opacity: 0.2;
}
.buttonGhostWarning {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: var(--color-tertiary);
}
.buttonGhostWarning:disabled,
.buttonGhostWarning.btn--disabled {
  opacity: 0.2;
}
.buttonTransparent {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.buttonTransparent:disabled,
.buttonTransparent.btn--disabled {
  opacity: 0.2;
}
.buttonTransparent:not(.btn--silent):focus {
  box-shadow: none;
  border-color: transparent;
}
.buttonTransparent.btn--active.btn--active-lightest {
  background-color: var(--color-neutral-lightest);
  color: var(--color-black);
}
.buttonTransparentHoverable {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.buttonTransparentHoverable:disabled,
.buttonTransparentHoverable.btn--disabled {
  opacity: 0.2;
}
.buttonTransparentHoverable:not(.btn--silent):focus {
  box-shadow: none;
  border-color: transparent;
}
.buttonTransparentHoverable.btn--active.btn--active-lightest {
  background-color: var(--color-neutral-lightest);
  color: var(--color-black);
}
.buttonTransparentHoverable:hover {
  background-color: #4d4d4d;
}
.buttonBordered {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  border: thin solid var(--color-neutral);
  color: var(--color-black);
}
.buttonBordered:disabled,
.buttonBordered.btn--disabled {
  opacity: 0.2;
}
.buttonBordered.btn--active {
  background-color: var(--color-white);
}
.buttonNeutralNotSoLight {
  background-color: var(--color-neutral-not-so-light);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: var(--color-neutral-not-so-light);
  color: var(--color-white);
}
.buttonNeutralNotSoLight:disabled,
.buttonNeutralNotSoLight.btn--disabled {
  opacity: 0.2;
}
.buttonInert {
  background-color: rgba(0, 0, 0, 0.5);
  outline: none;
  box-shadow: none;
  color: var(--color-white);
}
.buttonInert:hover {
  background-color: #4d4d4d;
}
.buttonTextColorDark {
  color: var(--color-black);
}
.buttonTextColorLight {
  color: var(--color-white);
}
.btnHideChildren {
  visibility: hidden;
}
.btnLoading {
  pointer-events: none;
}
.btnLoader {
  position: absolute;
}
.btnWide {
  min-width: 20rem;
}

.kVsrPoVqXRCJMG9gS7lR {
  font-size: 1.4rem;
}

.linearProgress {
  height: 16px;
  background-color: transparent;
}
.linearProgressValue {
  height: 100%;
}
.purpleLinearProgress .linearProgressValue {
  background-color: var(--color-purple);
}
.orangeLinearProgress .linearProgressValue {
  background-color: var(--color-secondary);
}
.greyLinearProgress .linearProgressValue {
  background-color: var(--color-grey-4);
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.expensesProgress {
  /* from design */
  width: 52px;
  margin-right: 12px;
  flex-shrink: 0;
}
.expensesExpandLink {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  margin-left: auto;
  color: var(--color-primary-links);
  cursor: pointer;
  border-bottom: 1px dashed var(--color-primary-links);
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.metricMap {
  --metric-map-size: 18rem;
  text-align: center;
  width: var(--metric-map-size);
  height: var(--metric-map-size);
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.metricMap img {
  max-width: var(--metric-map-size);
  max-height: var(--metric-map-size);
}

.label {
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  line-height: 1.2;
}
.labelXL {
  font-size: 1.6rem;
  padding: 0.1rem 1.2rem;
  height: 3.6rem;
}
.labelL {
  font-size: 1.4rem;
  padding: 0.1rem 0.8rem;
  height: 2.2rem;
}
.labelM {
  font-size: 1rem;
  padding: 0.1rem 0.4rem;
  height: 1.6rem;
}
.labelS {
  font-size: 0.8rem;
  padding: 0.1rem;
  height: 1rem;
}
.labelRound {
  border-radius: var(--border-radius-secondary);
  min-width: 1rem;
  align-items: center;
}
.labelNeutral {
  background-color: var(--color-neutral);
  border: thin solid var(--color-neutral);
}
.labelPrimary {
  background-color: var(--color-primary);
  border: thin solid var(--color-primary);
}
.labelSecondary {
  background-color: var(--color-secondary);
  color: var(--color-black);
  border: thin solid var(--color-secondary);
}
.labelTertiary {
  background-color: var(--color-tertiary);
  color: var(--color-white);
  border: thin solid var(--color-tertiary);
}
.labelQuaternary {
  background-color: var(--color-warning);
  color: var(--color-black);
  border: thin solid var(--color-warning);
}
.labelAccent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: thin solid var(--color-accent);
}
.labelWhite {
  color: var(--color-black);
  background-color: var(--color-white);
  border: thin solid var(--color-white);
}
.labelNeutralLight {
  background-color: var(--color-neutral-not-so-light);
  color: var(--color-white);
  border: thin solid var(--color-neutral-not-so-light);
}
.labelBlock {
  display: flex;
  width: 100%;
  text-align: center;
}

.lET7RvC1kM1PHFqT01nQ {
  color: var(--color-white);

  > :last-child:not(:first-child) {
    margin-left: 2px;
  }

  &.bxOzD5t3ps81PnyuJt4R {
    display: block;
  }
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.buttonGroup {
  display: flex;
  flex-direction: row;
}
.buttonGroup > * {
  margin-right: var(--base-unit-m);
}
.buttonGroup > *:last-child {
  margin-right: 0;
}

.dDT4j3MwLVvU3lAv3Og2 {
  display: inline-flex;
  align-items: center;

  &:hover {
    text-decoration: none;

    & span:not(._7SjOjdFKB5zqv1bKtx3) {
      text-decoration: underline;
    }
  }
}

._7SjOjdFKB5zqv1bKtx3 {
  color: var(--color-white);
  margin: 0 var(--base-unit-m) 0 0;
}

.EArXry_GZSn2vLlfCNw7 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.x2GGwm90pohqXGiYF6e7 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .yxByVbig2bI2XvfECMeg {
    font-size: 0.475vw;
  }
}
.WBrG0HZHlPEuntkny38_ {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.P9YbrcXYkK8TzXPCMxwC {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.gCQ4o1VgC3goi7UQYCos {
  color: #000000;
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.3;
}
h1.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
}
h2.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
}
h3.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
h4.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
}
h5.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.8rem;
}
h6.gCQ4o1VgC3goi7UQYCos {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.Pr0XZX1_sZVwqxSyKOVa {
  color: #ffffff;
}
.aaZ735A1r1aeORFIKOnc {
  text-transform: uppercase;
}
.D3f40vosm_maNXtSPOyN {
  font-weight: 700;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.fancyCheckbox {
  --checkbox-mark-color: var(--color-white);
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}
.fancyCheckbox.fancyCheckboxDisabled {
  cursor: default;
}
.fancyCheckbox .fancyCheckboxLabel {
  display: inline-block;
  margin-left: 0.7rem;
  position: relative;
  top: 0.1rem;
}
.fancyCheckbox .fancyCheckboxLabelDisabled {
  color: var(--color-neutral-light);
}
.fancyCheckbox .checkmark {
  height: 1.8rem;
  width: 1.8rem;
  min-width: 1.8rem;
  border: thin solid var(--color-neutral-lightest);
  position: relative;
}
.fancyCheckbox .checkmark .ambientDash {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fancyCheckbox .checkmark .ambientDash:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  transform: translate(-4.5px, -1px);
  width: 9px;
  background: var(--color-white);
}
.fancyCheckbox--radio .checkmark {
  padding: 0.2rem;
  border-radius: 50%;
  margin-top: 1px;
}
.fancyCheckbox--radio .checkmark:after {
  content: "";
  display: none;
  background: var(--color-white);
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.fancyCheckbox--checkbox .checkmark:after {
  content: "";
  display: none;
  position: relative;
  left: 0.5rem;
  top: 0;
  height: 1rem;
  width: 0.5rem;
  border: solid var(--checkbox-mark-color);
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}
.fancyCheckbox--ambient .checkmark {
  padding: 0;
}
.fancyCheckbox--ambient .checkmark:after {
  background: var(--color-neutral-light);
}
.fancyCheckbox:hover input ~ .checkmark {
  border-color: var(--color-white);
  background: var(--color-grey-7);
}
.fancyCheckbox:focus {
  outline: none;
}
.fancyCheckbox:focus input ~ .checkmark {
  box-shadow: 0 0 0.3rem var(--color-white);
}
.fancyCheckbox:focus input:disabled ~ .checkmark {
  box-shadow: none;
}
.fancyCheckbox input {
  display: none;
}
.fancyCheckbox input:checked ~ .checkmark:after {
  display: block;
}
.fancyCheckbox input:disabled ~ .checkmark {
  cursor: default;
  background-color: var(--color-neutral);
  border-color: var(--color-neutral-light);
}
.fancyCheckbox input:disabled:hover ~ .checkmark {
  border-color: var(--color-neutral-light);
}
.fancyCheckbox input:disabled:checked ~ .checkmark:after {
  border-color: var(--color-neutral-light);
}
.fancyCheckboxBlack {
  --checkbox-mark-color: var(--color-black);
}
.fancyCheckboxBlack.fancyCheckbox--radio .checkmark:after {
  background-color: var(--color-neutral);
}
.fancyCheckboxSpectrum {
  --checkbox-mark-color: var(--color-black);
}
.fancyCheckboxSpectrum .checkmark {
  border-color: #757575;
  box-shadow: none;
}
.fancyCheckboxSpectrum .checkmark:after {
  border: 0.1rem solid #BABABA;
  background: #000000;
  box-sizing: border-box;
}
.fancyCheckboxSpectrum .checkmark .ambientDash:after {
  background: red;
}
.fancyCheckboxSpectrum:hover input ~ .checkmark {
  border-color: #757575;
  background: transparent;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.checkboxGroupGrid {
  display: grid;
  grid-gap: var(--base-unit-l);
  justify-content: space-between;
}
.checkboxGroupGridTwoColumn {
  grid-template-columns: repeat(auto-fill, 9.9em);
}
.checkboxGroupGridThreeColumn {
  grid-template-columns: repeat(auto-fill, 5.8em);
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: var(--base-unit-xl) var(--base-unit-l);
}
.modal .Popover {
  z-index: 10010;
}
.modalCentered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modalBottomed {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.modalBackdrop {
  background: var(--color-black);
  opacity: 0.8;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modalInner {
  min-width: 50%;
  max-width: 80%;
  width: fit-content;
  max-height: 100%;
  z-index: 10010;
  padding-top: var(--base-unit-xl);
  border-radius: 0.6rem;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  background: var(--color-modal);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .modalInner:not(.modalInnerFitByContent) {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .modalInner {
    max-width: 92rem;
  }
  .modalInner:not(.modalInnerFitByContent) {
    min-width: 30%;
  }
}
.modalInnerStretched {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.modalInnerStretched .modalContent {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.modalInnerWide {
  width: 100%;
}
.modalInnerFitByContent {
  min-width: auto;
}
.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--base-unit-xl);
  min-height: 3.8rem;
  flex-shrink: 0;
}
.modalTitle {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.modalControls {
  color: var(--color-white);
  position: absolute;
  top: var(--base-unit-xl);
  right: var(--base-unit-xl);
}
.modalContent {
  padding: var(--base-unit-xl);
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}
.modalContentWrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.modalContentWrapper.modalContentWithScroll {
  padding-right: 1rem;
}
.modalContentWrapper::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.modalContentWrapper::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.modalContentWrapper::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.modalContentWrapper::-webkit-scrollbar-corner {
  display: none;
}
.modalChildren {
  overflow: hidden;
}
.modalFooter {
  border-top: thin solid var(--color-neutral);
  padding: var(--base-unit-l) var(--base-unit-xl);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-shrink: 0;
}



.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
@media screen and (min-width: 768px) {
  .accessModal {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .accessModal {
    display: flex;
    align-items: stretch;
  }
}
.accessModal .accessModalHeading {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .accessModal .accessModalHeading {
    margin-bottom: 28px;
  }
}
.accessModal .restrictedDescription {
  padding: 12px;
}
.accessModal .accessModalCheckbox {
  padding: 16px 13px;
  border-radius: 6px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .accessModal .accessModalCheckbox {
    min-height: 130px;
  }
}
.accessModal .accessModalCheckbox:not(:last-of-type) {
  margin-bottom: 4px;
}
.accessModal .accessModalCheckboxActive {
  background-color: var(--color-blue-1);
}
.accessModal .accessModalCheckboxDisabled {
  opacity: 0.3;
}
.accessModal .accessModalCheckboxActiveDisabled {
  cursor: default;
  background-color: var(--color-grey-8);
}
.accessModal .accessModalColumn {
  padding-top: 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .accessModal .accessModalColumn {
    flex: 1 0 50%;
    padding-right: 25px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 768px) {
  .accessModal .accessModalLeft {
    padding-right: 25px;
  }
}
@media screen and (min-width: 768px) {
  .accessModal .accessModalRight {
    padding-left: 25px;
  }
}
.accessModal .accessModalOption {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
}
.accessModal .accessModalOptionIcon {
  margin-bottom: 3px;
  color: var(--color-white);
}
.accessModal .accessModalOptionDataIcon {
  position: relative;
  font-size: 2.3rem;
  margin-top: -3px;
}
.accessModal .accessModalOptionTitle {
  margin-left: 5px;
  font-weight: 450;
  line-height: 1;
}
.accessModal .accessModalOptionDescription {
  color: var(--color-white);
  opacity: 0.6;
  font-size: 1.6rem;
  line-height: 2rem;
}
.accessModal .accessModalSeparator {
  border-radius: 1px;
  flex: 0 0 2px;
  background-color: var(--color-grey-6);
}
.recursive {
  padding: 12px;
  margin-bottom: 18px;
}
.recursive .recursiveLabel {
  margin-bottom: 11px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 450;
}
.recursive .recursiveDescription {
  padding: 0 27px;
}
@media screen and (min-width: 768px) {
  .recursive .recursiveDescription {
    display: flex;
    align-items: flex-start;
  }
}
.recursive .recursiveDescriptionHidden {
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .recursive .recursiveDescriptionColumn {
    flex: 0 0 50%;
  }
  .recursive .recursiveDescriptionColumn:first-child {
    margin-right: 10px;
  }
}
.recursive .recursiveDescriptionLabel {
  margin-bottom: 8px;
}
.recursive .recursiveDescriptionInput {
  border-radius: 3px;
  background-color: var(--color-grey-8);
  padding: 6px;
  height: 35px;
  display: flex;
  align-items: center;
}
.recursive .recursiveDescriptionIcon {
  margin-bottom: 3px;
  margin-right: 2px;
}
.recursive .recursiveDescriptionSecurityIcon {
  font-size: 2.5rem;
  line-height: 2.34rem;
  margin-right: 2px;
}
.recursive .recursiveRestricted {
  line-height: 2rem;
  height: 35px;
}
.accessModalFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--base-unit-l) 0 0 0;
}

.dzH65IwEIqRicxlpZk1n {
  display: inline-block;
  text-align: center;

  &.LcSAaD3C2tkGf63rHhVw {
    min-width: 35px;
  }

  &.xHIaA1CeT4hEZoDgr4Y8 {
    min-width: 50px;
  }
}

.IJQr28Ba528qLX61mfyP {
  cursor: pointer;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.productLabels {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: max-content;
}
.productLabels > * {
  margin-left: var(--base-unit-m);
  margin-bottom: 0.2rem;
}
.productLabels > *:first-child {
  margin-left: 0;
}
.productLabelsCentered {
  justify-content: center;
}

.BSXiktdPmA4QXIodX9aj {
  &.x1ZyRI67sjDYwsywM9VK {
    --avatar-size: 1.8rem;
    font-size: 1.2rem;
  }

  &.p9HT7j7woyVW_O6O4MPO {
    --avatar-size: 2.8rem;
    font-size: 1.4rem;
  }

  &.cXUQhidZfi_GeEAAHjvx {
    --avatar-size: 4rem;
    font-size: 1.6rem;
  }

  color: var(--color-white);
  width: var(--avatar-size);
  height: var(--avatar-size);
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
  justify-content: center;

  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--color-purple);
  }

  &:first-of-type {
    mask {
      display: none;
    }
  }
}

.AwlAbdjj5rMOstVOS3uc {
  position: relative;
  font-weight: 500;
}

.aiEmQqUu8eVUXtGMb4Mq {
  display: flex;
  align-items: center;
}

.cbpiuybYj53EMRTEMQlf {
  margin-right: var(--base-unit-m);
}

.xsGwcLUPhmZBDhRTUOwO {
  white-space: nowrap;
  max-width: 21.5rem;
  line-height: 1;

  .ZDzRUovMbE9rv0uiJLzr {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.4rem;
  }

  .ro4VIKfdI1TwwF06boFs {
    font-size: 1.2rem;
  }
}

.OjqUpXNJc48ppCT3FqXg {
  background: var(--color-accent);
  height: 8px;
  width: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 1px;
  right: 1px;
  box-shadow: 0 0 2px 0 var(--color-neutral-not-so-light);
}

.INANJljUOPDVpw_JS8bg {
  display: flex;

  &.Babsu34d9Ko7zCB9iAR0 {
    --offset: -4px;
  }

  &.ZkglUxg3inuf7FnkXyuv {
    --offset: -6px;
  }

  &.Xe_5rqXALGn6be7ktwvL {
    --offset: -8px;
  }

  > :not(:first-child) {
    margin-left: var(--offset);
  }
}

.rabeiQEYNuQ3ddIgyJSE {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.SlNQ8l6nNE9yrRcqEIYB {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .eF434occ2ON1seTSbgnp {
    font-size: 0.475vw;
  }
}
.r89FOS65FtSxX0bcHTv7 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.oYoud23JaA1FDFz8pYB3 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.o1BREpUeuUQbtdzfjnCU {
  z-index: 100;
  background: #1c1c1c;
  display: block;
  transition-property: none;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  font-size: 1.3rem;
  line-height: 2.1rem;
  border-radius: 1.2rem;
  border: thin solid #272B2B;
  padding: 1.2rem 1.7rem;
}

.Xnegsj7jYVEoJsZedcNZ {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.DBaD7_hFJbyA1GLrDUBD {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .p3uiRSYDRL3E75FBnV7i {
    font-size: 0.475vw;
  }
}
.QAJXTvPUbYAmwUij04yn {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.PwkZaYWMaSdlCAeo2E_n {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.pWfc0ZguLwrxVtNksI0Z {
  padding: 1.2rem 1.7rem;
  max-width: 25rem;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.fancy-select {
  min-width: 16rem;
}
@media only screen and (max-width: 576px) {
  .fancy-select {
    min-width: 10rem;
  }
}
.fancy-select--without-border .fancy-select__control {
  border: thin solid transparent;
}
.fancy-select--no-arrow .fancy-select__dropdown-indicator {
  display: none;
}
.fancy-select .fancy-select__menu {
  z-index: 10 !important;
}
.fancy-select .fancy-select__control {
  min-height: 3.6rem !important;
  height: auto;
  font-size: 1.6rem;
  border-radius: 0.2rem;
}
.fancy-select .fancy-select__indicator-separator {
  display: none;
}
.fancy-select .fancy-select--without-border .fancy-select__control {
  border-collapse: inherit;
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
}
.fancy-select:hover > .fancy-select__control {
  background: #4d4d4d;
  border-color: transparent;
}
.fancy-select:focus {
  outline: none;
  box-shadow: 0 0 0.4rem #BDBDBD !important;
}
.fancy-select:focus > .fancy-select__control {
  border-color: #000000;
}
.fancy-select:active > .fancy-select__control {
  background: #262626;
  border-color: #262626;
}
.fancy-select .fancy-select__control {
  background-color: #272B2B;
  box-shadow: none;
  border-color: #272B2B;
  border-radius: 0.3rem;
}
.fancy-select .fancy-select__control--is-disabled {
  background-color: #171717 !important;
  opacity: 0.5;
}
.fancy-select .fancy-select__single-value,
.fancy-select input {
  color: #ffffff !important;
}
.fancy-select .fancy-select__option,
.fancy-select .fancy-select__menu {
  background: transparent;
  color: #000000;
}
.fancy-select .fancy-select__option {
  cursor: pointer;
  padding: 0.85rem 1.1rem 1.3rem;
  color: #000000;
  border-bottom: none;
}
.fancy-select .fancy-select__option--is-focused {
  color: #000000;
  background-color: #B5B5B5;
}
.fancy-select .fancy-select__menu-list {
  z-index: 10;
  border-color: transparent;
  font-size: 1.6rem;
  border-radius: 0.3rem;
  background: white;
  top: 125%;
  padding: 4px 0;
}
.fancy-select .fancy-select__menu-list::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: 'white';
}
.fancy-select .fancy-select__menu-list::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: 'white';
}
.fancy-select .fancy-select__menu-list::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.fancy-select .fancy-select__menu-list::-webkit-scrollbar-corner {
  display: none;
}
.fancy-select .fancy-select__option--is-selected {
  background: var(--color-neutral-lightest);
}
.fancy-select .fancy-select__single-value {
  width: 90%;
}
.fancy-select .fancy-select__multi-value {
  border-radius: 12px;
  padding: 0 0 0 6px;
  background-color: #ffffff;
  color: #000000;
}
.fancy-select .fancy-select__multi-value__remove {
  border-radius: 100%;
  cursor: pointer;
  width: 18px;
  padding: 0;
  margin: 0 4px 0 3px;
}
.fancy-select .fancy-select__multi-value__remove:hover {
  background: transparent;
  color: #000000;
}
.fancy-select .fancy-select__group-heading {
  font-size: 1.6rem;
  font-weight: 450;
  opacity: 0.33;
  text-transform: none;
}
.fancy-select .fancy-select__option-title {
  display: flex;
  align-items: center;
  line-height: normal;
}
.fancy-select .fancy-select__option-icon {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  margin-right: 3px;
  line-height: 1;
}
.fancy-select .fancy-select__option-label {
  font-size: 1.6rem;
  font-weight: 450;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.fancy-select .fancy-select__option-description {
  font-size: 1.47rem;
  font-weight: 450;
  opacity: 0.4;
  padding-top: 0.75rem;
}

._99pozyCFbU4u53Msz9Mc input[type='checkbox'] {
  margin-right: 1.5rem;
  position: relative;
  top: -0.1rem;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.formLabel {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0 0 1.2rem 0;
  display: flex;
  align-items: center;
}
.formLabelActiveFilter {
  color: #ffffff;
}
.formLabelNonActiveFilter {
  color: #BDBDBD;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.personalAccessModal {
  width: 100%;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .personalAccessModal .personalAccessContent {
    display: flex;
    align-items: stretch;
    margin-bottom: 22px;
    height: 530px;
    overflow: hidden;
  }
}
.personalAccessModal .personalAccessHeading {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .personalAccessModal .personalAccessHeading {
    margin-bottom: 24px;
  }
}
.personalAccessModal .personalAccessForm > *:not(:last-child) {
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .personalAccessModal .personalAccessAdd {
    margin-top: 12px;
  }
}
.personalAccessModal .recursiveCheckbox {
  margin-bottom: 10px;
}
.personalAccessModal .recursiveCheckboxLabel {
  width: 100%;
  margin-right: 2.5rem;
}
.personalAccessModal .recursiveLabel {
  font-size: 2rem;
  line-height: 1;
  font-weight: 450;
}
.personalAccessModal .recursiveDescriptionInput {
  background-color: #272B2B;
  box-shadow: none;
  border-color: #272B2B;
  border-radius: 0.3rem;
  padding: 6px;
  height: 36px;
  display: flex;
  align-items: center;
}
.personalAccessModal .recursiveDescriptionInput.recursiveDescriptionInputHidden {
  visibility: hidden;
}
.personalAccessModal .recursiveDescriptionIcon {
  margin-bottom: 3px;
  margin-right: 2px;
}
.personalAccessModal .recursiveDescriptionSecurityIcon {
  font-size: 1.7rem;
  margin-right: 3px;
  line-height: 1;
}
.personalAccessModal .personalAccessLeft {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border-color);
  background: var(--color-black);
}
@media screen and (min-width: 768px) {
  .personalAccessModal .personalAccessLeft {
    flex: 0 0 48%;
    padding: 22px 25px;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #000000;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar {
    width: 1rem;
    padding: 10px;
    background-color: #000000;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar-thumb {
    background-color: #272B2B;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar-corner {
    display: none;
  }
}
.personalAccessModal .personalAccessRight {
  padding: 10px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .personalAccessModal .personalAccessRight {
    flex: 0 0 52%;
    padding: 22px 0 22px 25px;
    height: 100%;
  }
}
.personalAccessModal .personalAccessRight .personalAccessHeading {
  flex-shrink: 0;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent {
  flex-grow: 1;
  min-height: 50px;
  padding: 20px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar-corner {
  display: none;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent .personalAccessRightEmpty {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  opacity: 0.6;
}
.personalAccessModal .personalAccessRight .personalAccessRightLoader {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.personalAccessModal .personalAccessFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--base-unit-l) 0 0 0;
}
.personalAccessModal .userOption {
  display: flex;
  align-items: center;
}
.personalAccessModal .userOptionDescription {
  margin-left: 12px;
}
.personalAccessModal .userOptionName {
  font-weight: 450;
}
.personalAccessModal .userOptionCompany {
  opacity: 0.66;
}
.personalAccessModal .userSelectedOption {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.personalAccessModal .userSelectedOptionName {
  display: inline-block;
  margin-left: 3px;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.personalAccessUser {
  padding-bottom: 25px;
}
.personalAccessUser:hover .personalAccessMore {
  background: var(--color-modal);
}
.personalAccessUser .personalAccessUserContent {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 15px 12px;
}
.personalAccessUser .personalAccessAvatar {
  margin: 1px 10px 0 0;
}
.personalAccessUser .personalAccessDescription {
  margin-right: auto;
  padding-right: 12px;
  padding-top: 2px;
}
.personalAccessUser .personalAccessDescriptionName span {
  display: inline-block;
}
.personalAccessUser .personalAccessDescriptionAccess {
  display: flex;
  align-items: center;
}
.personalAccessUser .personalAccessDescriptionIcon {
  font-size: 1.7rem;
  margin-left: -4px;
  margin-right: 3px;
  line-height: 1;
}
.personalAccessUser .personalAccessDescriptionName {
  color: var(--color-white);
  opacity: 0.6;
}
.personalAccessOptionRemove {
  position: relative;
  margin-top: 9px;
  padding: 0.85rem 1.1rem 0;
}
.personalAccessOptionRemove:after {
  content: '';
  position: absolute;
  height: 1px;
  background-color: #808080;
  top: -5px;
  left: 0;
  width: 100%;
}

:root {
  --acl-user-border-color: var(--color-black);
}

.XvA33GeH17SqGw9lBL4w {
  display: flex;

  > :not(:first-child) {
    margin-left: -0.6rem;
  }

  .eYNwGdSd9VhbSSUdd5Hg {
    &.jXZ5rNW6KPH6ozui8uH5 {
      --size: 1.8rem;
    }

    &._x69b3rM_YaGr3y5GbrZ {
      --size: 2.8rem;
    }

    &.u2zxKDly1QlWe0e5C9sh {
      --size: 4rem;
    }

    width: var(--size);
    height: var(--size);
    font-size: var(--size);
    cursor: pointer;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    outline: none;
    color: var(--color-white);
    text-align: center;
    opacity: 0.66;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .HjhfEpmaRiNgdMMVJogB {
    line-height: 1;
  }
}

.f__LucnUxblQHK9aMcXw {
  cursor: pointer;
}

.AFjNggCjghqqJ_bkg7Fk {
  position: relative;
  border: 0.2rem solid var(--acl-user-border-color);
}

.wIXfG77qj06KbFJHABRH {
  display: flex;
  align-items: center;
  gap: 1rem;

  &:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.nextPaymentAmount {
  margin-right: 8px;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.highlightedHpoColor {
  font-variation-settings: 'wght' 850;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.patentList {
  min-width: 10rem;
}
.patentListItem {
  padding: 0.6rem 0;
  display: flex;
}
.patentListItemCountry {
  margin-right: 1.2rem;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.shapeWithPatents {
  border-bottom: thin dotted white;
  cursor: pointer;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.productLink {
  color: #4A90E2;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.productPrice {
  font-size: 2rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 576px) {
  .productPrice {
    font-size: 1.4rem;
  }
}
.productPriceABS {
  color: #F1B072;
  white-space: nowrap;
}
.productPriceCt {
  color: #ffffff;
  font-size: 1.6rem;
  white-space: nowrap;
}
.productPriceRightAligned {
  text-align: right;
}
.productPriceLeftAligned {
  text-align: left;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.productInfo {
  display: flex;
  justify-content: space-between;
  white-space: normal;
  margin-bottom: 0.5rem;
}
.productInfoEmpty {
  margin-bottom: 0;
}
.productInfoSmall {
  flex-direction: column-reverse;
}
.productInfoDesc {
  text-align: left;
  margin-right: auto;
}
.productInfoShortView {
  line-height: 2rem;
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  word-break: break-word;
}
.productInfoDescRight {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.GAvswVi8sMSIZSgx_OtM {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.GafT2rHeU4dFrwCEsC2k {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .dfreKOEMqfTQo82mheuC {
    font-size: 0.475vw;
  }
}
.igTPO368JyuzdSlw7nwt {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.wi6op3OabQDnu9m1YqaA {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.oO2ozGcnMy08cIdeXAKy {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
.oO2ozGcnMy08cIdeXAKy:hover {
  text-decoration: underline;
}

.tOofBcGflyyqsnKuAoaC {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.oiC6acZ6uBYiuauFY1Vr {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .A_A54RETnFviY_PMO22v {
    font-size: 0.475vw;
  }
}
.WW6c9CgZWGnQ5AHCbMs3 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.tDDmoCkd2oi5pOdp2LJQ {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.yLRAvXwl79kzk8jfeRsA {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.RccsfqoDbEELTcel3W_u {
  width: 1em;
  height: 1em;
  border-radius: 0.2rem;
  flex-shrink: 0;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.publicCollectionConfirmationContentImg {
  margin: var(--base-unit-l) auto;
  display: block;
  max-width: 100%;
}

.g09L9U4wgQZGmJXaUQ5H {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}
.VY0ly0vBbke4iYxmcXNn {
  font-size: 1.4rem;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
:root {
  --sidebar-width: 30rem;
}
.layout {
  display: grid;
  grid-template-rows: minmax(100%, max-content);
  padding-top: 5.6rem;
  width: 100%;
}
.cwp-has-fullscreen-element .layout {
  padding-top: 0;
  height: 100%;
}
.layoutStrictHeight {
  height: 100%;
  position: fixed;
  overflow: hidden;
}
.layoutTwoColumn {
  grid-template-areas: "sidebar content";
  grid-template-rows: 100%;
}
@media screen and (max-width: 991.9px) {
  .layoutTwoColumn {
    grid-template-areas: "content" !important;
    position: static;
    width: 100%;
  }
}
.layoutWithoutSidebar {
  grid-template-areas: "content" !important;
  grid-template-columns: 100%;
}
.layoutWithSidebar {
  grid-template-columns: var(--sidebar-width) calc(100% - var(--sidebar-width));
}
@media screen and (max-width: 991.9px) {
  .layoutWithSidebar {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .layoutWithSidebar {
    grid-template-rows: auto;
  }
}
.layoutOneColumn {
  grid-template-areas: "content";
  grid-template-columns: 100%;
}

.FYnvGJxioZx5f9cmSYka {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.V4w4isaEMD0ZeWSnuGvE {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .PJVPXd9hswq2i_NjFqJG {
    font-size: 0.475vw;
  }
}
.ffCDq5XDYfyZWLlvYbux {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.xcy9eEUlh0LL4YM321ZS {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.ZIfEMjALL2Pw0EZs7JR8 {
  margin: 2.4rem 0 0 0;
}
.lINQn76Vj7A4YEzIWYsA {
  font-size: 1.8rem;
  text-align: center;
  max-width: 576px;
  margin: 0 auto;
  color: #ffffff;
  padding: 0 var(--unified-padding-right-large) 0 var(--unified-padding-left-large);
}
.rQlP5xxUxQmuxoS1JGPQ {
  color: #2F5AF3;
  font-size: 16rem;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 575.9px) {
  .rQlP5xxUxQmuxoS1JGPQ {
    font-size: 12rem;
  }
}
.G0LvnjUkOJXDFNX4M3W4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.4rem 0 0 0;
}
.G0LvnjUkOJXDFNX4M3W4 img {
  display: block;
}
@media screen and (max-width: 575.9px) {
  .G0LvnjUkOJXDFNX4M3W4 img {
    width: 60%;
  }
}
.G1HPRWD1f9XHuf_sUKvw {
  line-height: 1.3;
  text-align: center;
  margin: 2.4rem 0 0 0;
}
.tbeawa5ClYG7IfAGyaeA {
  width: fit-content;
  margin: 0 auto 2.4rem auto;
}
.YEuimFyKAoq7h13lf_49 {
  margin: 2.4rem 0 0 0;
}
.mB77EB4liNkDhIAFs1wI {
  vertical-align: -0.2rem;
}
.aDoMMNHqhCqUXtoj5QZB {
  width: fit-content;
  margin: auto;
}

.uNcbwLRPpBD3jgy3T0Ca {
  color: var(--color-white);
  background: var(--color-modal);
  padding: var(--base-unit-l) var(--base-unit-xl);
  white-space: nowrap;
  display: flex;

  &.GEQrTec57DD2DiB4PWKY {
    background-color: transparent;
    color: var(--color-black);
  }
}

.uNcbwLRPpBD3jgy3T0Ca:hover {
  background: var(--color-neutral);

  &.GEQrTec57DD2DiB4PWKY {
    background-color: var(--color-neutral-lightest);
  }
}

.uNcbwLRPpBD3jgy3T0Ca a:visited {
  color: inherit;
}

.uNcbwLRPpBD3jgy3T0Ca > a, .uNcbwLRPpBD3jgy3T0Ca > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: auto;

  margin: calc(-1 * var(--base-unit-l)) calc(-1 * var(--base-unit-xl));
  padding: var(--base-unit-l) var(--base-unit-xl);
  color: var(--color-white);
  text-decoration: none !important;
  text-align: left;
}

.uNcbwLRPpBD3jgy3T0Ca.GEQrTec57DD2DiB4PWKY  > a, .uNcbwLRPpBD3jgy3T0Ca.GEQrTec57DD2DiB4PWKY  > span {
  color: var(--color-black);
}

.uNcbwLRPpBD3jgy3T0Ca > a.active, .uNcbwLRPpBD3jgy3T0Ca > span.active {
  background: var(--color-neutral-not-so-light);
}

.uNcbwLRPpBD3jgy3T0Ca .cw-icon {
  font-size: 1.8rem;
  margin-top: -1.4rem;
  margin-bottom: -1.4rem;
  padding-right: 0;
}

.uNcbwLRPpBD3jgy3T0Ca > span:first-child, .uNcbwLRPpBD3jgy3T0Ca > a > span:first-child, .uNcbwLRPpBD3jgy3T0Ca > a > .cw-icon:first-child, .uNcbwLRPpBD3jgy3T0Ca > .cw-icon:first-child {
  margin-right: var(--base-unit-l);
  flex: none;
}

.CJoGiBmtYPtVdtHdGgbz {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.OWIrI61YkiBtithyQULA {
  opacity: 0.5;
  pointer-events: none;
}

.GX64tK27U_klBEx1D_mY {
  color: var(--color-modal);
}

.GX64tK27U_klBEx1D_mY:not(.GEQrTec57DD2DiB4PWKY) {
  background: var(--color-white);
}

.GX64tK27U_klBEx1D_mY.GEQrTec57DD2DiB4PWKY {
  background-color: var(--color-neutral-lightest);
}

.xvjOA9Y6yvCCkyjTs7YI {
  background: var(--color-modal);
  overflow: hidden;
  padding: calc(1.5 * var(--base-unit-m)) 0;
  font-size: 1.4rem;
}

.kphBvf02l4KG895Wf8_G {
  background-color: transparent;
}

.bvNBNKkMwjII4VYcVxF2 {
  border-radius: calc(1.5 * var(--base-unit-m));
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.collections-popover {
  width: 35.5rem;
  min-width: 35.5rem;
  padding: 0;
  background: #ffffff;
  border-radius: 0.3rem;
}
@media screen and (max-width: 767.9px) {
  .collections-popover {
    width: 30rem;
    min-width: 30rem;
  }
}
.collections-popover .popover-content > button:last-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.collections-popover__search {
  border-bottom: thin solid var(--color-border-light);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.collections-popover__search-icon {
  font-size: 1.8rem;
  color: #272B2B;
  margin: 0 1.2rem;
}
.collections-popover__search-input {
  flex-grow: 1;
}
.collections-popover__collections {
  border-bottom: thin solid var(--color-border-light);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.collections-popover__collections::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #BDBDBD;
}
.collections-popover__collections::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #BDBDBD;
}
.collections-popover__collections::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.collections-popover__collections::-webkit-scrollbar-corner {
  display: none;
}
.collections-popover__empty {
  padding: 2.4rem 1.2rem;
  color: #272B2B;
}
.collections-popover .form-control {
  border-radius: 0;
}
.collections-popover--full .collections-popover__collections,
.collections-popover--full .collections-popover__empty {
  height: 50rem;
}
@media screen and (max-width: 767.9px) {
  .collections-popover--full .collections-popover__collections,
  .collections-popover--full .collections-popover__empty {
    height: 30rem;
  }
}
.collections-popover--small .collections-popover__collections,
.collections-popover--small .collections-popover__empty {
  height: 30rem;
}
@media screen and (max-width: 767.9px) {
  .collections-popover--small .collections-popover__collections,
  .collections-popover--small .collections-popover__empty {
    height: 25rem;
  }
}
.collections-popover input {
  border: none;
  outline: none;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.textFieldCloseButtonWrapper {
  position: absolute;
  right: 0.6rem;
  top: 0.8rem;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.wish-collections {
  display: flex;
  flex-direction: column;
  min-height: 10rem;
}
.wish-collections__item {
  padding: 1.2rem;
  border-bottom: thin solid var(--color-border-light);
}
.wish-collections__item:hover {
  background: #cccccc;
}
.wish-collections__item--active {
  background: #a4a4a4;
}
.wish-collections__item--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.wish-collections__item:last-child {
  border-bottom: none;
}
.board-item {
  position: relative;
}
.board-item__active-ctrl {
  position: absolute;
  right: -0.7rem;
  top: -0.7rem;
}
.board-item__active-ctrl:not(.btn--active) {
  color: #171717 !important;
}
.board-item__remove {
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  color: #171717 !important;
}
.board-item__title {
  color: #2F5AF3;
  font-size: 1.6rem;
  margin-right: 0.6rem;
  text-align: left;
  max-width: 30rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  height: 1.8rem;
}
.board-item__desc {
  font-size: 1.2rem;
  color: #272B2B;
  margin: 1.2rem 0;
}
.board-item__date {
  color: #272B2B;
  font-size: 1.2rem;
  font-weight: 500;
}
.board-item__statuses {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 1.2rem;
  color: #272B2B;
  font-size: 1.2rem;
  font-weight: 500;
}
.board-item__statuses > span {
  margin-right: 0.6rem;
}
.board-item__statuses > span:last-child {
  margin-right: 0;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.gem-outline polygon,
.gem-outline path {
  fill: none;
  stroke: #878787;
  stroke-width: 0.4;
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-miterlimit: 1;
}
.gem-outline *[class^='cls-'] {
  opacity: 2 !important;
}
.gem-outline-brown polygon,
.gem-outline-brown path {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 0.4;
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-miterlimit: 1;
}
.gem-outline-brown *[class^='cls-'] {
  opacity: 2 !important;
}
.gem-outline-green polygon,
.gem-outline-green path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 0.4;
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-miterlimit: 1;
}
.gem-outline-green *[class^='cls-'] {
  opacity: 2 !important;
}
.gem {
  height: 100%;
}
.gem .cls-1 {
  opacity: 0.1;
}
.gem .cls-2 {
  opacity: 0.2;
}
.gem .cls-3 {
  opacity: 0.3;
}
.gem .cls-4 {
  opacity: 0.4;
}
.gem .cls-5 {
  opacity: 0.5;
}
.gem .cls-6 {
  opacity: 0.6;
}
.gem .cls-7 {
  opacity: 0.7;
}
.gem .cls-8 {
  opacity: 0.8;
}
.gem .cls-9 {
  opacity: 0.9;
}
.gem .cls-10 {
  opacity: 1;
}
.gem--bold polygon,
.gem--bold path {
  stroke-width: 1;
}
.gem--bold .cls-1 {
  opacity: 0.55;
}
.gem--bold .cls-2 {
  opacity: 0.6;
}
.gem--bold .cls-3 {
  opacity: 0.65;
}
.gem--bold .cls-4 {
  opacity: 0.7;
}
.gem--bold .cls-5 {
  opacity: 0.75;
}
.gem--bold .cls-6 {
  opacity: 0.8;
}
.gem--bold .cls-7 {
  opacity: 0.85;
}
.gem--bold .cls-8 {
  opacity: 0.9;
}
.gem--bold .cls-9 {
  opacity: 0.95;
}
.gem--bold .cls-10 {
  opacity: 1;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
:root {
  --header-background: #000000;
  --header-right-menu-color: #ffffff;
  --pinned-collection-background: #7D7D7D;
  --pinned-collection-color: #000000;
  --header-gap: 1.8rem;
  --chapters-margin: 2.4rem;
}
@media screen and (max-width: 1474.9px) {
  :root {
    --header-gap: 1.2rem;
  }
}
@media screen and (max-width: 1365.9px) {
  :root {
    --chapters-margin: 0;
  }
}
@keyframes hide-header {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5.6rem);
  }
}
@keyframes show-header {
  from {
    transform: translateY(-5.6rem);
  }
}
.header {
  width: 100%;
  border-bottom: thin solid #272B2B;
  background: var(--header-background);
  transition: background-color 200ms ease-in-out;
}
.header .headerContent {
  width: 100%;
  height: 5.6rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--unified-padding-right-large) 0 var(--unified-padding-left-large);
}
.header--hidden {
  animation: hide-header 0.9s var(--slide-in-easing);
  transform: translateY(-5.6rem);
}
.header--displayed {
  animation: show-header 0.4s var(--slide-in-easing);
}
.header__left {
  display: flex;
  flex-direction: row;
}
.header__logo {
  display: flex;
  align-items: center;
  width: 10.7rem;
  height: 3.8rem;
  position: relative;
}
.header__cache-proxy {
  display: flex;
  align-items: center;
  margin-left: 1.2rem;
}
.header__links {
  right: 2.4rem;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-left: auto;
}
.header__links .popover-container {
  display: inline-block;
}
.header__link {
  margin-left: var(--header-gap);
  text-decoration: none;
  display: inline-block;
}
.header__link--icon {
  font-size: 2.8rem;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: white;
}
.header__link--disabled {
  cursor: default;
  color: #272B2B;
}
.header__link--collections {
  cursor: pointer;
}
.header__link-title {
  font-size: 1.3rem;
  position: relative;
  top: -0.5rem;
  margin-right: 0.6rem;
  max-width: 10rem;
}
.header__link .label {
  position: absolute;
  bottom: 0;
  right: -0.5rem;
}
@media screen and (max-width: 991.9px) {
  .header__link {
    margin-left: 1.2rem;
  }
  .header__link--desktop {
    display: none !important;
  }
}
.header__link:first-child {
  margin-left: 0 !important;
}
.header__chapters {
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  margin-left: var(--chapters-margin);
  height: 100%;
}
.header__hm {
  display: none;
  margin-right: 1.2rem;
  color: var(--header-right-menu-color);
}
@media screen and (max-width: 991.9px) {
  .header__hm {
    display: flex;
  }
}
.header__mobile {
  width: 100%;
  position: absolute;
  top: 5.6rem;
  left: 0;
  background: #161616;
  z-index: 10;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 200ms ease-in-out;
}
@media only screen and (max-width: 576px) {
  .header__mobile {
    padding-left: 1.2rem;
  }
}
.header__mobile--opened {
  opacity: 1;
  max-height: 50rem;
}
.header__mobile-item-list {
  padding: 1.2rem 0;
}
.header__mobile-item {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  font-size: 1.5rem;
}
.header__mobile-item .header-link {
  padding: 1.2rem 0;
  display: block;
}
@media screen and (max-width: 991.9px) {
  .header__chapters {
    display: none !important;
  }
}
.cwp-has-fullscreen-element .header {
  display: none;
}
.header-link {
  font-size: 1.4rem;
  padding: 0 var(--header-gap);
  text-decoration: none;
  color: #BDBDBD;
  user-select: none;
  text-align: left;
}
.header-link--desktop {
  height: 100%;
  align-items: center;
  display: inline-flex;
  position: relative;
  text-align: center;
  font-weight: 500;
}
.header-link--desktop.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background: white;
}
.header-link--dropdown {
  cursor: pointer;
}
.header-link.active {
  color: #ffffff;
}
.header-link__triangle {
  font-size: 2.4rem;
  margin-left: 0.6rem;
  transition: transform 180ms ease-in-out;
  transform-origin: center center;
}
.header-link__triangle--opened {
  transform: rotate(180deg);
}
@media screen and (max-width: 1199.9px) {
  .header-link {
    padding: 0 1.2rem;
  }
}
@media screen and (max-width: 991.9px) {
  .header-link {
    padding: 0 2.4rem;
  }
}
.pinned-collection {
  background: var(--pinned-collection-background);
  border-radius: 0.3rem;
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  height: 2.8rem;
  padding: 0 1.2rem;
}
@media screen and (max-width: 991.9px) {
  .pinned-collection {
    display: none;
  }
}
.pinned-collection__label {
  margin-right: 0.6rem;
}
@media screen and (max-width: 1599.9px) {
  .pinned-collection__label {
    display: none;
  }
}
.pinned-collection__link {
  color: var(--pinned-collection-color);
  margin-right: 0.6rem;
  max-width: 10rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.show-on-small-screens {
  display: none !important;
}
@media screen and (max-width: 1199.9px) {
  .show-on-small-screens {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 1199.9px) {
  .hide-on-small-screens {
    display: none !important;
  }
}
:-webkit-full-screen-ancestor:not(iframe) .header {
  display: none;
}
.headerFixed {
  z-index: 20;
  position: fixed;
}
.headerLinkActive {
  font-weight: 500;
  color: var(--header-right-menu-color);
}
.headerLinkActive::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background: var(--header-right-menu-color);
}
.headerLinkLGD {
  --header-right-menu-color: #F1B072;
}
.headerProductTypeMenuItem {
  justify-content: flex-start !important;
}
.headerProductTypeMenuWrapper > a.active {
  background: none;
  font-weight: 500;
}
.headerProductTypeIcon {
  display: inline-flex;
  justify-content: center;
  align-content: center;
  height: 3.2rem;
  width: 3.2rem;
  margin-right: 1.8rem;
}
.iconFancy {
  color: var(--color-accent);
}

.sVaKLeuEvHPTpoaphIpj {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.m43wdyKAfGje5Ghk3PeA {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .nzsoomDSnbm8uPgVT6Qw {
    font-size: 0.475vw;
  }
}
.eeq0JOCFdSC8rJ4Br9Pv {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.iK7DUnHjDDC5JVAXjf3s {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.QHdpEDUrvGwI_xdlSlYE {
  flex: none;
  background-color: #272B2B;
  height: 0.1rem;
  margin: var(--base-unit-l) 0;
  border: none;
}

.rEjyozso8oqmm6a6CObL {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.UUDt7XcZk9HDjzBKPo2R {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .fru8jlSrpLLmCNsXRpFF {
    font-size: 0.475vw;
  }
}
.GL_YJ7_UHHBUrbwEPkEL {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.kE2ge6AfCJjWJngThiFp {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.pbhkw6nvlXVQg41TwRsT .modalContent {
  padding: 0;
}
.pbhkw6nvlXVQg41TwRsT .modalTitle {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.pbhkw6nvlXVQg41TwRsT.eEVUwkDB4mr5EZAKp4KI {
  height: 90%;
  min-height: 81rem;
}
.pbhkw6nvlXVQg41TwRsT.eEVUwkDB4mr5EZAKp4KI .modalChildren {
  height: 100%;
}
.pbhkw6nvlXVQg41TwRsT .E9kRFznIWSZ_ojNcyKAs {
  width: 40rem;
  height: 100%;
  background-color: #0e0e0e;
  border-right: thin solid #353535;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.pbhkw6nvlXVQg41TwRsT .E9kRFznIWSZ_ojNcyKAs::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.pbhkw6nvlXVQg41TwRsT .E9kRFznIWSZ_ojNcyKAs::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.pbhkw6nvlXVQg41TwRsT .E9kRFznIWSZ_ojNcyKAs::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.pbhkw6nvlXVQg41TwRsT .E9kRFznIWSZ_ojNcyKAs::-webkit-scrollbar-corner {
  display: none;
}
.q9urzr8DmwAN5gfuynZd {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.Phx5jAjmstX5agwOe1EP {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.qzNu6yD8tvvxAlUHI6nV {
  width: 44rem;
  padding: 2.4rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.qzNu6yD8tvvxAlUHI6nV::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.qzNu6yD8tvvxAlUHI6nV::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.qzNu6yD8tvvxAlUHI6nV::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.qzNu6yD8tvvxAlUHI6nV::-webkit-scrollbar-corner {
  display: none;
}

.WlhQlhxvqLaSHlHTqm4S {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.XxbmPHy4oXMrAh35F7L6 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .zaGnQsgtEMHgTgQ5RZT0 {
    font-size: 0.475vw;
  }
}
.S2iV1P9hbnrmSYmoAIO7 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.dO2XT08r6rgKyfhF8q6k {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.e13FJnGaxvZdhOOZZhMT {
  width: 100%;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
}
.GlZfaAFFMeN45cUSVesb {
  display: flex;
  gap: 1rem;
}
.GlZfaAFFMeN45cUSVesb .ObBHt2s190cbGM1awGT8 {
  width: 12rem;
}
@media screen and (max-width: 767.9px) {
  .GlZfaAFFMeN45cUSVesb .ObBHt2s190cbGM1awGT8 {
    width: auto;
  }
}

.KhfAqi86nWZsrHlJVTwi {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.meUqULxGxR5C_jUgFKor {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .Zr1Otlkv8jBo9L0AoEiw {
    font-size: 0.475vw;
  }
}
.uipzGMrSSb0Tv55moVH3 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.saN_vPvKzUCzr9Yo7NaU {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.i31CON030aM8OIfPl9Rr {
  position: relative;
  border: thin solid var(--color-neutral-not-so-light);
  border-radius: var(--border-radius-secondary);
  display: flex;
  align-items: center;
}
.i31CON030aM8OIfPl9Rr.BCPG1fJzJgTjCqBFBhF0 input {
  border: thin solid var(--color-accent);
}
.i31CON030aM8OIfPl9Rr.BCPG1fJzJgTjCqBFBhF0 input:hover,
.i31CON030aM8OIfPl9Rr.BCPG1fJzJgTjCqBFBhF0 input:active,
.i31CON030aM8OIfPl9Rr.BCPG1fJzJgTjCqBFBhF0 input:focus {
  border-color: var(--color-accent);
}
.i31CON030aM8OIfPl9Rr.mtYgzlD_3G1C4XcGjFrb {
  border: thin solid var(--color-tertiary);
}
.i31CON030aM8OIfPl9Rr.mtYgzlD_3G1C4XcGjFrb:hover,
.i31CON030aM8OIfPl9Rr.mtYgzlD_3G1C4XcGjFrb:active,
.i31CON030aM8OIfPl9Rr.mtYgzlD_3G1C4XcGjFrb:focus {
  border-color: var(--color-tertiary);
}
.i31CON030aM8OIfPl9Rr.KasCpKHqxtHBOWjzenzQ {
  border-color: #FF4848;
}
.i31CON030aM8OIfPl9Rr.IIywfZWWqr6EcZuZd_1h {
  color: var(--color-accent);
}
.i31CON030aM8OIfPl9Rr.B8riOtwt90XhmMd8ZnA5 .tBMD_n3sqUI_x5PwkQ6h {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
}
.i31CON030aM8OIfPl9Rr:hover,
.i31CON030aM8OIfPl9Rr:active,
.i31CON030aM8OIfPl9Rr:focus {
  border-color: var(--color-white);
}
.i31CON030aM8OIfPl9Rr input {
  width: 100%;
  height: 3.6rem;
  border: none;
  outline: none;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1.6rem;
  background: none;
  text-align: left;
  flex-grow: 1;
  padding: 0 var(--base-unit-l);
  -moz-appearance: textfield;
}
.i31CON030aM8OIfPl9Rr input::-webkit-outer-spin-button,
.i31CON030aM8OIfPl9Rr input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.i31CON030aM8OIfPl9Rr input::-webkit-input-placeholder {
  /* for Safari placeholder only */
  line-height: 2.4rem;
}
.i31CON030aM8OIfPl9Rr .EiZx8BkWrGwAEfO9JD7A {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.8rem;
  height: 3.6rem;
}

.lG09IRWnnqzzrR7Sry7D {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.dCWdt893rDjetVHsm87R {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .glBOmZHWNaK9GMaYelnC {
    font-size: 0.475vw;
  }
}
.rGSOSOs3PaT5XYmb14hE {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.xqzsWNsY34so_qlmQepe {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.fhYNQ84Z0P8Zlf_6TwEg {
  color: #FFB167;
}

.HY9GETcmAynsbUrDv5o1 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.hH2VwnSNsJctDMyWC9p2 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .DVIHvF5_AEO1aBaRdnfw {
    font-size: 0.475vw;
  }
}
.lZjjO4mXe5WakJUTG_yX {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.LaKD7yYqHYaqcKLfG72G {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.W5kM3zl5jU9cghJpRugd .ql-snow {
  border: thin solid #4B5252;
}
.W5kM3zl5jU9cghJpRugd .ql-container {
  height: 10rem;
  max-height: 10rem;
  overflow: auto;
  border-radius: var(--border-radius-secondary);
}
.W5kM3zl5jU9cghJpRugd .ql-stroke {
  stroke: #ffffff;
}
.W5kM3zl5jU9cghJpRugd .ql-fill {
  fill: #ffffff;
}
.W5kM3zl5jU9cghJpRugd .ql-editor {
  font-size: 1.6rem;
}
.W5kM3zl5jU9cghJpRugd .ql-editor.ql-blank::before {
  color: #7D7D7D;
}

.WzuxzxtStcjVprFW3_gG {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.uBvjpCDiBlmzkPilXcbl {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .FQOpKAC8cA7WQb4cnq2S {
    font-size: 0.475vw;
  }
}
.zAWRpEpnqJa4e0kYjKSa {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.J0tsx9o36gFggTWXUKBl {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.rflVFxvk080hhKTjSbQB {
  width: 100%;
}
.rflVFxvk080hhKTjSbQB .NzWUFEdA97wXoydLQCUc:not(:last-child) {
  margin-bottom: 1.2rem;
}
.rflVFxvk080hhKTjSbQB .kVYD98NUy9nXqIv4V32t {
  color: #E7B37B;
}
.y5yOCz3QYGtWjgUBHB0x {
  display: block;
  padding-bottom: 1.2rem;
}
.w0dJnEN_4Eqt2IoFtsLQ {
  background-color: #353535 !important;
}
.TaCROPAsmwIig_oLcQP_ {
  border-color: transparent !important;
}

.media-in-list-placeholder {
  text-align: center;
  width: 100%;
  height: 100%;
  /** todo: hack for Waypoint pluging in Safari. There is no reaction to scroll without that */
}
.media-in-list-placeholder__content-wrapper {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.media-in-list-placeholder__content-wrapper a {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.media-in-list-placeholder__content-wrapper svg {
  width: 80%;
  height: 80%;
}
.media-in-list-placeholder__text {
  font-size: 2.4rem;
  margin: 0 auto;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.media-preview {
  height: 10rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
}
@media (pointer: fine) {
  .media-preview:hover .media-preview__label {
    display: block;
  }
}
.media-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.media-preview--active {
  position: relative;
}
.media-preview--active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: thin solid #ffffff;
}
@media screen and (max-width: 767.9px) {
  .media-preview--active:before {
    border-width: thin;
  }
}
.media-preview--xxs {
  width: 40px !important;
  height: 40px !important;
}
.media-preview--xs {
  width: 80px !important;
  height: 80px !important;
}
.media-preview--s {
  width: 160px !important;
  height: 160px !important;
}
.media-preview--m {
  width: 320px !important;
  height: 320px !important;
}
.media-preview--l {
  width: 480px !important;
  height: 480px !important;
}
.media-preview--disabled {
  opacity: 0.3;
}
.media-preview__video-flag {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  text-align: right;
  background: #000000;
  border-radius: 0.3rem;
  padding: 0.6rem;
  line-height: 1;
  font-size: 1.2rem;
  color: #ffffff;
  display: flex;
}
@media screen and (max-width: 575.9px) {
  .media-preview__video-flag {
    padding: 0.3rem;
    font-size: 1rem;
  }
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.mediaSection {
  width: 480px;
  height: 480px;
  max-height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  user-select: none;
  --media-section-size: none;
}
.mediaSection .mediaSectionFit {
  max-width: var(--media-section-size);
  max-height: var(--media-section-size);
}
.mediaSectionGrayscale img {
  filter: grayscale(100%);
}
.mediaSectionSaturation img {
  filter: saturate(200%);
}

.vYnGYDYad6pyPLQC2609 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.BsN9hfROLnEVZKOJ3oRy {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .hlxwEusnem5Nn29nyZKr {
    font-size: 0.475vw;
  }
}
.R2EBwQbms67H05mhm_fe {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.xPl2Jd18dqOW0qUm171d {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.gG3stOGOIc0KLZrRRCQ0 {
  fill: #ffffff;
}

.Tvy2cDlW8HT1EqzjXeSS {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.gpXC4Asw1_KS4KpikR4c {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .it_9Ees7I0Up4IsQToGs {
    font-size: 0.475vw;
  }
}
.Ca4nERdZMBv4SUt7Ryk5 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.ip2H_kVU5CrrI1RVtf45 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.hQ3A5FhLIzUvxvSjwiNU {
  line-height: 1 !important;
  color: #828183;
}
.iFTwpedXZowIgvilE03A {
  color: #B6804D;
  line-height: 1 !important;
}
.XBKROwnlyUqnIMlDtEle {
  line-height: 1 !important;
  color: #828183;
}
.FnmYR7R7CgqgVQqa3TTb {
  width: 100%;
  height: 100%;
  background-color: #161616;
}
.YB2LJ57aYtXFsZeyDPPQ {
  object-fit: contain;
}

.S7W253m4IIik4gwTSG3e {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.V4_1JbPsksq_fmfMoQ3Y {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .ZXN4u5g5WVso12IOFNdj {
    font-size: 0.475vw;
  }
}
.WKqSWJgdNpJ6Bj_9ZnDu {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.lGa75BoFLsndmMKm25i2 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.GYRACJYdOLxgrlMRiASo {
  margin-top: 1.2rem;
}

.D9syfQjBNiQQ1Yi3MQGy {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.yF4E2PvHkbaKrtyaPqJe {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .Za8TfTLpX1mWqx0Bsu1Q {
    font-size: 0.475vw;
  }
}
.ltAsDTzqk7DikFbmlSgA {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.cm20iUPwQm0vUvL3qJug {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.Y43L8S6yIC6iXIlkQo8k {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 1.9rem;
}
.Y43L8S6yIC6iXIlkQo8k.TC8k9UzJY8Q3ofOScWrW {
  margin-bottom: 0;
}
.LdOvzqOhb0NXjtLIEVBH {
  cursor: pointer;
  font-size: 2.4rem;
}
.tOOcGJrZ2of9869GJ6aI {
  font-size: 2.8rem;
  font-weight: 500;
}
.LOJZn75kCYRvAVFktAts {
  flex: 1;
  margin: 0 -2.4rem;
}
.LOJZn75kCYRvAVFktAts .ge7Dsq0plDjRJZMYnxU_ {
  border-radius: 0;
  border-right: none;
  border-left: none;
  padding-left: 1.8rem;
}

.YgTquFsKqsKEXU4Rf5jd {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.xG2bUVFz7nBP9Jyu_nfq {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .t1sXgbDfnzObSlN76s7w {
    font-size: 0.475vw;
  }
}
.UDnIwoKzubY7SAxHCC5e {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.HnkF5nEGAM7pw9H8Bt6g {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.oaDr_8P0NSwlaWZGfo8i {
  color: #BABABA;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.oaDr_8P0NSwlaWZGfo8i.wMxEXd52_9zxP79cnqzc {
  color: #ffffff;
}

.Fb8pKOD5laDn8L1rcWKG {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.b1KpA5jv_0S_TXi9wNeq {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .QkIwMfOcxymkauUSGzCz {
    font-size: 0.475vw;
  }
}
.IByc3hAJetvS9zXq4Tgg {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.S7HtLXpTpH0p9VumEReD {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.jNCCkw3kST8XdKp0lJk5 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nOVR45evU6tKdAHwPkdL.q5o0kh9Ts3CeokOfaGRU {
  border-color: #ffffff;
}

.UTcf1uXJ1GxhJVur3MhD {
  display: flex;
  width: 12px;
  padding: 15px 8px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  touch-action: none;
  cursor: var(--cursor, pointer);
  border-radius: 5px;
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
  margin-right: 4px;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .UTcf1uXJ1GxhJVur3MhD:hover {
    background-color: var(--action-background, rgba(0, 0, 0, 0.05));
  }
  .UTcf1uXJ1GxhJVur3MhD:hover svg {
    fill: #6f7b88;
  }
}
.UTcf1uXJ1GxhJVur3MhD svg {
  flex: 0 0 auto;
  margin: auto;
  height: 100%;
  overflow: visible;
  fill: #919eab;
}
.UTcf1uXJ1GxhJVur3MhD:active {
  background-color: var(--background, rgba(0, 0, 0, 0.05));
}
.UTcf1uXJ1GxhJVur3MhD:active svg {
  fill: var(--fill, #788491);
}
.UTcf1uXJ1GxhJVur3MhD:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0 0 2p #4c9ffe;
}

.pRz_6Ew6LHwN7dzzWncL {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.igx6vGAAokHem3sE1Kq9 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .wgnT0swGXpIfMLC161Pa {
    font-size: 0.475vw;
  }
}
.LvtD8wnOvVvKNO4rRWPk {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.VSVGV4KdO1kPEG7VF9Bm {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.Vo2hgqwiaErSuHW9Yx6p {
  list-style: none;
  box-sizing: border-box;
  padding-left: calc(var(--spacing) * 1.75);
  margin-bottom: -1px;
  --vertical-padding: 10px;
  cursor: pointer;
}
.Vo2hgqwiaErSuHW9Yx6p.dkmNYwNSlRaPQxa8UZZn {
  display: inline-block;
  pointer-events: none;
  padding: 5px 0 0 10px;
}
.Vo2hgqwiaErSuHW9Yx6p.dkmNYwNSlRaPQxa8UZZn .oyFkLXMWGfj7lnnMeq_b {
  --vertical-padding: 5px;
  padding-right: 24px;
  border-radius: 4px;
  box-shadow: 0 15px 15px 0 rgba(34, 33, 81, 0.1);
}
.Vo2hgqwiaErSuHW9Yx6p .bz2loD_aoL4dYpl7e16A {
  background-color: #4d4d4d !important;
}
.oyFkLXMWGfj7lnnMeq_b {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--vertical-padding) 10px;
  box-sizing: border-box;
}
.oyFkLXMWGfj7lnnMeq_b:hover {
  background-color: #232323;
}
.igi7VlSMCszw4WCtkNlu svg {
  transition: transform 250ms ease;
}
.igi7VlSMCszw4WCtkNlu.XUyUB9ZKwFujtJjdAZ4P svg {
  transform: rotate(-90deg);
}
.igi7VlSMCszw4WCtkNlu.p0GTrMb61YCbhqIhFadA {
  visibility: hidden;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.emptyPlaceholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 100;
  height: 100%;
  text-align: center;
  font-size: 2rem;
  color: #F1B072;
  padding: 2.4rem;
}

.OtiZEffU4AJnlDmATHxc {
  padding-top: 6.3rem;
  align-items: flex-start;
}

.lTc5yGI_3gsuuWGaQ1K6 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.KTIOBOGRcf6PMXCKE1ft {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .GwrvdQhwsKlN9BA8Em7n {
    font-size: 0.475vw;
  }
}
.LoMGT1t0mXWCjKo3gNyk {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.qZ3eURbdUzYHVsJ8lZqV {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.uB4mmznoA4mT5tPjPuJ4 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sHi6xQzSBEM_7O2NQi6A {
  flex-grow: 1;
  overflow: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.sHi6xQzSBEM_7O2NQi6A::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.sHi6xQzSBEM_7O2NQi6A::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.sHi6xQzSBEM_7O2NQi6A::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.sHi6xQzSBEM_7O2NQi6A::-webkit-scrollbar-corner {
  display: none;
}
.FCYtMzZQ5jbIkhYIJKuU {
  flex-shrink: 0;
  margin-top: 2.4rem;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}
.uG1Ev_QZ46lUMCUYTBYV {
  font-size: 2.4rem;
  line-height: 1;
}
.uG1Ev_QZ46lUMCUYTBYV.ESCsPl7pJkL0bCPW5Edc {
  color: #B6804D;
}

.CLWdD7fwxhmWF1PPncuX {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.tcERoAkuWL3KVxNk6V7R {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .WIPEQHw5AFQIyUcWxUKU {
    font-size: 0.475vw;
  }
}
.TGVtDU1zbOPA9JScih9Y {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.crGtiYPiP0gPlDZJUQQs {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.a3ZY8yiLyvVliIa29yyV {
  margin-left: 1.2rem;
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.6rem solid #ffffff;
  transition: transform 180ms ease-in-out;
}
.a3ZY8yiLyvVliIa29yyV.pkOQ2RERSAvhu94EIntD {
  transform: rotate(180deg);
}
.b1ewfBzzqOEzWhdPuYkZ {
  padding: 0;
}

.dCHGKeWSF0AUxEVme9Ia {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.lPn5JcELxyftBjzooxd5 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .eyRm1F1a2ITEbagxUN9A {
    font-size: 0.475vw;
  }
}
.pYzGAmPN3JRocK0mvOyM {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.WQHmSoEskBYVfdNMGp1W {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.ueSjSPN2wUNwmlCiVYrq {
  width: 100%;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
}
.Xk_EhNbxB6afb_hwREeh {
  display: flex;
  gap: 1rem;
}
.Xk_EhNbxB6afb_hwREeh .GYqMz3Ap3W2UyoWU1wOH {
  width: 12rem;
}
@media screen and (max-width: 767.9px) {
  .Xk_EhNbxB6afb_hwREeh .GYqMz3Ap3W2UyoWU1wOH {
    width: auto;
  }
}

.JnWEwxn7OOBruJwlgU4w {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.SE1hMoMZpuqe8RAKBFbg {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .SePXkYYBZSaqiLSsd3NK {
    font-size: 0.475vw;
  }
}
.XXprPBEDaZqF5Hce1Sfe {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.Qkc1UHXjeFQoVHYoes3e {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.vLjFxZ7q4gKD6CMtWuo3 {
  height: 90%;
  max-width: 80rem;
  width: 80%;
}
@media screen and (max-width: 767.9px) {
  .vLjFxZ7q4gKD6CMtWuo3 {
    width: 100%;
    height: 100%;
    min-height: auto;
  }
}
.vLjFxZ7q4gKD6CMtWuo3 .modalContent {
  padding: 0;
}
.vLjFxZ7q4gKD6CMtWuo3 .modalHeader {
  border-bottom: thin solid #272B2B;
}
.vLjFxZ7q4gKD6CMtWuo3 .modalTitle {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.vLjFxZ7q4gKD6CMtWuo3 .modalChildren {
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767.9px) {
  .vLjFxZ7q4gKD6CMtWuo3 .modalChildren {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.u7ea0Yi4VKjzCfjejAUw {
  background-color: #141616;
  border-right: thin solid #272B2B;
  flex: 1;
}
.m_5LtkVB983fiBnLzPXf {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.m_5LtkVB983fiBnLzPXf::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.m_5LtkVB983fiBnLzPXf::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.m_5LtkVB983fiBnLzPXf::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.m_5LtkVB983fiBnLzPXf::-webkit-scrollbar-corner {
  display: none;
}
.m_5LtkVB983fiBnLzPXf ._jzgGWat11vGbBp0qLt2 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.m_5LtkVB983fiBnLzPXf .TD6yRvzWSjUdaSKvhE4Q {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .m_5LtkVB983fiBnLzPXf {
    flex: 1 0 auto;
  }
  .u7ea0Yi4VKjzCfjejAUw {
    flex: 1 1 auto;
    min-height: 0;
  }
}

.BHWQZTPUmzN9T_1dC5Ot {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.ZSPvSdRzKIUTvzHvxCCw {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .YDDoBKWC6Hb0FAiYHQUW {
    font-size: 0.475vw;
  }
}
.fSdPSE0P0JNyudz7EVZm {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.Ir5Z41rvoNDzhdWKiPiA {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.FIxXT4VXqQQST6vpAVvz {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 1.9rem 0 2.3rem 0;
}
@media screen and (max-width: 767.9px) {
  .FIxXT4VXqQQST6vpAVvz {
    flex-direction: column;
    align-items: flex-start;
  }
  .FIxXT4VXqQQST6vpAVvz .ql-container {
    height: 8rem;
    max-height: 8rem;
  }
}

.FKEjL8tLzjf1DLDqEuHT {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.yk_SGwVsoQjjmqAmxILh {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .QrILMFuAP8wo0b2mM8bX {
    font-size: 0.475vw;
  }
}
.otdhMcnzEW0i6ZLggpJU {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.IyaDhXIYj3vFoz5CziL9 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.us8gUpnHpPLxoIdff5IX {
  --destination-list-horizontal-padding: 2.2rem;
  height: 90%;
}
@media screen and (max-width: 767.9px) {
  .us8gUpnHpPLxoIdff5IX {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .us8gUpnHpPLxoIdff5IX .modalHeader {
    border-bottom: thin solid #272B2B;
  }
}
.us8gUpnHpPLxoIdff5IX .modalContent {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.us8gUpnHpPLxoIdff5IX .modalTitle {
  width: 100%;
  font-weight: inherit;
  font-size: inherit;
}
.us8gUpnHpPLxoIdff5IX .modalChildren {
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .us8gUpnHpPLxoIdff5IX .modalChildren {
    display: flex;
    flex-direction: column;
  }
}
.fyF2djp5Aiqx3fYxb3_C {
  display: flex;
  gap: 1.2rem;
  height: 100%;
}
.G_dcpXBVzcJj2U9bhzND {
  color: #E8E8E8;
}

.pbNdKpUVhGsgUNawXMS7 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.u3zdMQg26Vi31cO0LXst {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .rrYZgYtqPRwj74hmOTr3 {
    font-size: 0.475vw;
  }
}
.xPXx8MDP0kXPgUwuwKhO {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.N8vIKR_NPp0k2ePzqtEg {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.GjmE8Ogk3BS4Zhd8TyeY {
  display: flex;
  flex-direction: column;
}
.GjmE8Ogk3BS4Zhd8TyeY .pg2vHTqK2tAjReXffdlO {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem var(--destination-list-horizontal-padding);
  gap: 1.2rem;
  color: #ADADAD;
  font-weight: 450;
  cursor: pointer;
}
.GjmE8Ogk3BS4Zhd8TyeY .pg2vHTqK2tAjReXffdlO:hover {
  background-color: #4d4d4d;
  border-radius: 0.3rem;
}
.GjmE8Ogk3BS4Zhd8TyeY .pg2vHTqK2tAjReXffdlO .s2Q__2EW2fTzP9xuFFhQ {
  font-size: 4.5rem;
  line-height: 1;
}
.GjmE8Ogk3BS4Zhd8TyeY .pg2vHTqK2tAjReXffdlO .yu8MbEncfhnWLNYO3tHI {
  color: #B6804D;
}
.Qx5yIs0ZZor4QLInrKsU {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: inherit;
  color: #7D7D7D;
  line-height: 1.4;
}
.pyb2knXFCw2RETUeJWMq {
  margin-bottom: 2rem;
  line-height: 1;
  font-size: 6.1rem;
}

.FjPO_iIQbKurcXJt_sO6 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.VPsVCqxKtoKRd0fGTUh5 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .t48XcAVnyejUdqWl6PQ9 {
    font-size: 0.475vw;
  }
}
._d2qtVLI3fqmjRE3eBZd {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.foB_lNZhQFe6mPNRnL62 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.jxxIxJIM__NV_mLSe621 {
  color: #B5B5B5;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.jxxIxJIM__NV_mLSe621:hover {
  background-color: #4d4d4d;
}
@media screen and (max-width: 767.9px) {
  .jxxIxJIM__NV_mLSe621 {
    background-color: #272B2B;
  }
}
.jxxIxJIM__NV_mLSe621 .cw-icon {
  color: #E8E8E8;
}

.KRCeLqPYPUsvEyVPXpJo {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.KTOzLq3wPu19sIy9yMKU {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .BA0dlxhlxpE1aZXEtY2i {
    font-size: 0.475vw;
  }
}
.GJt7pFEKOAmakcvq_Ifc {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.tYQbbZuCfMJkMMNh69ts {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.emQLwDpdhgFfuwdz8c12 {
  color: #B5B5B5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}
.emQLwDpdhgFfuwdz8c12:hover {
  background-color: #4d4d4d;
}
@media screen and (max-width: 767.9px) {
  .emQLwDpdhgFfuwdz8c12 {
    background-color: #272B2B;
    justify-content: start;
    width: 100%;
    padding: 0.6rem 1.8rem;
  }
}
.CsCrkp8mXDlH6wx_txds {
  font-size: 2.4rem;
  color: #E8E8E8;
  display: flex;
  align-items: center;
}

.yk2QeQjgzNTSUpElf6R7 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.tV1bAAoGkLHOdPzIOse5 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .nUFaXAqDcPCbvRcOwaQo {
    font-size: 0.475vw;
  }
}
.pGMLuNL4WAczWbjAShe3 {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
._RkSkYzH7ZCBlhSdEdQR {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.wi6ZYFmuXfd5X1lzkG03 {
  margin-top: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wi6ZYFmuXfd5X1lzkG03::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.wi6ZYFmuXfd5X1lzkG03::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.wi6ZYFmuXfd5X1lzkG03::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.wi6ZYFmuXfd5X1lzkG03::-webkit-scrollbar-corner {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .wi6ZYFmuXfd5X1lzkG03 {
    gap: 0.2rem;
    margin: 0 2.2rem 1rem 2.2rem;
  }
}
.prHryblEiFw88oLYvmy_ {
  display: contents;
}
@media screen and (min-width: 768px) {
  .prHryblEiFw88oLYvmy_ {
    margin-top: 1.2rem;
    padding-left: 1.2rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767.9px) {
  .vDc8ReFalqTRL7KukYC7 {
    background-color: #272B2B;
    width: 100%;
  }
}

.DxptX1rCK0iwPhyCMyYQ {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.VmuPC7UVk3jcyShKFhJ9 {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .sPFc8zWILqveMkQ7ZVqC {
    font-size: 0.475vw;
  }
}
.TjsoNxGldNz04mSvUudg {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.ByOpUmNuYH303pBxcr5_ {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.Sy0Nu7miNo_G4D0nOIfx {
  display: flex;
  gap: 1.2rem;
  height: 100%;
}
.ihAPHg7lmI4PmChp9jpw {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-right: thin solid #272B2B;
}
.pF4dpCupA8jqlE5EKle1 {
  margin-top: 1.5rem;
  padding: 0 var(--destination-list-horizontal-padding);
  margin-bottom: 1rem;
}
.LqbhvnfNbL3gkwWE5UuE {
  height: 100%;
  overflow: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.LqbhvnfNbL3gkwWE5UuE::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.LqbhvnfNbL3gkwWE5UuE::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.LqbhvnfNbL3gkwWE5UuE::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.LqbhvnfNbL3gkwWE5UuE::-webkit-scrollbar-corner {
  display: none;
}

.RUx8dSPR_3BwN0CY5ECh {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.X6VxqDQB02UBLsde5czX {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .xhl6AguJDKmaVyIjPuCb {
    font-size: 0.475vw;
  }
}
.udlG0xMpZxADO70AbaKN {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.IQEMkca3KdULU5rhiluA {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.j5JhkHIjAmNQO2zhrqoo {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  flex-grow: 1;
  overflow: auto;
}
.IbhVG4_Th1kyG9uNlAYm {
  height: 100%;
  flex-grow: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.IbhVG4_Th1kyG9uNlAYm::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.IbhVG4_Th1kyG9uNlAYm::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.IbhVG4_Th1kyG9uNlAYm::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.IbhVG4_Th1kyG9uNlAYm::-webkit-scrollbar-corner {
  display: none;
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.btnGroup {
  display: flex;
  flex-direction: row;
}
.btnGroup > button:first-of-type:not(:last-of-type),
.btnGroup input:first-of-type:not(:last-of-type) {
  border-radius: 0.3rem 0 0 0.3rem;
}
.btnGroup > button:last-of-type:not(:first-of-type),
.btnGroup input:last-of-type:not(:first-of-type) {
  border-radius: 0 0.3rem 0.3rem 0;
  border-left: thin solid #161616;
}
.btnGroup > button:not(:last-of-type),
.btnGroup input:not(:last-of-type) {
  border-radius: 0;
  border-right: none;
  border-left: thin solid #161616;
}
@media screen and (max-width: 991.9px) {
  .btnGroup.btnGroupIsHorizontal > button:first-child,
  .btnGroup.btnGroupIsHorizontal input:first-child {
    border-radius: 0.3rem 0 0 0.3rem !important;
  }
  .btnGroup.btnGroupIsHorizontal > button:last-child,
  .btnGroup.btnGroupIsHorizontal input:last-child {
    border-radius: 0 0.3rem 0.3rem 0 !important;
  }
}
.btnGroupBlock {
  width: 100%;
}
.btnGroupWithOutline {
  padding: 0.2rem;
  background: var(--color-neutral);
  border-radius: 0.3rem;
}

.UpcEwNNWTMRQEeFV_t78 {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.dnoafIg4v_Ub6yx7itHh {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .BZtChCgUupywVv15srL2 {
    font-size: 0.475vw;
  }
}
.pk6fbvfF6bv6Os0coeFK {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.O9pAW2jFg0RH1X1OSGPb {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.LUrJhAegZjl41dC23KQU {
  width: 100%;
  padding: 0 2.2rem;
  margin-bottom: 1.5rem;
}
.LUrJhAegZjl41dC23KQU .TuHRc9gKO_sp7eYTHjqQ {
  font-size: 2.1rem !important;
}
.LUrJhAegZjl41dC23KQU .IBzSHIGzRPyI_avPLKQR {
  font-size: 1.9rem !important;
}
.KmV3o_qDI3rpY8R_AXMA {
  margin-bottom: 1.2rem;
}
.a2ZOnPvUNa38OVa1E_kk {
  display: flex;
  width: 100%;
}
.SC8N2URkBMZpX9d9t30n {
  flex: 1;
}

.qJ9sk2ybJG10nh371yTR {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.Fz154f9qhlPaHxceSYFQ {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .nsYJ6o31qUhcyVQpg7h5 {
    font-size: 0.475vw;
  }
}
.L8zuB8jIcqAzjkO0A4NQ {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.UUUuIsvoiWOtd7YccYGJ {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.DXyeqoYMV4t8OvUVFasT {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vmzQQ7oo5bU75St62hlW {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.sVoGVw0Ga7_nn5X2g3Ug {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .d2DgfEuJXKIRxBNvbRvP {
    font-size: 0.475vw;
  }
}
.po38jDtlwLaRdjq7zvYJ {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.CF9JTX3mTE3P53f2qGAx {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.zj_uJBBzKo3TeW98JWnj {
  display: flex;
  height: 3.45rem;
  align-items: center;
  font-weight: 450;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
}
.zj_uJBBzKo3TeW98JWnj .OxLzayHLPalobg3mJ2MH {
  font-size: 1.9rem;
  line-height: 1;
}
.zj_uJBBzKo3TeW98JWnj .sIPGRqSrqs1TTCct0eww {
  font-size: 2.3rem;
  line-height: 1;
}
.zj_uJBBzKo3TeW98JWnj .eczHyU0ieFFXxaP_5DxK {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  gap: 0.6rem;
  color: #ffffff;
  text-decoration: none;
  background-color: #7D7D7D;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}
.zj_uJBBzKo3TeW98JWnj .c3Pbu7dEabYBSToLyepx {
  font-size: 1.6rem;
  font-weight: 450;
}
.zj_uJBBzKo3TeW98JWnj .c3Pbu7dEabYBSToLyepx .jvS3GI0DcEYKlCS9Yvkv {
  font-size: 2.3rem;
  line-height: 1;
  margin-right: 1rem;
}
.KtJbRAHPd0g80VgVhYj1 {
  cursor: pointer;
  height: 100%;
  padding: 0.6rem;
  background-color: #7D7D7D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #000000;
  margin-right: 1px;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.zeewqfqBfZFn9LBTTYox {
  padding: 0;
}

.xGzmV8CxlMuvQniRmdaE {
  text-transform: uppercase;
  font-size: 1rem;
  background: var(--color-modal);
  color: var(--color-neutral-lightest);
  padding: var(--base-unit-l) var(--base-unit-xl) 0 var(--base-unit-xl);
  margin: var(--base-unit-m) 0;
}

.hbylaYCwImouayAhCECk {
  margin: var(--base-unit-m) 0;
  height: 0.1rem;
  background: var(--color-neutral);
}

.oaJMbT9l6goqYuiwWFW8 {
  border-top: thin solid var(--color-neutral);
}

.WqimKbuDZ2hVPcpw2x8u {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.B5Gr4srPprorS5SbL5ML {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .Hvo11ubugC3TVUHb5Cin {
    font-size: 0.475vw;
  }
}
.v_7WYWPaFBs2c18Tcq1v {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.OhRAqrxxmvv3aIL1chD3 {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.VPwk0NzWbqGZwQIjjXfc {
  --dropdown-height: 3.6rem;
  position: relative;
  z-index: 5;
  min-width: 20rem;
}
.VPwk0NzWbqGZwQIjjXfc .kTHsmeLeRGvGYWosTkuQ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--base-unit-l) 0 0.5rem;
  z-index: 1;
  position: relative;
  border-radius: calc(var(--dropdown-height) / 2);
  background: var(--color-modal);
  height: var(--dropdown-height);
  transition: border-radius 250ms ease-in-out;
  cursor: pointer;
  min-width: 18rem;
  -webkit-tap-highlight-color: transparent;
}
.VPwk0NzWbqGZwQIjjXfc .kTHsmeLeRGvGYWosTkuQ.Bd9rcVFM3tkBhqhDJr56 {
  border-radius: calc(var(--dropdown-height) / 2) calc(var(--dropdown-height) / 2) 0 0;
}
.VPwk0NzWbqGZwQIjjXfc .jscYnkTkGWuHWXTnNtEw {
  margin-right: auto;
  color: var(--color-white);
}
.VPwk0NzWbqGZwQIjjXfc .U4m_XSJxBy32DyYf7vti {
  --triangle-size: 0.6rem;
  margin-left: var(--base-unit-l);
  width: 0;
  height: 0;
  border-left: var(--triangle-size) solid transparent;
  border-right: var(--triangle-size) solid transparent;
  border-top: var(--triangle-size) solid var(--color-white);
  transition: transform 180ms ease-in-out;
}
.VPwk0NzWbqGZwQIjjXfc .U4m_XSJxBy32DyYf7vti.Bd9rcVFM3tkBhqhDJr56 {
  transform: rotate(180deg);
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R {
  --duration: 300ms;
  position: absolute;
  top: calc(var(--dropdown-height) / 2);
  width: 100%;
  background: var(--color-modal);
  overflow-x: hidden;
  overflow-y: auto;
  transition: max-height var(--duration) ease-in-out;
  border-radius: 0 0 calc(var(--dropdown-height) / 4) calc(var(--dropdown-height) / 4);
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R::-webkit-scrollbar {
  width: 1rem;
  padding: 10px;
  background-color: #000000;
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R::-webkit-scrollbar-corner {
  display: none;
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R.qqiPIihPkHCUzCzJOd1H {
  max-height: 0 !important;
}
.VPwk0NzWbqGZwQIjjXfc .as1oF5JLDr_5ctTtg15R.Ba9nXON4ppdAW5fLNPlV {
  overflow: hidden;
}
.VPwk0NzWbqGZwQIjjXfc .ODT4CemxS4hUY010iFow {
  padding-top: calc(var(--dropdown-height) / 2);
}

.J_ScTsJq3sUoIKTedV9V {
  cursor: pointer;
}

._4o72P_CMOZpPcwBPasWX {
  margin-bottom: var(--base-unit-xl);
}

.JjfmMTfDlbiiBENwIPAy {
  margin-bottom: var(--base-unit-l);
}

.WQpqLRqlyTM3cCq9Y36g {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: var(--base-unit-xl) 0;
}

.WQpqLRqlyTM3cCq9Y36g::after {
  width: 40%;
  height: 1px;
  content: "";
  background: var(--color-neutral);
  margin: var(--base-unit-xl) auto 0 auto;
}

.WQpqLRqlyTM3cCq9Y36g:last-child::after {
  display: none;
}

.PyACAs_2_gcO5W697uIC {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.gMFnbMH0o194uXljAc4W {
  margin-right: auto;
}

.xKjWvAc21hy8GTVtaHx4 {
  font-size: 2rem;
}

@keyframes LbsI6BbADHLwGOt9w7nw { 100% { transform:rotate(-360deg); } }

.z3tg9HLJOc53FFlCCZ7_ {
  animation:LbsI6BbADHLwGOt9w7nw 2s linear infinite;
}

.yd3QDShD_lABtPD8HLUl {
  width: 100%;
  height: var(--base-unit-m);
  position: relative;
  border-radius: var(--base-unit-s);
  background: var(--color-neutral);
  margin-top: var(--base-unit-l);

  --progress: 0;
}

.yd3QDShD_lABtPD8HLUl::after {
  position: absolute;
  width: var(--progress);
  height: 100%;
  content: "";
  border-radius: var(--base-unit-s);
  background: var(--color-neutral-light);
}

.reset-button {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.base-link {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .single-page-responsive-font-size {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .single-page-responsive-font-size {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .single-page-responsive-font-size {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .single-page-responsive-font-size {
    font-size: 0.475vw;
  }
}
.product-block-grid {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.product-block-subgrid {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.alert {
  color: var(--color-black);
  padding: var(--base-unit-l);
  text-align: center;
  display: block;
  width: 100%;
}
.alert > * {
  margin: 0;
}
.alertWarning {
  background: var(--color-warning);
}
.alertDanger {
  background: var(--color-tertiary);
}
.alertSuccess {
  background: var(--color-accent);
}

.K9PNKkuuxDoxBomW9jRG {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  outline: none;
  -webkit-appearance: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
}
.upFU284hr7vbVkZL2qwY {
  cursor: pointer;
  color: var(--color-regular-links);
  text-decoration: none;
}
@media screen and (max-width: 59.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 10px;
  }
}
@media screen and (min-width: 60rem) and (max-width: 64.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 65rem) and (max-width: 69.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 1.01vw;
  }
}
@media screen and (min-width: 70rem) and (max-width: 74.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.97vw;
  }
}
@media screen and (min-width: 75rem) and (max-width: 79.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.93vw;
  }
}
@media screen and (min-width: 80rem) and (max-width: 84.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.89vw;
  }
}
@media screen and (min-width: 85rem) and (max-width: 89.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.85vw;
  }
}
@media screen and (min-width: 90rem) and (max-width: 94.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.81vw;
  }
}
@media screen and (min-width: 95rem) and (max-width: 99.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.77vw;
  }
}
@media screen and (min-width: 100rem) and (max-width: 104.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.73vw;
  }
}
@media screen and (min-width: 105rem) and (max-width: 109.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.69vw;
  }
}
@media screen and (min-width: 110rem) and (max-width: 114.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.65vw;
  }
}
@media screen and (min-width: 115rem) and (max-width: 119.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.61vw;
  }
}
@media screen and (min-width: 120rem) and (max-width: 124.9rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.57vw;
  }
}
@media screen and (min-width: 130rem) {
  .EmptinBUjP0Y5VA3CgJm {
    font-size: 0.475vw;
  }
}
.BY9hagSGHLDrVCXpPm1Z {
  padding: 1.2rem 0.6rem 0 0.6rem;
  gap: 0 1.2rem;
  display: grid;
  justify-content: space-around;
  align-items: start;
  grid-auto-flow: column;
}
.biLyfYFePAF0is5w_f3a {
  grid-template-rows: subgrid;
  display: grid;
  grid-row: span 5;
}
.qjPlGcJnewAsQIugpoqM {
  height: 100%;
}
.wCcHzMLD3NzDdZgamTQK .KEVdIrrNfQEadjLIMULv {
  display: none !important;
}


/*# sourceMappingURL=style.css.map*/