/* 콘텐츠 정보 레이아웃 */
#information_booth {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: stretch;
	font-family: 'Pretendard' !important;
	@media screen and (max-width: 767px) {
		flex-direction: column-reverse;
		/*flex-direction: column;*/
		height: auto;
	}
}
.information h2 {
	position: relative;
	margin-top: 60px;
	padding-bottom: 15px;
	font-size: 34px;
	color: #4a4a4a;
	padding-left: 32px;
}
/* 참가업체 사이드바 */
.exhibitor_sidebar {
	width: 407px;
	height: 100%;
	background: #ffffff;
	border: 3px solid #4B56A6;
	border-left: none;
	border-radius: 0 8px 8px 0;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	overflow: hidden;
	padding: 35px 29px;
	box-sizing: border-box;
	@media screen and (max-width: 767px) {
		width: auto;
		height: 500px;
	}
}
/* 사이드바 헤더 */
.sidebar_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidebar_header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #4B56A6;
}
.sidebar_close {
	display: none;
}
/* 필터 영역 */
.sidebar_filters {
	margin-top: 30px;
	display: flex;
	gap: 12px;
	align-items: center;
}
.filter_dropdown {
	flex-shrink: 0;
}
.filter_dropdown select {
	width: 117px;
	height: auto !important;
	padding: 10px 12px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	font-size: 14px;
	background: white url('/public_html/images/common/btn_dropdown.svg') no-repeat right 12px center;
	background-size: 11px 6px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	color: #898989;
	outline: none;
}
.filter_dropdown select:focus {
	outline: none;
	border: 1px solid #ced4da;
}
.search_box {
	position: relative;
	flex: 1;
}
.search_box input {
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
	::placeholder {
		color: #898989;
	}
}
.search_btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
}
.search_btn:hover {
	background: #f8f9fa;
}
.search_btn img {
	width: 16px;
	height: 16px;
	opacity: 0.6;
}
.search_btn:hover img {
	opacity: 1;
}
/* 참가업체 수 */
.exhibitor_count {
	padding: 8px 20px;
	font-size: 14px;
	color: #6c757d;
	border-bottom: 1px solid #e9ecef;
}
/* 참가업체 리스트 */
.exhibitor_list {
	margin-top: 28px;
	flex: 1;
	overflow-y: auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
/* 리스트 헤더 */
.list_header {
	display: flex;
	border-bottom: 1px solid #323232;
	border-top: 1px solid #323232;
	font-weight: 400;
	color: #495057;
	font-size: 12px;
	position: sticky;
	top: 0;
	z-index: 10;
	background: #ffffff;
	padding: 10px 27px 10px 25px;
}
.header_company {
	flex: 1;
}
.header_booth {
	text-align: right;
}
/* 회사 리스트 */
.company_list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	padding-top: 10px;
}
.company_item {
	display: flex;
	transition: background-color 0.2s ease;
	padding: 6px 30px 6px 24px;
	color: #141414;
	text-decoration: none;
	font-weight: 400;
	line-height: 180%;
	font-size: 15px;
}
.company_item:hover {
	background: rgba(225, 227, 242, 0.33);
	border-radius: 5px;
}
.company_name {
	flex: 1;
}
.company_link {
	display: block;
}
.booth_number {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 이미지 박스 스타일 */
.img_box {
	display: flex;
	justify-content: center;
	flex: 1;
}
.img_box img {
	width: 100%;
	max-width: 1009px;
	height: auto;
	object-fit: contain;
}
/* 스크롤바 스타일링 */
.exhibitor_list::-webkit-scrollbar {
	width: 6px;
}
.exhibitor_list::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.exhibitor_list::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}
.exhibitor_list::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}