/*Checkbox style*/
.checkbox {
    display: block;
    overflow: hidden;
    position: relative;
}

.checkbox {
    color: #999;
    margin-top: 0;
    color: #687074;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    padding-left: 15px;
    font-weight: normal;
}

.checkbox input {
    left: -9999px;
    position: absolute;
}

.checkbox i {
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    outline: none;
    display: block;
    border-width: 2px;
    border-radius:2px;
    position: absolute;
    border-style: solid;
}

.checkbox input + i:after {
    opacity: 0;
    position: absolute;
}

.checkbox input + i:after {
    top: -3px;
    left: -2px;
    width: 15px;
    height: 15px;
    content: '\f00c';
    text-align: center;
    font: normal 8px/17px FontAwesome;
}

.checkbox input:checked + i:after {
    opacity: 1;
}

.checkbox i {
    border-color: rgba(87, 100, 189, 0.66);
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}

.checkbox:hover i {
    border-color: rgba(87, 100, 189, 0.66);
}

.checkbox input:focus + i {
    border-color: rgba(87, 100, 189, 0.66);
}

.checkbox input + i:after {
    color: rgba(87, 100, 189, 0.66);
}
.checkbox input:checked + i {
    border-color: rgba(87, 100, 189, 0.66);
}