.profile-page {
    display: flex;
    min-height: 100vh;
    padding-top: 8rem;
    margin-bottom: 3.75rem;
}
@media (max-width: 1024px) {
    .profile-page {
        padding-top: 4.6875rem;
    }
}
@media (max-width: 430px) {
    .profile-page {
        padding-top: 3.5rem;
    }
}
[hidden] {
    display: none !important;
}
.profile-tab__subtitle {
    margin: 0.5rem 0 0;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.profile-tab__subtitle.chats {
    margin: 0;
    margin-top: 0.5rem;
}
.profile-modal__footer--actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}
.profile-modal__footer--actions .profile-modal__action {
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0 1.25rem;
    border-radius: 0.25rem;
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    cursor: pointer;
}
.profile-modal__action--cancel {
    border: 1px solid var(--Gray-02, #767676);
    background: #fff;
    color: var(--Black, #000);
}
.profile-modal__action--delete,
.profile-modal__action--confirm {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.profile-layout {
    display: grid;
    grid-template-columns: 22.8125rem 1fr;
    min-height: 100%;
    flex-shrink: 0;
    padding: 0;
}
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.profile-content {
    min-height: 100%;
    padding: 2.5rem 3.75rem;
    width: calc(100vw - 23.75rem);
    max-width: 67.1875rem;
}
@media (max-width: 1024px) {
    .profile-content {
        padding: 2.5rem 1rem 0;
    }
}
.profile-mobile-bar {
    display: none;
}
@media (max-width: 1024px) {
    .profile-layout.is-content-open .profile-sidebar {
        display: none;
    }
    .profile-layout.is-content-open .profile-content {
        display: block;
        width: 100vw;
    }
    .profile-content {
        display: none;
    }
    .profile-mobile-bar {
        display: flex;
        padding: 1rem 0;
    }
    .profile-mobile-back {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.5rem;
        padding: 0 1rem;
        border: 1px solid var(--Gray-03, #cfcfcf);
        border-radius: 0.3125rem;
        background: var(--Gray-04, #ebebeb);
        cursor: pointer;
        transition: all 0.2s ease;
        color: #000;
        font-family: Roboto;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 0.035rem;
        text-transform: uppercase;
    }
    .profile-mobile-back:hover {
        border-color: #000;
        background: #f0f0f0;
    }
    .profile-mobile-back:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
    }
}
.profile-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    border-right: 0.5px solid var(--Black, #000);
    padding: 2.5rem;
    width: 100%;
    max-width: 22.8125rem;
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 8rem);
    min-height: max-content;
}
@media (max-width: 1024px) {
    .profile-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        border-right: none;
        width: 100%;
        max-width: 32.5rem;
        margin: 0 auto;
    }
}
@media (max-width: 430px) {
    .profile-sidebar {
        max-width: 22.8125rem;
        border: none;
        padding-bottom: 1.5rem;
    }
}
.profile-sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 2.685rem;
}
.profile-sidebar__user {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.profile-sidebar__user .title-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.profile-sidebar__avatar {
    display: flex;
    width: 7.1875rem;
    height: 7.1875rem;
    padding: 0.25rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid var(--Gray-02, #767676);
}
.profile-sidebar__avatar img,
.profile-sidebar__avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-sidebar__name {
    color: var(--Black, #000);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -0.045rem;
    text-transform: uppercase;
}
.profile-sidebar__email {
    color: var(--Gray-02, #767676);
    text-align: center;
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.profile-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.profile-sidebar__nav .divider {
    width: 100%;
    height: 0.5px;
    flex-shrink: 0;
    background-color: #767676;
}
.profile-sidebar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.5rem;
    padding: 0 1rem;
    border: none;
    border-radius: 0.3125rem;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
}
.profile-sidebar__btn:hover {
    background: #f5f5f5;
}
.profile-sidebar__btn.active {
    border-radius: 0.3125rem;
    background: var(--Gray-04, #ebebeb);
}
.profile-sidebar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    border-radius: 50%;
    background: #e5e5e5;
    font-family: Roboto;
    font-size: 0.625rem;
    font-weight: 500;
}
.active .profile-sidebar__badge {
    color: var(--White, #fff);
    border-radius: 6.25rem;
    background: var(--Black, #000);
}
.profile-sidebar__signout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: opacity 0.2s ease;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
}
.profile-sidebar__signout:hover {
    opacity: 0.6;
}
.profile-sidebar__signout svg {
    flex-shrink: 0;
}
.profile-tab {
    display: none;
    flex-direction: column;
    gap: 2rem;
}
.profile-tab.active {
    display: flex;
}
.profile-tab__title {
    display: flex;
    gap: 1.5rem;
    color: var(--Black, #000);
}
.profile-tab__subtitle {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 2rem;
}
.profile-tab__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.profile-tab__header.collections {
    flex-direction: column;
    align-items: start;
}
.profile-tab__tool {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.profile-tab__count {
    color: var(--Gray-02, #767676);
    font-variant-numeric: lining-nums proportional-nums;
}
.profile-tab__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.profile-tab[data-tab-content="chats"] .profile-tab__header {
    flex-wrap: nowrap;
}
@media (max-width: 768px) {
    .profile-tab[data-tab-content="chats"] .profile-tab__header {
        flex-wrap: wrap;
    }
}
.profile-tab[data-tab-content="chats"] .profile-tab__actions {
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .profile-tab[data-tab-content="chats"] .profile-tab__actions {
        width: 100%;
        justify-content: space-between;
    }
}
.profile-tab__action {
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: opacity 0.2s ease;
    color: #000;
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}
.profile-tab__action:hover {
    opacity: 0.6;
}
.profile-tab__action--secondary {
    color: var(--Gray-02, #767676);
}
.profile-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 20rem;
    gap: 1.5rem;
}
.profile-empty__btn {
    height: 2.5rem;
    min-height: 2.5rem;
    font-size: 1.25rem;
    letter-spacing: -0.0375rem;
}
.profile-empty__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}
.profile-empty__group .title {
    color: var(--Black, #000);
    text-align: center;
}
.profile-empty__group .title.compare {
    max-width: 20.625rem;
}
.profile-empty__group .text {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.profile-collections__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.profile-tag svg {
    flex-shrink: 0;
}
.profile-tag__remove {
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}
.profile-tag__remove:hover {
    opacity: 1;
}
.profile-tag:hover {
    border-color: #000;
    color: #000;
}
.profile-tag.active {
    background: #000;
    border-color: #000;
    color: #fff;
}
.profile-tag.active svg {
    opacity: 1;
}
.profile-tag.active .profile-tag__remove path {
    fill: #fff;
}
.profile-tag--add {
    border: 0;
}
.profile-tag--add:hover {
    background: #f5f5f5;
}
.profile-tag-input {
    height: 2rem;
    padding: 0 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0);
    min-width: 6rem;
    max-width: 8rem;
    font-family: Roboto;
    font-size: 0.75rem;
    color: #000;
}
.profile-tag-input:focus {
    outline: none;
    border-color: #000;
}
.profile-tag-input::placeholder {
    color: #767676;
}
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1200px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}
.profile-grid .swiper-slide,
.profile-compare__grid .swiper-slide {
    width: 100%;
    max-width: none;
}
.profile-grid .compare-card,
.profile-compare__grid .compare-card {
    width: 100%;
    max-width: none;
}
.profile-card__image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
.profile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-card__like {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    color: #767676;
}
.profile-card__like.active {
    color: #c41e3a;
}
.profile-card__like:hover {
    background: #fff;
}
.profile-card__compare {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 1rem;
    background: hsla(0, 0%, 100%, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
}
.profile-card__compare.active {
    background: #000;
    color: #fff;
}
.profile-card__compare:hover {
    background: #fff;
}
.profile-card__compare.active:hover {
    background: #333;
}
.profile-card__remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
}
.profile-card__remove:hover {
    background: rgba(0, 0, 0, 0.8);
}
.profile-card--collection .profile-card__compare {
    right: 2.5rem;
}
.profile-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile-card__title {
    color: var(--Black, #000);
    font-family: "Cormorant Garamond";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -0.03375rem;
    text-transform: uppercase;
}
.profile-card__location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.profile-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.profile-card__price strong {
    color: var(--Black, #000);
    font-family: "Cormorant Garamond";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
}
.profile-card__price span {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.profile-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.profile-card__tag {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
}
.profile-chats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
@media (max-width: 585px) {
    .profile-chats {
        display: flex;
        flex-direction: column-reverse;
        gap: 3.75rem;
    }
}
.profile-chats__column {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    max-width: 22.8125rem;
}
.profile-chats__column.share {
    max-width: 26.6875rem;
}
@media (max-width: 768px) {
    .profile-chats__column {
        max-width: 100%;
    }
}
.profile-chats__column .title-container {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.profile-chats__divider {
    width: 0.0625rem;
    height: 100%;
    flex-shrink: 0;
    background: var(--Gray-03, #cfcfcf);
}
@media (max-width: 585px) {
    .profile-chats__divider {
        display: none;
    }
}
.profile-chats__heading {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    text-transform: uppercase;
}
@media (max-width: 430px) {
    .profile-chats__heading {
        font-size: 1.75rem;
        letter-spacing: -0.0525rem;
    }
}
.profile-chats__desc {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-chats__field {
    position: relative;
}
.profile-chats__input {
    width: 100%;
    padding: 0 0 1rem 0;
    border-radius: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: rgba(0, 0, 0, 0);
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.profile-chats__input:focus {
    outline: none;
    border-bottom-color: #000;
}
.profile-chats__input::placeholder {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-chats__error {
    margin-top: 0.5rem;
    color: #c41e3a;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.profile-chats__btn {
    width: 100%;
    opacity: 0.4;
}
.profile-chats__btn:disabled {
    cursor: not-allowed;
}
.profile-chats__link-btn {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0.3125rem;
    border: 1px solid var(--black-50, rgba(0, 0, 0, 0.5));
    background: var(--Gray-04, #ebebeb);
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
}
.profile-chats__link-btn:hover {
    border-color: #000;
}
.profile-chats__link-btn svg {
    flex-shrink: 0;
}
.profile-importer {
    display: grid;
    grid-template-columns: minmax(18rem, 22.8125rem) minmax(0, 1fr);
    gap: 4rem;
    margin-top: 1rem;
}
@media (max-width: 900px) {
    .profile-importer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.profile-importer__panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}
.profile-importer__intro {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.profile-importer__heading {
    color: var(--Black, #000);
    text-transform: uppercase;
}
.profile-importer__desc {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
}
.profile-importer__upload {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0 1rem;
    border: 1px dashed var(--Gray-02, #767676);
    border-radius: 0.3125rem;
    background: var(--Gray-05, #f8f8f8);
    cursor: pointer;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
}
.profile-importer__upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.profile-importer__btn {
    width: 100%;
}
.profile-importer__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.profile-importer__btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}
.profile-importer__message {
    min-height: 1.25rem;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 140%;
}
.profile-importer__message.is-error {
    color: #c41e3a;
}
.profile-importer__message.is-success {
    color: #1f8f45;
}
.profile-importer__table-wrap {
    width: 100%;
    overflow-x: auto;
}
.profile-importer__table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    font-family: Roboto;
    font-size: 0.75rem;
    line-height: 120%;
}
.profile-importer__table th,
.profile-importer__table td {
    padding: 0.75rem;
    color: #000000;
    border-bottom: 1px solid var(--Gray-04, #ebebeb);
    text-align: left;
    vertical-align: top;
}
.profile-importer__table th {
    color: var(--Gray-02, #767676);
    font-weight: 400;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .profile-tab[data-tab-content="importer-buyers"] .profile-tab__header {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 430px) {
    .profile-importer {
        margin-top: 0.5rem;
    }
    .profile-importer__panel {
        gap: 1rem;
    }
    .profile-importer__intro {
        gap: 0.375rem;
    }
    .profile-importer__upload {
        padding: 0.625rem 0.75rem;
    }
}
.profile-settings {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .profile-settings {
        display: flex;
        flex-direction: column;
        gap: 3.75rem;
    }
}
.profile-settings__column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 22.8125rem;
}
.profile-settings__column.security {
    max-width: 26.6875rem;
}
.profile-settings__divider {
    width: 0.0625rem;
    height: 100%;
    background: var(--Gray-03, #cfcfcf);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .profile-settings__divider {
        display: none;
    }
}
.profile-settings__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile-settings__heading {
    color: var(--Black, #000);
}
.profile-settings__save {
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: opacity 0.2s ease;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
.profile-settings__save:hover {
    opacity: 0.6;
}
.profile-settings__fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.profile-settings__field {
    position: relative;
}
.profile-settings__field:focus-within .profile-settings__label {
    transform: translateY(0);
}
.profile-settings__field.is-filled .profile-settings__label {
    transform: translateY(0);
}
.profile-settings__label {
    transition: all 0.3s ease;
    transform: translateY(calc(100% + 0.5rem));
    display: block;
    color: var(--black-50, rgba(0, 0, 0, 0.5));
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-settings__input {
    width: 100%;
    height: 2.5rem;
    padding: 0 0 1.44rem 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: rgba(0, 0, 0, 0);
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-settings__input:focus {
    outline: none;
    border-bottom-color: #000;
}
.profile-settings__security {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.profile-settings__security .title-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile-settings__desc {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-settings__desc-label {
    color: var(--Gray-01, #171717);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-settings__delete {
    width: max-content;
    padding: 0.25rem;
    height: 2.5rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    border-radius: 0.3125rem;
    transition: all 0.3s ease;
    border: none;
    color: var(--Red, #f00);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
}
.profile-settings__delete svg {
    flex-shrink: 0;
}
.profile-settings__delete svg path {
    transition: fill 0.3s ease;
    fill: red;
}
.profile-settings__delete:hover {
    background: red;
    color: #fff;
}
.profile-settings__delete:hover svg path {
    fill: #fff;
}
.profile-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border-radius: 0.25rem;
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 110%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.profile-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.profile-compare {
    --compare-columns: 3;
    --compare-gap: 1.5rem;
}
@media (max-width: 1024px) {
    .profile-compare {
        padding-top: 5rem;
        --compare-columns: 2;
    }
}
@media (max-width: 768px) {
    .profile-compare {
        --compare-columns: 1;
    }
}
.profile-compare {
    position: relative;
}
.profile-compare__nav {
    position: absolute;
    right: 0;
    top: -2.875rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
}
.profile-compare__nav.is-visible {
    display: flex;
}
@media (max-width: 1024px) {
    .profile-compare__nav {
        top: 0;
    }
}
.profile-compare__nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: opacity 0.2s ease;
    color: #000;
}
.profile-compare__nav-btn:hover {
    opacity: 0.8;
}
.profile-compare__nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
}
.profile-compare__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.25rem;
    max-width: 100%;
    scrollbar-width: none;
}
.profile-compare__scroll::-webkit-scrollbar {
    display: none;
}
.profile-compare__scroll-wrapper {
    width: max-content;
}
.profile-compare__cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(18.75rem, 100%);
    gap: var(--compare-gap);
    margin-bottom: 2rem;
}
.profile-compare__cards .swiper-slide {
    width: auto;
}
.profile-compare__cards .compare-card {
    width: 100%;
    min-width: 18.75rem;
}
@media (max-width: 430px) {
    .profile-compare__cards .compare-card {
        width: calc(100vw - 3rem);
    }
}
.profile-compare__details {
    border-top: 1px solid #e5e5e5;
}
.profile-compare__row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(
            18rem,
            calc(
                    (100% - var(--compare-gap) * (var(--compare-visible-columns, var(--compare-columns)) - 1)) /
                    var(--compare-visible-columns, var(--compare-columns))
            )
    );
    gap: var(--compare-gap);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 1rem;
}
.profile-compare__row:nth-child(odd) {
    background: #f5f5f5;
}
.profile-compare__cell {
    min-width: 18rem;
    max-width: 26.6825rem;
}
@media (max-width: 430px) {
    .profile-compare__cell {
        width: calc(100vw - 4rem);
    }
}
.profile-compare__cell-label {
    opacity: 0.64;
    margin-bottom: 0.5rem;
    color: #000;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-compare__cell-value {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.01rem;
}
.profile-messenger {
    display: grid;
    grid-template-columns: 16.5625rem 1fr;
    gap: 1.25rem;
    min-height: 28rem;
    overflow: hidden;
}
@media (max-width: 768px) {
    .profile-messenger {
        grid-template-columns: 1fr;
    }
}
.profile-messenger__list {
    display: flex;
    flex-direction: column;
}
.profile-messenger__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
    border-bottom: 1px solid var(--Gray-04, #ebebeb);
    background: var(--White, #fff);
}
.profile-messenger__item:hover {
    background: #f0f0f0 !important;
}
.profile-messenger__item .btn-detail {
    position: absolute;
    top: 0;
    right: 0.25rem;
    display: none;
    width: 1.5rem;
    height: 1.5rem;
}
@media (max-width: 768px) {
    .profile-messenger__item .btn-detail {
        display: none !important;
    }
}
.profile-messenger__item.active {
    background: var(--Gray-04, #ebebeb) !important;
}
.profile-messenger__item.active .btn-detail {
    display: flex;
}
.profile-messenger__row {
    position: relative;
    overflow: hidden;
    background: var(--White, #fff);
}
.profile-messenger__row .profile-messenger__item {
    width: 100%;
    position: relative;
    z-index: 2;
    background: inherit;
    transition: transform 0.2s ease;
    will-change: transform;
}
.profile-messenger__swipe-delete {
    display: none;
}
.profile-messenger__avatar {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.125rem;
    border-radius: 50%;
    border: 1px solid var(--Gray-02, #767676);
    flex-shrink: 0;
    background: #e5e5e5;
}
.profile-messenger__avatar-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}
.profile-messenger__avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-messenger__status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #767676;
}
.profile-messenger__status.online {
    background: #22c55e;
}
.profile-messenger__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 2.25rem;
}
.profile-messenger__unread {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 6.25rem;
    background: var(--Black, #000);
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0.375rem;
    color: var(--White, #fff);
    text-align: center;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
.profile-messenger__name {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-messenger__preview {
    max-width: 10rem;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-messenger__delete {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    border: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
}
.profile-messenger__chat {
    display: flex;
    flex-direction: column;
    border-radius: 0.3125rem;
    background: var(--Gray-05, #f8f8f8);
}
.profile-messenger__chat-header {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--Gray-04, #ebebeb);
    background: #fff;
}
.profile-messenger__back {
    border: none;
    background: rgba(0, 0, 0, 0);
    padding: 0;
    cursor: pointer;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
.profile-messenger__chat-title {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-messenger__day {
    align-self: center;
    padding: 0.75rem 1rem;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.profile-messenger__messages {
    flex: 1;
    padding: 0 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
}
.profile-messenger__message {
    display: flex;
    max-width: 80%;
}
.profile-messenger__message--sent {
    align-self: flex-start;
}
.profile-messenger__message--sent .profile-messenger__bubble {
    background: var(--Gray-04, #ebebeb);
    color: var(--Black, #000);
    border-radius: 0 0.625rem 0.625rem 0.625rem;
}
.profile-messenger__message--sent .profile-messenger__bubble .profile-messenger__time {
    color: var(--Gray-02, #767676);
}
.profile-messenger__message--received {
    align-self: flex-end;
}
.profile-messenger__message--received .profile-messenger__bubble {
    background: var(--Gray-02, #767676);
    color: var(--White, #fff);
    border-radius: 0.625rem 0 0.625rem 0.625rem;
}
.profile-messenger__message--received .profile-messenger__bubble .profile-messenger__time {
    color: var(--Gray-03, #cfcfcf);
}
.profile-messenger__bubble {
    padding: 0.75rem 1rem;
}
.profile-messenger__bubble p {
    margin: 0 0 0.5rem;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-messenger__time {
    display: block;
    text-align: right;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 110%;
}
.profile-messenger__input-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.56rem 0.75rem;
}
.profile-messenger__input-area .wrapper {
    display: flex;
    width: 100%;
    border-radius: 0.3125rem;
    background: #fff;
}
.profile-messenger__input {
    flex: 1;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.3125rem;
    background: #fff;
    border: none;
    font-family: Roboto;
    font-size: 0.875rem;
    color: #000;
}
.profile-messenger__input:focus {
    outline: none;
    border-color: #000;
}
.profile-messenger__input::placeholder {
    color: #767676;
}
.profile-messenger__send {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    height: 2.5rem;
    min-height: 2.5rem;
    font-size: 1.25rem;
    min-width: 7.6875rem;
}
.profile-messenger__send:hover {
    border: 1px solid #000;
}
.profile-messenger__context {
    position: fixed;
    z-index: 2000;
    min-width: 10.5rem;
    padding: 0.25rem;
    border-radius: 0.3125rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.profile-messenger__context-item {
    width: 100%;
    text-align: left;
    border: none;
    background: rgba(0, 0, 0, 0);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
}
.profile-messenger__context-item:hover {
    background: var(--Gray-04, #ebebeb);
}
@media (max-width: 767px) {
    .profile-messenger {
        grid-template-columns: 1fr;
    }
    .profile-messenger__sidebar {
        display: block;
    }
    .profile-messenger__chat {
        display: none !important;
    }
    .profile-messenger__chat-header {
        display: none !important;
    }
    .profile-messenger.is-chat-open .profile-messenger__sidebar {
        display: none !important;
    }
    .profile-messenger.is-chat-open .profile-messenger__chat {
        display: flex !important;
    }
    .profile-messenger.is-chat-open .profile-messenger__chat-header {
        display: flex !important;
    }
}
@media (max-width: 767px) {
    .profile-messenger__swipe-delete {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 4.5rem;
        border: none;
        background: #000;
        color: #fff;
        z-index: 1;
        cursor: pointer;
    }
    .profile-messenger__row.is-swipe-open .profile-messenger__item {
        transform: translateX(-4.5rem);
    }
}
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.profile-modal.open {
    display: flex;
}
.profile-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
}
.profile-modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 26.625rem;
    margin: 1.56rem;
    padding: 2rem;
    max-height: calc(100vh - 3.12rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
@media (max-width: 430px) {
    .profile-modal__content {
        padding: 1.5rem;
    }
}
.profile-modal__header {
    display: flex;
    justify-content: space-between;
}
.profile-modal__footer {
    margin-top: 1rem;
}
.profile-modal__title {
    margin: 0;
    color: var(--Black, #000);
    font-family: "Cormorant Garamond";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -0.0375rem;
    text-transform: uppercase;
}
.profile-modal__close {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #000;
    transition: opacity 0.2s ease;
}
.profile-modal__close:hover {
    opacity: 0.6;
}
.profile-modal__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile-modal__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.profile-modal__field:focus-within .profile-modal__label {
    transform: translateY(0);
}
.profile-modal__field.is-filled .profile-modal__label {
    transform: translateY(0);
}
.profile-modal__field:last-child {
    margin-bottom: 0;
}
.profile-modal__label {
    transition: all 0.3s ease;
    transform: translateY(calc(100% + 0.25rem));
    display: block;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-modal__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.profile-modal__input {
    width: 100%;
    height: 2.5rem;
    padding: 0 0 1.34rem 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: rgba(0, 0, 0, 0);
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-modal__input:focus {
    outline: none;
    border-bottom-color: #000;
}
.profile-modal__toggle-pass {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #767676;
    transition: color 0.2s ease;
}
.profile-modal__toggle-pass img {
    display: none;
}
.profile-modal__toggle-pass img:nth-child(2) {
    display: block;
}
.profile-modal__toggle-pass.is-visible img:nth-child(1) {
    display: block;
}
.profile-modal__toggle-pass.is-visible img:nth-child(2) {
    display: none;
}
.profile-modal__toggle-pass:hover {
    color: #000;
}
.profile-modal__desc {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-modal__desc span {
    color: var(--Black, #000);
}
.profile-modal__resend {
    margin-top: 1rem;
}
.profile-modal__resend-btn {
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0.035rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}
.profile-modal__resend-btn:hover {
    text-decoration: none;
}
.profile-modal__resend-text {
    color: var(--Gray-02, #767676);
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.profile-modal__footer .profile-modal__submit {
    width: 100%;
}
.profile-modal__submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
} /*# sourceMappingURL=profile.css.map */

.profile-sidebar__avatar {
    position: relative;
}
.profile-sidebar__avatar-edit {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition:
            background 0.2s,
            box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.profile-sidebar__avatar-edit svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #333;
}
.profile-sidebar__avatar-edit:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.profile-sidebar__avatar {
    overflow: visible;
}
.profile-sidebar__avatar img,
.profile-sidebar__avatar svg {
    border-radius: 50%;
}
.profile-sidebar__avatar-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 3;
}
.profile-sidebar__avatar-loader .spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: avatar-spin 0.6s linear infinite;
}
@keyframes avatar-spin {
    to {
        transform: rotate(360deg);
    }
}

/* All Clients table (appended) */
.profile-clients{margin-top:2rem;display:flex;flex-direction:column;gap:1rem}
.profile-clients__head{display:flex;align-items:center;gap:.75rem}
.profile-clients__heading{margin:0;font-size:1rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:black;}
.profile-clients__count{display:inline-flex;align-items:center;justify-content:center;min-width:1.75rem;height:1.5rem;padding:0 .5rem;border-radius:.75rem;background:#EBEBEB;color:#000;font-size:.75rem;font-weight:500}
.profile-clients__table-wrap{overflow-x:auto;border:1px solid #EBEBEB;border-radius:.5rem;background:#fff}
.profile-clients__table{width:100%;border-collapse:collapse;font-family:Roboto,sans-serif;font-size:.8125rem}
.profile-clients__table th,.profile-clients__table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid #F2F2F2;vertical-align:top;color:black;}
.profile-clients__table th{font-weight:500;text-transform:uppercase;letter-spacing:.04em;font-size:.6875rem;color:#767676;background:#FAFAFA}
.profile-clients__table tbody tr:last-child td{border-bottom:none}
.profile-clients__empty{padding:1.25rem 1rem;text-align:center;color:#767676;font-size:.8125rem;margin:0}

/* Clients table responsive: card layout on narrow screens */
@media (max-width: 768px) {
  .profile-clients__table-wrap{border:none;background:transparent;overflow-x:visible}
  .profile-clients__table{display:block;width:100%}
  .profile-clients__table thead{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
  .profile-clients__table tbody{display:flex;flex-direction:column;gap:.625rem}
  .profile-clients__table tr{display:block;border:1px solid #EBEBEB;border-radius:.5rem;background:#fff;padding:.5rem 0;box-shadow:0 1px 2px rgba(0,0,0,.03)}
  .profile-clients__table td{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;padding:.5rem 1rem;border-bottom:1px dashed #F2F2F2;text-align:right;word-break:break-word}
  .profile-clients__table td:last-child{border-bottom:none}
  .profile-clients__table td::before{content:attr(data-label);flex:0 0 auto;color:#767676;font-size:.6875rem;text-transform:uppercase;letter-spacing:.04em;font-weight:500;text-align:left;padding-top:.125rem}
  .profile-clients__table td:empty,.profile-clients__table td:not([data-label]){display:none}
  .profile-clients__head{flex-wrap:wrap}
}
@media (max-width: 480px) {
  .profile-clients__table td{padding:.5rem .75rem;font-size:.8125rem}
}
