
  
  #element13_masked input[type="text"] {
    color: transparent !important; /* Make the text transparent */
  }
  
  #element13_masked::before {
    content: attr(data-masked-value) !important; /* Display the masked value as content */
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: black !important; /* Darker overlay color, adjust as needed */
    color: white !important; /* Text color of the overlay */
    padding: 10px !important; /* Add padding to the overlay */
    box-sizing: border-box !important; /* Include padding in the width and height */
    pointer-events: none !important;
    z-index: 1 !important;
    transition: opacity 0.3s ease !important; 
    opacity: 0 !important;
  }
  
  #element13_masked:hover::before {
    opacity: 1 !important; /* Show the overlay on hover */
  }
  