/* International Telephone Input - Dial Code Styling */
.iti .iti__selected-dial-code {
    font-size: 1.2rem;
}

/* Area Required Dropdown - Input 1 Styling */
.input-1.area {
    padding: 0 10px;
    padding-right: 35px;
    display: block;
    width: 100%;
    line-height: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    font-family: inherit;
    font-weight: normal;
    background-color: #ffffffb9;
    border: 1px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    color: #212529;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
    vertical-align: top;
}

/* Area Required Dropdown - Input 2 Styling */
.input-2.area {
    padding: 0 10px;
    padding-right: 35px;
    display: block;
    width: 100%;
    line-height: 2rem;
    height: 2rem;
    font-size: 1.3rem;
    font-family: inherit;
    font-weight: normal;
    background-color: #ffffffb9;
    border: 1px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    color: #212529;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0;
    vertical-align: top;
}

/* Area Required Dropdown - Focus State */
.input-1.area:focus, .input-2.area:focus {
    outline: none;
    border: 1px solid #fff;
}

/* Area Required Dropdown - Option Styling */
.input-1.area option, .input-2.area option {
    background-color: #fff;
    color: #212529;
    padding: 5px 10px;
}

/* Remove default select styling for IE */
.input-1.area::-ms-expand,
.input-2.area::-ms-expand {
    display: none;
}

/* Ensure select matches input vertical alignment */
select.input-1.area,
select.input-2.area {
    vertical-align: top;
}

