.custom-dropdown-trigger {
	cursor: pointer;
}

.custom-dropdown {
	padding: 0 15px;
	position: absolute;
	z-index: 3;

	opacity: 0;
	pointer-events: none;

	-webkit-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.custom-dropdown.full-width {
	padding: 0;
	margin-top: 15px;
}
.custom-dropdown.fixed {
	position: fixed;
	top: auto;
}
@media(max-width: 567.5px) {
	.custom-dropdown.fixed {
		top: 67px;
	}
}
.custom-dropdown .dropdown-container {
	background: #FFF;
	border: 1px solid #EEE;
	border-radius: 4px;
	overflow: hidden;
}
.custom-dropdown.full-width .dropdown-container {
	border: none;
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
	border-radius: 0;
}
.custom-dropdown:hover,
.custom-dropdown.active {
	opacity: 1;
	pointer-events: all;
}

.custom-dropdown.hidden {
	opacity: 0;
	pointer-events: none;
}
.custom-dropdown .categories {
	background: #FFF;
}
.custom-dropdown.full-width .links {
	background: #F8F8F8;
}
.custom-dropdown * {
	color: #333!important;
}

.custom-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}
.custom-dropdown ul li a {
	display: block;
	padding: 15px 20px;
	font-size: 14px;
	text-decoration: none;
}
.custom-dropdown .categories ul li a {
	background: #FFF;
	-webkit-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;	
}
.custom-dropdown .categories ul li a.active,
.custom-dropdown .categories ul li a:hover {
	background: #F8F8F8;
}

.custom-dropdown .links ul li a {
	-webkit-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

.custom-dropdown .links ul li a.active,
.custom-dropdown .links ul li a:hover {
	background: #EEE;
}

.custom-dropdown .links ul li a > * {
	display: inline-block;
	vertical-align: middle;
}
.custom-dropdown .links ul li a > svg {
	width: 20px;
	height: 20px;
	margin-right: 5px;		
}

@media(max-width: 568px) {
	.custom-dropdown {
		padding: 0;
	}
	.custom-dropdown .dropdown-container {
		border-radius: 0;
	}
}