@charset "UTF-8";
#cookie-box {
  position: fixed;
  display: none;
  justify-content: center;
  bottom: 0px;
  z-index: 1000;
  background: rgba(253, 207, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.125em 0;
  width: 100vw;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-box #cookie-box-content {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin: 0 2em;
}
#cookie-box p {
  display: flex;
  align-items: center;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  color: #201B23;
  font-size: 1rem;
  margin: 0.65em 0;
}
#cookie-box p .text {
  margin: 0.25em 0;
}
#cookie-box a {
  color: #201B23;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(32, 27, 35, 0.25);
}
#cookie-box a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(32, 27, 35, 0.75);
}
#cookie-box .cookie-notice-accept {
  display: block;
  width: fit-content;
  height: fit-content;
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(253, 207, 11, 0.85);
  color: #201B23;
  border: 1.5px solid rgba(20, 19, 21, 0.5);
  border-radius: 1.5rem;
  padding: 0.4rem 1rem;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-box .cookie-notice-accept:hover {
  text-decoration: none;
  background-color: white;
  border-color: rgba(20, 19, 21, 0.75);
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-box .cookie-box-close {
  cursor: pointer;
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
}
#cookie-box .cookie-box-close svg > path {
  fill: #201B23;
  stroke: #201B23;
}
#cookie-box.hidden {
  bottom: -4rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#cookie-modal {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(253, 207, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-modal:target {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-modal p {
  font-size: 1rem;
  color: #201B23;
}
#cookie-modal p a {
  color: #201B23;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(32, 27, 35, 0.25);
}
#cookie-modal p a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(32, 27, 35, 0.75);
}
#cookie-modal .actions {
  display: flex;
  gap: 0.5em;
  margin-left: -0.25em;
}
#cookie-modal .button {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.85);
  color: #201B23;
  border: 1.5px solid rgba(20, 19, 21, 0.5);
  border-radius: 1.5rem;
  padding: 0.4rem 1rem;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-modal .button.cookie-box-close {
  font-weight: normal;
  color: rgba(32, 27, 35, 0.8);
  background-color: transparent;
  border: 1.5px solid rgba(20, 19, 21, 0.25);
}
#cookie-modal .button:hover {
  text-decoration: none;
  background-color: white;
  border-color: #141315;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#cookie-modal .button:hover.cookie-box-close {
  color: #201b23;
  background-color: transparent;
  border-color: rgba(20, 19, 21, 0.5);
}
#cookie-modal .content {
  position: relative;
  padding: 30px;
  max-width: 50em;
  overflow: auto;
  max-height: 100vh;
  margin: 0 auto;
  top: 45%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#cookie-modal.hidden {
  display: none;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

body {
  background: #363B49;
  color: white;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
}

button.cta {
  display: flex;
  width: fit-content;
  gap: 0.325rem;
  align-items: center;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: black;
  background-color: rgba(253, 207, 11, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.425em 1em 0.425em 1em;
  margin: 0.5rem 0;
  border-radius: 10em;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
button.cta:hover {
  background-color: #FDCF0B;
}
button.cta.icon-arrow {
  padding-right: 0.8em;
}
button.cta.icon-arrow:after {
  content: "";
  position: relative;
  width: 17px;
  height: 14px;
  border: none;
  background: transparent;
  background-image: url('data:image/svg+xml,<svg width="17" height="14" viewBox="0 0 17 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.974359 7.16305L15 7.16305M15 7.16305L8.46154 1M15 7.16305L8.46154 13.3262" stroke="%23201B23" stroke-width="1.5"/></svg>');
}

.restricted {
  display: inline-block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 2.5em 3em;
  font-size: 1.2em;
  color: white;
  background: #fe3019;
}
.restricted a {
  color: white;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.main-title svg {
  display: inline-block;
  margin-right: 1rem;
}
.main-title .title-name {
  font-size: 0.675em;
  display: inline-block;
  font-weight: 600;
  line-height: 1.1;
  vertical-align: 3px;
}
.main-title sup {
  font-size: 32%;
  margin: 0 0.5em;
}
.main-title .beta {
  display: inline;
  font-size: 0.5em;
  color: #FDCF0B;
  background: #201B23;
  padding: 0.35em 0.75em 0.325em 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: 2px;
  border-radius: 1em;
}

header {
  display: block;
  max-width: 80rem;
  padding: 3rem 2.5rem 0rem;
  margin: 0 auto;
}
header h2:first-child {
  margin-right: 0.25em;
  white-space: nowrap;
}

#mobile-warning {
  display: none;
  padding: 2rem 2.5rem;
  margin: 0;
  color: white;
  background: white;
  font-size: 1em;
}
#mobile-warning p {
  margin: 0 0 0.75em;
  color: #363B49;
}
#mobile-warning p sup {
  font-size: 7px;
}
#mobile-warning p:last-of-type {
  margin-bottom: 0;
}
#mobile-warning svg > path, #mobile-warning svg > rect {
  stroke: #363B49;
}
#mobile-warning .screen-icon {
  display: inline-block;
  border-radius: 2px;
  padding: 0;
  margin: 0 1em 0.5em 2px;
  color: white;
  vertical-align: top;
  width: 32px;
  height: fit-content;
  text-align: center;
}

.intro {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0rem 2.5rem 1rem;
  box-sizing: border-box;
}
.intro .intro_cols {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: 3fr 1fr;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}
.intro .start-input {
  display: grid;
  max-width: 20em;
  margin-left: -1em;
  padding: 1.125rem 1rem 1rem;
  border-radius: 4px;
  background-color: rgba(32, 27, 35, 0.5);
  text-align: right;
}
.intro p {
  max-width: 36rem;
}
.intro p.lede {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.intro p.beta-warning {
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  color: #fdcf0b;
  margin-bottom: 0.5em;
  border-radius: 1rem;
  box-sizing: border-box;
}

#coming-soon {
  display: block;
  margin: 0 0 1em -1em;
  padding: 0.25em 1em;
  width: fit-content;
  transition: all 0.15s ease-out;
}
#coming-soon p:first-child {
  font-size: 0.9rem;
  color: rgba(235, 236, 234, 0.65);
  cursor: pointer;
  margin: 0.75em 0 0;
}
#coming-soon p:first-child:hover {
  color: #ebecea;
}
#coming-soon ul {
  display: block;
  padding-inline-start: 1em;
  height: 0;
  overflow: hidden;
  margin: 0;
}
#coming-soon ul li {
  font-size: 1em;
  color: rgba(235, 236, 234, 0.8);
}
#coming-soon.show {
  background: rgba(32, 27, 35, 0.25);
  border-radius: 0.85em;
  padding: 0.25em 1em;
  transition: all 0.15s ease-out;
}
#coming-soon.show p:first-child {
  color: white;
}
#coming-soon.show ul {
  height: auto;
  margin: 0.75em 0.75em 1em 0;
  transition: all 0.15s ease-out;
}

@media (min-width: 1024px) {
  .intro .intro_cols section {
    width: 100%;
  }
}
.intro_content {
  grid-column: span 1;
}

.saved-container {
  grid-column: span 1;
}

ul.saved-configs {
  position: relative;
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0em;
  margin: -1em -0.25em 1.5em -0.25em;
  padding-top: 1em;
  padding-right: 0.25em;
  max-height: 10em;
  overflow-y: scroll;
  overflow-x: visible;
  -webkit-transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs:hover {
  max-height: 18em;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs::-webkit-scrollbar {
  width: 0.5em;
  height: 1em;
}
ul.saved-configs::-webkit-scrollbar-track {
  border-radius: 0.25em;
  background-color: transparent;
}
ul.saved-configs:hover::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 4em rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs::-webkit-scrollbar-thumb {
  border-radius: 25em;
  -webkit-border-radius: 25em;
  border-top: 1em solid transparent;
  border-bottom: 2em solid transparent;
  border-left: 0.1em solid transparent;
  border-right: 0.1em solid transparent;
  box-shadow: inset 0 0 0 4em rgba(20, 19, 21, 0.25);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0 0 0 4em rgba(255, 255, 255, 0.75);
  border-left: 0em solid transparent;
  border-right: 0em solid transparent;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs::-webkit-scrollbar-thumb:active {
  box-shadow: inset 0 0 0 4em white;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs:after {
  display: block;
  content: "";
  pointer-events: none;
  position: sticky;
  width: 100%;
  height: 3em;
  bottom: 0;
  left: 0;
  background: transparent;
  background: linear-gradient(0deg, #363b49 0%, rgba(54, 59, 73, 0) 100%);
}
ul.saved-configs li {
  display: inline-block;
  position: relative;
}
ul.saved-configs li a {
  display: inline-block;
  line-height: 1.5;
  padding: 0.45em 0.8em 0.5em;
  margin: 0 0.35em 0.7em 0em;
  background: rgba(235, 236, 234, 0.75);
  border-radius: 0.85em;
  color: black;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs li a .info {
  display: block;
  font-size: 75%;
  color: rgba(0, 0, 0, 0.5);
  clear: both;
}
ul.saved-configs li .delete-user-config {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  top: -0.5em;
  right: -0.125em;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  width: 1.125em;
  height: 1.125em;
  border-radius: 1em;
  color: rgba(255, 255, 255, 0.125);
  background: rgba(235, 236, 234, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs li.saved-config--private .info:after {
  content: "– Private";
  margin-left: 0.25em;
  display: inline-block;
}
ul.saved-configs li:hover a {
  background: #ebecea;
  color: black;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs li:hover .delete-user-config {
  opacity: 1;
  color: #201B23;
  background: rgba(235, 236, 234, 0.375);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
ul.saved-configs li:hover .delete-user-config:hover {
  background: #fdcf0b;
}

.inputbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  background: rgba(20, 19, 21, 0.6);
  padding: 0.75em 0.25em 0.75em 1em;
  margin: 0 0 0.75em;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}
.inputbox.half {
  width: calc(50% - 0em);
}
.inputbox.no-border {
  border-bottom: none;
}
.inputbox.nomargin[style*=hidden] + .inputbox:not([style*=hidden]) {
  margin-bottom: 0.75em;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.inputbox.nomargin:not([style*=hidden]) {
  margin: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.inputbox.nomargin:not([style*=hidden]) + .nomargin:not([style*=hidden]), .inputbox.nomargin:not([style*=hidden]) + .inputbox:not([style*=hidden]) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.inputbox sub {
  line-height: 0;
}
.inputbox .break {
  flex-basis: 100%;
  height: 0;
}
.inputbox .right {
  text-align: right;
  margin-left: auto;
}
.inputbox .info {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.inputbox .info strong {
  font-weight: normal;
  color: white;
}
.inputbox .info .name strong {
  font-weight: bold;
  color: black;
}
.inputbox .info.full {
  text-align: right;
  padding-right: 0.5em;
  width: 100%;
}
.inputbox:hover {
  background: #141315;
}
.inputbox:hover label h3 {
  color: #fdcf0b;
}
.inputbox:hover:not(.disabled) input[type=number]:not(:focus), .inputbox:hover:not(.disabled) input[inputmode=numeric]:not(:focus), .inputbox:hover:not(.disabled) .numberText:not(:focus) {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
}
.inputbox:hover:not(.disabled) input[type=number]:not(:focus) + .unit, .inputbox:hover:not(.disabled) input[inputmode=numeric]:not(:focus) + .unit, .inputbox:hover:not(.disabled) .numberText:not(:focus) + .unit {
  color: black;
  mix-blend-mode: multiply;
}
.inputbox:hover .stepper input[type=number] {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
}
.inputbox:hover .plus, .inputbox:hover .minus {
  background: rgba(0, 0, 0, 0.75);
}

input[type=number], input[inputmode=numeric], .numberText {
  -moz-appearance: textfield;
  outline: none;
  display: inline-block;
  position: relative;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1em;
  height: 28px;
  text-align: right;
  color: white;
  width: 6em;
  min-width: 3em;
  background: transparent;
  border-radius: 0.15em;
  border: none;
  padding: 0 0.5em 0 0;
  margin: -3px 0;
}
input[type=number] + .unit, input[inputmode=numeric] + .unit, .numberText + .unit {
  display: inline-block;
  text-align: left;
  width: 1.5em;
  margin-left: -1.5em;
  pointer-events: none;
}
input[type=number] + input[type=number], input[type=number] + input[inputmode=numeric], input[type=number] + .numberText, input[inputmode=numeric] + input[type=number], input[inputmode=numeric] + input[inputmode=numeric], input[inputmode=numeric] + .numberText, .numberText + input[type=number], .numberText + input[inputmode=numeric], .numberText + .numberText {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
input[type=number][disabled], input[inputmode=numeric][disabled], .numberText[disabled] {
  opacity: 0.4;
}
input[type=number][disabled] + .unit, input[inputmode=numeric][disabled] + .unit, .numberText[disabled] + .unit {
  opacity: 0.4;
}
input[type=number]:has(+ .unit), input[inputmode=numeric]:has(+ .unit), .numberText:has(+ .unit) {
  padding-right: 1.5em;
}
input[type=number]:not([disabled]):hover, input[inputmode=numeric]:not([disabled]):hover, .numberText:not([disabled]):hover {
  background: rgba(255, 255, 255, 0.75);
}
input[type=number]:focus, input[type=number]:hover:focus, input[inputmode=numeric]:focus, input[inputmode=numeric]:hover:focus, .numberText:focus, .numberText:hover:focus {
  color: #201B23;
  background: rgba(255, 255, 255, 0.8);
}
input[type=number]:focus + .unit, input[type=number]:hover:focus + .unit, input[inputmode=numeric]:focus + .unit, input[inputmode=numeric]:hover:focus + .unit, .numberText:focus + .unit, .numberText:hover:focus + .unit {
  color: black;
  mix-blend-mode: multiply;
  opacity: 1;
}
input[type=number].smaller, input[inputmode=numeric].smaller, .numberText.smaller {
  width: 4em;
}
input[type=number].sup, input[inputmode=numeric].sup, .numberText.sup {
  vertical-align: 3px;
  padding-right: 0.15em;
  font-size: 0.9em;
}

.radiocontainer, .checkboxcontainer {
  display: flex;
  gap: 0.5em;
  align-items: center;
  width: 100%;
  position: relative;
  cursor: pointer;
  margin-right: 0.75em;
}
.radiocontainer input, .checkboxcontainer input {
  cursor: pointer;
  position: absolute;
  opacity: 0;
}
.radiocontainer input:checked ~ .radio, .radiocontainer input:checked ~ .checkmark, .checkboxcontainer input:checked ~ .radio, .checkboxcontainer input:checked ~ .checkmark {
  background: white;
}
.radiocontainer input:checked ~ .radio:after, .radiocontainer input:checked ~ .checkmark:after, .checkboxcontainer input:checked ~ .radio:after, .checkboxcontainer input:checked ~ .checkmark:after {
  display: block;
}
.radiocontainer input:checked ~ svg, .checkboxcontainer input:checked ~ svg {
  opacity: 0.9;
}
.radiocontainer .checkmark, .checkboxcontainer .checkmark {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  right: -0.1em;
  width: 1.125em;
  height: 1.125em;
  margin-left: 0.7em;
  border-radius: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}
.radiocontainer .checkmark:after, .checkboxcontainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.225em;
  top: 0.0275em;
  width: 0.3em;
  height: 0.6em;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radiocontainer .radio, .checkboxcontainer .radio {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  right: 0;
  width: 1em;
  height: 1em;
  margin-left: 0.75em;
  margin-bottom: 0.1em;
  border-radius: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}
.radiocontainer svg, .checkboxcontainer svg {
  vertical-align: middle;
  margin-right: 0.5em;
  margin-left: 0.5em;
  opacity: 0.25;
}
.radiocontainer:hover, .checkboxcontainer:hover {
  color: white;
}
.radiocontainer:hover input ~ .radio, .radiocontainer:hover input ~ .checkmark, .checkboxcontainer:hover input ~ .radio, .checkboxcontainer:hover input ~ .checkmark {
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.radiocontainer:hover input ~ svg, .checkboxcontainer:hover input ~ svg {
  opacity: 0.9;
}
.radiocontainer:hover input:checked ~ .checkmark, .checkboxcontainer:hover input:checked ~ .checkmark {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.radiocontainer:hover input:checked ~ .checkmark:after, .checkboxcontainer:hover input:checked ~ .checkmark:after {
  opacity: 0.5;
}

.icon-info {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2.5px;
  background-image: url("../assets/icon-info-w.svg");
  opacity: 0.66;
}
.icon-info:hover {
  opacity: 1;
}

section h2 {
  margin-bottom: 1em;
}

#gallery {
  display: block;
  width: 100%;
  margin: 0;
  padding: 2rem 0 4rem;
  margin-left: -2rem;
  background: white;
}
#gallery h2:first-child {
  display: inline-block;
  margin-top: 1em;
}
#gallery header, #gallery section {
  display: block;
  position: relative;
  width: auto;
  margin: 0 auto;
  color: black;
}
#gallery header {
  padding: 0 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: baseline;
}
#gallery .presets {
  border-radius: 4px;
  background-color: rgba(32, 27, 35, 0);
  max-width: 56rem;
  width: auto;
}

@media (max-width: 1360px) {
  #gallery .presets {
    width: calc(100vw - 380px) !important;
  }
}
strong {
  font-weight: 600;
}

button {
  -webkit-appearance: none;
  appearance: none;
  background: #FFC235;
  border: none;
  color: #000;
}

h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3611111111;
  margin-top: 0;
}

h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3333333333;
  margin-top: 0;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3333333333;
  margin: 0;
}

.welcome__custom-dimensions form {
  background: #D9D9D9;
  padding: 15px;
}
.welcome__custom-dimensions input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin: 0 5px;
}

.welcome-tabs-tabs__list {
  display: inline-flex;
  flex-wrap: wrap;
  vertical-align: middle;
  gap: 0.5em;
  font-size: 20px;
  margin: 0;
  justify-content: left;
  padding: 0;
  position: relative;
  text-align: center;
}

.welcome-tabs-tabs__item {
  display: flex;
  z-index: 10;
}

.welcome-tabs-tabs__link {
  padding: 8px 20px;
  border: 1.5px solid rgba(32, 27, 35, 0.25);
  cursor: pointer;
  text-decoration: none;
  border-radius: 24px;
  margin-left: -0.125em;
  text-align: left;
  white-space: nowrap;
}

[aria-selected=true].welcome-tabs-tabs__link {
  border: 1.5px solid #201B23;
  background: #201B23;
  color: white;
}

.welcome-tabs-tabs__content {
  padding: 0;
}

[aria-hidden=true].welcome-tabs-tabs__content {
  display: none;
}

.welcome__starter-systems-options {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
}

.welcome__starter-systems-option {
  width: 100%;
}

@media (min-width: 1024px) {
  .welcome__starter-systems-option {
    width: calc(50% - 2rem);
  }
}
.welcome__starter-systems-option .glide__slide {
  height: fit-content;
  min-height: 236px;
  position: relative;
}
.welcome__starter-systems-option .glide__slide a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: fit-content;
}
.welcome__starter-systems-option .glide__slide a img {
  width: 100%;
  height: auto;
  z-index: 0;
  border-radius: 0px;
  border-radius: 4px;
  border: 1.5px solid #EBECEA;
}
.welcome__starter-systems-option .glide__slide a .archetype {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 3.125em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  border-radius: 4px;
}
.welcome__starter-systems-option .glide__slide a .info {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -3.4em;
  right: 0em;
  font-size: 0.9em;
  font-weight: 500;
  color: rgba(235, 236, 234, 0.5);
  z-index: 1;
}
.welcome__starter-systems-option .glide__slide a .info button.cta {
  font-size: 1.05em;
  margin-left: 0.75em;
  padding: 0.325em 0.75em 0.325em 0.8em;
}
.welcome__starter-systems-option .glide__slide a .info small {
  vertical-align: baseline;
}

.glide .glide__bullets {
  position: relative;
  transform: none;
  left: 0;
  bottom: -1px;
  margin: 0 0.5em;
}
.glide .glide__bullets .glide__bullet {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(32, 27, 35, 0.75);
  border-radius: 6px;
  margin: 0px 0 0 4px;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.25);
}
.glide .glide__bullets .glide__bullet.glide__bullet--active {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #201b23;
}
.glide .glide__bullets .glide__bullet:hover {
  background-color: white;
  border-color: transparent;
}
.glide .glide__arrows {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.glide .glide__arrows .glide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2.5em;
  height: 5em;
  width: 5em;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  padding: 0;
  text-transform: none;
  background: rgba(255, 0, 0, 0);
}
.glide .glide__arrows .glide__arrow svg {
  z-index: 1;
}
.glide .glide__arrows .glide__arrow:before {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
}
.glide .glide__arrows .glide__arrow:hover:before {
  background: white;
}
.glide .glide__arrows .glide__arrow--right {
  right: 0;
  border-bottom-left-radius: 50%;
}
.glide .glide__arrows .glide__arrow--left {
  left: 0;
  border-bottom-right-radius: 50%;
}
.glide .glide__title-section {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0.75em;
  left: 0em;
  background: #2B2B35;
}
.glide h3 {
  font-size: 1em;
  display: inline-block;
  margin: 0.5em 0;
  color: #EBECEA;
}
.glide button.cta {
  font-size: 0.9em;
  background: rgba(235, 236, 234, 0.25);
}
.glide button.cta .expand {
  width: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.glide:hover .glide__arrows {
  opacity: 1;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.glide:hover button.cta {
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.25);
  background: #fdcf0b;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.glide:hover button.cta .expand {
  width: 4.5em;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.glide:hover button.cta:hover {
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.75);
}

.dark-mode .start-input {
  margin-right: -1rem;
  margin-bottom: 4em;
  position: sticky;
  top: 1.5em;
}
.dark-mode .welcome-tabs-tabs__link {
  vertical-align: middle;
  padding: 6px 0px;
  border: 1px solid rgba(235, 236, 234, 0.5);
  border: none;
  border-bottom: 2px solid rgba(235, 236, 234, 0.25);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9em;
  margin-left: 0.5em;
  color: #ebecea;
}
.dark-mode .welcome-tabs-tabs__link:hover {
  border: 1px solid rgba(235, 236, 234, 0.75);
  border: none;
  border-bottom: 2px solid #EBECEA;
  border-radius: 0;
  color: #EBECEA;
}
.dark-mode [aria-selected=true].welcome-tabs-tabs__link {
  border: 1px solid #EBECEA;
  border: none;
  border-bottom: 2px solid #FDCF0B;
  border-radius: 0;
  background: transparent;
  color: #FDCF0B;
  font-weight: 500;
}
.dark-mode #gallery {
  background: transparent;
  padding: 0 0 4rem;
  grid-column: span 1;
}
.dark-mode #gallery h2 {
  color: white;
}
.dark-mode #gallery .presets {
  padding: 2rem;
  background-color: rgba(32, 27, 35, 0.5);
}
.dark-mode .glide__slide a img {
  border: none;
}
.dark-mode .welcome__starter-systems-option {
  width: calc(50% - 1rem);
}
.dark-mode .welcome__starter-systems-options {
  gap: 2rem;
  row-gap: 1rem;
}

@media (max-width: 1023px) {
  #mobile-warning {
    display: block;
  }
  #create, #cookie-box {
    display: none !important;
  }
  .intro_content, .saved-container, #gallery, main section {
    grid-column: span 4 !important;
  }
  #gallery {
    padding-bottom: 2rem !important;
  }
  #gallery .presets {
    box-sizing: border-box;
    width: 100vw !important;
  }
  #gallery header {
    margin-bottom: 1em;
  }
  #gallery header h2 {
    margin-bottom: 0;
  }
  #gallery header .welcome-tabs-tabs__link {
    margin-left: 0;
    margin-right: 1em;
  }
  ul.saved-configs:hover {
    max-height: 10em;
  }
}
@media (max-width: 700px) {
  .welcome__starter-systems-option {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .glide__slide a .archetype {
    height: 225px !important;
  }
  .product-section--company-of-icons.product-section--media_with_text, #mobile-warning, .intro, .product-section--company-of-icons.product-section--media_with_text .media-with-text__row-content, .product-section--test-of-time.product-section--media_with_text .media-with-text__row-content, body > header {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  #gallery {
    margin-left: -1.75rem;
  }
  #gallery .presets {
    margin: 0 !important;
  }
  .product-section--company-of-icons.product-section--media_with_text .media-with-text__row-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .product-section--infinitely-expandable-carousel .product-section--carousel__content, .product-section--infinitely-customizable .product-section--hero__content, .product-section--infinitely-customizable-2 .product-section--hero__content {
    max-width: calc(100vw - 3.5rem) !important;
  }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

img {
  pointer-events: none;
}

.woocommerce-page {
  font-size: 16px;
  background: white;
}
.woocommerce-page img {
  height: auto;
  max-width: 100%;
}
.woocommerce-page figure {
  display: inline-block;
  position: relative;
  margin: 0;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.75);
}
.woocommerce-page figure figcaption {
  display: inline-block;
  position: absolute;
  bottom: 1em;
  left: 0.75em;
  z-index: 1;
}
.woocommerce-page .product-section--hero__image {
  line-height: 0;
}
.woocommerce-page h2 {
  font-family: "Avenir LT W01_95 Black1475556", "Avenir Black", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
}
.woocommerce-page h3 {
  font-size: 1.4rem;
  font-weight: 500;
}
.woocommerce-page p {
  font-size: 1.05em;
}
.woocommerce-page .lede {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0.5em;
  margin-bottom: 0.85em;
}
.woocommerce-page .faux-button {
  border: 1px solid #201B23;
  border-radius: 0;
  box-shadow: rgba(30, 0, 0, 0.1) 0 0 0;
  color: #201B23;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  opacity: 1;
  font-size: 1.25rem;
  padding: 0.75em 1em;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s ease-out;
  white-space: nowrap;
}
.woocommerce-page .button-alt--clear {
  display: flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border-color: #201B23;
}
.woocommerce-page .button-alt--clear svg {
  margin-left: 0.5em;
  transition: all 0.2s ease-out;
}
.woocommerce-page .button-alt--clear:hover svg {
  margin-left: 1em;
  transition: all 0.1s ease-out;
}

/* Company of Icons */
.company-of-icons-container {
  width: 100%;
  background: #201B23;
}

.product-section--company-of-icons.product-section--media_with_text {
  background: #201B23;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 2.5rem;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row-content {
  padding: 0 2.5rem 0 0;
  max-width: 180rem;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row-content > div:nth-child(1) {
  padding: 0;
  max-width: 64rem;
  margin: 0 auto 4rem;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--1 {
  max-width: 100%;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--1 figure {
  margin: 3rem 0 0;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--1 figure img {
  border-radius: 4px;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 {
  margin: 3rem auto 0;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 section {
  display: inline-block;
  float: none;
  vertical-align: top;
  padding: 1rem 0;
  width: 100%;
  box-sizing: border-box;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 ul li {
  margin: 0;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 ul li:before {
  content: "•";
  color: #fff;
  display: inline-block;
  width: 1em;
}
.product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 h3 {
  font-size: 1.1rem;
  margin-bottom: 1em;
}

@media (min-width: 600px) {
  .product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 section {
    width: 49%;
    padding: 1rem 1rem 0 0;
  }
}
@media (min-width: 960px) {
  .product-section--company-of-icons.product-section--media_with_text {
    display: flex;
    flex-direction: row-reverse;
    margin: 0 auto;
  }
  .product-section--company-of-icons.product-section--media_with_text .media-with-text__row--2 {
    margin: 5rem auto 2rem;
  }
  .product-section--company-of-icons.product-section--media_with_text .product-section--hero__image img {
    width: auto;
  }
  .product-section--company-of-icons.product-section--media_with_text .media-with-text__row--1 {
    max-width: 50%;
  }
  .product-section--company-of-icons.product-section--media_with_text .media-with-text__row--1 figure {
    margin: 5.75rem 0 0;
  }
}
ul.logos {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  align-items: center;
  margin-bottom: 1.5em !important;
}
ul.logos li {
  display: inline-block;
}
ul.logos li:before {
  content: "" !important;
  width: 0 !important;
}

.scrollx-container {
  overflow-x: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  padding-bottom: 3rem;
  mask-image: -webkit-gradient(linear, 80% center, right center, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0.25)));
  -webkit-mask-image: -webkit-gradient(linear, 80% center, right center, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0.25)));
}

.scrollx-content {
  width: auto;
  display: flex;
  flex-flow: row;
  width: max-content;
  padding: 0 11rem 0;
}

.scrollx-content > section {
  padding: 0;
  width: fit-content;
  max-width: 35rem;
  min-width: 5rem;
  margin-right: 4rem;
}

/* Stand the Test of Time (two columns) */
.product-section--test-of-time.product-section--media_with_text {
  color: #201B23;
}
.product-section--test-of-time.product-section--media_with_text .media-with-text__row-content {
  padding: 0 2.5rem 4rem;
  max-width: 63rem;
}
.product-section--test-of-time.product-section--media_with_text .media-with-text__row--2 {
  margin: auto;
}
.product-section--test-of-time.product-section--media_with_text .product-section--hero__image {
  margin: 0 0 3rem;
}
.product-section--test-of-time.product-section--media_with_text .product-section--hero__image img {
  border-radius: 0;
}

@media (min-width: 960px) {
  .product-section--test-of-time.product-section--media_with_text {
    display: flex;
    margin: 0 auto;
    max-width: 80rem;
    width: 100%;
  }
  .product-section--test-of-time.product-section--media_with_text .media-with-text__row-content {
    padding: 4rem 5rem;
    max-width: 63rem;
  }
  .product-section--test-of-time.product-section--media_with_text .product-section--hero__image {
    margin: 4rem 0 5rem;
  }
  .product-section--test-of-time.product-section--media_with_text .product-section--hero__image img {
    border-radius: 4px;
  }
  .product-section--test-of-time.product-section--media_with_text .product-section--hero__image img {
    max-height: 72rem;
    width: auto;
  }
}
/* Engineered for modularity */
.product-section--infinitely-expandable-carousel {
  color: #201B23;
  background: #fe3019;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.product-section--infinitely-expandable-carousel .product-section--carousel__content {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100vw - 5rem);
}
.product-section--infinitely-expandable-carousel .product-section--carousel__content a {
  color: #FFC235;
  text-decoration: none;
}
.product-section--infinitely-expandable-carousel .product-section--carousel__content a svg {
  display: inline-block;
  margin-left: 4px;
  margin-bottom: 4px;
}
.product-section--infinitely-expandable-carousel .product-section--carousel__scroll {
  display: flex;
  width: 100%;
  height: 100%;
  padding-right: 17px;
  box-sizing: content-box;
  align-content: center;
  overflow-y: scroll;
  overflow-x: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 124rem;
  margin-left: auto;
  width: auto;
  margin-left: 0;
  max-width: none;
  padding-left: calc(50% - 44rem);
  padding-right: 6rem;
}
.product-section--infinitely-expandable-carousel .product-section--carousel__scroll .product-section--carousel__item {
  height: 26rem;
  line-height: 0;
}
.product-section--infinitely-expandable-carousel .product-section--carousel__scroll .product-section--carousel__item img {
  max-width: none;
  width: auto;
  height: 100%;
}

@media (min-width: 768px) {
  .product-section--infinitely-expandable-carousel {
    padding-top: 5rem;
  }
}
@media (min-width: 1280px) {
  .product-section--infinitely-expandable-carousel .product-section--carousel__content {
    max-width: 80rem;
    margin: 0 auto;
  }
}
/* Infinitely Customizable */
.product-section--infinitely-customizable {
  background-color: #FDCF0B;
  color: #201B23;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0;
}
.product-section--infinitely-customizable .product-section--hero__content {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100vw - 5rem);
  padding-top: 4rem;
}
.product-section--infinitely-customizable .product-section--hero__image {
  max-width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-section--infinitely-customizable .product-section--hero__image img {
  width: 100%;
  min-width: 720px;
}

.product-section--infinitely-customizable-2 {
  color: #201B23;
}
.product-section--infinitely-customizable-2 .product-section--hero__content {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100vw - 5rem);
  gap: 1rem 3rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.product-section--infinitely-customizable-2 .product-section--hero__content h3.heading-size-4 {
  margin-bottom: 1rem;
}
.product-section--infinitely-customizable-2 .product-section--hero__content > div {
  flex-basis: calc(33% - 2rem);
}

@media (min-width: 1024px) {
  .product-section--infinitely-customizable .product-section--hero__content {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem 3rem;
    padding-top: 5rem;
    padding-bottom: 2 rem;
  }
  .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(1) {
    flex-basis: 100%;
  }
  .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(2), .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(3) {
    flex-basis: calc(50% - 3rem);
  }
  .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(4), .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(5), .product-section--infinitely-customizable .product-section--hero__content > div:nth-child(6) {
    flex-basis: calc(33% - 6rem);
  }
  .product-section--infinitely-customizable .product-section--hero__content > div {
    flex-basis: calc(33% - 2rem);
  }
  .product-section--infinitely-customizable-2 .product-section--hero__content {
    flex-flow: row wrap;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1280px) {
  .product-section--infinitely-customizable .product-section--hero__content {
    max-width: 80rem;
  }
  .product-section--infinitely-customizable-2 .product-section--hero__content {
    max-width: 80rem;
  }
}
.tippy-box {
  background: transparent;
  max-width: none;
}
.tippy-box .tippy-content {
  color: black;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height: 1.2;
  padding: 1em 1em 0.75em 1em;
  border-radius: 1em;
}
.tippy-box .tippy-content .info {
  display: inline-block;
  opacity: 0.3;
  margin-top: 0.5em;
}
.tippy-box .tippy-content h2 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 0.125em;
}
.tippy-box .tippy-content h2:has(+ .ui-segmented) {
  margin: 0 5px 4px 12px;
}
.tippy-box .tippy-content ul {
  display: inline-block;
  margin: 0;
  padding: 0 0 0 1em;
}
.tippy-box .tippy-content ul li {
  margin-bottom: 0.5em;
}
.tippy-box .tippy-content label {
  color: black;
  font-size: 15px;
  height: 38px;
  margin-bottom: 0;
}
.tippy-box .tippy-content label:hover {
  color: black;
}
.tippy-box .tippy-content .radiocontainer {
  display: flex;
  align-items: center;
}
.tippy-box .tippy-content .radiocontainer .radio {
  border-color: black;
  margin-left: 2px;
  margin-right: 6px;
}
.tippy-box .tippy-content .radiocontainer svg {
  margin-left: 0em;
  opacity: 1;
}
.tippy-box .tippy-content .radiocontainer :checked ~ .radio {
  background-color: black;
}
.tippy-box .tippy-content .radiocontainer:hover .radio {
  border-color: black;
}
.tippy-box .tippy-content .radiocontainer:hover svg {
  opacity: 1;
}
.tippy-box[data-theme~=transparent] {
  background: transparent;
}
.tippy-box[data-theme~=transparent] .tippy-content {
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
}
.tippy-box[data-theme~=dark] .tippy-content {
  color: white;
  background: rgba(32, 27, 35, 0.925);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tippy-box[data-placement=top-start] .tippy-content, .tippy-box[data-placement=right-end] .tippy-content {
  border-bottom-left-radius: 0;
}
.tippy-box[data-placement=top-end] .tippy-content, .tippy-box[data-placement=left-end] .tippy-content {
  border-bottom-right-radius: 0;
}
.tippy-box[data-placement=right-start] .tippy-content, .tippy-box[data-placement=bottom-start] .tippy-content {
  border-top-left-radius: 0;
}
.tippy-box[data-placement=bottom-end] .tippy-content, .tippy-box[data-placement=left-start] .tippy-content {
  border-top-right-radius: 0;
}

dialog {
  background: #EBECEA;
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 1em;
  color: #141315;
  padding: 1.5em 2em 2em;
  width: fit-content;
  max-width: 22em;
  z-index: 101;
}
dialog button, dialog a.button {
  display: inline-block;
  cursor: pointer;
  font-family: "Avenir LT W01_65 Medium1475532", "Avenir Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1.1em;
  border: 1px solid rgba(32, 27, 35, 0.5);
  border-radius: 2em;
  padding: 0.35em 1em 0.4em;
  margin-left: -0.25em;
  background: rgba(255, 255, 255, 0.75);
}
dialog button svg, dialog a.button svg {
  vertical-align: middle;
}
dialog button.small, dialog a.button.small {
  font-size: 1em;
  padding: 0.4em 0.85em;
}
dialog button:hover, dialog a.button:hover {
  background: white;
}
dialog button.cta, dialog a.button.cta {
  background: rgba(253, 207, 11, 0.8);
}
dialog button.cta:hover, dialog a.button.cta:hover {
  background: #fdcf0b;
}
dialog::backdrop {
  background: rgba(20, 19, 21, 0.75);
  backdrop-filter: blur(10px);
}

.tippy-box[data-animation=shift-toward-extreme][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-animation=shift-toward-extreme][data-state=hidden][data-placement^=top] {
  transform: translateY(-10px);
}

.tippy-box[data-animation=shift-toward-extreme][data-state=hidden][data-placement^=bottom] {
  transform: translateY(10px);
}

.tippy-box[data-animation=shift-toward-extreme][data-state=hidden][data-placement^=left] {
  transform: translateX(-10px);
}

.tippy-box[data-animation=shift-toward-extreme][data-state=hidden][data-placement^=right] {
  transform: translateX(10px);
}