.custom-counter {
	position: absolute;
	display: none;
	top: -10px;
	right: 6px;
	background-color: var(--theme-orange);
	border-radius: 100px;
	width: 20px;
	height: 20px;
	z-index: 10;
	text-align: center;
	color: #fff;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
}
.custom-dropdown, .custom-show-filter {
	position: relative;
	display: inline-block;

}
.custom-submit {
	cursor: pointer;
	padding: 16px 24px 12px 24px;
	background-color: var(--theme-orange);
	color: #fff;
	border: 1px solid var(--theme-orange);
	border-radius: 6px;
	font-family: AvenirLT-Medium;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
}
.custom-submit.icon-right i {
	margin-left: 24px;
	font-size: 18px;
	position: relative;
	top: 1px;
}
.custom-submit:hover {

		background-color: var(--theme-orange-dark) !important;
	transform       : scale(1.02);
	box-shadow      : 0 4px 10px var(--theme-hover-shadow) !important;
}
@keyframes pulse {
  0% {
	/* box-shadow: 0 0 0 0 rgba(0, 56, 101, 0.5); */
	box-shadow: 0 0 0 0 rgba(255, 158, 27, 0.5);
  }
  70% {
	/* box-shadow: 0 0 0 10px rgba(0, 56, 101, 0); */
	box-shadow: 0 0 0 20px rgba(255, 158, 27, 0);
  }
  100% {
	/* box-shadow: 0 0 0 0 rgba(0, 56, 101, 0); */
	box-shadow: 0 0 0 0 rgba(255, 158, 27, 0);
  }
}

.custom-submit.pulse {
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: 1;
}
.dropdown-header, .custom-show-filter {
	font-family: AvenirLT-Book;
	width: 100%;
	min-width: 150px;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;


	    background-color: #f8f9fa;
    color: #313131;
    font-weight: 600;
    /* padding: 12px 20px; */
		padding: 16px 36px 12px 16px;
position: relative;
    border: none;
		font-size: 0.9rem;

    border-radius: 4px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    cursor: pointer;
    transition: all 0.3s ease;
	
}
.dropdown-header:after {
	z-index: 0;
	content: "";
	height: 100%;
	width: auto;
	right: 0;
	top: 0;
	position: absolute;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); 
}
.dropdown-header.active {
	color: #fff;
	background-color: var(--theme-black);
}
@media screen and (min-width: 768px) {
	.dropdown-header.active:after {
		background: var(--theme-black);
		background: -moz-linear-gradient(90deg, rgba(0,56,101,0) 0%, rgba(0,56,101,1) 100%);
		background: -webkit-linear-gradient(90deg, rgba(0,56,101,0) 0%, rgba(0,56,101,1) 100%);
		background: linear-gradient(90deg, rgba(0,56,101,0) 0%, rgba(0,56,101,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#003865",endColorstr="#003865",GradientType=1); 
	}
}
.dropdown-icon {
	z-index: 1;
	right: 12px;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid var(--theme-black);
	border-left: 2px solid var(--theme-black);
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
	position: absolute;
	top: 24px;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
}

.dropdown-header.active .dropdown-icon {
	border-color: #fff;
	transform: rotate(-225deg);
	top: 26px
}

.option-list {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	z-index: 999;
	padding: 8px;
	margin: 0;
	list-style: none;
	background-color: #fff;
		min-width: 100%;
	max-width: 100%;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	border-radius: 4px;
	margin-top: 24px;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
}

.option-list.visible {
	display: block;
	margin-top: 8px;
	opacity: 1;
	pointer-events: all;
}

.option {
	padding: 12px 8px 12px 40px;
	margin-bottom: 0;
	cursor: pointer;
	position: relative;
	line-height: 1.4;
	font-family: AvenirLT-Book;
		color: var(--theme-black);
}
.option .check {
	width: 16px;
	height: 16px;
	background-color: #F2F2F2;
	position: absolute;
	top: 14px;
	left: 12px;
	border-radius: 3px;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
}
.option.selected .check {
	background-color: var(--theme-orange);
}

.option:hover .check {
	background-color: var(--theme-orange);
}

@media screen and (max-width: 768px) {
	.custom-mobile-filter-menu {
		/* display: none; */
		opacity: 1;
		pointer-events: none;
		position: fixed;
		width: 100%;
		left: -100%;
		height: 100%;
		top: 0;
		background-color: #fff;
		bottom: 0;
		z-index: 9999;
		padding: 40px;
		overflow-y: auto;
		transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	}
	.custom-mobile-filter-menu.active {
		opacity: 1;
		pointer-events: all;
		left: 0;
	}
	.dropdown-header {
		padding: 12px 12px;
		border: none;
		font-weight: 600;
		width: 100%;
		box-shadow     : 0 1px 2px var(--theme-shadow) !important;

	}



	.dropdown-header.active .dropdown-icon {
	color: var(--theme-black);
			transform: rotate(-225deg);
	}
	.dropdown-icon {
		top: 18px;
	}
	.custom-show-filter .dropdown-icon {
		top: 24px;
	}
	.custom-dropdown {
		padding: 0;
			border-radius: 4px;

		                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;

	}
	.option-list {
		display: none;
		position: relative;
		left: auto;
		top: 0;
		margin-top: 0 !important;
		padding: 0 10px;
		width: 100%;
		max-width: 100%;
		min-width: auto;
		box-shadow: none;
	}
	.option {
		padding-left: 28px;
	}
	.option .check {
		left: 0;
	}
	.custom-title {
		font-size: 1.25rem;
		font-family: AvenirLT-Black;
		color: var(--theme-black);
	}
	.custom-close-filter {
	color: var(--theme-black);
			position: absolute;
		top: 0;
		left: 90%;
		font-size: 24px;
cursor: pointer;
		}

	.custom-type-title {
		font-size: 1.5rem;
		font-family: AvenirLT-Book;
	color: var(--theme-black);
	}
	.custom-submit {
		margin-top: 2rem;
		width: auto;
	}
	.custom-counter {
		top: 14px;
		right: 36px;
	}




.dropdown-header, .custom-show-filter {
	
	font-size: 1rem;

	
}
}

.custom-show-filter {
    background-color: #f8f9fa;
    color: #313131;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-show-filter:hover {
    background-color: #f8f9fa99;
}

.selected-options {
    margin-right: 10px;
}


