.ft-menu,
.ft-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
    font-family: "tt chocolates",sans-serif;
    font-size: 12px;
    font-weight: bold;
	font-style: normal;
    letter-spacing: 0.125em;
    color: #000;
    text-transform: uppercase;
}

.ft-menu > li {
	display: inline-block;
	position: relative;
	width: 240px;
	margin-right: 20px;
}

.ft-menu > li:last-of-type {
	margin-right: 0;
}

.ft-menu > li > .ft-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 15px 20px;
	background: #fff;
}

.ft-menu > li > .ft-label:after {
	content: '\f0d7';
	font: 18px FontAwesome;
	color: #E2B58E;
}

.ft-panel {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 10px 20px;
	margin-top: 5px;
}

.ft-search {
	display: none;
}

.ft-panel li {
	padding: 10px 0;
	cursor: pointer;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.ft-panel li:before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 2px solid #EBBEAE;
	border-radius: 50%;
	margin-right: 10px;
}

.ft-panel li.ft-highlight:before,
.ft-panel .ft-selected li:before {
	background: #EBBEAE;
}

@media screen and (max-width: 767px) {
	.ft-menu > li {
		display: block;
		width: 100%;
		margin-right: 0;
		margin-top: 15px;
	}

}

/* REQUIRED! */
.ft-hidden { display: none !important; }


/* Custom webkit scrollbars */
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar {
    width: 10px;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
    background: #DDD;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
    background: #EEE;
}
