.select-wrapper {
  position: relative;
  width: 280px;
}

.select-wrapper::before {
  color: #fff;
  font-size: 20px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 10px;
}

.select-wrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8nwYAAmoBZ0eMiB8AAAAASUVORK5CYII=) repeat;
  border: none;
  border-radius: 3px;
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,.3);
  color: #fff;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  height: 40px;
  outline: none;
  padding-left: 10px;
  width: 100%;
}

select option {
  color: #666;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  background-color: transparent;
 }
select:hover {
	border-color: #888;
}

select > *:hover {
	background-color: #dfac20;
}
/* Focus style */

select:focus {
	border-color: #aaa;
	/* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
	
	box-shadow: 0 0 1px 3px rgb(0 171 190 / .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #fdfdfd;
	outline: none;
}
/* Set options to normal weight */

select option {
	font-weight: normal;
}

label {
	display: inline-block;
	margin-bottom: 0;
}

output {
	
	font-size: 1.25rem;
	
}
.formwrap {
    width: 75%;
    float: left;
 }

@media only screen and (min-width: 768px) {
.formwrap {
    width: 45%;
    float: left;
 }
}