/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 178:0 Unexpected "<"

**/
<style>
  #custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .spinner {
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  [data-type="interactive"] * {
    pointer-events: none;
  }
  
  span.price {
    font-size: 36px;
    color: #133234;
    font-weight: 800;
  }
  
  span.selling-plan-price {
    font-size: 18px;
    color: #133234;
    font-weight: 600;
  }
  
  #prospect-goal {
    height: 0;
    opacity: 0;
    transition: all 0.25s ease-out;
  }
  
  .prospect-progress-chart {
    background-color: #F6EFE5;
    display: flex;
    flex-direction: column;
    height: 303px;
    padding: 60px 20px 0 20px;
    max-width: 558px;
    width: 100%;
  }
  
  .chart {
    flex: 1;
    position: relative;
  }
  
  .horizontal-line-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .horizontal-line-container > .line {
    border-top: 1px solid #4B4231;
    display: block;
    position: absolute;
    width: 100%;
  }
  
  .vertical-line-container {
    align-items: flex-end;
    bottom: 0;
    display: flex;
    left: 50px;
    position: absolute;
    right: 50px;
    top: 0;
  }
  
  .vertical-line-container > .line {
    border-left: 3px dashed #4B4231;
    display: block;
    position: absolute;
  }
  
  .chart-footer {
    background-color: #F6EFE5;
    border-top: 1px solid black;
    display: flex;
    justify-content: space-between;
    height: 60px;
    position: relative;
  }
  
  .chart-footer > span {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 18px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  
  .chart-footer > span:last-child {
    background-color: #C6BC99;
    border-radius: 10px;
  }
  
  .tag {
    align-items: center;
    background-color: #C6BC99;
    border: 4px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    position: absolute;
    transform: translate(-50%, -50%);
  }
  
  .tag.current-weight {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }
  
  .tag.goal-weight {
    border-radius: 50px;
  }
  
  .tag span {
    color: #4B4231;
    font-weight: bold;
    line-height: 1;
  }
  
  .tag span:nth-child(1) {
    font-size: 17pt;
  }
  
  .tag span:nth-child(2) {
    font-size: 9pt;
    white-space: nowrap;
  }
  
  .tag .award {
    font-size: 40pt;
    position: absolute;
    top: 0;
    transform: translate(5px, -68%);
  }
  
  .progress-curve {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
  }
</style>
