/* input and label must be the same font-size */
.barra-ricerca .placeholderWrap{
    position: relative; 
    width: 100%;
    display: inline-block;
    top: 0;
}
.placeholderWrap label{
    color: #666;
    position: absolute; 
    top: 6px; left: 6px; /* Might have to adjust this based on font-size */
    pointer-events: none;
    display: block;
    text-transform: lowercase;
}

.placeholder-focus label{display: none !important;}/* could use a css animation here if desired*/
.placeholder-changed label{
    display: none !important;
}
