.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;
  text-align: inherit;
}
/* 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;
}
:root {
  --slide-in-easing: cubic-bezier(0.19, 1, 0.22, 1);
}
:root {
  color-scheme: normal;
  --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);
  --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);
  --color-warning: #F2C94C;
  --color-accent: #42CD7A;
  --color-primary: #3A65FF;
  --color-primary-dark: #2F5AF3;
  --color-primary-darkest: #2754AF;
  --color-secondary: #F1B072;
  --color-secondary-dark: #161616;
  --color-tertiary: #FF4848;
  --color-black: #000000;
  --color-white: #ffffff;
  --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-blue-1: #3952C5;
  --color-dark-blue-1: #40515f;
  --color-yellow-1: #fff800;
  --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;
  --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: 1440px;
  --screen-xxlg: 1600px;
  --screen-xxxlg: 2500px;
}
@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);
  }
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('https://files-cdn.cutwise.com/assets/fonts/IBMPlexSansVar-Roman.woff2') format('woff2');
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  font-weight: 300;
  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;
  background-color: #000000;
}
body::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
body::-webkit-scrollbar-corner {
  display: none;
}
@media (pointer: coarse) {
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
@media only screen and (max-width: 576px) {
  body {
    margin-bottom: 0;
  }
}
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 500;
}
#app {
  height: 100%;
}
.cwp-has-fullscreen-element {
  position: fixed;
  overflow: hidden;
}

/*!
 * 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;
}

.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;
  text-align: inherit;
}
.productLink {
  color: var(--color-primary);
}

.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;
  text-align: inherit;
}
.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);
}

.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.productInfo {
  display: flex;
  justify-content: space-between;
  white-space: normal;
}
.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;
}

.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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: #ffffff;
  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: 55%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #ffffff;
  padding-right: 4px;
  overflow: hidden;
}
.metricScaleContainerMediumIcon {
  color: var(--icon-color);
  font-size: 1.2rem;
  display: flex;
  padding: 0 0.6rem;
}
.metricScaleContainerMediumScale {
  flex-basis: 45%;
}
.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: #ffffff;
  margin-left: auto;
  margin-right: 0.6rem;
}
.metricScaleContainerLargeScale {
  flex-basis: 50%;
  flex-shrink: 0;
}
.metricScaleContainerActive {
  --icon-color: #ffffff;
  --label-color: #BDBDBD;
  --background-color: #171717;
}
.metricScaleContainerInactive {
  --icon-color: #7D7D7D;
  --label-color: #7D7D7D;
  --background-color: 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;
  text-align: inherit;
}
.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);
}

.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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;
}

.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;
  text-align: inherit;
}
.label {
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  font-family: 'IBM Plex Sans', sans-serif;
  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: 4rem;
  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;
  text-align: inherit;
}
.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--image .btnContentWrapper {
  justify-content: center;
}
.btn--image img {
  width: 80%;
  height: 80%;
}
.btn--m {
  padding: 0.6rem 1.8rem;
  font-size: 1.6rem;
  height: 3.6rem;
}
.btn--m .cw-icon {
  font-size: 2.4rem;
}
.btn--m.btn--icon {
  font-size: 2.4rem;
  width: 3.6rem;
  padding: 0.2rem 0.4rem;
}
.btn--m.btn--image {
  width: 3.6rem;
  padding: 0;
}
.btn--s {
  padding: 0.4rem 2.2rem;
  font-size: 1rem;
  height: 2.4rem;
}
.btn--s.btn--icon {
  width: 2.4rem;
  font-size: 1.6rem;
  padding: 0.2rem 0.4rem;
}
.btn--s.btn--image {
  width: 2.4rem;
  padding: 0;
}
.btn--xs {
  padding: 0.1rem 0.4rem;
  font-size: 1.4rem;
  height: 2rem;
}
.btn--xs.btn--icon {
  width: 2rem;
}
.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;
}
.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;
}
.buttonTextColorDark {
  color: var(--color-black);
}
.buttonTextColorLight {
  color: var(--color-white);
}
.btnHideChildren {
  visibility: hidden;
}
.btnLoading {
  pointer-events: none;
}
.btnLoader {
  position: absolute;
}
.btnWide {
  min-width: 18rem;
}

.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;
  text-align: inherit;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loader span {
  display: inline-block;
  border-radius: 50%;
  margin: 0 0.4rem;
  animation: bounce 1s ease-in infinite;
}
.loader span:nth-child(2) {
  animation-delay: 0.3s;
}
.loader span:last-child {
  animation-delay: 0.7s;
}
.loaderLarge {
  padding: 2.2rem 0;
}
.loaderLarge span {
  height: 1.6rem;
  width: 1.6rem;
  margin: 0 0.4rem;
}
.loaderMedium {
  padding: 1.8rem 0;
}
.loaderMedium span {
  height: 1.2rem;
  width: 1.2rem;
  margin: 0 0.4rem;
}
.loaderSmall {
  padding: 1.6rem 0;
}
.loaderSmall span {
  height: 0.6rem;
  width: 0.6rem;
  margin: 0 0.2rem;
}
.loaderColored span:first-child {
  background: var(--color-primary-dark);
}
.loaderColored span:nth-child(2) {
  background: var(--color-accent);
}
.loaderColored span:last-child {
  background: var(--color-tertiary);
}
.loaderBlack span {
  background-color: black;
}
.loaderWhite span {
  background-color: white;
}
@keyframes bounce {
  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;
  text-align: inherit;
}
.buttonGroup {
  display: flex;
  flex-direction: row;
}
.buttonGroup > button,
.buttonGroup a {
  margin-right: var(--base-unit-m);
}
.buttonGroup > button:last-child,
.buttonGroup a: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;
}

.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;
  text-align: inherit;
}
.heading {
  color: #000000;
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.3;
}
h1.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
}
h2.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
}
h3.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
h4.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
}
h5.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.8rem;
}
h6.heading {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.headingBright {
  color: #ffffff;
}

.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;
  text-align: inherit;
}
.fancyCheckbox {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  --checkbox-mark-color: var(--color-white);
}
.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);
}

.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;
  text-align: inherit;
}
.checkboxGroupGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 5.8em);
  grid-gap: var(--base-unit-l);
  justify-content: space-between;
}

.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;
  text-align: inherit;
}
.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 {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .modalInner {
    max-width: 92rem;
    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%;
}
.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;
  padding-right: calc(var(--base-unit-xl) / 2);
}
.modalContentWrapper::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #000000;
}
.modalContentWrapper::-webkit-scrollbar {
  width: 1rem;
  background-color: #000000;
}
.modalContentWrapper::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.modalContentWrapper::-webkit-scrollbar-corner {
  display: none;
}
@media (pointer: coarse) {
  .modalContentWrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
.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;
  text-align: inherit;
}
@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: 1px 0 13px;
  display: flex;
  align-items: center;
}
.accessModal .accessModalOptionIcon {
  margin-bottom: 3px;
  color: var(--color-white);
}
.accessModal .accessModalOptionDataIcon {
  position: relative;
  top: -6px;
  margin-bottom: 1px;
  font-size: 2.3rem;
  height: 1.8rem;
}
.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;
  text-align: inherit;
}
.avatar {
  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;
}
.avatar-small {
  --avatar-size: 1.8rem;
  font-size: 1.2rem;
}
.avatar-medium {
  --avatar-size: 2.8rem;
  font-size: 1.4rem;
}
.avatar-large {
  --avatar-size: 4rem;
  font-size: 1.6rem;
}
.avatar svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: var(--color-purple);
}
.avatar:first-of-type mask {
  display: none;
}
.avatarFirstLetter {
  position: relative;
  font-weight: 500;
}
.avatarContainer {
  display: flex;
  align-items: center;
}
.avatarImageContainer {
  margin-right: var(--base-unit-m);
}
.avatarName {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 20rem;
  font-size: 1.4rem;
}
.avatarOnlineBadge {
  background: #42CD7A;
  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);
  }
}

.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;
  text-align: inherit;
}
.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:hover {
  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;
  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;
}
@media (pointer: coarse) {
  .fancy-select .fancy-select__menu-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
.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;
}

.iTp8sX7gU_n7TsrTlZEs {
  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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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;
    background-color: #000000;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar-thumb {
    background-color: #272B2B;
  }
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar-corner {
    display: none;
  }
}
@media screen and (min-width: 768px) and (pointer: coarse) {
  .personalAccessModal .personalAccessLeft::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
.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;
  background-color: #000000;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar-corner {
  display: none;
}
@media (pointer: coarse) {
  .personalAccessModal .personalAccessRight .personalAccessRightContent::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
.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;
  text-align: inherit;
}
.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: -6px;
  }

  .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: 2px solid var(--acl-user-border-color);
}

.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;
  text-align: inherit;
}
.productMedia {
  display: inline-flex;
  width: var(--product-media-size);
  height: var(--product-media-size);
}
.productMediaWithoutPlaceholder > div {
  position: relative;
  display: block;
  /** todo: hack for Waypoint pluging in Safari. There is no reaction to scroll without that */
  width: 100%;
  height: 100%;
  z-index: 1;
  /** todo: another hack: we help browsers to hide placeholder under the video by that */
}
.productMediaWithoutPlaceholder .media-in-list-placeholder {
  /** this hides placeholder when first frame of player is loaded */
  position: absolute;
  top: 0;
  left: 0;
  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;
  text-align: inherit;
}
.playerErrorMessage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
  text-align: inherit;
}
.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;
}



.nextPaymentAmount {
  margin-right: 8px;
}

.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;
  text-align: inherit;
}
.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;
  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;
  text-align: inherit;
}
.publicCollectionConfirmationContentImg {
  margin: var(--base-unit-l) auto;
  display: block;
  max-width: 100%;
}

@font-face {
    font-family: "CWI";
    src: url("/app.CWI.f2071a48bde22a0778cf664165206393.woff2") format("woff2");
}

.cw-icon {
    display: inline-block;
    font-family: CWI !important;
    font-style: normal;
    font-weight: normal !important;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

.cw-icon:before {
    box-sizing: border-box;
}

    .cw-icon-3d-cardboard:before {
        content: "\f101";
    }
    .cw-icon-3d-model:before {
        content: "\f102";
    }
    .cw-icon-3d-tv:before {
        content: "\f103";
    }
    .cw-icon-4v-360:before {
        content: "\f104";
    }
    .cw-icon-4v-crown:before {
        content: "\f105";
    }
    .cw-icon-4v-left:before {
        content: "\f106";
    }
    .cw-icon-4v-pavillion:before {
        content: "\f107";
    }
    .cw-icon-4v-right:before {
        content: "\f108";
    }
    .cw-icon-4v-side-view-table-down:before {
        content: "\f109";
    }
    .cw-icon-4v-side-view-table-up:before {
        content: "\f10a";
    }
    .cw-icon-add-person:before {
        content: "\f10b";
    }
    .cw-icon-aperture:before {
        content: "\f10c";
    }
    .cw-icon-arrow-lt-down:before {
        content: "\f10d";
    }
    .cw-icon-arrow-lt-left:before {
        content: "\f10e";
    }
    .cw-icon-arrow-lt-right:before {
        content: "\f10f";
    }
    .cw-icon-arrow-lt-up:before {
        content: "\f110";
    }
    .cw-icon-arrow-mid-down:before {
        content: "\f111";
    }
    .cw-icon-arrow-mid-left:before {
        content: "\f112";
    }
    .cw-icon-arrow-mid-right:before {
        content: "\f113";
    }
    .cw-icon-arrow-mid-up:before {
        content: "\f114";
    }
    .cw-icon-arrow-selector-down:before {
        content: "\f115";
    }
    .cw-icon-arrow-selector-up:before {
        content: "\f116";
    }
    .cw-icon-arrows-asc:before {
        content: "\f117";
    }
    .cw-icon-arrows-desc:before {
        content: "\f118";
    }
    .cw-icon-available-data:before {
        content: "\f119";
    }
    .cw-icon-back-hand:before {
        content: "\f11a";
    }
    .cw-icon-block:before {
        content: "\f11b";
    }
    .cw-icon-chat:before {
        content: "\f11c";
    }
    .cw-icon-check:before {
        content: "\f11d";
    }
    .cw-icon-close:before {
        content: "\f11e";
    }
    .cw-icon-code:before {
        content: "\f11f";
    }
    .cw-icon-communities:before {
        content: "\f120";
    }
    .cw-icon-compare-fill:before {
        content: "\f121";
    }
    .cw-icon-compare:before {
        content: "\f122";
    }
    .cw-icon-controls:before {
        content: "\f123";
    }
    .cw-icon-cube-rotation:before {
        content: "\f124";
    }
    .cw-icon-cube:before {
        content: "\f125";
    }
    .cw-icon-cut-brand:before {
        content: "\f126";
    }
    .cw-icon-delete:before {
        content: "\f127";
    }
    .cw-icon-description-off:before {
        content: "\f128";
    }
    .cw-icon-description-on:before {
        content: "\f129";
    }
    .cw-icon-diamond-filled:before {
        content: "\f12a";
    }
    .cw-icon-diamond:before {
        content: "\f12b";
    }
    .cw-icon-distance-to-diamond:before {
        content: "\f12c";
    }
    .cw-icon-distance-to-inclusions:before {
        content: "\f12d";
    }
    .cw-icon-distance-to-rough:before {
        content: "\f12e";
    }
    .cw-icon-documentation:before {
        content: "\f12f";
    }
    .cw-icon-download:before {
        content: "\f130";
    }
    .cw-icon-drag-handle:before {
        content: "\f131";
    }
    .cw-icon-drag:before {
        content: "\f132";
    }
    .cw-icon-edit:before {
        content: "\f133";
    }
    .cw-icon-expand:before {
        content: "\f134";
    }
    .cw-icon-filter:before {
        content: "\f135";
    }
    .cw-icon-full-protect:before {
        content: "\f136";
    }
    .cw-icon-fullscreen-off:before {
        content: "\f137";
    }
    .cw-icon-fullscreen-on:before {
        content: "\f138";
    }
    .cw-icon-grayscale:before {
        content: "\f139";
    }
    .cw-icon-gyro:before {
        content: "\f13a";
    }
    .cw-icon-hamburger:before {
        content: "\f13b";
    }
    .cw-icon-help:before {
        content: "\f13c";
    }
    .cw-icon-history:before {
        content: "\f13d";
    }
    .cw-icon-inclusion:before {
        content: "\f13e";
    }
    .cw-icon-inclusions-inside-old:before {
        content: "\f13f";
    }
    .cw-icon-inclusions-inside:before {
        content: "\f140";
    }
    .cw-icon-info:before {
        content: "\f141";
    }
    .cw-icon-information:before {
        content: "\f142";
    }
    .cw-icon-jewelry:before {
        content: "\f143";
    }
    .cw-icon-lighting-d65:before {
        content: "\f144";
    }
    .cw-icon-lighting-fluorescent:before {
        content: "\f145";
    }
    .cw-icon-lighting-led:before {
        content: "\f146";
    }
    .cw-icon-lighting:before {
        content: "\f147";
    }
    .cw-icon-like-fill:before {
        content: "\f148";
    }
    .cw-icon-like:before {
        content: "\f149";
    }
    .cw-icon-link:before {
        content: "\f14a";
    }
    .cw-icon-marquise:before {
        content: "\f14b";
    }
    .cw-icon-media:before {
        content: "\f14c";
    }
    .cw-icon-metrics-brightness-faceup:before {
        content: "\f14d";
    }
    .cw-icon-metrics-brightness:before {
        content: "\f14e";
    }
    .cw-icon-metrics-brilliance:before {
        content: "\f14f";
    }
    .cw-icon-metrics-carat:before {
        content: "\f150";
    }
    .cw-icon-metrics-clarity:before {
        content: "\f151";
    }
    .cw-icon-metrics-color-material:before {
        content: "\f152";
    }
    .cw-icon-metrics-color-table:before {
        content: "\f153";
    }
    .cw-icon-metrics-color:before {
        content: "\f154";
    }
    .cw-icon-metrics-culet:before {
        content: "\f155";
    }
    .cw-icon-metrics-cut-perf:before {
        content: "\f156";
    }
    .cw-icon-metrics-cut:before {
        content: "\f157";
    }
    .cw-icon-metrics-durability:before {
        content: "\f158";
    }
    .cw-icon-metrics-fire:before {
        content: "\f159";
    }
    .cw-icon-metrics-fluor-table:before {
        content: "\f15a";
    }
    .cw-icon-metrics-fluor:before {
        content: "\f15b";
    }
    .cw-icon-metrics-girdle:before {
        content: "\f15c";
    }
    .cw-icon-metrics-ident:before {
        content: "\f15d";
    }
    .cw-icon-metrics-identification:before {
        content: "\f15e";
    }
    .cw-icon-metrics-measurments:before {
        content: "\f15f";
    }
    .cw-icon-metrics-normalized–cut-perf:before {
        content: "\f160";
    }
    .cw-icon-metrics-optical-performance-area:before {
        content: "\f161";
    }
    .cw-icon-metrics-optical-performance:before {
        content: "\f162";
    }
    .cw-icon-metrics-optical-symmetry:before {
        content: "\f163";
    }
    .cw-icon-metrics-polish:before {
        content: "\f164";
    }
    .cw-icon-metrics-scintillation:before {
        content: "\f165";
    }
    .cw-icon-metrics-shape:before {
        content: "\f166";
    }
    .cw-icon-metrics-spread:before {
        content: "\f167";
    }
    .cw-icon-metrics-symmetry:before {
        content: "\f168";
    }
    .cw-icon-metrics-transparency:before {
        content: "\f169";
    }
    .cw-icon-more:before {
        content: "\f16a";
    }
    .cw-icon-my-lists:before {
        content: "\f16b";
    }
    .cw-icon-next:before {
        content: "\f16c";
    }
    .cw-icon-oval:before {
        content: "\f16d";
    }
    .cw-icon-pause:before {
        content: "\f16e";
    }
    .cw-icon-pin-off:before {
        content: "\f16f";
    }
    .cw-icon-pin-on:before {
        content: "\f170";
    }
    .cw-icon-play:before {
        content: "\f171";
    }
    .cw-icon-precise-fast:before {
        content: "\f172";
    }
    .cw-icon-prev:before {
        content: "\f173";
    }
    .cw-icon-princess:before {
        content: "\f174";
    }
    .cw-icon-printer:before {
        content: "\f175";
    }
    .cw-icon-private-access-for-users:before {
        content: "\f176";
    }
    .cw-icon-products-new:before {
        content: "\f177";
    }
    .cw-icon-products-removed:before {
        content: "\f178";
    }
    .cw-icon-project-shared:before {
        content: "\f179";
    }
    .cw-icon-project:before {
        content: "\f17a";
    }
    .cw-icon-protect:before {
        content: "\f17b";
    }
    .cw-icon-qr:before {
        content: "\f17c";
    }
    .cw-icon-radar:before {
        content: "\f17d";
    }
    .cw-icon-reprojection:before {
        content: "\f17e";
    }
    .cw-icon-reset-camera:before {
        content: "\f17f";
    }
    .cw-icon-rough-inclusions:before {
        content: "\f180";
    }
    .cw-icon-rough-surface:before {
        content: "\f181";
    }
    .cw-icon-rough:before {
        content: "\f182";
    }
    .cw-icon-round:before {
        content: "\f183";
    }
    .cw-icon-search:before {
        content: "\f184";
    }
    .cw-icon-second-display:before {
        content: "\f185";
    }
    .cw-icon-selector-down:before {
        content: "\f186";
    }
    .cw-icon-selector-up:before {
        content: "\f187";
    }
    .cw-icon-settings-off:before {
        content: "\f188";
    }
    .cw-icon-settings-on:before {
        content: "\f189";
    }
    .cw-icon-share:before {
        content: "\f18a";
    }
    .cw-icon-show-all:before {
        content: "\f18b";
    }
    .cw-icon-singlescale-off:before {
        content: "\f18c";
    }
    .cw-icon-singlescale-on:before {
        content: "\f18d";
    }
    .cw-icon-sort-down:before {
        content: "\f18e";
    }
    .cw-icon-sort-up:before {
        content: "\f18f";
    }
    .cw-icon-star-outline:before {
        content: "\f190";
    }
    .cw-icon-star:before {
        content: "\f191";
    }
    .cw-icon-swap:before {
        content: "\f192";
    }
    .cw-icon-theme-dark:before {
        content: "\f193";
    }
    .cw-icon-theme-light:before {
        content: "\f194";
    }
    .cw-icon-touch-inclusions:before {
        content: "\f195";
    }
    .cw-icon-user-billing-eur:before {
        content: "\f196";
    }
    .cw-icon-user-billing-usd:before {
        content: "\f197";
    }
    .cw-icon-user-import:before {
        content: "\f198";
    }
    .cw-icon-user-logout:before {
        content: "\f199";
    }
    .cw-icon-user-my-collections:before {
        content: "\f19a";
    }
    .cw-icon-user-profile:before {
        content: "\f19b";
    }
    .cw-icon-view-big:before {
        content: "\f19c";
    }
    .cw-icon-view-chart:before {
        content: "\f19d";
    }
    .cw-icon-view-combo-lg:before {
        content: "\f19e";
    }
    .cw-icon-view-combo:before {
        content: "\f19f";
    }
    .cw-icon-view-ex-small:before {
        content: "\f1a0";
    }
    .cw-icon-view-little:before {
        content: "\f1a1";
    }
    .cw-icon-view-small:before {
        content: "\f1a2";
    }
    .cw-icon-view-tab:before {
        content: "\f1a3";
    }
    .cw-icon-warning:before {
        content: "\f1a4";
    }
    .cw-icon-zoom-in:before {
        content: "\f1a5";
    }
    .cw-icon-zoom-out:before {
        content: "\f1a6";
    }
    .cw-icon-zoom-to-fit:before {
        content: "\f1a7";
    }

.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;
  text-align: inherit;
}
: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%;
}

.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;
  text-align: inherit;
}
.content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  will-change: transform;
  flex: auto;
}
.content--contrast {
  background: #F4F4F4;
  color: #000000;
}

.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;
  text-align: inherit;
}
.pageErrorWrapper {
  margin: 2.4rem 0 0 0;
}
.pageError {
  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);
}
.pageErrorCode {
  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) {
  .pageErrorCode {
    font-size: 12rem;
  }
}
.pageErrorImage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.4rem 0 0 0;
}
.pageErrorImage img {
  display: block;
}
@media screen and (max-width: 575.9px) {
  .pageErrorImage img {
    width: 60%;
  }
}
.pageErrorDescription {
  line-height: 1.3;
  text-align: left;
  margin: 2.4rem 0 0 0;
}
.pageErrorDescriptionHasLinks {
  margin: 0 0 2.4rem 0;
}
.pageErrorDescriptionLinks {
  margin: 2.4rem 0 0 0;
}
.withMarginBottom {
  vertical-align: -0.2rem;
}

.Y4AvYCXIz8f5oECFmZWy {
    width: 100%;
    background: #191B1B;
    border-width: 1px 0;
    border-style: solid;
    border-color: #323737;
    height: 80px;
}
h2 {
    font-weight: bold;
    font-size: 44px;
    color: var(--color-secondary);
    padding: 0;
    margin: var(--unified-padding-top-small) 0 var(--unified-padding-bottom-small) 0;
}

h3 {
    color: var(--color-secondary);
    font-weight: 400;
    font-size: 32px;
    padding: 0;
    margin: 0;
}

._2UlupXoy25zcMkhyp2B {
    display: flex;
    justify-content: space-around;
    height: 100%;
    padding: 0;
    font-size: 16px;
}

.LmJjmu7szVHPC5huffdp {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 10px;
    padding: 15px 10px 0 10px;
}

.LmJjmu7szVHPC5huffdp > section {
    background: var(--color-neutral-dark);
}

.ZSp9bO0MTBTwV1Lhgl4g {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    align-content: stretch;
}

.ZSp9bO0MTBTwV1Lhgl4g > div, .SuJg7F3_KB1GrM58ihXC > div, .s2fSRObg3VeiIMlYW5xC > div > div {
    box-shadow: 1px 0 0 0 var(--color-neutral-not-so-light),
    0 1px 0 0 var(--color-neutral-not-so-light),
    1px 1px 0 0 var(--color-neutral-not-so-light),
    1px 0 0 0 var(--color-neutral-not-so-light) inset,
    0 1px 0 0 var(--color-neutral-not-so-light) inset;
    padding: 28px 18px;
}

.Gl13X_2PihpjMlBW74PX {
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.SuzkTUfb0gGp0lGYsqBN {
    height: 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.PViOnj6nTgKV0zszVoSl {
    display: flex;
    justify-content: space-between;
}

.s2fSRObg3VeiIMlYW5xC {
    display: flex;
    padding: 0 !important;
    font-size: 14px;
}

.s2fSRObg3VeiIMlYW5xC > div {
    min-width: 50%;
}

.s2fSRObg3VeiIMlYW5xC table {
    width: 100%;
}
.aXAYxSnEQFq4c2UfO4yJ {
    padding: 0 !important;
}

.oNbci6i0hj2hNMRBO7hb {
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.oNbci6i0hj2hNMRBO7hb th {
    font-weight: bold;
    padding: 12px 10px;
    border: 1px solid var(--color-neutral-not-so-light);
    text-align: left;
}

.oNbci6i0hj2hNMRBO7hb td {
    padding: 12px 10px;
    border-top: 1px solid var(--color-neutral-not-so-light);
    text-align: right;
}

.oNbci6i0hj2hNMRBO7hb td.A7_bRzsqeRJCo7zXiVbg {
    font-weight: bold;
}

.oNbci6i0hj2hNMRBO7hb td.YEAfkhXCR5QJ49l9WFHQ {
    white-space: nowrap;
    text-align: left;
}

.oNbci6i0hj2hNMRBO7hb .xkbd0m4UgybAaB9sMxlL {
    background: var(--color-neutral);
}

.oNbci6i0hj2hNMRBO7hb tr.UJGOn1XhR4V1Z0itMKo6 td {
    border-top: 0;
    padding: 0 10px 10px 10px;
}

.q63jKozwbNCGBBkFUOaT {
    height: 16px;
    background: #967FDB;
}
.ncQDfjChIeVAh_otxnW8 {
    padding: 0 !important;
}

.sl9s3Fae6JMMEvKrRwDT {
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 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;
  text-align: inherit;
}
.app {
  height: 100%;
}
.e2eMode .sf-toolbar {
  display: none !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;
  text-align: inherit;
}
:root {
  --header-background: #000000;
  --header-right-menu-color: #ffffff;
  --pinned-collection-background: #7D7D7D;
  --pinned-collection-color: #000000;
}
@keyframes hide-header {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5.6rem);
  }
}
@keyframes show-header {
  from {
    transform: translateY(-5.6rem);
  }
}
.header {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  height: 5.6rem;
  width: 100%;
  border-bottom: thin solid #272B2B;
  padding: 0 var(--unified-padding-right-large) 0 var(--unified-padding-left-large);
  background: var(--header-background);
  transition: background-color 200ms ease-in-out;
}
.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: 2.4rem;
  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: 2.4rem;
  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 2.4rem;
  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: 5;
  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);
}

.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;
  text-align: inherit;
}
.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;
  background-color: #BDBDBD;
}
.collections-popover__collections::-webkit-scrollbar-thumb {
  background-color: #272B2B;
}
.collections-popover__collections::-webkit-scrollbar-corner {
  display: none;
}
@media (pointer: coarse) {
  .collections-popover__collections::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }
}
.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.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;
  text-align: inherit;
}
.animatedDropdown {
  --dropdown-height: 3.6rem;
  position: relative;
  z-index: 5;
  min-width: 20rem;
}
.animatedDropdownLabel {
  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;
}
.animatedDropdownLabelLeft {
  margin-right: auto;
  color: var(--color-white);
}
.animatedDropdownTriangle {
  --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;
}
.animatedDropdownTriangleOpened {
  transform: rotate(180deg);
}
.animatedDropdownLabelOpened {
  border-radius: calc(var(--dropdown-height) / 2) calc(var(--dropdown-height) / 2) 0 0;
}
.animatedDropdownContent {
  position: absolute;
  top: calc(var(--dropdown-height) / 2);
  width: 100%;
  background: var(--color-modal);
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
  border-radius: 0 0 calc(var(--dropdown-height) / 4) calc(var(--dropdown-height) / 4);
}
.animatedDropdownContentClosed {
  max-height: 0 !important;
}
.animatedDropdownMenuContainer {
  padding-top: calc(var(--dropdown-height) / 2);
}

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

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

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

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

.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 > 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 {
  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 {
  background: var(--color-white);
  color: var(--color-modal);
}

.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;
  border-top: thin solid var(--color-neutral);
}

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

.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;
  text-align: inherit;
}
.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);
}

.aJDZ4sbLBiMlBw719xHj {
  flex: none;
  background: var(--color-neutral);
  height: 0.1rem;
  margin: var(--base-unit-l) 0;
  border: none;
}


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