.e-checkbox{
  .e-checkbox__item{
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    &.e-checkbox__item--disabled{
      opacity: .5;
      filter:alpha(opacity=50);
    }
    .e-checkbox__item--box{
      display: inline-block;
      width: 14px;
      height: 14px;
      vertical-align: text-bottom;
      position: relative;
      input[type="checkbox"]{
        opacity: 0;
        width: 14px;
        height: 14px;
        position: absolute;
        left: 0;
        top: 0;
        padding: 0;
        margin: 0;
        border: none;
        z-index: 9;
      }
      input[type="checkbox"]+i{
        display: inline-block;
        width: 12px;
        height: 12px;
        position: relative;
        border:1px solid #999;
        position: relative;
        color: #fff;
        background: #fff;
        font-size: 12px;
      }
      input[type="checkbox"]+i::before{
        display: none;
      }
      input[type="checkbox"]:checked+i{
        background-color: #5183C6;
        border-color: #5183C6;
      }
      input[type="checkbox"]:checked+i::before{
        display: block;
      }
    }
  }
}
