@charset "utf-8";

.input_grid_cls{
    width: 100%;
    height:94%;
    border:1px solid #bdc3c7;
}

.grid_selectbox_cls{
    border:1px solid #bdc3c7;
    width:100%;
    height: 33px;
    font-size: 14px;
}

.btn_delete{
    /*width: 50px;*/
    font-size: 11px !important;
    height: 30px;
}

/**
 * 이벤트 : 글자가 들어간 토글버튼
 * 화면에서 없애기 위해 display:hidden을 줄 경우
 * 접근성에 문제가 생기는 아래 방법으로 없애는 걸 추천
 */
/* aggrid_toggle_with_text (start) */
input.input_toggle_with_text_cls {
    position: absolute;
    left: -3000%;
}
input.input_toggle_with_text_cls + label {
    overflow: hidden;
    display: inline-block;
    position: relative;
    width: 72px;
    height: 30px;
    background: #d1d1d1;
    border-radius: 30px;
    transition: all 0.5s;
}
input.input_toggle_with_text_cls + label:before {
    content: '미사용';
    font-size: 12px;
    position: absolute;
    right: 3px;
    top: 2px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 30px;
    line-height: 26px;
    text-indent: -37px;
    color: #fff;
    transition: all 0.5s;
}
input.input_toggle_with_text_cls.active + label:before {
    right: 44px;
    background: #fff;
}
input.input_toggle_with_text_cls.active + label {
    background: #00bd18;
}
input.input_toggle_with_text_cls + label:after {
    content: '사용';
    font-size: 12px;
    position: absolute;
    right: -100px;
    top: 2px;
    color: #fff;
    line-height: 26px;
    transition: all 0.5s;
}
input.input_toggle_with_text_cls.active + label:after {
    right: 12px;
}
/* aggrid_toggle_with_text (end) */

/**
 * 이벤트 : 이미지 체크박스
 */
.input_all_check_box_cls+label{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 2px;
    background: url('/assets/icons/icon_check_deactive.svg') no-repeat 0 0px / contain;
}
.input_all_check_box_cls:checked+label {
    background: url('/assets/icons/icon_check_active.svg') no-repeat 0 0px / contain;
}

.input_check_box_cls+label{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 2px;
    background: url('/assets/icons/icon_check_deactive.svg') no-repeat 0 0px / contain;
}
.input_check_box_cls:checked+label {
    background: url('/assets/icons/icon_check_active.svg') no-repeat 0 0px / contain;
}
.input_radio_box_cls+label,
.input_radio_red_box_cls+label,
.input_radio_green_box_cls+label{
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background: url('/assets/icons/icon_radio_deactive.svg') no-repeat 0 0px / contain;
}
.input_radio_box_cls:checked+label {
    background: url('/assets/icons/icon_radio_active.svg') no-repeat 0 0px / contain;
}
.input_radio_red_box_cls:checked+label {
    background: url('/assets/icons/icon_radio_active_red.svg') no-repeat 0 0px / contain;
}
.input_radio_red_box_cls:checked+label+div {
    color: #E02020;
}
.input_radio_green_box_cls:checked+label+div {
    color: #009432;
}
.input_radio_green_box_cls:checked+label {
    background: url('/assets/icons/icon_radio_active_green.svg') no-repeat 0 0px / contain;
}

.grid_default_cell_style {
    border-right: 1px solid #d9dcde !important;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.grid_default_bottom_cell_style {
    border-right: 1px solid #d9dcde !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #f4f7ff;
    font-weight: bold;
}


