img{
	display: block;
}
.topCon{
	height: 104px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	position: relative;
}
.topCon .logo{
	font-size: 40px;
	color: #333333;
	line-height: 46px;
	letter-spacing: 2px;
	text-align: left;
	font-style: normal;
}
.userIconsgroups{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 39px;
}
.userIconsgroups .userIcon{
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.userIconsgroups .userIcon img{
	width: 100%;
}

.searchCon{
	height: 92px;
	line-height: 92px;
	background-color: #3B4656;
}
.searchCon .searchInner{
	display: grid;
	grid-template-columns: 231px 1fr 278px;
	justify-content: space-between;
	align-items: center;
}
.categoryIcon{
	display: flex;
	align-items: center;
}
.cateIcon{
	width: 2.5rem;
	height: 2.5rem;
}
.cateIcon img{
    width: 100%;
}
.categoryTxt{
	font-size: 1.5rem;
	color: #fff;
	margin-left: 24px;
	display: block;
}
#searchForm .searchInput{
    display: flex;
    align-items: center;
}
.search_pre_keyword{
    width: fit-content;
    background: #fff;
    border-top-left-radius: 79px;
    border-bottom-left-radius: 79px;
    height: 60px;
    padding: 0 10px;
}
.search_pre_keyword #dLabel{
    display: flex;
    align-items: center;
    height: 60px;
    gap: 10px;
}
.search_pre_keyword #dLabel .search_prewords{
    width: fit-content;
    text-wrap: nowrap;
}
.search_pre_keyword .dropdown-menu li{
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
.searchInput .searchEle{
	position: relative;
	width: 100%;
	max-width: 893px;
	height: 60px;
	background: #FFFFFF;
	border-top-right-radius: 79px;
	border-bottom-right-radius: 79px;
	overflow: hidden;
	line-height: 1;
}
.searchInput .searchEle .labelName{
	position: absolute;
	font-weight: 400;
	font-size: 1rem;
	color: #999999;
	left: 32px;
	top: 0px;
	height: 100%;
	line-height: 60px;
}
.searchInput .searchEle .searchName{
	width: 100%;
	outline: none;
	border: 0;
	padding: 0 32px;
	height: 60px;
	font-size: 20px;
	z-index: 1;
	position: relative;
	background: transparent;
}

.searchEle:has(.searchName:focus)>label{
	display: none;
}
.searchEle:has(.searchName:required:valid)>label{
	display: none;
}
.searchEle:has(.searchName:required:empty:focus)>label{
	display: none;
}


.seachIconEle{
	position: absolute;
	width: 18px;
	height: 18px;
	right: 32px;
	top: 21px;
	cursor: pointer;
	z-index: 9;
}
.searchInner .balance{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
.balance_value{
	font-size: 1.5rem;
	color: #fff;
	display: flex;
	gap: 5px;
}
#checkPackages .modal-dialog{
	max-width: 394px;
	transform: translate(0, 20vh);
}
#checkPackages .msg{
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	text-align: center;
	margin-top: 32px;
}
#checkPackages .trunMsgBtn{
	width: 113px;
	height: 46px;
	margin: 0 auto;
	line-height: 46px;
	text-align: center;
	color: #fff;
	background-color: #3B4656;
	cursor: pointer;
	margin-top: 40px;
	border-radius: 8px;
}
#checkPackages .title{
	position: relative;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	color: #333333;
}
#checkPackages .closeIcon{
	position: absolute;
	right: 0;
	top: 0;
	width: 18px;
	height: 18px;
	cursor: pointer;
}
#checkPackages .closeIcon img{
	width: 100%;
}

@media(max-width: 992px){
	.searchCon .searchInner{
		grid-template-columns: 1fr 2fr 2fr;
	}
	.categoryTxt{
		display: none;
	}
}
