@charset "utf-8";
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 2px;
}
input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  line-height: 28px;
  cursor: pointer;
}
@media (min-width: 1px) {
  input[type=radio],
  input[type=checkbox] {
    display: none;
    margin: 0;
  }
  input[type=radio] + label,
  input[type=checkbox] + label {
    padding: 0 0 0 23px;
  }
  input[type=radio] + label::before,
  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: #fff;
  }
  input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
  }
  input[type=checkbox] + label::before {
    border: 2px solid #ccc;
  }
  input[type=radio]:checked + label::after,
  input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }
  input[type=radio]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #0D84C8;
    border-radius: 8px;
  }
  input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #0D84C8;
    border-bottom: 3px solid #0D84C8;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
/*# sourceMappingURL=ext_radio_check.css.map */
