/*
 clear.less
*/

.fancy {
  font-family: tahoma, arial, verdana, sans-serif, 'Lucida Sans';
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  input {
    -webkit-appearance: none;
    border-radius: 0;
  }

  input::-ms-clear {
    display: none;
  }

}

.fancy {
  //.box-sizing(content-box);
  .box-sizing(border-box);
}

.fancy * {
  //.box-sizing(content-box);
  .box-sizing(border-box);
  margin: 0;
  padding: 0;
}

.fancy *:before {
  .box-sizing(content-box);
}

.fancy *:after {
  .box-sizing(content-box);
}

.fancy-clearfix {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.fancy input::-ms-clear {
  display: none;
}