/*
* @Author: Benoit LERAY
* @Date:   2017-02-07 17:21:25
* @Last Modified by:   Benoit LERAY
* @Last Modified time: 2017-02-07 23:25:15
*/


/* label color */
/* IDEXX Blue : #005ca1 IDEXX Red : b3282d*/

body{
	background-color: white;
}

h5 {
	font-size: 1.45rem;
}

.input-field label {
 color: #797a7c;
}
/* label focus color */
.input-field input[type=number]:focus + label {
 color: #797a7c;
}
/* label underline focus color */
.input-field input[type=number]:focus {
 border-bottom: 1px solid #00a7b5;
 box-shadow: 0 1px 0 0 #333333;
}
/* valid color */
.input-field input[type=number].valid {
 border-bottom: 1px solid #00a7b5;
 box-shadow: 0 1px 0 0 #333333;
}
/* invalid color */
.input-field input[type=number].invalid {
 border-bottom: 1px solid #b3282d;
 box-shadow: 0 1px 0 0 #333333;
}
/* icon prefix focus color */
.input-field .prefix.active {
 color: #333333;
}

.idexx-blue {
  background-color: #00a7b5 !important;
}

.idexx-red {
  background-color: #797a7c !important;
}

.dropdown-content li>a, .dropdown-content li>span {
  color:  #00a7b5;
}