@import url(https://fonts.googleapis.com/css?family=Rubik:400,400i,500&display=swap);
:root {
  --text-color: #364154;
  --text-color-light: #566073;
  --text-color-lightest: #787c83;
  --text-color-disabled: #bbc0c9;
  --blue-darker: #306ab0;
  --blue: #539bfb;
  --blue-lighter: #abccf8;
  --blue-lightest: #d4e4fa;
  --white: #fff;
  --darker-white: #F6F9FC;
  --darkest-gray: #4e4e4e;
  --darker-gray: #646464;
  --light-gray: #848484;
  --red: #c5394e;
  --red-light: #ffcdd5;
  --green: #356c43;
  --green-light: #d5e7da;
  --orange: #99601f;
  --orange-light: #ffe9cd;
  --sidebar-width: 280px; }

[data-theme='dark'] {
  --white: #000;
  --text-color: #f8f9fb;
  --text-color-light: #fff;
  --text-color-lightest: #646464;
  --text-color-disabled: #848484;
  --blue-darker: #306ab0;
  --blue: #539bfb;
  --blue-lighter: #abccf8;
  --blue-lightest: #306ab0;
  --darker-white: #121212;
  --darkest-gray: #646464;
  --darker-gray: #4e4e4e;
  --light-gray: #f8f9fb;
  --red-light: #c5394e;
  --red: #ffcdd5;
  --green-light: #356c43;
  --green: #d5e7da;
  --orange-light: #99601f;
  --orange: #ffe9cd; }
  @media screen and (max-width: 562px) {
    [data-theme='dark'] {
      --darker-white: #000;
      --white: #232323; } }

.modal {
  transform: translateY(-5vh);
  background-color: var(--darker-white);
  border-radius: 8px;
  padding: 40px 32px 24px 32px;
  overflow-y: auto;
  outline: none;
  max-width: 768px;
  width: 100%; }
  .modal.full {
    transform: translateY(0);
    max-width: 95vw;
    max-height: 95vh;
    height: 100%;
    padding: 0;
    overflow: auto; }
  @media screen and (max-width: 376px) {
    .modal {
      padding: 12px; } }
  .modal .btn.close-modal {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 101; }
  .modal-overlay {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center; }

h1 {
  font-size: 62px;
  line-height: 140%;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0; }
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 48px; } }
  @media screen and (min-width: 1441px) {
    h1 {
      font-size: 64px; } }
  h1 small {
    font-size: 24px; }

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 140%;
  color: var(--text-color); }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 36px; } }

h3 {
  font-size: 32px;
  line-height: 140%;
  color: var(--text-color-light);
  font-weight: 300; }
  @media screen and (max-width: 768px) {
    h3 {
      font-size: 28px; } }
  @media screen and (max-width: 414px) {
    h3 {
      font-size: 24px; } }

h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 140%;
  color: var(--text-color-light);
  margin: 8px 0; }
  @media screen and (max-width: 1441px) {
    h4 {
      font-size: 19px; } }

h5 {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color-light);
  margin: 8px 0; }
  @media screen and (max-width: 768px) {
    h5 {
      font-size: 16px; } }
  @media screen and (max-width: 414px) {
    h5 {
      font-size: 14px; } }

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color); }
  @media screen and (max-width: 768px) {
    p {
      font-size: 14px; } }
  p.alinea {
    margin-bottom: 24px; }
  p.small {
    font-size: 13px;
    line-height: 26px; }
  p.large {
    font-size: 20px;
    line-height: 28px; }
  p.small-width {
    max-width: 800px; }
  @media screen and (max-width: 1441px) {
    p {
      font-size: 12px; }
      p.small {
        font-size: 11px; } }

.no-margin {
  margin: 0; }

a.text-link {
  text-decoration: none;
  font-size: 16px;
  color: var(--blue-500);
  letter-spacing: -0.2px;
  line-height: 24px;
  position: relative;
  font-weight: 500; }
  a.text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--blue-200);
    left: 0;
    bottom: 0;
    z-index: -1; }
  @media screen and (max-width: 1441px) {
    a.text-link {
      font-size: 14px; } }
  a.text-link.small {
    font-size: 14px; }
    @media screen and (max-width: 1441px) {
      a.text-link.small {
        font-size: 12px; } }

span.extra-bold {
  font-weight: 900; }

span.bold {
  font-weight: 700; }

span.medium {
  font-weight: 500; }

span.light {
  font-weight: 300; }

.center {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .center {
      text-align: left; } }

.italic {
  font-style: italic; }

.no-bold {
  font-weight: normal; }

.bold {
  font-weight: 500; }

.light {
  color: var(--text-color-light); }

span.small {
  font-size: 12px;
  color: var(--text-color-lightest); }

.nav .discord-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #7289da;
  color: var(--white); }
  .nav .discord-banner img {
    height: 20px;
    margin-right: 10px; }

.nav .maintenance-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: #ffe9cd;
  color: #99601f; }

.nav .info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: var(--blue-lighter);
  color: var(--text-color); }
  @media screen and (max-width: 768px) {
    .nav .info-banner {
      font-size: 11px; } }

.nav .logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11; }
  .nav .logo .pill {
    margin-left: 12px; }

.nav .hamburger-icon {
  position: absolute;
  top: 32px;
  right: 24px;
  display: none;
  z-index: 11; }
  @media screen and (max-width: 768px) {
    .nav .hamburger-icon {
      display: block; } }

.nav .container {
  padding-top: 64px;
  padding-bottom: 0px; }
  @media screen and (max-width: 1280px) {
    .nav .container {
      padding-top: 24px;
      padding-bottom: 32px; } }
  @media screen and (max-width: 768px) {
    .nav .container {
      padding: 24px 12px 0; } }
  .nav .container .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .nav .container .nav-container a.nav-item {
      color: var(--text-color-light);
      margin-right: 24px;
      transition: 220ms; }
      .nav .container .nav-container a.nav-item:hover {
        color: var(--text-color); }
      .nav .container .nav-container a.nav-item:last-child {
        margin-right: 0; }
    .nav .container .nav-container .nav-items {
      display: inline-flex;
      justify-content: flex-end;
      align-items: center;
      flex: 1; }
      .nav .container .nav-container .nav-items.mobile {
        display: none; }
      .nav .container .nav-container .nav-items .btn-sign-up {
        user-select: none;
        position: relative;
        padding-left: 32px;
        padding-right: 32px; }
        .nav .container .nav-container .nav-items .btn-sign-up .popover {
          width: calc(100% + 80px);
          position: absolute;
          top: calc(100%);
          padding-top: 16px;
          display: none; }
        @media (hover: hover) {
          .nav .container .nav-container .nav-items .btn-sign-up:hover .popover {
            display: block; } }
      @media screen and (max-width: 768px) {
        .nav .container .nav-container .nav-items {
          display: none;
          flex-direction: column;
          justify-content: center;
          width: 100%;
          height: 100vh;
          position: fixed;
          z-index: 10;
          top: 0;
          left: 0;
          background: var(--white); }
          .nav .container .nav-container .nav-items.open {
            display: flex; }
          .nav .container .nav-container .nav-items .nav-item {
            font-size: 14px;
            margin: 0 0 32px 0; }
          .nav .container .nav-container .nav-items .btn-sign-up {
            font-size: 18px; }
            .nav .container .nav-container .nav-items .btn-sign-up .popover-container a {
              font-size: 16px; }
            .nav .container .nav-container .nav-items .btn-sign-up .popover.on-hover {
              display: block; } }

.nav .google-button {
  position: relative;
  transition: 200ms ease-in; }
  @media screen and (max-width: 562px) {
    .nav .google-button {
      display: none; } }
  .nav .google-button:after {
    opacity: 0;
    transform: translate(-30%, 16px); }
  .nav .google-button:hover:after {
    opacity: 1;
    content: 'Coming soon';
    box-sizing: content-box;
    position: absolute;
    top: 100%;
    left: 40%;
    transform: translate(-30%, 8px);
    display: block;
    padding: 8px;
    background: white;
    border-radius: 2px;
    color: var(--text-color);
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2); }

.set {
  padding-bottom: 32px; }
  .set .title {
    margin-bottom: 24px; }
  .set .heading {
    padding: 48px 0 24px; }
    .set .heading.home {
      padding: 80px 0; }
    .set .heading.left {
      padding: 48px 0; }
      @media screen and (max-width: 562px) {
        .set .heading.left {
          padding: 48px 0 0px; } }
    @media screen and (max-width: 562px) {
      .set .heading {
        padding: 32px 0 32px; } }
    .set .heading .title {
      margin-bottom: 0px;
      color: var(--text-color);
      font-weight: 500; }
      .set .heading .title-sub {
        font-size: 16px; }
    .set .heading.center {
      text-align: center; }
      @media screen and (max-width: 768px) {
        .set .heading.center {
          text-align: left; } }
    .set .heading .home {
      padding: 128px 0; }
  .set .section {
    padding: 32px 0 24px;
    margin: 0 auto; }
    .set .section:first-child {
      padding-top: 0; }
    @media screen and (min-width: 768px) {
      .set .section {
        padding: 64px 0 32px; } }
    @media screen and (min-width: 1536px) {
      .set .section {
        padding: 80px 0 32px; } }
    .set .section.last {
      padding-bottom: 0 0 64px 0; }
  .set-status {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 240px;
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .set-status {
        justify-content: center; } }
    .set-status .heart-icon {
      margin-left: 16px; }
    .set-status .labels {
      display: flex;
      margin-bottom: 12px; }
  .set-vibe-section {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem; }
    .set-vibe-section .img {
      overflow: hidden; }
    @media screen and (min-width: 768px) {
      .set-vibe-section {
        height: 563px; } }
    @media screen and (min-width: 1536px) {
      .set-vibe-section {
        height: 663px; } }
    @media screen and (min-width: 768px) and (max-width: 1281px) {
      .set-vibe-section {
        height: 463px; } }
    @media screen and (min-width: 768px) {
      .set-vibe-section.five {
        grid-template-columns: repeat(4, 1fr); }
        .set-vibe-section.five .img.main {
          grid-row: span 2;
          grid-column: span 2; }
      .set-vibe-section.three {
        grid-template-columns: repeat(3, 1fr); }
        .set-vibe-section.three .img.main {
          grid-row: span 2;
          grid-column: span 2; }
      .set-vibe-section .img {
        box-shadow: var(--backdrop-box-shadow); }
        .set-vibe-section .img.main {
          grid-row: span 2;
          grid-column: span 2; }
        .set-vibe-section .img.base {
          max-width: 800px;
          margin: 0 auto; }
        .set-vibe-section .img img {
          object-fit: cover;
          width: 100%;
          height: 100%; } }
    @media screen and (max-width: 768px) {
      .set-vibe-section {
        grid-template-columns: repeat(1, 1fr); }
        .set-vibe-section .img {
          display: none; }
          .set-vibe-section .img.main {
            display: block;
            max-height: 300px; }
          .set-vibe-section .img.base {
            max-height: 500px; } }
  .set-info-section {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .set-info-section-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center; }
    @media screen and (max-width: 768px) {
      .set-info-section {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        margin: 24px 0 0; }
        .set-info-section-label {
          flex-basis: 50%;
          align-items: flex-start;
          margin-bottom: 24px; } }
  .set-arrow {
    display: flex;
    justify-content: center; }
  .set-description {
    max-width: 80%; }
    @media screen and (max-width: 768px) {
      .set-description {
        margin: 32px 0;
        max-width: 100%; } }
  .set-renders .slick-container {
    overflow: hidden;
    max-width: 100%; }
    .set-renders .slick-container .slick-slider {
      position: relative; }
      @media screen and (max-width: 768px) {
        .set-renders .slick-container .slick-slider .slick-arrow {
          display: none !important; } }
      .set-renders .slick-container .slick-slider .slick-slide {
        border-radius: 8px;
        overflow: hidden;
        line-height: 0; }
      .set-renders .slick-container .slick-slider .slick-arrow {
        font-size: 0;
        z-index: 2;
        display: block;
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 0, 0, 0);
        outline: none;
        border: none;
        transition: 120ms; }
        .set-renders .slick-container .slick-slider .slick-arrow.slick-prev {
          cursor: url("/images/arrow-round-left.svg"), auto; }
        .set-renders .slick-container .slick-slider .slick-arrow.slick-next {
          left: 50%;
          cursor: url("/images/arrow-round-right.svg"), auto; }
  .set-kits-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px; }
    @media screen and (max-width: 768px) {
      .set-kits-grid-container {
        grid-template-columns: 1fr; } }
    .set-kits-grid-container.has-description {
      grid-template-columns: repeat(1, 1fr);
      align-items: center; }
    .set-kits-grid-container .kit-card-image {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--backdrop-box-shadow);
      line-height: 0;
      max-height: 316px; }
    .set-kits-grid-container .kit-card.has-description {
      margin: 32px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 2fr;
      grid-gap: 24px;
      align-items: end; }
      .set-kits-grid-container .kit-card.has-description .title {
        font-weight: 500;
        align-items: end;
        text-align: left;
        font-size: 24px; }
      .set-kits-grid-container .kit-card.has-description .kit-card-image {
        grid-row: span 2; }
      .set-kits-grid-container .kit-card.has-description:nth-child(even) .kit-card-image {
        grid-row: span 2;
        order: 1; }
      .set-kits-grid-container .kit-card.has-description:nth-child(even) .description {
        order: 2; }
      .set-kits-grid-container .kit-card.has-description:nth-child(even) .kit-card-image {
        order: 2; }
    .set-kits-grid-container .kit-card img {
      line-height: 0;
      object-fit: cover;
      width: 100%;
      height: 100%; }
  .set-geekhack {
    display: flex;
    justify-content: center; }
  @media screen and (min-width: 768px) {
    .set-vendors-container {
      display: flex;
      justify-content: space-between; }
      .set-vendors-container .vendor-card {
        flex: 1;
        padding: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 24px; }
        .set-vendors-container .vendor-card:last-child {
          margin-right: 0; }
        .set-vendors-container .vendor-card:hover img {
          filter: grayscale(0%); }
        .set-vendors-container .vendor-card img {
          transition: 200ms;
          filter: grayscale(100%); } }
  @media screen and (max-width: 768px) {
    .set-vendors-container {
      display: grid;
      grid-column-gap: 1rem;
      grid-row-gap: 1rem;
      grid-template-columns: repeat(2, 1fr); }
      .set-vendors-container .vendor-card {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-basis: 50%;
        padding: 12px;
        width: 100%;
        height: 124px; }
        .set-vendors-container .vendor-card img {
          max-height: 90%; } }
  .set-links .links {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .set-links .links {
        flex-direction: column; } }
    .set-links .links .video-container {
      flex: 1;
      display: flex;
      margin-right: 24px;
      min-height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      @media screen and (max-width: 768px) {
        .set-links .links .video-container {
          margin-right: 0;
          margin-bottom: 24px;
          min-height: 200px; } }
      .set-links .links .video-container iframe {
        width: 100%; }
      .set-links .links .video-container:last-child {
        margin-right: 0; }
  .set-img-text {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center; }
    .set-img-text .title {
      text-align: left; }
    @media screen and (max-width: 768px) {
      .set-img-text {
        grid-template-columns: repeat(1, 1fr); } }
    .set-img-text h3 {
      margin-bottom: 12px; }
  .set-text {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .set-text h3 {
      margin-bottom: 12px; }

.page .flex {
  display: flex; }
  .page .flex.align.center {
    justify-content: center; }

.btn {
  outline: none;
  text-align: center;
  border: 1px solid transparent;
  transition: 120ms;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit; }
  .btn.custom {
    border: 1px solid transparent !important; }
  .btn:disabled {
    opacity: 0.5;
    box-shadow: none; }
  .btn.full-width {
    width: 100%; }
  .btn .align-right {
    justify-self: flex-end; }
  .btn .align-center {
    justify-self: center; }
  .btn.sm {
    padding: 8px 16px;
    font-size: 14px; }
    @media screen and (max-width: 1441px) {
      .btn.sm {
        font-size: 12px; } }
    .btn.sm-x {
      font-size: 11px;
      padding: 12px; }
      @media screen and (max-width: 1441px) {
        .btn.sm-x {
          font-size: 10px; } }
  .btn.md {
    padding: 12px 16px;
    font-size: 16px; }
    .btn.md.medium-large {
      font-size: 18px;
      padding: 14px 28px; }
    @media screen and (max-width: 1441px) {
      .btn.md {
        font-size: 14px; } }
  .btn.lg {
    padding: 12px 32px;
    font-size: 20px; }
    @media screen and (max-width: 1441px) {
      .btn.lg {
        font-size: 16px; } }
  .btn.primary {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
    font-weight: 500; }
    .btn.primary:active {
      background-color: var(--blue-darker);
      border: 1px solid var(--blue-darker); }
    .btn.primary:hover {
      background-color: var(--blue-darker);
      border: 1px solid var(--blue-darker); }
      .btn.primary:hover:disabled {
        opacity: 0.5; }
  .btn.danger {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: var(--red-light);
    font-weight: 500; }
    .btn.danger:active {
      background-color: var(--red);
      border: 1px solid var(--red); }
    .btn.danger:hover {
      opacity: .8; }
      .btn.danger:hover:disabled {
        opacity: 0.5; }
  .btn.secondary {
    background-color: var(--white);
    border: 1px solid var(--blue-lightest);
    color: var(--text-color-light);
    font-weight: 500; }
    .btn.secondary.active {
      background-color: var(--blue-lightest); }
    .btn.secondary:hover {
      background-color: var(--blue-lightest); }
      .btn.secondary:hover:disabled {
        opacity: 0.5; }
  .btn.inverted {
    background-color: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue); }
    .btn.inverted:hover {
      background-color: var(--blue);
      border: 1px solid var(--blue);
      color: #fff; }
      .btn.inverted:hover:disabled {
        opacity: 0.5; }
  .btn.tab {
    color: var(--text-color-light);
    background: transparent;
    font-weight: 400; }
    .btn.tab:hover {
      background-color: var(--white); }
    .btn.tab.active {
      background-color: var(--blue-lightest);
      font-weight: 600; }
  .btn .google-icon,
  .btn .reddit-icon {
    margin-right: 8px; }

.button-link {
  font-size: 14px;
  color: var(--blue);
  border-bottom: 2px solid var(--blue-lightest);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }
  .button-link:hover {
    opacity: .8; }
    .button-link:hover .arrow {
      transform: translateX(4px); }
  .button-link.large {
    font-size: 18px; }
  .button-link .arrow {
    margin-left: 4px;
    transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }

.user-profile-tag {
  position: relative; }
  .user-profile-tag .profile-image,
  .user-profile-tag .profile-tag {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
    cursor: pointer;
    transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }
  .user-profile-tag .profile-tag {
    background-color: var(--blue-lightest);
    letter-spacing: 0.5px;
    color: var(--text-color-light);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center; }

.popover {
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  display: block;
  font-family: 'Rubik', sans-serif;
  z-index: 20; }
  .popover.shown {
    display: block; }
  .popover.hidden {
    display: none; }
    @media screen and (max-width: 768px) {
      .popover.hidden {
        display: block !important; } }
  @media (hover: hover) {
    .popover.on-hover {
      display: none; } }
  .popover-container {
    background: var(--white);
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .popover-container.center {
      align-items: center; }
    .popover-container .item {
      white-space: nowrap;
      font-weight: 300; }
      @media (hover: hover) {
        .popover-container .item:hover {
          color: var(--text-color); } }
    .popover-container:after {
      content: '';
      position: absolute;
      top: 6px;
      left: calc(50% - 12px);
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 12px solid var(--white); }
    .popover-container a {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin-bottom: 24px;
      color: var(--text-color-light) !important; }
      .popover-container a:last-child {
        margin-bottom: 0; }
      @media (hover: hover) {
        .popover-container a:hover {
          color: var(--text-color); } }

.tooltip {
  background: var(--white) !important;
  box-shadow: 0px 1px 12px -6px rgba(0, 16, 75, 0.1) !important;
  border-radius: 6px !important;
  opacity: 1 !important;
  border: 0 !important;
  color: var(--text-color-light) !important; }
  .tooltip.place-top:after {
    border-top-color: var(--white) !important;
    border-top-style: solid !important;
    border-top-width: 6px !important; }
  .tooltip.place-bottom:after {
    border-bottom-color: var(--white) !important;
    border-bottom-style: solid !important;
    border-bottom-width: 6px !important; }

.mobile-toggle {
  display: none; }
  @media screen and (max-width: 826px) {
    .mobile-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0; } }

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0px; }
  .filters.closed {
    display: none; }
  .filters .counter {
    margin-left: 16px;
    text-align: right; }
  .filters .btn .filter-icon {
    margin-right: 4px; }
  .filters .left-side {
    display: inline-flex; }
  .filters .desktop-only {
    display: inline-flex !important; }
    @media screen and (max-width: 826px) {
      .filters .desktop-only {
        display: none !important; } }
  .filters .filter {
    display: flex;
    flex-direction: column;
    margin-right: 16px; }
    .filters .filter .tabs {
      display: flex; }
      .filters .filter .tabs .btn {
        margin-right: 8px; }
    .filters .filter .input-wrapper {
      min-width: 216px; }
    .filters .filter.favorites {
      justify-content: center; }
      .filters .filter.favorites .button-link {
        margin-top: 16px; }
  @media screen and (max-width: 826px) {
    .filters {
      margin: 0;
      padding: 0;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start; }
      .filters .left-side {
        width: 100%;
        display: block; }
        .filters .left-side .filter {
          margin: 0 0 8px;
          flex: 1; }
      .filters .counter {
        display: none; } }

.extra-filters {
  height: 0;
  margin: 0 0 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .extra-filters .filter {
    flex: 1;
    margin-bottom: 12px; }
    .extra-filters .filter:nth-child(2) {
      padding: 0 24px; }
  @media screen and (max-width: 768px) {
    .extra-filters {
      flex-direction: column; }
      .extra-filters .filter {
        width: 100%; }
        .extra-filters .filter:nth-child(2) {
          padding: 0; } }

.images-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px; }
  @media screen and (max-width: 1054px) {
    .images-container {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 662px) {
    .images-container {
      grid-template-columns: 1fr; } }
  @media screen and (min-width: 1888px) {
    .images-container {
      grid-template-columns: repeat(4, 1fr); } }

.upload .form-ruler {
  margin: 24px 0 24px;
  width: 100%;
  height: 1px;
  display: block;
  border-radius: 1px;
  background-color: #e2e5eb; }

.upload .color-picker-container {
  display: flex; }

.upload .color-container {
  width: 32px;
  height: 32px;
  margin-top: 18px;
  margin-left: 8px;
  border-radius: 4px;
  box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
  border: 1px solid var(--text-color-light);
  cursor: pointer; }

.upload .form-sub-title {
  margin-bottom: 8px; }

.upload .color-picker {
  display: flex;
  background-color: #f8f9fb; }

.upload .column {
  margin-top: 40px; }
  @media screen and (max-width: 556px) {
    .upload .column {
      margin: 32px 12px 0; } }

.upload .input-wrapper {
  margin-bottom: 12px; }

.user.edit .input-wrapper {
  margin-bottom: 24px; }

.user.edit .cards {
  padding-top: 16px; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px; }
  @media screen and (max-width: 556px) {
    .cards {
      grid-template-columns: 1fr;
      margin: 32px 0; } }
  .cards.vertical {
    grid-template-columns: 1fr; }
  .cards .card {
    padding: 40px 0;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow: inset 0 -1px 0 0 rgba(234, 234, 234, 0.98);
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
    transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }
    @media screen and (max-width: 556px) {
      .cards .card {
        height: 144px;
        padding: 24px 0; } }
    .cards .card.clickable:hover {
      transform: scale(1.02);
      box-shadow: 0px 0px 0px 1px var(--blue) !important; }
    .cards .card.small {
      padding: 24px 0; }
    .cards .card.center {
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      .cards .card.center a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
    .cards .card.active {
      border: 2px solid var(--blue-lightest);
      box-shadow: 0px 0px 0px 1px var(--blue) !important; }

.sign-up .cards .card .btn,
.login .cards .card .btn {
  margin-top: 12px; }

.image-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
  transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  cursor: pointer; }
  .image-card.disabled {
    cursor: auto;
    pointer-events: none;
    opacity: 1 !important; }
  .image-card-image {
    position: relative;
    overflow: hidden;
    height: 264px; }
    @media screen and (max-width: 562px) {
      .image-card-image {
        height: 176px; } }
    .image-card-image-set {
      height: 100%;
      width: 100%;
      object-fit: cover; }
    .image-card-image .logo {
      height: 90%;
      width: 90%;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-top: 5%; }
  .image-card-details {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    position: relative; }
    @media screen and (max-width: 562px) {
      .image-card-details {
        padding: 16px; } }
    .image-card-details .top,
    .image-card-details .bottom {
      display: inline-flex;
      justify-content: space-between;
      color: var(--text-color-lightest);
      align-items: center; }
    .image-card-details .top {
      margin-bottom: 12px; }
    .image-card-details .bottom {
      font-size: 12px; }
      .image-card-details .bottom .bold {
        font-weight: 500; }
        .image-card-details .bottom .bold span:first-child {
          margin-right: 12px; }
        @media screen and (max-width: 562px) {
          .image-card-details .bottom .bold {
            font-size: 12px; } }
    .image-card-details .set-title {
      margin: 0;
      position: relative;
      font-size: 16px; }
      .image-card-details .set-title .small {
        position: absolute;
        top: 60%;
        left: 0; }
  .image-card:hover .details .bottom .button-link {
    border-bottom: 2px solid var(--blue); }
    .image-card:hover .details .bottom .button-link .arrow {
      transform: translateX(4px); }

.vendor-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
  transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  cursor: pointer; }
  .vendor-card .image {
    position: relative;
    overflow: hidden;
    height: 264px; }
    @media screen and (max-width: 562px) {
      .vendor-card .image {
        height: 194px; } }
    .vendor-card .image img {
      height: 90%;
      width: 90%;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-top: 5%; }
  .vendor-card .details {
    padding: 12px 16px 16px 12px;
    display: flex;
    flex-direction: column;
    position: relative; }
    .vendor-card .details .horizontal {
      display: flex;
      flex-direction: row; }
      .vendor-card .details .horizontal .left {
        flex: 2; }
      .vendor-card .details .horizontal .right {
        min-width: 124px;
        flex: 1;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end; }
  .vendor-card:hover .details .horizontal .right .button-link {
    border-bottom: 2px solid #539bfb; }
    .vendor-card:hover .details .horizontal .right .button-link .arrow {
      transform: translateX(4px); }

.arrow-right {
  transform: rotate(0); }

.arrow-left {
  transform: rotate(180deg); }

.arrow-bottom {
  transform: rotate(90deg); }

.arrow-top {
  transform: rotate(270deg); }

.back-to-top {
  position: fixed;
  right: 48px;
  bottom: 64px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 120ms;
  outline: none;
  text-align: center;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  z-index: 10; }
  @media screen and (max-width: 768px) {
    .back-to-top {
      right: 8px;
      bottom: 8px; } }
  .back-to-top-show {
    visibility: visible;
    opacity: 1; }

.input-checkbox-container {
  display: flex;
  align-items: center; }

.input-checkbox-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px; }

.input-checkbox-styled {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid #e2e5eb;
  border-radius: 3px; }
  .input-checkbox-styled.checked {
    background: var(--blue);
    box-shadow: 0px 0px 0px 1px rgba(83, 155, 251, 0.6); }
  .input-checkbox-styled.s {
    width: 12px;
    height: 12px; }
  .input-checkbox-styled.m {
    border-radius: 4px;
    width: 16px;
    height: 16px; }
  .input-checkbox-styled.l {
    border-radius: 6px;
    width: 24px;
    height: 24px; }

.input-checkbox-check-icon {
  fill: none;
  stroke: white;
  stroke-width: 2px;
  visibility: hidden; }
  .input-checkbox-check-icon.checked {
    visibility: visible; }

.footer {
  font-size: 13px;
  padding: 12px 0px;
  color: var(--text-color-light);
  background: var(--darker-white);
  font-family: 'Rubik', sans-serif;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9; }
  @media screen and (max-width: 562px) {
    .footer {
      position: relative; } }
  .footer .sponsored-by * {
    display: inline-flex;
    align-items: center; }
    .footer .sponsored-by * img,
    .footer .sponsored-by * svg {
      margin-right: 4px; }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; }
    @media screen and (max-width: 562px) {
      .footer .container {
        flex-direction: column; } }
  .footer > .flex {
    flex: 1; }
  .footer p {
    color: inherit;
    font-size: inherit; }
  .footer .socials-container {
    display: inline-flex;
    align-items: center; }
    .footer .socials-container a {
      margin-right: 16px; }
      .footer .socials-container a:last-child {
        margin-right: 0; }
    @media screen and (max-width: 768px) {
      .footer .socials-container {
        flex-direction: column;
        margin-top: 24px; }
        .footer .socials-container a {
          margin-top: 4px;
          margin-bottom: 4px; }
        .footer .socials-container .social-icons {
          display: flex;
          padding: 8px 0;
          justify-content: center; } }

.m-right-md {
  margin-right: 12px; }

.m-left-md {
  margin-left: 12px; }

.input-wrapper-multiple,
.input-wrapper,
.input-wrapper-select {
  display: flex;
  flex-direction: column;
  background-color: var(--white-second);
  position: relative;
  -webkit-appearance: none; }
  .input-wrapper-multiple.flex.one,
  .input-wrapper.flex.one,
  .input-wrapper-select.flex.one {
    flex: 1; }
  .input-wrapper-multiple.invalid .label,
  .input-wrapper.invalid .label,
  .input-wrapper-select.invalid .label {
    color: var(--red); }
  .input-wrapper-multiple.invalid input,
  .input-wrapper.invalid input,
  .input-wrapper-select.invalid input {
    border: 1px solid var(--red); }
    .input-wrapper-multiple.invalid input:focus,
    .input-wrapper.invalid input:focus,
    .input-wrapper-select.invalid input:focus {
      border: 1px solid var(--red); }
  .input-wrapper-multiple .error-message,
  .input-wrapper .error-message,
  .input-wrapper-select .error-message {
    color: var(--red);
    font-size: 12px; }
  .input-wrapper-multiple .input-container,
  .input-wrapper .input-container,
  .input-wrapper-select .input-container {
    position: relative; }
    .input-wrapper-multiple .input-container .icon,
    .input-wrapper .input-container .icon,
    .input-wrapper-select .input-container .icon {
      position: absolute;
      left: 15px;
      top: 15px; }
    .input-wrapper-multiple .input-container .has-icon,
    .input-wrapper .input-container .has-icon,
    .input-wrapper-select .input-container .has-icon {
      padding-left: 40px !important; }
  .input-wrapper-multiple .input,
  .input-wrapper-multiple input,
  .input-wrapper .input,
  .input-wrapper input,
  .input-wrapper-select .input,
  .input-wrapper-select input {
    border: 1px solid var(--text-color-secondary);
    font-size: 14px;
    color: var(--text-color-secondary);
    width: 100%;
    background-color: var(--white);
    padding: 12px 16px;
    font-weight: 400;
    color: #2b3548;
    border: 1px solid #e2e5eb;
    border-radius: 6px;
    outline: none;
    resize: none;
    font-family: inherit; }
    .input-wrapper-multiple .input:focus,
    .input-wrapper-multiple input:focus,
    .input-wrapper .input:focus,
    .input-wrapper input:focus,
    .input-wrapper-select .input:focus,
    .input-wrapper-select input:focus {
      border: 1px solid var(--blue); }
    .input-wrapper-multiple .input::placeholder,
    .input-wrapper-multiple input::placeholder,
    .input-wrapper .input::placeholder,
    .input-wrapper input::placeholder,
    .input-wrapper-select .input::placeholder,
    .input-wrapper-select input::placeholder {
      color: var(--text-color-disabled); }
    @media screen and (max-width: 768px) {
      .input-wrapper-multiple .input,
      .input-wrapper-multiple input,
      .input-wrapper .input,
      .input-wrapper input,
      .input-wrapper-select .input,
      .input-wrapper-select input {
        font-size: 12px;
        padding: 8px 12px; } }
  .input-wrapper-multiple.checkbox .label,
  .input-wrapper.checkbox .label,
  .input-wrapper-select.checkbox .label {
    display: flex;
    align-items: flex-start; }
    .input-wrapper-multiple.checkbox .label .text,
    .input-wrapper.checkbox .label .text,
    .input-wrapper-select.checkbox .label .text {
      margin-left: 8px; }
  .input-wrapper-multiple.checkbox.l .label span,
  .input-wrapper.checkbox.l .label span,
  .input-wrapper-select.checkbox.l .label span {
    padding-top: 5px; }
  .input-wrapper-multiple .wysiwyg.input,
  .input-wrapper-multiple textarea.input,
  .input-wrapper .wysiwyg.input,
  .input-wrapper textarea.input,
  .input-wrapper-select .wysiwyg.input,
  .input-wrapper-select textarea.input {
    min-height: 124px; }

.input-wrapper-multiple {
  display: block;
  margin-bottom: 24px; }
  .input-wrapper-multiple .input {
    margin-bottom: 8px; }

.input-wrapper-select {
  -webkit-appearance: none !important; }

[data-theme='dark'] .select-control {
  background-color: inherit !important; }
  [data-theme='dark'] .select-control * {
    background-color: inherit !important; }

.nav .discord-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #7289da;
  color: var(--white); }
  .nav .discord-banner img {
    height: 20px;
    margin-right: 10px; }

.nav .maintenance-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: #ffe9cd;
  color: #99601f; }

.nav .info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: var(--blue-lighter);
  color: var(--text-color); }
  @media screen and (max-width: 768px) {
    .nav .info-banner {
      font-size: 11px; } }

.nav .logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11; }
  .nav .logo .pill {
    margin-left: 12px; }

.nav .hamburger-icon {
  position: absolute;
  top: 32px;
  right: 24px;
  display: none;
  z-index: 11; }
  @media screen and (max-width: 768px) {
    .nav .hamburger-icon {
      display: block; } }

.nav .container {
  padding-top: 64px;
  padding-bottom: 0px; }
  @media screen and (max-width: 1280px) {
    .nav .container {
      padding-top: 24px;
      padding-bottom: 32px; } }
  @media screen and (max-width: 768px) {
    .nav .container {
      padding: 24px 12px 0; } }
  .nav .container .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .nav .container .nav-container a.nav-item {
      color: var(--text-color-light);
      margin-right: 24px;
      transition: 220ms; }
      .nav .container .nav-container a.nav-item:hover {
        color: var(--text-color); }
      .nav .container .nav-container a.nav-item:last-child {
        margin-right: 0; }
    .nav .container .nav-container .nav-items {
      display: inline-flex;
      justify-content: flex-end;
      align-items: center;
      flex: 1; }
      .nav .container .nav-container .nav-items.mobile {
        display: none; }
      .nav .container .nav-container .nav-items .btn-sign-up {
        user-select: none;
        position: relative;
        padding-left: 32px;
        padding-right: 32px; }
        .nav .container .nav-container .nav-items .btn-sign-up .popover {
          width: calc(100% + 80px);
          position: absolute;
          top: calc(100%);
          padding-top: 16px;
          display: none; }
        @media (hover: hover) {
          .nav .container .nav-container .nav-items .btn-sign-up:hover .popover {
            display: block; } }
      @media screen and (max-width: 768px) {
        .nav .container .nav-container .nav-items {
          display: none;
          flex-direction: column;
          justify-content: center;
          width: 100%;
          height: 100vh;
          position: fixed;
          z-index: 10;
          top: 0;
          left: 0;
          background: var(--white); }
          .nav .container .nav-container .nav-items.open {
            display: flex; }
          .nav .container .nav-container .nav-items .nav-item {
            font-size: 14px;
            margin: 0 0 32px 0; }
          .nav .container .nav-container .nav-items .btn-sign-up {
            font-size: 18px; }
            .nav .container .nav-container .nav-items .btn-sign-up .popover-container a {
              font-size: 16px; }
            .nav .container .nav-container .nav-items .btn-sign-up .popover.on-hover {
              display: block; } }

.nav .google-button {
  position: relative;
  transition: 200ms ease-in; }
  @media screen and (max-width: 562px) {
    .nav .google-button {
      display: none; } }
  .nav .google-button:after {
    opacity: 0;
    transform: translate(-30%, 16px); }
  .nav .google-button:hover:after {
    opacity: 1;
    content: 'Coming soon';
    box-sizing: content-box;
    position: absolute;
    top: 100%;
    left: 40%;
    transform: translate(-30%, 8px);
    display: block;
    padding: 8px;
    background: white;
    border-radius: 2px;
    color: var(--text-color);
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2); }

.pill {
  border-radius: 4px;
  font-size: 12px;
  padding: 4px 8px;
  display: block;
  font-weight: 500;
  display: inline-flex; }
  @media screen and (max-width: 1441px) {
    .pill {
      font-size: 11px; } }
  .pill.green {
    background: var(--green-light);
    color: var(--green); }
  .pill.orange {
    background: var(--orange-light);
    color: var(--orange); }
  .pill.red {
    background: var(--red-light);
    color: var(--red); }
  .pill.gray {
    background: #d2d4d8;
    color: #3a4251; }
  .pill.blue {
    background: var(--blue-lightest);
    color: var(--blue); }

.continent-section {
  margin: 0 0 80px; }
  .continent-section:last-child {
    margin-bottom: 24px; }
  .continent-section .continent-bar {
    margin: 8px 0 16px; }

.cta-card {
  position: fixed;
  bottom: 32px;
  right: 24px;
  max-width: 420px;
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0px 1px 22px rgba(0, 16, 75, 0.2);
  transition: 320ms ease-out;
  transform: translateX(120%);
  z-index: 12; }
  @media screen and (max-width: 868px) {
    .cta-card {
      width: calc(100% - 24px);
      right: 12px; } }
  .cta-card.visible {
    transform: translateX(0%); }
  .cta-card .close-cross {
    position: absolute;
    top: 12px;
    right: 12px; }
  .cta-card p {
    margin-bottom: 24px; }

.image-modal {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10; }
  .image-modal .image-modal__container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1176px;
    margin: 0 auto 12px; }
    @media screen and (min-width: 1328px) {
      .image-modal .image-modal__container {
        max-width: 1280px; } }
    @media screen and (min-width: 1441px) {
      .image-modal .image-modal__container {
        max-width: 1416px; } }
  .image-modal .image-modal__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.4s ease both;
    background: rgba(0, 0, 0, 0.5); }
  .image-modal img {
    transition: left 0.5s ease, top 0.5s ease, width 0.5s ease;
    position: relative;
    top: 32px;
    left: 0;
    width: 100%;
    background: red;
    opacity: 0; }

.image-wrapper {
  position: relative; }
  .image-wrapper--loading {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px; }

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 164, 169, 0.7); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 25px rgba(0, 164, 169, 0); }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 164, 169, 0); } }

@font-face {
  font-family: 'DayRoman';
  src: url("/fonts/DayRoman/DayRoman.eot?#iefix") format("embedded-opentype"), url("/fonts/DayRoman/DayRoman.woff") format("woff"), url("/fonts/DayRoman/DayRoman.ttf") format("truetype"), url("/fonts/DayRoman/DayRoman.svg#DayRoman") format("svg");
  font-weight: normal;
  font-style: normal; }

.set {
  padding-bottom: 0; }
  .set .poseidon {
    font-family: 'DayRoman';
    background: #00627a; }
    .set .poseidon .nav .container {
      padding-top: 16px;
      padding-bottom: 12px;
      margin-bottom: 0; }
      .set .poseidon .nav .container .nav-container a {
        color: var(--white); }
    .set .poseidon--hero {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 540px; }
      @media screen and (min-width: 1120px) {
        .set .poseidon--hero {
          background: #00627a;
          justify-content: center;
          align-items: center; } }
      @media screen and (min-width: 1281px) {
        .set .poseidon--hero {
          min-height: 740px; } }
      @media screen and (min-width: 1536px) {
        .set .poseidon--hero {
          min-height: 70vh; } }
      .set .poseidon--hero.video-playing:after {
        opacity: 0; }
      .set .poseidon--hero:after {
        transition: all 0.4s ease;
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, #00627a 100%);
        pointer-events: none; }
      .set .poseidon--hero__video {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        opacity: 1;
        width: 100%;
        height: 100%; }
        .set .poseidon--hero__video video {
          height: 100%;
          object-fit: cover;
          width: 100%; }
          .video-playing .set .poseidon--hero__video video {
            object-fit: contain; }
      .set .poseidon--hero__inner {
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .video-playing .set .poseidon--hero__inner {
          pointer-events: none;
          transform: translateY(100px);
          opacity: 0; }
      .set .poseidon--hero .button-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 24px; }
        .set .poseidon--hero .button-wrapper > * + * {
          margin-left: 12px; }
        .set .poseidon--hero .button-wrapper .btn--poseidon {
          width: 50%;
          background: #003346;
          color: #c6e3ec; }
          @media screen and (min-width: 562px) {
            .set .poseidon--hero .button-wrapper .btn--poseidon {
              width: auto; } }
        .set .poseidon--hero .button-wrapper .button-link {
          border: none;
          color: #00a4a9;
          opacity: 0.7; }
          .set .poseidon--hero .button-wrapper .button-link svg {
            stroke: #00a4a9; }
      .set .poseidon--hero .btn--video {
        display: flex;
        flex: none;
        justify-content: center;
        align-items: center;
        width: 96px;
        height: 96px;
        border-radius: 96px;
        background: #00627a;
        box-shadow: 0 0 0 0 #00a4a9;
        animation: pulse 2s infinite;
        margin-top: 24px; }
        @media screen and (min-width: 768px) {
          .set .poseidon--hero .btn--video {
            margin-top: 24px; } }
        .set .poseidon--hero .btn--video .play-icon {
          width: 0;
          height: 0;
          margin-left: 10px;
          border-style: solid;
          border-width: 20px 0 20px 30px;
          border-color: transparent transparent transparent #00a4a9; }
      .set .poseidon--hero .logo {
        display: block;
        width: 100%;
        fill: #00a4a9;
        overflow: visible;
        box-shadow: 0px 0px 10000px transparent; }
        @media screen and (min-width: 768px) {
          .set .poseidon--hero .logo {
            max-width: 650px; } }
        .set .poseidon--hero .logo path:nth-of-type(1) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.1s; }
        .set .poseidon--hero .logo path:nth-of-type(2) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.2s; }
        .set .poseidon--hero .logo path:nth-of-type(3) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.3s; }
        .set .poseidon--hero .logo path:nth-of-type(4) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.4s; }
        .set .poseidon--hero .logo path:nth-of-type(5) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.5s; }
        .set .poseidon--hero .logo path:nth-of-type(6) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.6s; }
        .set .poseidon--hero .logo path:nth-of-type(7) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.7s; }
        .set .poseidon--hero .logo path:nth-of-type(8) {
          animation: fadeInLeft 0.4s ease both;
          animation-delay: 0.8s; }
    .set .poseidon .section {
      display: flex;
      flex-direction: column; }
      @media screen and (min-width: 562px) {
        .set .poseidon .section {
          grid-template-columns: repeat(2, 1fr); } }
      @media screen and (min-width: 1536px) {
        .set .poseidon .section {
          padding: 50px 0;
          grid-template-columns: repeat(3, 1fr); } }
      .set .poseidon .section-title {
        text-align: center;
        font-size: 50px;
        padding: 50px 0 50px;
        z-index: 2;
        color: #00a4a9; }
        @media screen and (min-width: 1536px) {
          .set .poseidon .section-title {
            position: relative;
            font-size: 75px; }
            .set .poseidon .section-title:after {
              content: attr(data-title);
              width: 100vw;
              left: 50%;
              transform: translate(-50%, -50%);
              top: 50%;
              z-index: -1;
              font-size: 200px;
              position: absolute;
              opacity: 0.1;
              color: #003441; } }
      .set .poseidon .section-description {
        width: 100%;
        font-size: 20px;
        text-align: justify;
        line-height: 1.5;
        color: #00a4a9; }
        @media screen and (min-width: 1536px) {
          .set .poseidon .section-description {
            width: 600px;
            margin: 0 auto; } }
    .set .poseidon .kit {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding: 0; }
      @media screen and (min-width: 562px) {
        .set .poseidon .kit {
          flex-direction: row; }
          .set .poseidon .kit:nth-child(odd) {
            flex-direction: row-reverse; } }
      .set .poseidon .kit:not(:first-child) {
        margin-top: 100px; }
      .set .poseidon .kit__cover {
        flex: 50%;
        height: auto; }
      .set .poseidon .kit__info {
        flex: 50%; }
        @media screen and (min-width: 562px) {
          .set .poseidon .kit__info {
            padding: 50px; } }
        .set .poseidon .kit__info-name {
          font-size: 30px;
          margin-bottom: 20px;
          color: #00a4a9; }
        .set .poseidon .kit__info-description {
          font-size: 20px;
          line-height: 1.2;
          color: #00a4a9; }
    .set .poseidon .renders {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 16px;
      padding: 0px 0px 95px; }
      @media screen and (min-width: 562px) {
        .set .poseidon .renders {
          grid-template-columns: repeat(2, 1fr); } }
      @media screen and (min-width: 1536px) {
        .set .poseidon .renders {
          grid-template-columns: repeat(3, 1fr); } }
    .set .poseidon .section--empty {
      width: 100%;
      text-align: center;
      font-size: 20px;
      line-height: 1.5;
      color: #00a4a9; }
    .set .poseidon .footer {
      background-color: #003441;
      color: var(--white); }

.dark-mode-toggle {
  margin-left: 12px; }

.error-page .rebound-search-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 64px 42px 88px; }
  @media screen and (max-width: 1441px) {
    .error-page .rebound-search-error {
      padding: 56px 0 48px; } }

.interest-check .terms {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .interest-check .terms {
      position: absolute;
      bottom: 48px;
      right: 12px; } }

.interest-check-topbar {
  height: 16px;
  background: var(--blue-lighter); }

.interest-check .start-end {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column; }

.interest-check-nav {
  padding: 24px 24px 8px;
  display: flex;
  justify-content: flex-end; }
  .interest-check-nav .logo {
    display: none; }
  .interest-check-nav .btn-back-to-set {
    display: flex;
    align-items: center;
    color: var(--text-color-light);
    cursor: pointer; }
    .interest-check-nav .btn-back-to-set .msg {
      display: none; }
    @media screen and (min-width: 768px) {
      .interest-check-nav .btn-back-to-set {
        overflow: hidden; }
        .interest-check-nav .btn-back-to-set .icon {
          z-index: 2;
          background-color: var(--darker-white); }
        .interest-check-nav .btn-back-to-set .msg {
          display: block;
          z-index: 1;
          transition: all 220ms;
          transform: translateX(120%); }
        .interest-check-nav .btn-back-to-set:hover .msg {
          transform: translateX(0%); } }
  @media screen and (max-width: 768px) {
    .interest-check-nav {
      justify-content: space-between;
      font-size: 12px;
      padding: 24px 12px 8px 12px; }
      .interest-check-nav .logo {
        display: flex;
        align-items: center; } }

.interest-check-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-5%);
  min-height: calc(100vh - 128px); }
  @media screen and (max-width: 768px) {
    .interest-check-container {
      transform: translateY(0);
      min-height: auto;
      min-height: 460px;
      padding-bottom: 64px; } }

.interest-check .comment,
.interest-check .question {
  max-width: 542px;
  width: 100%; }
  .interest-check .comment-topbar,
  .interest-check .question-topbar {
    display: flex;
    justify-content: space-between; }
    .interest-check .comment-topbar .label,
    .interest-check .question-topbar .label {
      letter-spacing: 0.5px;
      font-size: 13px;
      color: var(--text-color-lightest); }
  .interest-check .comment-container,
  .interest-check .question-container {
    padding-top: 24px;
    width: 100%;
    max-width: 542px; }
    @media screen and (max-width: 768px) {
      .interest-check .comment-container,
      .interest-check .question-container {
        font-size: 12px;
        padding: 24px 0px; }
        .interest-check .comment-container .input-wrapper.textarea .input,
        .interest-check .question-container .input-wrapper.textarea .input {
          min-height: 100px; } }
  .interest-check .comment-cover-image,
  .interest-check .question-cover-image {
    margin: 24px 0 16px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 8px;
    line-height: 0;
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
    transition: 120ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    width: 100%;
    max-width: 542px;
    min-height: 300px; }
    @media screen and (max-width: 768px) {
      .interest-check .comment-cover-image,
      .interest-check .question-cover-image {
        min-height: auto; } }
    .interest-check .comment-cover-image-src,
    .interest-check .question-cover-image-src {
      width: 100%;
      height: 100%; }
  .interest-check .comment-controls,
  .interest-check .question-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 16px; }
    @media screen and (max-width: 768px) {
      .interest-check .comment-controls,
      .interest-check .question-controls {
        flex-direction: column-reverse;
        justify-content: center; } }
    .interest-check .comment-controls .email-notification,
    .interest-check .question-controls .email-notification {
      margin-right: 12px; }
      .interest-check .comment-controls .email-notification .label,
      .interest-check .question-controls .email-notification .label {
        margin: 0;
        align-items: center; }
    @media screen and (max-width: 768px) {
      .interest-check .comment-controls .btn-next,
      .interest-check .question-controls .btn-next {
        width: 100%; } }
    .interest-check .comment-controls .btn-skip,
    .interest-check .question-controls .btn-skip {
      margin-right: 12px;
      margin-bottom: 0; }
      @media screen and (max-width: 768px) {
        .interest-check .comment-controls .btn-skip,
        .interest-check .question-controls .btn-skip {
          margin-right: 0;
          margin-top: 32px;
          font-size: 13px;
          background-color: var(--white);
          padding: 12px 16px;
          text-align: center;
          width: 100%; } }

.interest-check .multiple-choice-options .label {
  margin: 0; }

.interest-check .multiple-choice-options .input-wrapper.question-option {
  margin: 12px 0; }
  @media screen and (max-width: 768px) {
    .interest-check .multiple-choice-options .input-wrapper.question-option {
      margin: 24px 0; } }
  .interest-check .multiple-choice-options .input-wrapper.question-option .label {
    font-size: 13px;
    line-height: 19.2px; }
    @media screen and (max-width: 768px) {
      .interest-check .multiple-choice-options .input-wrapper.question-option .label {
        font-weight: normal;
        font-size: 12px;
        line-height: 18.2px; } }

.interest-check .multiple-choice-options.kits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 24px;
  margin-top: 12px; }
  .interest-check .multiple-choice-options.kits .kits-option {
    text-align: center;
    cursor: pointer; }
    .interest-check .multiple-choice-options.kits .kits-option .img {
      position: relative;
      border: 1px solid transparent; }
      .interest-check .multiple-choice-options.kits .kits-option .img .checkbox {
        position: absolute;
        top: 8px;
        right: 8px;
        margin: 0 !important; }
    .interest-check .multiple-choice-options.kits .kits-option .label-container {
      margin: 4px 0 0 0; }
    .interest-check .multiple-choice-options.kits .kits-option.checked .img {
      border: 1px solid var(--blue);
      box-shadow: 0px 0px 0px 4px rgba(83, 155, 251, 0.3); }
      .interest-check .multiple-choice-options.kits .kits-option.checked .img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(83, 155, 251, 0.2); }
    .interest-check .multiple-choice-options.kits .kits-option.checked .input-checkbox-styled.checked {
      box-shadow: none; }
    .interest-check .multiple-choice-options.kits .kits-option.checked .label-container .label {
      color: var(--blue);
      font-weight: 600; }

.interest-check .btn-skip {
  cursor: pointer; }
  .interest-check .btn-skip:hover {
    color: var(--text-color); }

.promote-your-set .heading {
  padding: 160px 0 128px; }
  @media screen and (min-height: 1000px) {
    .promote-your-set .heading {
      padding: 304px 0 228px; } }

.promote-your-set .button-container .btn:first-child {
  margin-right: 24px; }

.promote-your-set .section {
  padding: 128px 0; }
  .promote-your-set .section h3 {
    margin-bottom: 16px; }

.promote-your-set .images-container {
  justify-content: center; }
  .promote-your-set .images-container > a {
    grid-column: 2; }

.promote-your-set .feature-block.right div:nth-child(1) {
  order: 2; }
  @media screen and (max-width: 768px) {
    .promote-your-set .feature-block.right div:nth-child(1) {
      order: 1; } }

.promote-your-set .feature-block.right div:nth-child(2) {
  order: 1; }
  @media screen and (max-width: 768px) {
    .promote-your-set .feature-block.right div:nth-child(2) {
      order: 2; } }

.sidebar {
  width: var(--sidebar-width);
  background-color: #f2f3f8;
  height: auto;
  z-index: 50;
  top: 0;
  position: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--blue-lightest); }
  .sidebar-top {
    padding: 0 16px;
    height: 64px; }
  .sidebar-bottom {
    padding: 0 16px;
    height: 80px; }
    .sidebar-bottom .user {
      display: flex;
      align-items: center; }
      .sidebar-bottom .user .avatar {
        height: 32px;
        width: 32px;
        overflow: hidden;
        border-radius: 100%;
        margin-right: 8px; }
      .sidebar-bottom .user p {
        line-height: normal; }
  .sidebar-content {
    padding: 16px 0 24px 16px;
    flex: 1; }
    .sidebar-content ul li a {
      display: block;
      padding: 10px 12px;
      color: var(--item-text);
      transition: padding 200ms; }
      .sidebar-content ul li a:hover, .sidebar-content ul li a.active {
        border-radius: 8px 0 0 8px;
        background-color: var(--blue-lightest);
        padding-left: 16px;
        border-right: 4px solid var(--blue);
        color: var(--blue); }

.sets .loadmore {
  padding: 16px; }

.page-builder .color-share-image {
  margin-bottom: 32px; }
  .page-builder .color-share-image .color-container.light {
    color: var(--text-color); }
  .page-builder .color-share-image .color-container.dark {
    color: #fff; }
  .page-builder .color-share-image .color-container .box {
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(0, 16, 75, 0.2);
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .page-builder .color-share-image .color-container .box.dominant {
      height: 156px;
      margin-bottom: 24px; }
  .page-builder .color-share-image .image-container .img {
    border: 1px solid #f1f3f5; }

.page-builder .input-wrapper {
  margin-bottom: 16px; }

.page-builder .section-form-container {
  margin: 24px 0 32px; }
  .page-builder .section-form-container .section-form-item {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--blue-lightest);
    padding: 0px 0 0px 32px;
    margin: 24px 0; }
    .page-builder .section-form-container .section-form-item .remove-section {
      align-self: flex-end; }
      .page-builder .section-form-container .section-form-item .remove-section:hover svg {
        stroke: var(--red); }
  .page-builder .section-form-container .alignments {
    display: flex;
    justify-content: space-between; }
    .page-builder .section-form-container .alignments > div {
      flex: 1; }
    .page-builder .section-form-container .alignments > div:first-child {
      margin-right: 24px; }

.page-builder.update-set {
  padding-top: 32px;
  padding-bottom: 64px; }

.preview-page {
  position: relative; }
  .preview-page .toolbar {
    width: 100%;
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0; }

.block {
  padding: 64px 0; }
  .block.text-img {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr; }
    .block.text-img .column.img {
      position: relative;
      z-index: 2; }
      .block.text-img .column.img .backdrop {
        background: red;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; }
    .block.text-img.yCENTER {
      align-items: center; }
    .block.text-img.yBOTTOM {
      align-items: flex-end; }
    .block.text-img.xRIGHT div {
      justify-self: right;
      text-align: right; }
    .block.text-img.xCENTER div {
      justify-self: center;
      text-align: center; }
  .block.img-text {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr); }
    .block.img-text.yCENTER {
      align-items: center; }
    .block.img-text.yBOTTOM {
      align-items: flex-end; }
    .block.img-text.xRIGHT div {
      justify-self: right;
      text-align: right; }
    .block.img-text.xCENTER div {
      justify-self: center;
      text-align: center; }
  .block.text {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr; }
    .block.text.yCENTER {
      align-items: center; }
    .block.text.yBOTTOM {
      align-items: flex-end; }
    .block.text.xRIGHT div {
      justify-self: right;
      text-align: right; }
    .block.text.xCENTER div {
      justify-self: center;
      text-align: center; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.login.container.page {
  display: flex;
  justify-content: center;
  align-items: center; }

body {
  font-family: "Rubik", sans-serif;
  background: var(--darker-white);
  max-width: 100vw;
  font-size: 13px;
  overflow-x: hidden;
  transition: background-color 0.5s ease;
  color: var(--text-color); }
  @media screen and (max-width: 768px) {
    body {
      padding-bottom: 0px; } }

ul {
  list-style: none; }

a {
  text-decoration: none;
  color: inherit; }
  a.link {
    color: var(--blue);
    border-bottom: 2px solid var(--blue-lightest); }

.fadeInUp {
  animation-name: fadeInUp;
  animation-direction: forwards; }

@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  100% {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0); } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0px, -50px, 0);
    transform: translate3d(0px, -50px, 0); }
  100% {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0); } }

.layout-wrapper-container {
  padding-left: var(--sidebar-width) !important;
  padding-top: 24px; }

.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto; }
  @media screen and (min-width: 1328px) {
    .container {
      max-width: 1280px; } }
  @media screen and (min-width: 1441px) {
    .container {
      max-width: 1416px;
      padding-left: 24px;
      padding-right: 24px; } }
  @media screen and (max-width: 1441px) {
    .container {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 1888px) {
    .container.large {
      max-width: 1840px; } }
  .container.full {
    max-width: 100%;
    padding: 0 24px; }

.label {
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: var(--text-color-light); }
  .label.large {
    font-size: 1px; }
  @media screen and (max-width: 1441px) {
    .label {
      font-size: 10px; } }
  .label.italic {
    font-style: italic; }
  .label.large {
    font-size: 18px;
    color: var(--text-color); }

.clickable {
  cursor: pointer; }

.relative {
  position: relative; }

.features-container {
  margin: 32px 0; }
  .features-container h3 {
    margin-bottom: 8px; }
  .features-container .features {
    color: var(--text-color-light);
    padding-left: 24px; }
    .features-container .features li {
      color: inherit;
      font-size: 18px;
      margin-bottom: 8px;
      list-style: square; }
      @media screen and (max-width: 768px) {
        .features-container .features li {
          font-size: 14px; } }

.disabled {
  cursor: auto;
  pointer-events: none;
  opacity: 0.5; }

.mobile-only {
  display: none !important; }
  @media screen and (max-width: 826px) {
    .mobile-only {
      display: flex !important;
      flex: 1; } }

.no-margin {
  margin: 0 !important; }

.img {
  min-width: 100%;
  background-color: var(--white);
  border-radius: 8px;
  line-height: 0; }

img {
  max-width: 100%;
  box-sizing: border-box; }

.flex {
  display: flex; }
  .flex.align-v-center {
    align-items: center; }
  .flex.align-center {
    justify-content: center; }
    @media screen and (max-width: 768px) {
      .flex.align-center.mobile-left {
        justify-content: flex-start; } }
  .flex.align-left {
    justify-content: flex-start; }
  .flex.align-right {
    justify-content: flex-end; }
  .flex.space-between {
    justify-content: space-between; }

.grid {
  display: grid;
  grid-gap: 24px; }
  .grid.v-center {
    align-items: center; }
  .grid.two {
    grid-template-columns: 1fr 1fr; }
  .grid.three {
    grid-template-columns: 1fr 1fr 1fr; }
  .grid.four {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .grid.five {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
  .grid.six {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }
  @media screen and (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr !important; } }

.contact-form .input-wrapper {
  margin-bottom: 12px; }

.contact-form .controls {
  display: flex;
  justify-content: flex-end; }
  .contact-form .controls .btn:first-child {
    margin-right: 16px; }

.table {
  display: grid;
  background-color: var(--white);
  padding: 12px;
  border-radius: 8px; }
  .table .row {
    display: grid;
    align-items: center;
    border-bottom: 1px solid var(--blue-lightest); }
    .table .row.three {
      grid-template-columns: minmax(228px, 2fr) minmax(150px, 1.67fr) minmax(76px, 76px); }
    .table .row.four {
      grid-template-columns: minmax(228px, 2fr) minmax(150px, 1.67fr) minmax(76px, 76px) minmax(76px, 76px); }
    .table .row.five {
      grid-template-columns: minmax(228px, 2fr) minmax(228px, 2fr) minmax(150px, 1.67fr) minmax(76px, 76px) minmax(76px, 76px); }
    .table .row.six {
      grid-template-columns: minmax(228px, 2fr) minmax(228px, 2fr) minmax(150px, 1.67fr) minmax(100px, 100px) minmax(100px, 100px) minmax(100px, 100px); }
    .table .row.heading .column {
      font-weight: 500; }
    .table .row:last-child {
      border-bottom: none; }
    .table .row .column {
      align-items: center;
      padding: 12px;
      display: flex; }
      .table .row .column.right {
        justify-content: flex-end; }
      .table .row .column.action .btn.hidden {
        visibility: hidden; }
    .table .row:hover:not(.heading) {
      background-color: var(--darker-white); }
      .table .row:hover:not(.heading) .action .btn {
        visibility: visible; }

.input-preview-img {
  max-width: 32px; }

.message {
  background: var(--blue-lightest);
  color: var(--blue);
  padding: 24px;
  border-radius: 8px;
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 11; }
  .message.success {
    background: var(--green-light);
    color: var(--green); }
  .message.warning {
    background: var(--orange-light);
    color: var(--orange); }
  .message.error {
    color: var(--red-light);
    background-color: var(--red); }

.login {
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  overflow: hidden;
  position: relative; }
  .login .logo {
    margin: 0 auto 32px; }
  .login-section {
    max-width: 400px;
    padding: 0 24px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center; }
    .login-section .google-button {
      margin-bottom: 16px; }
    .login-section > div {
      flex: 1; }

.search-sets-container {
  padding: 16px 0;
  background-color: var(--darker-white); }
  .search-sets-container.sticky {
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0; }

.gekke-pattern {
  position: absolute;
  z-index: -1;
  height: 70vh;
  width: 80vw;
  bottom: 0;
  right: 0;
  background-image: url("https://kcs-img.ams3.cdn.digitaloceanspaces.com/gekke%20pattern.png");
  background-repeat: repeat;
  background-size: 335px 141px; }
  .gekke-pattern:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(150deg, #f8f9fb 20%, rgba(255, 255, 255, 0)); }

.status-bulb {
  width: 16px;
  height: 16px;
  background: var(--text-color-light);
  border: 1px solid var(--text-color);
  border-radius: 100%;
  opacity: .8;
  transform: scale(1);
  animation: pulse 2s infinite;
  z-index: 2; }
  .status-bulb:hover {
    opacity: 1; }
  .status-bulb.online {
    background: var(--green-light);
    border: 1px solid var(--green); }
  .status-bulb.draft {
    border: 1px solid var(--red);
    background: var(--red-light); }

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--text-color-light); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 2px #C9CBD0; }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--text-color-light); } }

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0; }
  .timeline-container {
    position: relative; }
  .timeline-line {
    width: 0%;
    height: 2px;
    background-color: var(--blue);
    position: absolute;
    top: 42px;
    left: 0;
    z-index: 3;
    transition: 300ms ease-out; }
    .timeline-line-backdrop {
      width: 100%;
      z-index: 2;
      height: 2px;
      background-color: var(--blue-lightest);
      position: absolute;
      top: 42px;
      left: 0; }
  .timeline-item {
    position: relative;
    z-index: 4;
    background-color: var(--blue-lightest);
    width: 24px;
    height: 24px;
    border-radius: 100%; }
    .timeline-item.active {
      background-color: var(--blue); }
  .timeline li {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .timeline li:first-child {
      align-items: flex-start; }
    .timeline li:last-child {
      align-items: flex-end; }
    .timeline li .label {
      margin-top: 8px; }

.create-options {
  display: flex;
  margin-bottom: 48px; }

.loader {
  margin: 0 auto;
  text-align: center; }

.loader > div {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.loader .one {
  margin-right: 8px;
  animation-delay: -0.32s; }

.loader .two {
  margin-right: 8px;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

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

