@charset "utf-8";
/* CSS Document */

/* 게시판 공통 필드 */
input[type="text"],input[type="password"] {
    border: 1px solid #f0f3f5; height: 38px; padding: 2px 10px; box-sizing: border-box; border-radius: 4px; font-size: 13px;
}
input[type*="date"], input[type="number"] {
    border: 1px solid #f0f3f5; height: 38px; padding: 9px 10px; box-sizing: border-box; border-radius: 4px; font-size: 13px;
}
.input_100{width: 100%;}
.input_95{width: 95%;}
.input_90{width: 90%;}
.input_85{width: 85%;}
.input_80{width: 80%;}
.input_75{width: 75%;}
.input_65{width: 65%;}
.input_55{width: 55%;}
.input_50{width: 50%;}
.input_45{width: 45%;}
.input_35{width: 35%;}
.input_25{width: 25%;}
.input_20{width: 20%;}
.input_15{width: 15%;}

/* Textarea Style */
textarea {
    border: 1px solid #f0f3f5; padding: 6px 10px; min-height: 200px; box-sizing: border-box; border-radius: 4px; font-size: 12px; line-height: 19px; color: #000; resize: none; width:100%; margin-bottom:10px;
}

/* SelectBox Style */
select::-ms-expand {display: none;}
.select_style0 {
    -webkit-appearance: none; -moz-appearance: none; appearance: none; /* 네이티브 외형 감추기 */
    min-width: 100px; height: 38px; padding: 0px 40px 0px 17px;
    color: #4f5f6f; font-size: 13px; line-height: 33px;
    border: 1px solid #f0f3f5; border-radius: 4px; box-sizing: border-box;
    background: url("../img/select_arrow0.png") no-repeat 91% center; background-color: #ffffff;
}
.select_style0.gray {background: url("../img/select_arrow0.png") no-repeat 90% center; background-color: #dbe1e8; border: none;}
.select_style0.pink {background: url("../img/select_arrow0_white.png") no-repeat 90% center; background-color: #ec407a; color: #ffffff; border: none;}
.select_style0.blue {background: url("../img/select_arrow0_white.png") no-repeat 90% center; background-color: #4b99d8; color: #ffffff; border: none;}

/* Toggle Style */
.toggle {
    display: inline-block; text-align: center; vertical-align: middle;
    /*-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;*/
}
.toggle--checkbox { display: none; }
.toggle--btn {
    display: block; margin: 0 auto; font-size: 1.4em;
    transition: all 350ms ease-in;
    -webkit-transition: all 350ms ease-in;
    -moz-transition: all 350ms ease-in;
    -ms-transition: all 350ms ease-in;
    -o-transition: all 350ms ease-in;
}
.toggle--btn:hover { cursor: pointer; }

.toggle--btn, .toggle--btn:before, .toggle--btn:after,
.toggle--checkbox,
.toggle--checkbox:before,
.toggle--checkbox:after {
    transition: all 250ms ease-in;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
}
.toggle--btn:before, .toggle--btn:after,
.toggle--checkbox:before,
.toggle--checkbox:after {
    content: '';
    display: block;
}
.toggle--btn { position: relative; height: 24px; width: 80px; border-radius: 3px; }
/*.toggle--btn:before { background-color: #000; border:2px solid #fff; box-sizing: border-box; border-radius: 5px; position: absolute; top: 7px; left:15px; width: 10px; height: 10px;}*/
.toggle--btn:after { background: url('../img/toggle_icon.png') no-repeat 50% center; height:100%; width:50%;  position:absolute; top:0; left:0; border-radius: 0px 3px 3px 0px; box-sizing: border-box; background-color: transparent;}
.toggle--btn:before {background: url("../img/toggle_off.png") no-repeat 50% center; height: 100%; line-height: 100%; width:50%; background-color: #fff; border:1px solid #e6ecee; box-sizing: border-box; position: absolute; top:0; left:40px; border-radius:0px 3px 3px 0px;}
.toggle--checkbox:checked + .toggle--btn:before { background: url("../img/toggle_on.png") no-repeat 50% center; left:0; background-color: #fff; border-radius:3px 0px 0px 3px;}
.toggle--checkbox:checked + .toggle--btn:after {
    transform: translate(40px, 0);
    -webkit-transform: translate(40px, 0);
    -moz-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    -o-transform: translate(40px, 0);
    background-color: #000;
}
.toggle--btn.pink { background-color: #ffc2d7; }
.toggle--btn.pink { background-color: #e6ecee; }
.toggle--btn.blue { background-color: #c0ddf5; }
.toggle--checkbox:checked + .toggle--btn.pink { background-color: #ec407a; }
.toggle--checkbox:checked + .toggle--btn.pink { background-color: #e6ecee; }
.toggle--checkbox:checked + .toggle--btn.blue { background-color: #4b99d8; }

/* CheckBox Style */
.checkbox_con {display: inline-block;}
.checkbox_con .check_style0 {
    position: relative; left: 0; top: 0; width: 24px; height: 24px; margin-right: -28px;
    opacity: 0; filter: alpha(opacity=0);
}
.checkbox_con .check_style0 + label:before {
    content: ''; display: inline-block; vertical-align: middle;
    margin-right: 3px; width: 24px; height: 24px;
    border: none; border-radius: 12px;
    background: url("../img/cbox_off.png") no-repeat center center; background-color: #e5e5e5;
}
.checkbox_con .check_style0.green + label:before {background-color: #c5e8e2;}
.checkbox_con .check_style0.pink + label:before {background-color: #ffc2d7;}
.checkbox_con .check_style0.blue + label:before {background-color: #c0ddf5;}
.checkbox_con .check_style0:checked + label:before {background: url("../img/cbox_on.png") no-repeat center center; background-color: #7e7e7e;}
.checkbox_con .check_style0.green:checked + label:before {background: url("../img/cbox_on.png") no-repeat center center; background-color: #65b7a8;}
.checkbox_con .check_style0.pink:checked + label:before {background: url("../img/cbox_on.png") no-repeat center center; background-color: #ec407a;}
.checkbox_con .check_style0.blue:checked + label:before {background: url("../img/cbox_on.png") no-repeat center center; background-color: #4b99d8;}


/* RadioBox Style */
.radiobox_con {display: inline-block;}
.radiobox_con .radio_style0 {
    position: relative; left: 0; top: 0; width: 16px; height: 16px; margin-right: -20px;
    opacity: 0; filter: alpha(opacity=0);
}
.radiobox_con .radio_style0 + label:before {
    content: ''; display: inline-block; vertical-align: middle;
    margin-right: 3px; width: 16px; height: 16px;
    border: 2px solid #e5e5e5; border-radius: 10px; box-sizing: padding-box;
    background-color: #ffffff;
}
.radiobox_con .radio_style0.green + label:before {background-color: #ffffff;}
.radiobox_con .radio_style0.pink + label:before {background-color: #ffffff;}
.radiobox_con .radio_style0.blue + label:before {background-color: #ffffff;}
.radiobox_con .radio_style0:checked + label:before {background: url("../img/radio_default.png") no-repeat center center;}
.radiobox_con .radio_style0.green:checked + label:before {background: url("../img/radio_green.png") no-repeat center center;}
.radiobox_con .radio_style0.pink:checked + label:before {background: url("../img/radio_pink.png") no-repeat center center;}
.radiobox_con .radio_style0.blue:checked + label:before {background: url("../img/radio_blue.png") no-repeat center center;}