




.font-select * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.font-select {
	font-size: 18px;
	width:100%!important; 
	position: relative;
	display: inline-block;
}

.font-select .fs-drop {
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 999;
	background: #fff;
	color: #000;
	width: 100%;
	border: 1px solid #aaa;
	border-top: 0;
	box-shadow: 0 4px 5px rgba(0,0,0,.15);
	border-radius: 0 0 4px 4px;
}

.font-select > span {
	outline: 0;
	border-radius:7px;
	border: 0px solid #ced4da;
                    background-color: #c0c0c0; 
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 42px;
	line-height: 37px;
	padding: 3px 8px 3px 8px;
	color: #000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
cursor: pointer;
height:115px!important;
}

.font-select-active > span {
border-bottom-left-radius : 0;
border-bottom-right-radius: 0;
background-color: #c0c0c0; 
}



.font-select > span::after {
    content: '\EA13';
    border: none;
    font-family: icomoon;
    font-size: 7px;
    font-weight: 300;
    height: 12px;
    line-height: 1;
    margin: 0;
    position: absolute;
    top: calc(50% - 4px);
    right: 0.75rem;
    bottom: 0;
    left: auto;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 12px;
}


.font-select .fs-results {
	max-height: 190px;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	padding: 0;
background-color: #c0c0c0; 
}

.font-select .fs-results li {
	line-height: 80%;
	padding: 8px;
	margin: 0;
	list-style: none;
	font-size: 20px;
}

.font-select .fs-results li.active {
	background-color: #000;
	color: #fff;
	cursor: pointer;
}

.font-select .fs-search {
	border-bottom: 1px solid #aaa;
	padding: 4px;
}


