.custom-select {
	display: inline-block;
}

.custom-select__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	padding: .6rem .75rem .3rem;
	border: 1px solid #777;
	display: block;
	float: left;
	font-size: 1.25rem;
	color: #000;
	font-family: "myriad-pro-condensed", sans-serif;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1;
}

.custom-select__select:first-child {
	border-top-left-radius: 0.3em;
	border-bottom-left-radius: 0.3em;
}

.custom-select__select:last-child {
	border-top-right-radius: 0.3em;
	border-bottom-right-radius: 0.3em;
}

.custom-select__select + .custom-select__select {
	border-left: none;
}

.custom-select__select::-ms-expand {
	display: none; /* hide the default arrow in ie10 and ie11 */
}