<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 402:2 Unexpected "}"

**/
  .lit-star-picker {
    height: 100%;
    width: 100%;
    display: block;
    margin-bottom: 2rem;
  }
  
  .stars-rating-picker {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .star-rating-picker {
    flex: 1;
    text-align: center;
    font-size: 5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
  }
  
  .star-rating-picker.filled,
  .star-rating-picker.hovered {
    color: #72BF49;
  }

  .stars-rating-picker-choice {
    text-align: center;
    font-family: 'Bebas Neue';
    background: #f5f5f5;
    padding: .5rem;
    font-size: 2.4rem;
    margin-top: 0;
  }

  .review-hidden {
    display: none;
  }
  
  .review-spinner {
    border: 2px solid #333;
    border-top: 2px solid #999;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: review-spin 1s linear infinite;
    margin-left: 10px;
    /* display: block; */
  }
  
  @keyframes review-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .review-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .review-submit-btn {
    background: #72BF49;
    transition: opacity .3s ease;
  }

  .review-submit-btn:hover {
    opacity: .9;
  }

  .fill-bar {
    height: 100%;
    width: 0%;
    background-color: #72BF49;
    border-radius: 150px;
    transition: width 1s ease-in-out;
  }

  .lit-reviews-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Space between lines and title */
    margin: 2rem auto 0;
  }
  
  .lit-reviews-title {
    font-size: clamp(2.8rem, 3vw, 4.5rem);
    color: #101010;
    font-family: 'Bebas Neue';
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .lit-reviews-title-wrapper::before,
  .lit-reviews-title-wrapper::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #cecece;
    opacity: 0.5;
  }

  .lit-rating-details-score {
    font-size: 3.2rem;
    font-weight: bold;
    color: #999;
    line-height: 1;
    margin: 0;
    margin-bottom: 1.5rem;
  }

  .lit-rating-details-breack {
    display: flex;
    width: 75%;
  }
  
  .lit-reviews-container {
    display: flex;
    align-items: stretch; /* âœ… Make all children stretch vertically */
    width: 100%;
    max-width: 1000px;
    gap: 1rem; /* Optional: spacing between blocks */
    margin: 0 auto 2rem;
  }
  
  .lit-rating-details,
  .lit-rating-graph,
  .lit-rating-counts {
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .lit-rating-details {
    align-items: center;
    width: 25%
  }
  
  .lit-rating-graph {
    gap: 1rem;
    flex: 1;
    border-left: 1px solid #ddd;
  }
  
  .lit-rating-counts {
    align-items: flex-start;
  }

  .lit-form-textarea, 
  .lit-form-input {
    font-family: sans-serif;
  }
  
  .lit-review-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }

  .lit-review-btn {
    padding: 10px 16px;
    font-family: 'Bebas Neue';
    font-size: 2.1rem ;
    background: #101010;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: opacity .3s ease;
    margin: auto;
    display: block;
  }

  .lit-review-btn-container {
    width: 100%;
    padding: 2rem 0;
    /* border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd; */
    margin-top: 1rem;
    background: #f5f5f5;
    letter-spacing: 2px;
    border-radius: 5px;
  }

  .lit-review-btn:hover {
    opacity: .8;
  }

  /* Modal Styles */
  .lit-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .lit-modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .lit-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .lit-modal-title {
    margin-bottom: 20px;
    font-size: 20px;
    color: #666;
    font-family: 'Bebas Neue';
    text-spacing: 2px;
  }

  .lit-review-form input,
  .lit-review-form textarea,
  .lit-review-form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .lit-review-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .lit-review-form button[type="submit"] {
    background-color: #101010;
    font-family: 'Roboto';
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lit-review-form button[type="submit"]:hover {
    opacity: .9;
  }

  .lit-single-review {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 1rem 0;
  }

  .lit-single-review p {
    margin: 4px 0 0 0;
    padding: 0;
    line-height: 1.4;
  }

  .lit-single-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .star {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #72BF49;
    stroke-width: 1.5;
  }
  .star.filled {
    fill: #72BF49;
  }

  .lit-rating-graph-bar {
    height: 1.5rem;
    width: 100%;
    background: #f5f5f5;
    border-radius: 150px;
    margin: 2px 0;
  }

  .no-reviews-message {
    text-align: center;
    font-size: 2.4rem;
    font-family: 'Roboto';
    color: #999;
  }

  @media screen and (max-width: 1100px) {
    .lit-review-container {
      padding: 1rem;
    }
  }

  @media screen and (max-width: 768px) {
    .lit-review-container {
      padding: 0 1rem;
    }
    .lit-rating-graph-bar {
      height: 1rem;
      margin: 4px 0;
    }
    .lit-reviews-container {
      gap: 0;
    }
    .lit-rating-details {
      align-items: center;
      width: 28%;
    }
    .star {
      height: 13px;
      width: 13px;
    }
    .lit-rating-details-score {
      margin-bottom: .5rem;
    }
    .lit-product-rating-details-score {
      font-size: 1.6rem;
      padding: 0.8rem;
    }
    .no-reviews-message {
      font-size: 2rem;
    }
  }

    @media screen and (max-width: 480px) {
      .lit-reviews-container {
        flex-direction: column;
      }
      .lit-rating-graph {
        border: none;
      }
      .lit-rating-details {
        width: 100%;
      }
      .lit-rating-details {
        align-items: center;
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
      }
      .lit-rating-details-breack {
        width: 100%;
      }
    }
  }</pre></body></html>