/* Hide pseudo elements on date picker */
input[type="date"][value=""]:not(:focus):not(:hover) {
  color: transparent !important;
}

@-moz-document url-prefix() {
  input[type="date"][value=""]:not(:focus) {
    color: transparent !important;
  }
}

input[type="date"][value=""]:not(:focus)::-webkit-datetime-edit {
  color: transparent !important;
}
