/* Hide the content of the second label (third child) */
.sc-fnhmGq label:nth-child(3) {
    visibility: hidden;
    position: relative;
}

/* Replace the content with "IT" using ::after */
.sc-fnhmGq label:nth-child(3)::after {
    content: "IT"; /* Replace "DE" with "IT" */
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
}
