@charset "UTF-8";

.demo1 {
  padding: 6px;
}
  .demo1 input[type=checkbox] {
    display: none;
    margin: 0;
  }
  .demo1 input[type=checkbox]+label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
    padding: 0 0 0 24px;
  }
  .demo1 input[type=checkbox]+label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: url("../img/checkbox.png") no-repeat left top/contain;
  }
  .demo1 input[type=checkbox]:checked + label:before {
    background: url("../img/checkbox-on.png") no-repeat left top/contain;
  }


select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  border-radius: 0;
  margin: 0;
  background: url("../img/ico_bottom_arrow.gif") no-repeat right 15px center transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  width: 100px;
  border:1px #ddd solid;
  padding: 10px;
}
select::-ms-expand {
  display: none;
}