.boardSearch {
	width:100%;
	margin-bottom:70px;
}

.boardSearch > form {
	width:100%;
}

.boardSearch > form > fieldset {
	width:100%;
}

.boardSearch > form > fieldset > legend {
	display:none;
}

.searchBox {
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
	height:95px;
    background-color: #f7f6f6;
	padding:0 30px;
}

.searchTotal {
	font-size: 18px;
    font-weight: 700;
}

.searchTotal span {
	color:var(--red);
}

.searchInput {
    position: relative;
	display:flex;
	align-items:center;
	height:40px;
}

.selectBox {
	width:110px;
	min-width:60px;
	height:100%;
	border:1px solid #c8c8c8;
	background-color: #fff;
	margin-right:5px;
}

.selectBox select {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    padding-left: 15px;
    background: url(/res/img/sub/common/arrow_down.png) no-repeat center right 15px;
    appearance: none;
}

.searchInput input {
    width: 345px;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #c8c8c8;
    padding: 0 10px;
}

.searchInput input::placeholder {
	color:#898989;
}

.searchInput button {
	display:flex;
	justify-content:center;
	align-items:center;
	min-width:40px;
	height:100%;
	font-size:20px;
	background-color:var(--navy);
	transition:all 0.5s;
}

.searchInput button span {
	font-size:0;
}

.searchInput button:hover {
	background-color:var(--red);
}

/* 반응형 */
@media screen and (max-width:1250px) {

}

@media screen and (max-width:1025px) {
	.searchBox {
	    padding: 0 20px;
	}
}

@media screen and (max-width:769px) {
	.boardSearch {
		margin-bottom:50px;
	}
	
	.searchBox {
	    flex-direction: column-reverse;
	    align-items: flex-end;
	    height: auto;
	    padding: 20px 10px;
	}
	
	.searchTotal {
		font-size:16px;
	}
	
	.searchInput {
	    width: 100%;
    	justify-content: space-between;
    	margin-bottom:15px;
	}
	
	.searchInput input {
		width:100%;
	}
	
	.searchInput .selectBox {
		width:80px;
		min-width:80px;
		margin-right:10px;
	}
	
}












