/**
 * buttons-tertiary.css
 * 
 * Tertiary buttons have no color fill or border.
 * 
 * There is just one color in use, and a gray variant for when the button is disabled.
 * 
 * Index
 * - Tertiary Button
 * - Disabled Tertiary Button
 * 
 */


/*-----------------------------------------------------------------------
# Tertiary Button
------------------------------------------------------------------------*/

.btn-tertiary {
  color: #2375BB;
}
.btn-tertiary:hover,
.btn-tertiary.hover,
.btn-tertiary.hover:hover {
  color: #005394;
}

/*-----------------------------------------------------------------------
# Disabled Tertiary Button
------------------------------------------------------------------------*/

.btn-tertiary:disabled,
.btn-tertiary:disabled:hover,
.btn-tertiary[disabled="disabled"],
.btn-tertiary[disabled="disabled"]:hover {
  color: #DDDDDD;
}