.font-select {
    position: relative;
}

.font-select span {
	font-weight: 700;
	font-family: Corben;
	cursor: pointer;
	transition: all 0.2s ease-in 0s;
}
	
.fs-drop {
    max-height: 40vh;
    overflow-y: auto;
    position: absolute;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    top: 50px;
    border-radius: 4px;
}

.fs-results {
    padding: 0;
}

.fs-results li {
    list-style: none;
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition:0.2s ease-in;
}
.fs-results li:hover {
	background-color:#ddd;
}