    #content {
      margin: 0 auto;
      padding: 0 15px;
  }
    #buyCSS {
      background: var(--c1);
      display: flex;
      padding: 10px 25px;
      font-size: 15px;
      color: white;
      border-radius: var(--br);
  }
  #uservip_qrcode {
          margin: 2rem 0 0;
  }    
  #paypix {
    background: white;
    position: fixed;
    width: 100%;
    max-width: 350px;
    top: -50%;
    left: 50%;
    border: 0px solid #fff;
    border-radius: var(--br);
    box-shadow: 0 0 20px -8px black;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 20000;
    transition: all 1s ease;
      }
  .openpop #paypix {
    top: 50%;
      margin: 10px auto;
      pointer-events: auto;
      transition: all 1s ease;
  }  
  #pay-vip_close {
      background: none;
      position: absolute;
      top: 10px;
      right: 12px;
      padding: 0;
      border: 0;
      font-size: 20px;
      cursor: pointer;
  }    
  .section_pix {
          display: flex;
      align-items: center;
      flex-direction: column;
  }  
  .title {
      display: flex;
      margin: 0;
      font-size: 15px;
      font-weight: 500;
      text-align: center;
      color: black;
      flex-direction: column;
  }
  #qrcode_text {
          display: none;
          word-break: break-word;
          font-size: 13px;
          font-weight: 400;
          color: black;
          line-height: 22px;
  }
  .info_pix {
      display: flex;
      margin: 1rem 0 0;
      justify-content: space-between;
      flex-direction: column;
      align-items: flex-start;
  }
  .copy_code {
    width: auto;
    margin: 1rem auto;
    padding: 15px 50px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border: 0;
    border-radius: var(--br_button);
    text-transform: uppercase;
    transition: all 1s ease;
  
  &:hover {
      transition: all 1s ease;
  }
  
      }
      #pix_footer {
          background: whitesmoke;
          display: flex;
          padding: 16px;
          font-size: 15px;
          font-weight: 600;
          color: black;
          border-top: 1px solid #c8c8c8;
          justify-content: space-between;
      }
      #timer {
      margin-left: 10px;
      color: red;
  }
#show_theme {
    background: #31323d;
    position: relative;
    display: none;
    width: 100%;
    margin: 1rem 0 0;
    padding: 15px;
    border: 2px solid var(--c1);
    border-radius: var(--br);
    text-align: center;
    color: white;
    justify-content: space-between;
  }
  body.openpop::after {
    content: '';
    position: fixed;
    background: linear-gradient(45deg, #00b8ff21, #8500ff29);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
  }   
  #downloadButton {
    display: flex;
    cursor: pointer;
    background: var(--c1);
    background-repeat: no-repeat;
    padding: 5px 10px;
    border-radius: 10em;
    font-size: 14px;
    cursor: no-drop;
    justify-content: center;
    align-items: center;
  }
  #downloadButton svg {
      display: inline-flex;
      width: 100%;
      max-width: 25px;
      font-size: 25px;
      stroke: white;
  }
  #downloadButton a {
      display: flex;
      color: white;
      align-items: center;
  }
  #downloadButton a svg {
      margin-left: 7px;
  }
  #linkfile {
      padding: 10px;
      text-align: left;
      font-size: 14px;
      color: #ffffff;
  }
  #aviso {
      display: none;
      margin: 1rem auto 0;
      font-size: 14px;
      text-align: center;
  }
  #aviso a {
    color: #68cbd2;
}
  .blockLink {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      flex-direction: column;
  }
  #totalPriceFooter {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
  }
  #totalPrice {
      margin: 10px 0;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
  }
  
  /* Estilos do contêiner */
  .quantity-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .quantity-container label {
    margin-right: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
  }
  .quantity-container select {
    width: 200px;
  }
  .qtyBuy {
      display: flex;
      padding: 15px 0 0;
      justify-content: center;
      align-items: center;
      flex-direction: column;
  }
  .qtyBuyBox {
      display: flex;
      align-items: center;
  }
  .qtyBuyBox button, .qtyBuyBox select {
      margin: 0 8px;
  }
  /* Animação de carregamento */
    .loading-placeholder {
    background-color: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
  }
  
  @keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
  }
  
  /* Estilo para o placeholder do QR Code */
  #qrcode.loading-placeholder {
    width: 200px;
    height: 200px;
  }
  
  /* Estilo para o placeholder do texto */
  #qrcode_text.loading-placeholder {
    width: 100%;
    height: 20px;
    margin-top: 10px;
  }
  @media (max-width:768px) {
      #paypix {
              max-width: 90%;
      }
      .section_pix {flex-wrap: wrap}
      #qrcode, #qrcode img {
          width: 100%;
          max-width: 180px;
          margin: 0 auto 10px;
      }
      .info_pix {
          flex-direction: column;
          text-align: justify;
          align-items: stretch;
      }
      .copy_code {
          font-size: 12px;
          font-weight: 800;
      }
      #show_theme {
      margin: 0 auto 2rem;
  }   
      }