.checkbox-style-v1:checked,
.checkbox-style-v1:not(:checked) {
    position: absolute;
    left: -9999px;
}
.checkbox-style-v1:checked + label,
.checkbox-style-v1:not(:checked) + label
{
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    line-height: 22px;       
    display: inline-block;
    color: #000;
    font-size: 14px;   
}  
.checkbox-style-v1:checked + label:before,
.checkbox-style-v1:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;  
    border: 1px solid #2a3954; 
    border-radius: 100%;
    background: #2a3954; 
    background: #333; border-color: #333;
    box-sizing: border-box;   
}

.checkbox-style-v1.blue:checked + label:before,
.checkbox-style-v1.blue:not(:checked) + label:before {
    border-color: #324c98;
    background: #324c98;   
}
.checkbox-style-v1.black:checked + label:before,
.checkbox-style-v1.black:not(:checked) + label:before {
    border-color: #000;
    background: #000;   
}
.checkbox-style-v1.yellow:checked + label:before,
.checkbox-style-v1.yellow:not(:checked) + label:before {
    border-color: #f6de4a;
    background: #f6de4a;   
}



.checkbox-style-v1:not(:checked) + label:before {
	border: 2px solid #c1c1c1 !important;  
    background: transparent !important;
}
.checkbox-style-v1:checked + label:after,
.checkbox-style-v1:not(:checked) + label:after {
    content: '';
    width: 16px;
    height: 16px;   
    background-image: url('./img/ico-radio-check.png');
    background-image: url('/src/img/check@2x.png');
    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
   
    position: absolute;
    top: 3px;
    left: 3px;   

    -webkit-transition: all 0.2s ease; 
 	transition: all 0.2s ease; 

/* 	border-radius: 100%; */
/* 	-webkit-transition: all 0.2s ease; */
/* 	transition: all 0.2s ease; */
}
.checkbox-style-v1:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkbox-style-v1:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.checkbox-style-v1.round:checked + label:before,
.checkbox-style-v1.round:not(:checked) + label:before {
    border-radius: 0px; 
}
.checkbox-style-v1.round:checked + label:after,
.checkbox-style-v1.round:not(:checked) + label:after {
 	border-radius: 0px;  
}





.checkbox-style-v1.small:checked + label,
.checkbox-style-v1.small:not(:checked) + label
{
    padding-left: 24px;
    line-height: 16px;       
    font-size: 13px;   
}  
.checkbox-style-v1.small:checked + label:before,
.checkbox-style-v1.small:not(:checked) + label:before  {
    width: 16px; height: 16px;
}
.checkbox-style-v1.small:checked + label:after,
.checkbox-style-v1.small:not(:checked) + label:after {
    width: 12px;
    height: 12px;   
    background-size: 80%;
    top: 2px;
    left: 2px;  
}




.checkbox-style-v1.middle:checked + label,
.checkbox-style-v1.middle:not(:checked) + label
{
    padding-left: 28px;
    line-height: 20px;       
    font-size: 14px;   
    box-sizing: border-box;
}  
.checkbox-style-v1.middle:checked + label:before,
.checkbox-style-v1.middle:not(:checked) + label:before  {
    width: 20px; height: 20px;
}
.checkbox-style-v1.middle:checked + label:after,
.checkbox-style-v1.middle:not(:checked) + label:after {
    width: 20px;
    height: 20px;   
    background-size: 70%;
    background-position : center;
    top: 0px;
    left: 0px;  
}