/** Shopify CDN: Minification failed

Line 226:0 Unexpected "}"

**/
.counter-estimated-delivery {
  padding: 15px 0;
  margin: 0;
  display: flex;
  width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;

  .delivery-left {
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
  }

  .delivery-right {
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .availability-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--counter-text, #dc3545);
    margin: 0 0 15px 0;
    line-height: 16px;
  }

  .product-progress-bar {
    margin: 15px 0;
  }

  .progress-track {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--counter-text, #dc3545), #fd7e14);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .limited-offer {
    font-size: 12.5px;
    font-weight: 700;
    color: #6c757d;
    margin: 0;
    line-height: 12.5px;
    white-space: nowrap;
  }

  .countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -5px;
    white-space: nowrap;

    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #fff;
      border-radius: 8px;
      padding: 0;
      min-width: 60px;
      white-space: nowrap;

      #hours, #minutes, #seconds {
        font-size: 34px;
        font-weight: 800;
        color: var(--counter-text, #28a745);
        line-height: 1;
        white-space: nowrap;
      }
    }

    .countdown-label {
      font-size: 10px;
      font-weight: 500;
      color: #6c757d;
      line-height: 10px;
      white-space: nowrap;
    }
  }

  .product-estimated-delivery {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    white-space: nowrap;

    .delivery-flash-section {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .delivery-truck-icon {
      color: var(--counter-text, #28a745);
      flex-shrink: 0;

      svg {
        width: 32px;
        height: 32px;
      }
    }

    .delivery-content {
      flex: 1;
      white-space: nowrap;
    }

    .delivery-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--counter-text, #28a745);
      margin: 0;
      line-height: 24px;
      white-space: nowrap;
    }

    .delivery-subtitle {
      font-size: 15.10px;
      font-weight: 500;
      color: #6c757d;
      margin: 0 0 2px 0;
      line-height: 15.10px;
      white-space: nowrap;
    }

    .delivery-days-container {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .delivery-lightning-icon {
      color: var(--counter-text, #28a745);
      flex-shrink: 0;
      width: 11px !important;
      height: 11px !important;
    }

    .delivery-days {
      font-size: 16.60px;
      font-weight: 600;
      color: var(--counter-text, #28a745);
      margin: 0;
      line-height: 16.60px;
      white-space: nowrap;
    }

    .product-estimated-delivery__disclaimer {
      font-size: 12px;
      color: #6c757d;
      margin-top: 8px;
    }
  }
}

@media (max-width: 400px) {
  .counter-estimated-delivery {
    .product-estimated-delivery {
      .delivery-truck-icon {
        svg {
          width: 26px;
          height: 26px;
        }
      }

      .delivery-title {
        font-size: 21px;
        line-height: 21px;
      }

      .delivery-subtitle {
        font-size: 13.20px;
        line-height: 13.20px;
      }

      .delivery-days {
        font-size: 14.10px;
        line-height: 14.10px;
      }
    }

    .countdown-timer {
      .countdown-item {
        min-width: 52.5px;

        #hours, #minutes, #seconds {
          font-size: 27px;
        }
      }
    }

    .limited-offer {
      font-size: 10.5px;
      line-height: 10.5px;
    }
  }
}

}

}
