@charset "utf-8";
/***********************
체크박스
***********************/
.check_c input {
    padding: 0;
    margin: 0;
    outline: none;
    border: 0;
    -webkit-appearance: none;
    /* appearance: none; */
}

.check_c input.chk-disabled:disabled {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    background: #ff00ff;
}

.check_c input.chk-default {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    background: url(../img/ic_chkbox.svg) no-repeat center
}

.check_c input.chk-default~span {
    position: relative;
    top: 2px;
}

.check_c input.chk-default~span.no {
    display: inline-block;
    color: #000;;
}

.check_c input.chk-default~span.yes {
    display: none;
}

.check_c input.chk-default~.Price {
    margin-left: 15px;
    width: 80px;
    height: 40px;
    text-align: right;
    border-radius: 5px;
}

.check_c input.chk-default:checked {
    background-image: url(../img/ic_chkbox_checked.svg) !important;
    background-position-x: calc(100% + 0.7px)
}

.check_c input.chk-default:checked~span.yes {
    display: inline-block;
    color: #eab73e;
}

.check_c input.chk-default:checked~span.no {
    display: none;
}
