body {
    background-color: white1;
    font-family: 'Non-Dottee', Arial, sans-serif;
    font-weight: 400;
    line-height: 150%;
}

body,html {
    height:100%;
    height: 100%;
    padding:0px;
    margin:0px;
}

.outer-content {
    width:100%;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.content {
    margin: auto;
    background: white;
    border: 1px solid #818181;
    border-radius: 14px;
    display: flex;
    color: #111;
    max-width: 100%;
    width: 332px;
    padding: 16px;
    box-sizing: border-box;
    border-color:#ddd;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}
.inner-content {
    display: block;
    width: 100%;
}
.content a {
    color: #111;
}
#logo {
    text-align: center;
    padding: 16px 0px;
}
#logo img {
    width: auto;
    height: 48px;
    display: inline-block;
}



/* AUTOCOMPLETE */
.ui-front {
    position: relative;
}
.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 100%;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-clip: padding-box;
    max-height: 336px;
    overflow-y: auto;
    max-width: 100%;
  }
  .ui-autocomplete > li > div {
    display: block;
    padding: 3px 18px;
    clear: both;
    font-weight: normal;
    line-height: 26px;
    color: #111;
    white-space: nowrap;
  }
  .ui-state-hover,
  .ui-state-active,
  .ui-state-focus {
    text-decoration: none;
    color: #111;
    background-color: #e0e0e0;
    cursor: pointer;
  }
  .ui-helper-hidden-accessible {
    display: none;
  }
  

/* FORM */
#form-content .option_text, #form-content .option_selection_text, .customer_intro_text {
    margin-bottom: 20px;
    display: block;
}
#form-content h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    color: #111;
}
#form-content .address_line {
    margin: 0;
}
#form-content div {
    display: flex;
    flex-direction: column;
}
#form-content input {
    border:1px #aaa solid;
    padding: 16px;
    flex:1;
    margin: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
#form-content select {
    background: url('../images/chevron_down.svg');
    background-color: white;
    background-position: calc(100% - 12px) center;
    background-repeat: no-repeat;
    border: 1px solid #c2c2c2 ;
    border-radius: 0;
    font-family: 'Non-Dottee', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    line-height: 48px;
    padding: 0 32px 0 16px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    /* hide default arrow */
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#form-content select option {
    font-weight: 400;
}
#form-content button {
    background-color: #111111;
    font-size: 16px;
    line-height: 48px;
    font-weight: 700;
    border:0px;
    border-radius: 20px;
    padding: 0 20px;
    width: 100%;
    color: #F3F3F3;
    margin: 5px 0;
    transition: background-color .1s;
}
#form_content button:hover {
    background-color: #2B2B2B;
}
#form-content button.disabledbtn {
    background-color: #d8d8d9;
    opacity: 1;

}
#form-content .continue_outer {
    margin-top: 18px;
}
#form-content .other {
    text-align: center;
    margin-top: 18px;
}
#form-content .other a {
    text-decoration: underline;
}

.note {
    padding: 0px;
    margin:0px;
    margin-top:16px;
}

.note + #address_display h2 {
    margin-top:12px;
}