#update-contact-details {
    padding: 50px 0;
}
.error-border {
    border: 1px solid red !important;
}
#update-contact-details .container {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}
#update-contact-details.dark {
    background-color: #EBEBEB;
}
#update-contact-details [type=text] {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    margin: 0;
    border-radius: 4px;
    border-bottom: none;
    background: #FFF;
    line-height: normal;
    width: -webkit-fill-available;
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#update-contact-details [type=text]::placeholder {
    color: #4A4A4A;
}
#update-contact-details .flex-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}
#update-contact-details button[disabled] {
    background: #EBEEF1;
    color: #A0A7B1;
}
#update-contact-details button {
    display: flex;
    width: 30%;
    height: 48px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    border: 0px;
    cursor: pointer;
    color: #4A4A4A;
    text-align: center;
    font-feature-settings: 'liga' off;
    background: #fff;
    /* Buttons/Medium */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    letter-spacing: -0.1px;
}
#update-contact-details button.update-submit {
    color: #fff;
    background: #0075C9;
}
#update-contact-details span {
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #000;
}

#update-contact-details .flex-div.buttons {
    justify-content: center;
}

#suggestions-list {
    background: #fff;
    height: 200px;
    overflow: scroll;
    margin-top: -30px;
    display: none;
}
.stp-postal-code-dropdown {
    padding: 10px 0 0 10px;
}
#update-contact-details button:disabled {
    background: #EBEEF1;
    color: #A0A7B1;
}
.error, .success {
    display: none;
    font-feature-settings: 'liga' off;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.25px;
    text-align: center;
}
.success {
    color: #0075C9;
}
.error {
    color: red;
}

@media screen and (max-width: 599px){
    #update-contact-details .flex-div {
        flex-direction: column;
        gap: 10px;
    }
    #update-contact-details .flex-div.buttons {
        flex-direction: column-reverse;
    }
    #update-contact-details .container {
        gap: 10px;
    }
    #update-contact-details button {
        width: 100%;
    }

}