.ickeck input[type=radio]{
    position: absolute;
    visibility: hidden;
}

.ickeck label{
    display: block;
    position: relative;
    padding-left: 25px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    font-weight: normal;
    height: 100%;
    margin-right: 5px;
}

.ickeck .check{
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 30px;
    left: 10px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.ickeck .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 6px;
    width: 6px;
    top: 2px;
    left: 2px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.ickeck input[type=radio]:checked ~ .check {
    border: 5px solid #3498DB;
}

.ickeck input[type=radio]:checked ~ .check::before{
    background: #3498DB;
}

.has-feedback .ickeck.disabled{
    background: #eee;
}

.ickeckBox input[type=checkbox]{
    position: absolute;
    visibility: hidden;
}

.ickeckBox label{
    display: block;
    position: relative;
    margin-left: 25px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.ickeckBox .check{
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    height: 20px;
    width: 20px;
    top: 7px;
    left: 10px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

.ickeckBox .check::before {
    display: block;
    position: absolute;
    content: '';
    height: 10px;
    width: 6px;
    top: -1px;
    left: 2px;
    margin: auto;
    transition: border 0.25s linear;
    -webkit-transition: border 0.25s linear;
}

.ickeckBox input[type=checkbox]:checked ~ .check {
    border: 5px solid #dd4b39;
    background: #dd4b39;
}

.ickeckBox input[type=checkbox]:checked ~ .check::before{
    background: #dd4b39;
    border: 2px solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.has-feedback .ickeck{
    padding-right: 0px;
}