/*
 * alt-checkbox LESS file
 * Version 1.0
 * http://alt-checkbox.starikovs.com
 *
 * alt-checkbox LESS file which helps to style checkbox with custom css using LESS syntax.
 *
 * Copyright (c) 2013 alt-checkbox.starikovs.com
 * Licensed under the MIT and GPL licenses.
 */
.alt-checkbox {
  display: inline-block;
  background: #e5e5e5;
  background-image: -ms-linear-gradient(top, #e5e5e5 0%, #e3e3e3 100%);
  background-image: -moz-linear-gradient(top, #e5e5e5 0%, #e3e3e3 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e3e3e3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e5e5e5), color-stop(1, #e3e3e3));
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e3e3e3 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e3e3e3 100%);
  border-radius: .2em;
  box-shadow: 0 0 0 1px #e3e3e3;
  font-size: .8em;
  line-height: 100%;
  outline: none;
  position: relative;
  text-decoration: none;
}
.alt-checkbox:hover, .alt-checkbox:focus {
  box-shadow: 0 0 3px 2px #ffce73;
  text-decoration: none;
}
.alt-checkbox:before {
  display: block;
  min-height: 1em;
  min-width: 1em;
  padding: .05em;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 0 #bfbfbf, 0 2px 0 #f7f7f7, 0 -1px 0 #b7b7b7;
  visibility: hidden;
}
.alt-checkbox.outline-unchecked:before {
  color: #f0f0f0;
  visibility: visible;
}
.alt-checkbox.checked:before {
  color: #44a038;
  visibility: visible;
}

.alt-checkbox:focus {
  outline: none;
}
.alt-checkbox.small, .alt-checkbox-label.small {
  font-size: .8em;
}
.alt-checkbox.medium, .alt-checkbox-label.medium {
  font-size: 1.6em;
}
.alt-checkbox.big, .alt-checkbox-label.big {
  font-size: 2.1em;
}
