/* selectbox wrapper */
.styled-select {
    border: 1px solid #ccc;
    background-color: white;
    display: inline-block;
    position: relative;
}

.styled-select,
.styled-select .curr {
    padding: 12px;
    width: 100%;
    font-size: 16px;
    color: #757582;
    border-radius: 4px;
    outline:none;
}

/* select element inside the custom selectbox */
.styled-select select {
    padding: 0 0;
    margin: 0 0;
    height: 0;
    visibility: hidden;
}

/* selectbox button (current value holder) */
.styled-select .curr {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    cursor: pointer;
}

/* arrow down */
.styled-select .curr:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #ab965e;
    position: absolute;
    top: 12px;
    right: 8px;
}

/* drop down menu (fake option list) */
.styled-select ul {
    border: 1px solid #ccc;
    background-color: white;
    margin: 0 0;
    padding: 0 0;
    position: absolute;
    top: 100%;
    right: -1px;
    left: -1px;
    z-index: 99;
    -webkit-box-shadow: 0 1px 4px -2px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 1px 4px -2px rgba(0, 0, 0, .4);
    box-shadow: 0 1px 4px -2px rgba(0, 0, 0, .4);
}

/* option item (fake option item) */
.styled-select li {
    list-style: none;
    cursor: pointer;
    padding: 10px;
    margin: 0 0;
}

.styled-select li:hover {
    background-color: #39f;
    color: white;
}

/* selected option */
.styled-select li.selected,
.styled-select li.selected:hover{
    background-color: #ab965e;
    color: #ffffff;
}

/* disabled option */
.styled-select li.disabled,
.styled-select li.disabled:hover {
    color: #bbb;
    font-style: italic;
    background: none;
    cursor: text;
}

/* focused selectbox */
.styled-select .curr.focused {
    background-color: #eee
}

.field {
    margin: 0 0 10px 0;
}

.field1 {
    width: 48%;
    float: left;
}

.field2.last {
    width: 48%;
    float: right;
}