﻿  input[type=checkbox]
        {            
            display: none;
          
        }
        
        input[type=checkbox] + label
        {
            display: inline-block;       
            width: 26px;
            height: 17px;
            padding-left: 10px;
            background-position: 0 0;
            background-repeat: no-repeat;
            line-height: 26px;
            cursor: pointer;
        }
        
        input[type=checkbox]:checked + label
        {
            background-position: left -20px;                    
        }
        
        label
        {
            background-image: url(../images/v.png);
          
        }