.checkbox-container {
  display: flex;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .checkbox-container .text {
    font-size: 14px;
    margin-top: 3px;
    font-weight: normal;
    letter-spacing: 0.8px; }
  .checkbox-container input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee; }
    .checkbox-container .checkmark:after {
      content: "";
      position: absolute;
      display: none;
      top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      background: white; }
  .checkbox-container:hover input[type=checkbox] ~ .checkmark {
    background-color: #ccc; }
  .checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3; }
    .checkbox-container input:checked ~ .checkmark:after {
      display: block; }
