.inv_location_dropdown {
	position: absolute;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	width: 400px;
	right: 0%;
	top: calc(100% + 8px);
	color: var(--text-color);
	padding: 10px 15px;
	font-size: 14px;
	background: #fff;
	max-height: 455px;
}

span.inv_location_selected.text-truncate {
	max-width: 148px;
}

.inv_location_selected{
	font-weight: 500
}
span.inv_location_selected.text-bold.text-truncate {
	max-width: 148px;
}

.inv_location_dropdown.open{
	z-index: 199;
	visibility: visible;
	opacity: 1;
	box-shadow: 0 15px 35px rgb(50 50 93 / 10%), 0 5px 15px rgb(0 0 0 / 7%);
}

.inv_location_dropdown.open:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7.5px 10px 7.5px;
	border-color: transparent transparent #ffffff transparent;
	position: absolute;
	top: -9px;
	right: 60px;
}

.inv_location_title {
	font-size: 18px;
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
	font-weight: 500;
}

.inv_location_filter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
	margin-bottom: 15px;
}

.filter-item * {font-size: 14px;}

.inv_location_body {
	font-size: 14px;
}

.filter-item label {
	color: #686666;
	margin-bottom: 3px;
}


.inv_location_current {
	margin-bottom: 15px;
	background: #f8e9d7;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ffd199;
}

.inv_location_desc {
	font-weight: 500;
	margin-bottom: 10px;
}

li.inv_item {
	margin-top: 10px;
	border-top: 1px solid #eee;
	padding-top: 10px;
	cursor: pointer;
}
.inv_item .fas{
	font-size: 14px;
}
.inv_item .fas{
	color: var(--primary-color);

}
.inv_location_header .fas{
	font-size: 12px;
}
.inv_location_header {
	cursor: pointer
}
@media(max-width: 1024px){
	.header_sticky .inv_location{
		display: none!important
	}
}
@media(max-width: 992px){
	.inv_location_header {
		font-size: 12px
	}
}
@media(max-width: 767px){
	.inv_location_dropdown{
		position: fixed;
		font-size: 14px;
		width: 100%;
		right: 0;
		top: auto!important;
		margin-top: 15px;
	}
}