/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
span.wccqs-query span.wccqs-tooltip {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  font-size:14px;
  text-align: center;
  border-radius: 6px;
  padding: 5px;

  /* Position the tooltip */
  position: absolute;
  z-index: 99;
}
span.wccqs-query:hover span.wccqs-tooltip {
  visibility: visible;
}
span.wccqs-query {
    font-size: 9px;
    color: #fff;
    background: #000;
    padding: 0 4px;
    position: relative;
    bottom: 5px;
    border-radius: 7px;
}
input[type="text"] {
    width: 350px;
}
.form-table th {
    width: 380px;
}
@media only screen and (max-width:428px){
	input[type="text"] {
    width: 90%;
	}
	.form-table th {
    width: 90%;
	}
}