<style>
      .subscriber-fillbar-container {
        position: relative;
        width: 200px;
        height: 500px;
        border: 3px solid black;
      }
      
      .sub-box {
        width: 200px;
        height: 500px;
        /* padding: 50px; */
        color: pink; /* TEXT COLOR */
        text-align: center;
        line-height: 100px
      }
      
      .subscriber-fillbox-glass {
        background-color: #FFFFFFFF;
      }
      
      .subscriber-fillbox-filling {
        position: absolute;
        left: 0px;
        top: 200px;
        height: 300px;
        background: repeating-linear-gradient(
          30deg, /* Angle of the stripes */
          #000000, /* First stripe color */
          #000000 95px, /* First stripe width */
          #FFDF3D 95px, /* Second stripe color (starts where the first ends) */
          #FFDF3D 180px /* Second stripe width (ends here) */
        );
        z-index: 2;
      }
      
      .subscriber-fillbar-label {
        text-align: center;
        color: green;
      }
    </style>