
/*======================
Check Boxes Styles
========================*/
#checkbox-l[type='checkbox'] {
  opacity: 0;
  z-index: -1;
  position: relative;
  left: 23px;
}

#checkbox-l[type='checkbox'] + label {
  width: 31px;
  height: 31px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-indent: -999px;
  overflow: hidden;
  border: 1px solid #212121;
  cursor: pointer;
}

/*-------------------
  #checkbox-l style
  ------------------*/
#checkbox-l[type='checkbox']#checkbox-l + label {
  border: 1px solid #212121;
  background: #212121;
  top: 0;
}

#checkbox-l[type='checkbox']#checkbox-l + label:before,
#checkbox-l[type='checkbox']#checkbox-l + label:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#checkbox-l[type='checkbox']#checkbox-l + label:before {
  width: 100%;
  height: 100%;
  background: white;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

#checkbox-l[type='checkbox']#checkbox-l + label:after {
  width: 0;
  height: 0;
  background: #212121;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
}

#checkbox-l[type='checkbox']#checkbox-l:checked + label:before {
  width: 25px;
  height: 25px;
}

#checkbox-l[type='checkbox']#checkbox-l:checked + label:after {
  width: 13px;
  height: 13px;
}
