.iradio, 
.icheckbox{
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: -2px 0 0 0;
    padding: 0;
    width: 18px;
    height: 18px;
    border: none;
    cursor: pointer;
    background: #fff;
    position: relative;
    border-radius: 100px;
    box-shadow: 0 0 0 1px #a2a2a2;
}

.iradio .iCheck-helper,
.icheckbox .iCheck-helper{
    z-index: 2;
}

.iradio:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin: -5px 0 0 -5px;
    background: #ddd;
    opacity: 0;
    transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

/* RADIO элемент */

/* L Состояние: В фокусе */

.iradio.hover{
    box-shadow: 0 0 0 1px #575656;
}

.iradio.hover:after{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* L Состояние: Активно */

.iradio.checked,
.iradio.checked.hover{
    box-shadow: 0 0 0 1px var(--global-brand-primary);
}

.iradio.checked:after,
.iradio.checked.hover:after{
    background: var(--global-brand-primary);
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* L Состояние: Заблокировано */

.iradio.disabled,
.iradio.disabled.hover{
    box-shadow: 0 0 0 1px #ddd;
}

.iradio.disabled.hover:after{
    opacity: 0;
}

.iradio.checked.disabled:after,
.iradio.checked.disabled.hover:after{
    background: #ddd;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* CHECKBOX элемент */

.icheckbox{
    border-radius: var(--global-input-border-radius);
}

.icheckbox:after{
    background: url(images/ico-check.svg) center no-repeat;
    background-size: 18px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: all .1s;
    -o-transition: all .1s;
    -moz-transition: all .1s;
    -webkit-transition: all .1s;
    z-index: 0;
}

/* L Состояние: В фокусе */

.icheckbox.hover{
    box-shadow: 0 0 0 1px #575656;
}

/* L Состояние: Активно */

.icheckbox.checked,
.icheckbox.checked.hover{
    box-shadow: 0 0 0 1px #575656;
}

.icheckbox.checked:after,
.icheckbox.checked.hover:after{
    background-image: url(images/ico-check-active.svg);
    opacity: 1;
}

/* L Состояние: Заблокировано */

.icheckbox.disabled,
.icheckbox.disabled.hover{
    box-shadow: 0 0 0 1px #ddd;
}

.icheckbox.disabled.hover:after{
    opacity: 0;
}

.icheckbox.checked.disabled:after,
.icheckbox.checked.disabled.hover:after{
    background-image: url(images/ico-check.svg);
    opacity: 1;
}