/** Shopify CDN: Minification failed

Line 169:4 Unexpected "{"
Line 169:5 Expected identifier but found "%"
Line 169:36 Unexpected "{"
Line 169:37 Expected identifier but found "%"

**/
.routine-finder .beauty-routine-container {
    width: 100%;
  }

  .routine-finder.is-full-width .beauty-routine-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .routine-finder .beauty-routine {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 650px;
    overflow: hidden;
  }

  /* =========================
     CONTENT
  ========================= */

  .routine-finder .beauty-routine-content {
    background: var(--secondary-bg-color);
    display: flex;
    align-items: center;
    padding: 10rem 7rem;
  }

  .routine-finder .beauty-routine-content-inner {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  .routine-finder .beauty-routine-heading {
    margin: 0 0 10px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .routine-finder .beauty-routine-description {
    margin: 0 0 50px;
        line-height: 25px;
        opacity: .8;
  }

  .routine-finder .beauty-routine-description p {
    margin: 0;
  }

  /* =========================
     FILTERS
  ========================= */

  .routine-finder .beauty-routine-filters {
    margin-bottom: 38px;
  }

  .routine-finder .beauty-routine-filter summary {
    list-style: none;
  }

  .routine-finder .beauty-routine-filter summary::-webkit-details-marker {
    display: none;
  }

  .routine-finder .beauty-routine-filter-summary {
    min-height: 78px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
  }

  .routine-finder .beauty-routine-filter-summary.is-selected {
    font-weight: 600;
  }

  .routine-finder .beauty-routine-filter-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .routine-finder details[open] .beauty-routine-filter-arrow {
    transform: rotate(180deg);
  }

  .routine-finder .beauty-routine-options {
    padding: 0 18px 15px;
  }

  .routine-finder .beauty-routine-option {
    width: 100%;
    display: block;
    padding: 8px 0;
    border: 0;
    background: transparent;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
    color: var(--text-color);
  }

  .routine-finder .beauty-routine-option:hover {
    opacity: 0.65;
    padding-left: 4px;
  }

  .routine-finder .beauty-routine-option.is-active {
    font-weight: 600;
  }

  /* =========================
     BUTTON
  ========================= */

  .routine-finder .beauty-routine-button {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .routine-finder .beauty-routine-button:hover {
    opacity: 0.85;
  }

  .routine-finder .beauty-routine-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  /* =========================
     RESULT / ERROR
  ========================= */

  .routine-finder .beauty-routine-result {
    margin-top: 14px;
    text-align: center;
    min-height: 20px;
  }

  /* =========================
     IMAGE
  ========================= */

  .routine-finder .beauty-routine-image {
    position: relative;
    min-height: 650px;
    {% comment %} overflow: hidden; {% endcomment %}
  }

  .routine-finder .beauty-routine-image img,
  .routine-finder .beauty-routine-image .placeholder-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .routine-finder .beauty-routine-image .placeholder-svg {
    background: #e8e2dc;
  }

  /* =========================
     IMAGE LEFT
  ========================= */

  .routine-finder.image-left .beauty-routine {
    grid-template-columns: 58% 42%;
  }

  .routine-finder.image-left .beauty-routine-image {
    order: 1;
  }

  .routine-finder.image-left .beauty-routine-content {
    order: 2;
  }

  /* =========================
     IMAGE RIGHT
  ========================= */

  .routine-finder.image-right .beauty-routine-image {
    order: 2;
  }

  .routine-finder.image-right .beauty-routine-content {
    order: 1;
  }

@media screen and (max-width: 1200px) {
    .routine-finder .beauty-routine-content {
        padding: 4rem 4rem;
    }
  }

  /* =========================
     TABLET
  ========================= */

  @media screen and (max-width: 989px) {
    .routine-finder .beauty-routine {
      min-height: 550px;
      grid-template-columns: 45% 55%;
    }

    .routine-finder.image-left .beauty-routine {
      grid-template-columns: 55% 45%;
    }

    .routine-finder .beauty-routine-content {
      padding: 45px;
    }

    .routine-finder .beauty-routine-image {
      min-height: 550px;
    }

    .routine-finder .beauty-routine-description {
      margin-bottom: 35px;
    }

    .routine-finder .beauty-routine-filter-summary {
      min-height: 65px;
    }
  }

  /* =========================
     MOBILE
  ========================= */

  @media screen and (max-width: 749px) {

    .routine-finder .beauty-routine-container {
      padding: 0;
    }

    .routine-finder .beauty-routine,
    .routine-finder.image-left .beauty-routine {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .routine-finder .beauty-routine-content {
      order: 1 !important;
      padding: 40px 25px;
    }

    .routine-finder .beauty-routine-image {
      order: 2 !important;
      width: 100%;
      height: 420px;
      min-height: 420px;
    }

    .routine-finder .beauty-routine-content-inner {
      max-width: 100%;
    }

    .routine-finder .beauty-routine-heading {
      margin-bottom: 15px;
    }

    .routine-finder .beauty-routine-description {
      margin-bottom: 30px;
    }

    .routine-finder .beauty-routine-filter-summary {
      min-height: 62px;
      padding: 0 8px;
    }

    .routine-finder .beauty-routine-options {
      padding-left: 8px;
      padding-right: 8px;
    }

    .routine-finder .beauty-routine-filters {
      margin-bottom: 30px;
    }
  }

  @media screen and (max-width: 480px) {
    .routine-finder .beauty-routine-content {
      padding: 35px 20px;
    }

    .routine-finder .beauty-routine-image {
      height: 350px;
      min-height: 350px;
    }

    .routine-finder .beauty-routine-button {
      min-height: 54px;
    }
  }