/*
Checkbox Style
 */

.checkbox-style input[type=checkbox] {
    display: none;
}

.checkbox-style label .key-item-name {
    display: inline-block;
    padding-left: 7px;
    text-wrap: none;
    overflow: hidden;
}

.checkbox-style label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.checkbox-style label:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    border-radius: 3px;
    border: 2px rgba(0, 0, 0, 0.3) solid;
    bottom: 1px;
    background-color: #ffffff;
    /*box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, .3), 0 1px 0 0 rgba(255, 255, 255, .8);*/
}

.checkbox-style input[type=checkbox]:checked + label:before {
    content: "\2713";
    /*text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);*/
    font-size: 15px;
    color: #00b300;
    border-color: #00b300;
    text-align: center;
    line-height: 15px;
}

/*
Radio Style
 */

.radio-style input[type=radio] {
    display: none;
}

.radio-style label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.radio-style label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    border-radius: 8px;
    border: 2px rgba(0, 0, 0, 0.3) solid;
    bottom: 1px;
    background-color: #ffffff;
    /*box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, .3), 0 1px 0 0 rgba(255, 255, 255, .8);*/
}

.radio-style input[type=radio]:checked + label:before {
    content: "\2022";
    /*text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);*/
    font-size: 37px;
    color: #00b300;
    border-color: #00b300;
    text-align: center;
    line-height: 16px;
}