/* checkbox */
.checkbox{
  margin-top : 0.5em;
}

.checkbox label span{
    position: relative;
    bottom : 0.25em;
}

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

input[type=checkbox] + label {
    display: inline-block; position: relative;
    cursor: pointer;
    padding-left: 25px;
    margin-right: 15px;
    font-weight: normal;
    color: #333333;
}

input[type=checkbox]+ label:before {
    content: "";
    display: inline-block;
    width: 17px; height: 17px;
    /* margin-right: 10px; */
    margin-right: 0px;
    position: absolute;
    left: 0;
    bottom: 5px;
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid #cccccc;
    font-weight: normal;
}

input[type=checkbox]:checked + label:before {
    content: "\2713";  /* 체크모양 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-weight: normal;
    color: #fff;
    background-color: gray;
    border: 1px solid gray;
    text-align: center;
    line-height: 17px;
}

input[type=checkbox]:disabled:checked + label:before { 
    content: "\2713";  /* 체크모양 */
    font-weight: normal;
    color: #fff;
    background-color: #cccccc;
    border: 1px solid #cccccc;
    text-align: center;
    line-height: 17px;
    font-weight: normal;
}

input[type=checkbox]:disabled + label:before {
    content: "";
    font-weight: normal;
    color: #fff;
    background-color: #cccccc;
    border: 1px solid #cccccc;
    text-align: center;
    line-height: 17px;
    font-weight: normal;
}
/* __checkbox__ */

input[type="radio"] {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

input[type="radio"] + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding-left: 25px;
}

input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0; top: -2px;
    width: 17px; height: 17px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #cacece;
    border-radius: 50px;
    font-size: 10px;
}

input[type="radio"]:checked + label:before {
    border-color: #009edf;
}

/* guided setup radio css 추가 */
.step-container input[type="radio"]:checked + label:before {
    content: "\f00c";
    border-color: #1ab394;
    background-color: #1ab394;
    color: #fff;
    font-family: "FontAwesome";
    text-align: center;
    font-size: 10px;
    padding-top: 3px ;
}

input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    top: 3px;  left: 5px;
    background: #009edf;
    border-radius: 100%;
    width: 9px; height: 9px;     
}

input[type=radio]:disabled:checked + label:before {
    border-color: gray;
}

input[type=radio]:disabled:checked + label:after {
    content: '';
    position: absolute;
    top: 3px;  left: 5px;
    /* background: gray; */
    border-radius: 100%;
    width: 9px; height: 9px;    
}

input[type="radio"]:disabled + label:before {
    border-color: #edf1f2;
}

input[type="radio"]:disabled + label:after {
    content: '';
    position: absolute;
    top: 3px;  left: 5px;
    background: #edf1f2;
    border-radius: 100%;
    width: 9px; height: 9px;
}
/* __Radio button__ */