.com-users-registration .choices,
.com-users-profile__edit .choices {
    margin: 0;
    width: 100%;
}

.com-users-registration .choices__inner,
.com-users-profile__edit .choices__inner {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 10px;
    color: #000;
    display: flex;
    min-height: 50px;
    padding: 10px 48px 10px 16px;
}

.com-users-registration .choices__list--single,
.com-users-profile__edit .choices__list--single {
    padding: 0;
}

.com-users-registration .choices__item,
.com-users-profile__edit .choices__item {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
}

.com-users-registration .choices[data-type*="select-one"]::after,
.com-users-profile__edit .choices[data-type*="select-one"]::after {
    border: 0;
    color: #000;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
    font-weight: 900;
    height: auto;
    margin: 0;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

.com-users-registration .choices[data-type*="select-one"].is-open::after,
.com-users-profile__edit .choices[data-type*="select-one"].is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.com-users-registration .choices__list--dropdown,
.com-users-registration .choices__list[aria-expanded],
.com-users-profile__edit .choices__list--dropdown,
.com-users-profile__edit .choices__list[aria-expanded] {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    color: #000;
    margin-top: 2px;
    padding: 0;
    z-index: 20;
}

.com-users-registration .choices__list--dropdown .choices__input,
.com-users-registration .choices__list[aria-expanded] .choices__input,
.com-users-profile__edit .choices__list--dropdown .choices__input,
.com-users-profile__edit .choices__list[aria-expanded] .choices__input {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    color: #000;
    margin: 12px;
    padding: 10px 12px;
    width: calc(100% - 24px);
}

.com-users-registration .choices__list--dropdown .choices__item,
.com-users-registration .choices__list[aria-expanded] .choices__item,
.com-users-profile__edit .choices__list--dropdown .choices__item,
.com-users-profile__edit .choices__list[aria-expanded] .choices__item {
    color: #000;
    font-size: 1rem;
    padding: 12px 16px;
}

.com-users-registration .choices__list--dropdown .choices__item--selectable.is-highlighted,
.com-users-registration .choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.com-users-profile__edit .choices__list--dropdown .choices__item--selectable.is-highlighted,
.com-users-profile__edit .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background: #efefef;
    color: #000;
}

.com-users-registration .choices.is-focused .choices__inner,
.com-users-registration .choices.is-open .choices__inner,
.com-users-profile__edit .choices.is-focused .choices__inner,
.com-users-profile__edit .choices.is-open .choices__inner {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.user-profile-view {
    color: #fff;
    margin: 0 auto;
    max-width: 1180px;
    padding: 2rem 1rem 4rem;
}

.user-profile-view__header {
    align-items: flex-end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.user-profile-view__eyebrow {
    color: rgba(255, 255, 255, .72);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 .35rem;
    text-transform: uppercase;
}

.user-profile-view__header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.user-profile-view__meta {
    color: rgba(255, 255, 255, .78);
    font-size: 1.1rem;
    margin: .75rem 0 0;
}

.user-profile-view__edit {
    flex: 0 0 auto;
}

.user-profile-view__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.user-profile-view__section {
    background: #fff;
    border-radius: 8px;
    color: #111;
    padding: 1.5rem;
}

.user-profile-view__section h2 {
    color: #111;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
}

.user-profile-view__list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.user-profile-view__list > div {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
}

.user-profile-view__list > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.user-profile-view__list dt {
    color: #666;
    font-size: .8rem;
    font-weight: 800;
    margin: 0 0 .35rem;
    text-transform: uppercase;
}

.user-profile-view__list dd {
    color: #111;
    font-size: 1.05rem;
    font-weight: 650;
    margin: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .user-profile-view {
        padding-top: 1rem;
    }

    .user-profile-view__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .user-profile-view__header h1 {
        font-size: 2.2rem;
    }

    .user-profile-view__grid {
        grid-template-columns: 1fr;
    }
}
