/*
 * These mixins shd be used when you'd change design; separate mixin for every design shd be used. This one is for 'metro' design only.
 */

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: 'Glyphicons Halflings';
  content: "\e013";
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}

a.mark-link,a.mark-link:hover {
	color: black;
}

.leader-indicators li {
	border: 1px solid #337ab7;
}

.leader-indicators .active {
	background-color: #337ab7;
}