<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#sizes {
    width: 100%;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
  }
  #sizes .size {
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    max-width: 500px;
  }
  #sizes .size .size-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  #sizes .size .qty-title {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
  }
  #sizes .size .price-increase {
    font-size: 11px;
    padding: 4px 8px;
    background-color: rgb(221, 55, 55);
    color: white;
    border-radius: inherit;
    margin-left: 18px;
  }
  #sizes .size .firesale-available {
    font-size: 12px;
    margin-top: 4px;
    color: red;
  }
  #sizes .size .qty-slider {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 10px;
    border-radius: inherit;
  }
  #sizes .size .qty-slider button {
    border-radius: 100px;
    padding: 14px;
    border: none;
    color: black;
    background-color: transparent;
  }
  #sizes .size .qty-slider button:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
  }
  #sizes .size .qty-slider button i {
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sizes .size .qty-slider input {
    /* REMOVE NUMERIC INPUT */
    -webkit-appearance: none;
    -moz-appearance: textfield;
    width: 35px;
    min-width: 0px;
    border: none;
    background-color: #333;
    color: white;
    padding: 2px 0px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: inherit;
    font-family: "Poppins", sans-serif;
  }
  
  #add-to-cart {
    background-color: #0a5aa3 !important;
    color: white !important;
    padding: 18px 0px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    width: 100%;
    border-radius: 4px;
    margin: 0px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
    max-width: 500px;
  }
  #add-to-cart:hover {
    cursor: pointer;
    background-color: #094883 !important;
  }
  #add-to-cart:disabled {
    background-color: rgba(10, 89, 163, 0.5019607843) !important;
    cursor: not-allowed;
  }
  
  @media screen and (max-width: 900px) {
    #sizes {
      gap: 10px;
    }
    #sizes .size {
      background-color: rgba(51, 51, 51, 0.05);
      max-width: unset;
    }
    #sizes .size .qty-title, #sizes .size .firesale-available {
      margin-left: 18px;
    }
  }</pre></body></html>