@charset "utf-8";

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 파이어폭스에서의 초기화 방법 */
input[type=number] {
    -moz-appearance: textfield;
}

.input_wrap {
    width: 100%;
}
.input {
	box-sizing: border-box;
}
.input_main {
	height: 30px;
	padding: 2px 10px;
	border: 1px solid #a4a8ab;
	font-size: 14px;
	color: #666666;
}
.input_main::placeholder {
	font-size: 14px;
	color: #666666;
}
.input_board_title {
	height: 32px;
	padding: 2px 10px;
	border: 1px solid #a4a8ab;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
}
.input_board_title::placeholder {
	font-size: 16px;
	font-weight: 600;
	color: #666666;
}
.input_title {
	height: 40px;
	padding: 2px 10px;
	border: 1px solid #a4a8ab;
	font-size: 16px;
	font-weight: 600;
	color: #333333;
}
.input_title::placeholder {
	font-size: 16px;
	font-weight: 600;
	color: #666666;
}
.border-primary {
	border: 1px solid #00a996 !important;
}
.select_main {
	height: 30px;
	padding: 2px 10px;
	border: 1px solid #a4a8ab;
	font-size: 14px;
	color: #666666;
    background: url('/images/icon/select_arrow_down.png') no-repeat 92% 45%/ 12px auto, #ffffff;
}
.select_main {
    -webkit-appearance:none; /* for chrome */
    -moz-appearance:none; /*for firefox*/
    appearance:none;
 
 }
 .select_main::-ms-expand{
    display:none;/*for IE10,11*/
 }
 .select_sub {
	height: 35px;
	padding: 2px 10px;
	border: 1px solid #009e96;
	font-size: 16px;
	font-weight: bold;
	color: #009e96;
    background: url('/mobile/images/main/icon/select_arrow_down_primary.png') no-repeat 95% 45%/ 12px auto, #efedf2;
	text-align: center; 
}
.select_sub {
    -webkit-appearance:none; /* for chrome */
    -moz-appearance:none; /*for firefox*/
    appearance:none;
 
 }
 .select_sub::-ms-expand{
    display:none;/*for IE10,11*/
 }
 textarea {
	resize: none;
 }
 .text_area {
	padding: 2px 5px;
	border: 1px solid #a4a8ab;
	font-size: 14px;
	color: #666666;
	resize: none;
 }

 /*  datepicker  */
.input_date {
    min-width: 120px;
    height: 30px;
    padding-left: 40px;
    border: 1px solid #c2cad8;
    background: url('/images/icon/icon_date_cal.png') no-repeat 7% 45%/ 20px auto,#fff;
    font-size: 16px;
    color: #666666;
}