@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg_color_1: #FFFFFF;
    --bg_color_2: #000000;
    --bg_color_3: #0F5C5C;
    --bg_color_4: #0B1F2A;
    --bg_color_5: #F8F9FA;
    --bg_color_6: #F1F3F5;
    --bg_color_7: #E5E7EB;
    --bg_color_8: #D1D5DB;
    --bg_color_9: #6B7280;
    --bg_color_10: #374151;
    --bg_color_11: rgba(11, 31, 42, 0.08);
    --bg_color_12: rgba(11, 31, 42, 0.10);
    --bg_color_13: rgba(255, 255, 255, 0.08);
    --bg_color_14: rgba(255, 255, 255, 0.12);
    --bg_color_15: rgba(255, 255, 255, 0.22);
    --bg_color_16: rgba(15, 92, 92, 0.08);
    --text_color_1: #FFFFFF;
    --text_color_2: #000000;
    --text_color_3: #0F5C5C;
    --text_color_4: #0B1F2A;
    --text_color_5: #6B7280;
    --text_color_6: #374151;
    --text_color_7: #D1D5DB;
    --font_manrope: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.ec-page {
    min-height: 100vh;
    color: var(--text_color_4);
    background: var(--bg_color_1);
    font-family: var(--font_manrope);
    font-size: 14px;
}

.ec-page a {
    text-decoration: none;
}

.ec-topbar {
    position: relative;
    z-index: 2;
    padding: 14px 0;
    color: var(--text_color_4);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
}

.ec-topbar .ec-topbar__brand {
    max-width: 220px;
    display: flex;
    align-items: center;
}

.ec-topbar .ec-topbar__brand img {
    width: 100%;
    max-height: 50px;
    min-height: 50px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.ec-topbar .ec-topbar__search-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-topbar .ec-topbar__search {
    display: flex;
    align-items: center;
    height: 45px;
    flex: 1 1 auto;
    gap: 10px;
    padding: 0 6px 0 14px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-topbar .ec-topbar__search:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_15);
}

.ec-topbar .ec-topbar__search>i {
    color: var(--text_color_5);
}

.ec-topbar .ec-topbar__search input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-topbar .ec-topbar__search input::placeholder {
    color: var(--text_color_5);
}

.ec-topbar .ec-topbar__search button {
    width: 34px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_1);
    border-radius: 8px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
    border: none;
}

.ec-topbar .ec-topbar__search button:hover {
    background: var(--bg_color_4);
}

.ec-topbar .ec-topbar__menu-toggle {
    width: 43px;
    height: 43px;
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-topbar .ec-topbar__menu-toggle:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_4);
    background: var(--bg_color_4);
}

.ec-topbar .ec-topbar__menu-toggle[aria-expanded="true"] {
    color: var(--text_color_1);
    border-color: var(--bg_color_4);
    background: var(--bg_color_4);
}

.ec-topbar .ec-topbar__account {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ec-topbar .ec-topbar__icon-button {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-topbar .ec-topbar__icon-button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-topbar .ec-topbar__icon-button span {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--bg_color_1);
    border-radius: 50%;
    background: var(--bg_color_3);
}

.ec-topbar .ec-topbar__profile:hover {
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-topbar .ec-topbar__profile.show {
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-topbar .ec-topbar__profile::after {
    margin-left: 2px;
    color: var(--text_color_5);
}

.ec-topbar .ec-topbar__avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_1);
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_3);
}

.ec-topbar .ec-topbar__profile-name-text {
    font-size: 13px;
    font-weight: 700;
}

.ec-topbar .ec-topbar__profile-role-text {
    margin-top: 4px;
    color: var(--text_color_5);
    font-size: 11px;
}

.ec-nav-dropdown {
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-account-dropdown {
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    min-width: 220px;
}

.ec-account-dropdown .dropdown-item {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-nav-dropdown .dropdown-item {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sort-menu .dropdown-item {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-account-dropdown .dropdown-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-account-dropdown .dropdown-item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-nav-dropdown .dropdown-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-nav-dropdown .dropdown-item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sort-menu .dropdown-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sort-menu .dropdown-item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sort-menu .dropdown-item.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-nav-dropdown .dropdown-item:hover i {
    color: var(--text_color_1);
}

.ec-nav-dropdown .dropdown-item:focus i {
    color: var(--text_color_1);
}

.ec-nav-dropdown .dropdown-item:hover::after {
    color: var(--text_color_1);
}

.ec-nav-dropdown .dropdown-item:focus::after {
    color: var(--text_color_1);
}

.ec-account-dropdown .dropdown-divider {
    border-color: var(--bg_color_7);
}

.ec-main-nav {
    position: relative;
    z-index: 1;
    overflow: visible;
    border-bottom: 1px solid var(--bg_color_14);
    background: var(--bg_color_3);
    box-shadow: 0 4px 16px var(--bg_color_11);
}

.ec-main-nav .container {
    overflow: visible;
}

.ec-main-nav .dropdown {
    overflow: visible;
}

.ec-main-nav .ec-main-nav__collapse {
    overflow: visible;
    display: block !important;
}

.ec-main-nav .ec-main-nav__menu {
    overflow: visible;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 6px 0;
}

.ec-main-nav .ec-main-nav__link {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: var(--text_color_1);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-main-nav .ec-main-nav__icon-link {
    width: 42px;
    padding: 0;
}

.ec-main-nav .ec-main-nav__icon-link::after {
    display: none;
}

.ec-main-nav .ec-header-search-menu {
    width: 320px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    box-shadow: 0 10px 28px var(--bg_color_11);
}

.ec-main-nav .ec-header-search-form {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 6px 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-main-nav .ec-header-search-form>i {
    color: var(--text_color_5);
}

.ec-main-nav .ec-header-search-form input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--font_manrope);
    font-size: 13px;
}

.ec-main-nav .ec-header-search-form button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_1);
    border: 0;
    border-radius: 7px;
    background: var(--bg_color_3);
}

.ec-main-nav .ec-header-location-dropdown .ec-main-nav__link {
    white-space: nowrap;
}

.ec-main-nav .ec-header-location-menu {
    min-width: 180px;
}

.ec-main-nav .ec-header-location-option.ec-header-location-option--selected {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-main-nav .ec-main-nav__link:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_14);
    background: var(--bg_color_13);
}

.ec-main-nav .ec-main-nav__link.show {
    color: var(--text_color_1);
    border-color: var(--bg_color_14);
    background: var(--bg_color_13);
}

.ec-main-nav .ec-main-nav__link--active {
    color: var(--text_color_3);
    border-color: var(--bg_color_1);
    background: var(--bg_color_1);
}

.ec-main-nav .ec-main-nav__link--active:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_1);
    background: var(--bg_color_1);
}

.ec-main-nav .ec-main-nav__link--active.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_1);
    background: var(--bg_color_1);
}

.ec-main-nav .ec-nav-dropdown {
    min-width: 220px;
    z-index: 1090;
    margin-top: 8px;
}

.ec-main-nav .ec-nav-dropdown.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-main-nav .ec-workspace-dropdown {
    min-width: 260px;
}

.ec-main-nav .ec-workspace-dropdown>li>.dropdown-item {
    display: flex;
    align-items: center;
}

.ec-main-nav .ec-nav-submenu {
    position: relative;
}

.ec-main-nav .ec-nav-submenu__toggle {
    width: 100%;
    justify-content: space-between;
    border: 0;
}

.ec-main-nav .ec-nav-submenu__toggle>span {
    flex: 1 1 auto;
    text-align: left;
}

.ec-main-nav .ec-nav-submenu__toggle>i {
    margin-left: 12px;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-main-nav .ec-nav-submenu__menu {
    top: -4px;
    left: calc(100% + 6px);
    min-width: 200px;
    margin: 0;
    padding: 4px;
    z-index: 1100;
    border: 1px solid var(--bg_color_7);
}

.ec-main-nav .ec-nav-submenu__menu.show {
    display: block;
}

.ec-dashboard {
    padding: 34px 0 70px;
}

.ec-dashboard .ec-dashboard__sidebar {
    display: flex;
    flex-direction: column;
}

.ec-dashboard .ec-dashboard__sidebar-column {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 20;
    scrollbar-width: thin;
    scrollbar-color: var(--bg_color_8) transparent;
}

.ec-dashboard .ec-dashboard__sidebar-column::-webkit-scrollbar {
    width: 5px;
}

.ec-dashboard .ec-dashboard__sidebar-column::-webkit-scrollbar-track {
    background: transparent;
}

.ec-dashboard .ec-dashboard__sidebar-column::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bg_color_8);
}

.ec-dashboard .ec-dashboard__sidebar--sticky {
    position: static;
    top: auto;
}

.ec-dashboard .ec-dashboard__sidebar-offcanvas-body {
    display: block;
    padding: 0;
    overflow: visible;
}

.ec-dashboard .ec-dashboard__sidebar-offcanvas-header {
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-dashboard .ec-dashboard__sidebar-offcanvas-header .offcanvas-title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-dashboard .ec-dashboard__sidebar-toggle {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 14px;
    color: var(--text_color_1);
    font-family: var(--font_manrope);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-dashboard .ec-dashboard__sidebar-toggle:hover,
.ec-dashboard .ec-dashboard__sidebar-toggle:focus {
    color: var(--text_color_1);
    border-color: var(--bg_color_4);
    background: var(--bg_color_4);
}

/* .ec-action-panel {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    overflow: hidden;
}

.ec-message-panel {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    overflow: hidden;
} */

.ec-action-panel .ec-action-panel__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-message-panel .ec-message-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-action-panel .ec-action-panel__heading-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-action-panel .ec-action-panel__heading h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-message-panel .ec-message-panel__header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-action-panel .ec-action-panel__list {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 0;
}

.ec-action-panel .ec-action-panel__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 7px 10px;
    color: var(--text_color_4);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: 0.2s ease;
}

.ec-action-panel .ec-action-panel__item:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-action-panel .ec-action-panel__item--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-action-panel .ec-action-panel__item--active:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-action-panel .ec-action-panel__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-action-panel .ec-action-panel__group-image {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-action-panel .ec-action-panel__group-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ec-action-panel .ec-action-panel__item--active .ec-action-panel__icon {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-action-panel .ec-action-panel__copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}

.ec-action-panel .ec-action-panel__copy-text {
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-action-panel .ec-action-panel__item>i {
    color: var(--text_color_5);
    font-size: 10px;
}

.ec-action-panel .ec-action-panel__item--active>i {
    color: var(--text_color_7);
}

.ec-message-panel .ec-message-panel__links a>i {
    color: var(--text_color_5);
    font-size: 10px;
}

.ec-message-panel .ec-message-panel__count {
    min-width: 24px !important;
    min-height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text_color_1) !important;
    font-size: 10px !important;
    border-radius: 8px !important;
    background: var(--bg_color_3) !important;
    flex: 0 !important;
}

.ec-groups-section {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: relative;
    min-width: 0;
    overflow: visible;
    padding: 26px;
}

.ec-groups-section .ec-groups-section__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4px 16px 0;
}

.ec-groups-section .ec-groups-section__summary span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text_color_6);
}

.ec-groups-section .ec-groups-section__summary span i {
    color: var(--text_color_3);
}

.ec-groups-section .ec-groups-section__summary a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text_color_3);
    font-weight: 700;
}

.ec-groups-section .ec-groups-section__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ec-groups-section .ec-groups-section__empty {
    display: none;
    padding: 50px 20px;
    text-align: center;
    border: 1px dashed var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-groups-section .ec-groups-section__empty>span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-groups-section .ec-groups-section__empty h2 {
    margin: 14px 0 5px;
    color: var(--text_color_4);
    font-size: 20px;
}

.ec-groups-section .ec-groups-section__empty p {
    margin: 0;
    color: var(--text_color_5);
}

.ec-group-card {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: relative;
    min-width: 0;
    overflow: visible;
    transition: 0.2s ease;
}

.ec-group-card:hover {
    border-color: var(--bg_color_8);
    box-shadow: 0 12px 30px var(--bg_color_11);
}

.ec-group-card .ec-group-card__media {
    position: relative;
    height: 100%;
    overflow: visible;
    border-radius: 10px 0 0 10px;
}

.ec-group-card .ec-group-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
}

.ec-group-card .ec-group-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border-radius: 0 10px 10px 0;
    background: var(--bg_color_1);
}

.ec-group-card .ec-group-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ec-group-card .ec-group-card__title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-group-card .ec-group-card__title-row h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
}


.ec-group-card .ec-group-card__title-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.ec-group-card .ec-group-card__title-link:hover h2 {
    color: var(--text_color_3);
}

.ec-group-card .ec-group-card__verified {
    color: var(--text_color_3);
}

.ec-group-card .ec-group-card__top p {
    max-width: 620px;
    margin: 9px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.65;
}

.ec-group-card .ec-group-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
    border-top: 1px solid var(--bg_color_7);
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-group-card .ec-group-card__creator {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ec-group-card .ec-group-card__avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_1);
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-group-card .ec-group-card__creator>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ec-group-card .ec-group-card__creator-label {
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-group-card .ec-group-card__creator-name {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-group-card .ec-group-card__numbers {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ec-group-card .ec-group-card__numbers span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text_color_6);
    font-size: 12px;
}

.ec-group-card .ec-group-card__numbers i {
    color: var(--text_color_3);
}

.ec-group-card .ec-group-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.ec-group-card .ec-group-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ec-group-card .ec-group-card__secondary-btn {
    display: flex;
    align-items: center;
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-group-card .ec-group-card__secondary-btn:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-message-panel .ec-message-panel__links {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}

.ec-message-panel .ec-message-panel__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s ease;
    min-height: 54px;
    gap: 12px;
    padding: 7px 10px;
    color: var(--text_color_4);
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
}

.ec-message-panel .ec-message-panel__links a:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-message-panel .ec-message-panel__links a>span {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    gap: 12px;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
}

.ec-message-panel .ec-message-panel__links a>span i {
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-message-panel .ec-message-panel__links a.ec-message-panel__item--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-message-panel .ec-message-panel__links a.ec-message-panel__item--active:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-message-panel .ec-message-panel__links a.ec-message-panel__item--active>span i {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-message-panel .ec-message-panel__links a.ec-message-panel__item--active>i {
    color: var(--text_color_7);
}

.ec-message-panel .ec-message-panel__links a.ec-message-panel__item--active>.ec-message-panel__count {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-topbar .ec-topbar__brand-column {
    min-width: 0;
}

.ec-topbar .ec-topbar__search-column {
    min-width: 0;
}

.ec-topbar .ec-topbar__account-column {
    min-width: 0;
}

.ec-topbar .ec-topbar__profile {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    white-space: nowrap;
}

.ec-topbar .ec-topbar__profile-copy {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
    min-width: 0;
}

.ec-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: var(--bg_color_1);
}

.ec-site-header .ec-topbar {
    width: 100%;
}

.ec-site-header .ec-main-nav {
    width: 100%;
}

.ec-referral-tabs {
    margin-bottom: 20px;
}

.ec-referral-tabs .ec-referral-tabs__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid var(--bg_color_7);
    scrollbar-width: thin;
}

.ec-referral-tabs .ec-referral-tabs__button {
    min-height: 46px;
    flex: 0 0 auto;
    padding: 10px 18px;
    color: var(--text_color_5);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: transparent;
}

.ec-referral-tabs .ec-referral-tabs__button:hover,
.ec-referral-tabs .ec-referral-tabs__button:focus {
    color: var(--text_color_3);
    border-color: transparent transparent var(--bg_color_8);
}

.ec-referral-tabs .ec-referral-tabs__button.active {
    color: var(--text_color_3);
    border-color: transparent transparent var(--bg_color_3);
    background: transparent;
}

.ec-referral-tabs__content>.tab-pane:focus {
    outline: none;
}

.ec-referral-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-referral-section .ec-referral-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-referral-section .ec-referral-section__header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
}

.ec-referral-section .ec-referral-section__header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-referral-section .ec-referral-section__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-referral-section .ec-referral-section__notice-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-referral-section .ec-referral-section__notice strong {
    color: var(--text_color_4);
    font-size: 13px;
}

.ec-referral-section .ec-referral-section__notice p {
    margin: 4px 0 0;
    color: var(--text_color_6);
    font-size: 12px;
    line-height: 1.65;
}

.ec-referral-form {
    margin-top: 20px;
}

.ec-referral-form .ec-referral-form__block {
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-referral-form .ec-referral-form__block+.ec-referral-form__block {
    margin-top: 16px;
}

.ec-referral-form .ec-referral-form__block-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.ec-referral-form .ec-referral-form__block-header>span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-referral-form .ec-referral-form__block-header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-referral-form .ec-referral-form__block-header p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-referral-form .ec-referral-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-referral-form .ec-referral-form__label em {
    color: var(--text_color_3);
    font-style: normal;
}

.ec-referral-form .ec-referral-form__control {
    display: flex;
    align-items: center;
    min-height: 46px;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__control>i {
    color: var(--text_color_3);
}

.ec-referral-form .ec-referral-form__control>i:last-child {
    color: var(--text_color_5);
    font-size: 10px;
}

.ec-referral-form .ec-referral-form__control input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-referral-form .ec-referral-form__control select {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
    appearance: none;
}

.ec-referral-form .ec-referral-form__control input::placeholder {
    color: var(--text_color_5);
}

.ec-referral-form .ec-referral-form__textarea::placeholder {
    color: var(--text_color_5);
}

.ec-referral-form .ec-referral-form__fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.ec-referral-form .ec-referral-form__fieldset+.ec-referral-form__fieldset {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-referral-form .ec-referral-form__fieldset legend {
    margin-bottom: 12px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-referral-form .ec-referral-form__choice-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.ec-referral-form .ec-referral-form__choice {
    display: flex;
    position: relative;
    align-items: center;
    flex: 1 1 50%;
    gap: 11px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__choice:has(input:checked) {
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-referral-form .ec-referral-form__instruction input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-referral-form .ec-referral-form__choice-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-referral-form .ec-referral-form__choice>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-referral-form .ec-referral-form__choice strong {
    color: var(--text_color_4);
    font-size: 13px;
}

.ec-referral-form .ec-referral-form__instruction {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    min-height: 48px;
    padding: 9px 11px;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__instruction:has(input:checked) {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__instruction>span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_6);
}

.ec-referral-form .ec-referral-form__instruction:has(input:checked)>span {
    background: var(--bg_color_1);
}

.ec-referral-form .ec-referral-form__instruction strong {
    color: inherit;
    font-size: 12px;
}

.ec-referral-form .ec-referral-form__textarea {
    width: 100%;
    min-height: 130px;
    padding: 12px;
    resize: vertical;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    outline: 0;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__textarea:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__success {
    align-items: center;
    display: none;
    gap: 9px;
    margin-top: 16px;
    padding: 12px 14px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__success.show {
    display: flex;
}

.ec-referral-form .ec-referral-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-referral-form .ec-referral-form__cancel {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-referral-form .ec-referral-form__cancel:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-referral-form .ec-referral-form__recipient-dropdown {
    position: relative;
    width: 100%;
}

.ec-referral-form .ec-referral-form__recipient-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    color: var(--text_color_4);
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__recipient-button:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__recipient-button:focus {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__recipient-button.show {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__recipient-button.is-invalid {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referral-form .ec-referral-form__recipient-button>i {
    width: 20px;
    flex: 0 0 20px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-referral-form .ec-referral-form__recipient-button>span {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-referral-form .ec-referral-form__recipient-button::after {
    margin-left: auto;
    color: var(--text_color_5);
}

.ec-referral-form .ec-referral-form__recipient-menu {
    width: 100%;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
    z-index: 10;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-referral-form .ec-referral-form__recipient-menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-referral-form .ec-referral-form__recipient-option {
    min-height: 42px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 9px 11px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referral-form .ec-referral-form__recipient-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__recipient-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__recipient-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referral-form .ec-referral-form__recipient-error {
    display: none;
    margin-top: 7px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 600;
}

.ec-referral-form .ec-referral-form__recipient-error.show {
    display: block;
}

.ec-topbar .ec-topbar__profile-name {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-topbar .ec-topbar__profile-role {
    margin-top: 4px;
    color: var(--text_color_5);
    font-size: 11px;
}

.ec-referrals-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-referrals-section .ec-referrals-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-referrals-section .ec-referrals-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-referrals-section .ec-referrals-section__export {
    flex: 0 0 auto;
}

.ec-referrals-section .ec-referrals-section__export-button {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 9px;
    padding: 0 15px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-section .ec-referrals-section__export-button:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-section .ec-referrals-section__export-button.show {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-section .ec-referrals-section__export-menu {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-referrals-section .ec-referrals-section__export-option {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-filter .ec-referrals-filter__status-option {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-pagination .ec-referrals-pagination__size-option {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-section .ec-referrals-section__export-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-section .ec-referrals-section__export-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-filter .ec-referrals-filter__status-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-filter .ec-referrals-filter__status-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-filter .ec-referrals-filter__status-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__size-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__size-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__size-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-referrals-filter {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-referrals-filter .ec-referrals-filter__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-referrals-filter .ec-referrals-filter__heading {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ec-referrals-filter .ec-referrals-filter__heading-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-referrals-filter .ec-referrals-filter__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-referrals-filter .ec-referrals-filter__description {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-referrals-filter .ec-referrals-filter__clear {
    display: flex;
    align-items: center;
    min-height: 38px;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-filter .ec-referrals-filter__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-referrals-filter .ec-referrals-filter__label {
    display: block;
    margin-bottom: 7px;
}

.ec-referrals-filter .ec-referrals-filter__label-text {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-referrals-filter .ec-referrals-filter__control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-filter .ec-referrals-filter__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referrals-filter .ec-referrals-filter__control i {
    color: var(--text_color_3);
}

.ec-referrals-filter .ec-referrals-filter__status-button i {
    color: var(--text_color_3);
}

.ec-referrals-filter .ec-referrals-filter__control input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-referrals-filter .ec-referrals-filter__control input::placeholder {
    color: var(--text_color_5);
}

.ec-referrals-filter .ec-referrals-filter__control input[type="date"] {
    min-height: 44px;
}

.ec-referrals-filter .ec-referrals-filter__date-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
}

.ec-referrals-filter .ec-referrals-filter__date-row .ec-referrals-filter__control {
    min-width: 0;
    flex: 1 1 0;
}

.ec-referrals-filter .ec-referrals-filter__date-separator {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
}

.ec-referrals-filter .ec-referrals-filter__status-dropdown {
    width: 100%;
}

.ec-referrals-filter .ec-referrals-filter__status-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    color: var(--text_color_4);
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-filter .ec-referrals-filter__status-button:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referrals-filter .ec-referrals-filter__status-button:focus {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referrals-filter .ec-referrals-filter__status-button.show {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-referrals-filter .ec-referrals-filter__status-button-content {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.ec-referrals-filter .ec-referrals-filter__status-label {
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-referrals-filter .ec-referrals-filter__status-button::after {
    margin-left: auto;
    color: var(--text_color_5);
}

.ec-referrals-filter .ec-referrals-filter__status-menu {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    width: 100%;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
}

.ec-referrals-filter .ec-referrals-filter__status-menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-referrals-filter .ec-referrals-filter__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-referrals-filter .ec-referrals-filter__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    color: var(--text_color_1);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-referrals-filter .ec-referrals-filter__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-referrals-table {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-referrals-table .ec-referrals-table__head {
    min-height: 48px;
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-referrals-table .ec-referrals-table__head-cell {
    display: flex;
    align-items: center;
    padding: 12px 14px;
}

.ec-referrals-table .ec-referrals-table__head-cell--actions {
    justify-content: flex-end;
}

.ec-referrals-table .ec-referrals-table__head-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-referrals-table .ec-referrals-group+.ec-referrals-group {
    border-top: 10px solid var(--bg_color_6);
}

.ec-referrals-table .ec-referrals-group__header {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 14px;
    color: var(--text_color_1);
    text-align: left;
    background: var(--bg_color_3);
    border: none;
}

.ec-referrals-table .ec-referrals-group__title {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
}

.ec-referrals-table .ec-referrals-group__title i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-referrals-table .ec-referrals-group__title-text {
    font-size: 13px;
    font-weight: 700;
}

.ec-referrals-table .ec-referrals-group__header[aria-expanded="false"] .ec-referrals-group__title i {
    transform: rotate(-90deg);
}

.ec-referrals-table .ec-referrals-group__count {
    display: flex;
    align-items: center;
    min-height: 26px;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 9px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    border-radius: 7px;
    background: var(--bg_color_1);
}

.ec-referrals-table .ec-referrals-row {
    min-height: 58px;
    background: var(--bg_color_1);
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-referrals-table .ec-referrals-row:nth-child(even) {
    background: var(--bg_color_5);
}

.ec-referrals-table .ec-referrals-cell {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 11px 14px;
}

.ec-referrals-table .ec-referrals-cell__label {
    display: none;
    margin: 0 0 4px;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ec-referrals-table .ec-referrals-cell__value {
    min-width: 0;
    color: var(--text_color_4);
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ec-referrals-table .ec-referrals-cell__value--amount {
    color: var(--text_color_3);
    font-weight: 700;
}

.ec-referrals-table .ec-referrals-cell--actions {
    justify-content: flex-end;
}

.ec-referrals-table .ec-referrals-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.ec-referrals-table .ec-referrals-actions__button {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-table .ec-referrals-actions__button:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-referrals-table .ec-referrals-group__total {
    display: flex;
    align-items: center;
    min-height: 43px;
    justify-content: flex-end;
    gap: 12px;
    padding: 8px 14px;
    color: var(--text_color_6);
    background: var(--bg_color_5);
}

.ec-referrals-table .ec-referrals-group__total-label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.ec-referrals-table .ec-referrals-group__total-value {
    min-width: 100px;
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.ec-referrals-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-referrals-pagination .ec-referrals-pagination__summary {
    margin: 0;
    color: var(--text_color_5);
    font-size: 13px;
    font-weight: 600;
}

.ec-referrals-pagination .ec-referrals-pagination__controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ec-referrals-pagination .ec-referrals-pagination__button {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-referrals-pagination .ec-referrals-pagination__button:hover:not(:disabled) {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__button--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.ec-referrals-pagination .ec-referrals-pagination__size-button {
    display: flex;
    align-items: center;
    min-height: 36px;
    gap: 5px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-referrals-pagination .ec-referrals-pagination__size-button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__size-button.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-referrals-pagination .ec-referrals-pagination__size-menu {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    min-width: 150px;
}

.ec-sent-referrals-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-sent-referrals-section .ec-sent-referrals-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-sent-referrals-section .ec-sent-referrals-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-sent-referrals-section .ec-sent-referrals-section__header-icon {
    display: flex;
    align-items: center;
    width: 42px;
    height: 42px;
    justify-content: center;
    flex: 0 0 42px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-sent-referrals-filter {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__heading {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__heading-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__description {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__clear {
    display: flex;
    align-items: center;
    min-height: 38px;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__label {
    display: block;
    margin-bottom: 7px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__label-text {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control i {
    color: var(--text_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button i {
    color: var(--text_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control input::placeholder {
    color: var(--text_color_5);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__control input[type="date"] {
    min-height: 44px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__date-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__date-row .ec-sent-referrals-filter__control {
    min-width: 0;
    flex: 1 1 0;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__date-separator {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-dropdown {
    width: 100%;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    color: var(--text_color_4);
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button:focus {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button.show {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button-content {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-label {
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-button::after {
    margin-left: auto;
    color: var(--text_color_5);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-menu {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    width: 100%;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-option {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-option {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__status-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-option:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    color: var(--text_color_1);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-sent-referrals-filter .ec-sent-referrals-filter__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-sent-referrals-table {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-sent-referrals-table .ec-sent-referrals-table__head {
    min-height: 50px;
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-sent-referrals-table .ec-sent-referrals-table__head-cell {
    display: flex;
    align-items: center;
    padding: 12px 13px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__head-cell--actions {
    justify-content: flex-end;
}

.ec-sent-referrals-table .ec-sent-referrals-table__head-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-sent-referrals-table .ec-sent-referrals-table__row {
    min-height: 68px;
    background: var(--bg_color_1);
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-sent-referrals-table .ec-sent-referrals-table__row:nth-child(even) {
    background: var(--bg_color_5);
}

.ec-sent-referrals-table .ec-sent-referrals-table__row.is-hidden {
    display: none;
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 11px 13px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell-label {
    display: none;
    margin: 0 0 4px;
    color: var(--text_color_5);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell-value {
    min-width: 0;
    color: var(--text_color_4);
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell-value--recipient {
    font-size: 13px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell-value--amount {
    color: var(--text_color_3);
    font-weight: 700;
}

.ec-sent-referrals-table .ec-sent-referrals-table__status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    border-radius: 7px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__status--new {
    color: var(--text_color_3);
    background: var(--bg_color_16);
}

.ec-sent-referrals-table .ec-sent-referrals-table__status--pending {
    color: #8A5A00;
    background: #FFF4D6;
}

.ec-sent-referrals-table .ec-sent-referrals-table__status--closed-won {
    color: #146C43;
    background: #DDF7E9;
}

.ec-sent-referrals-table .ec-sent-referrals-table__status--lost-opportunity {
    color: #9B2C2C;
    background: #FDE8E8;
}

.ec-sent-referrals-table .ec-sent-referrals-table__status--connection-not-referral {
    color: var(--text_color_6);
    background: var(--bg_color_6);
}

.ec-sent-referrals-table .ec-sent-referrals-table__cell--actions {
    justify-content: flex-end;
}

.ec-sent-referrals-table .ec-sent-referrals-table__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__action-button {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-referrals-table .ec-sent-referrals-table__action-button:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-sent-referrals-table .ec-sent-referrals-table__empty {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
    background: var(--bg_color_1);
}

.ec-sent-referrals-table .ec-sent-referrals-table__empty.show {
    display: flex;
}

.ec-sent-referrals-table .ec-sent-referrals-table__empty-icon {
    display: flex;
    align-items: center;
    width: 46px;
    height: 46px;
    justify-content: center;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-sent-referrals-table .ec-sent-referrals-table__empty-title {
    margin: 14px 0 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-sent-referrals-table .ec-sent-referrals-table__empty-text {
    margin: 5px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-sent-referrals-table .ec-sent-referrals-table__total {
    display: flex;
    align-items: center;
    min-height: 48px;
    justify-content: flex-end;
    gap: 14px;
    padding: 10px 14px;
    background: var(--bg_color_5);
}

.ec-sent-referrals-table .ec-sent-referrals-table__total-label {
    margin: 0;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
}

.ec-sent-referrals-table .ec-sent-referrals-table__total-value {
    min-width: 120px;
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.ec-sent-referrals-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__summary {
    margin: 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__button {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__button--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-button {
    display: flex;
    align-items: center;
    min-height: 36px;
    gap: 5px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-button.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-sent-referrals-pagination .ec-sent-referrals-pagination__size-menu {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    min-width: 150px;
}

.ec-pavement-page .ec-pavement-page__groups-card {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: sticky;
    top: 154px;
    overflow: hidden;
}

.ec-pavement-page .ec-pavement-page__groups-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-pavement-page .ec-pavement-page__groups-heading {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.ec-pavement-page .ec-pavement-page__groups-heading-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-page__groups-heading h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-page__groups-heading p {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 11px;
}

.ec-pavement-page .ec-pavement-page__groups-count {
    display: flex;
    align-items: center;
    min-width: 28px;
    min-height: 28px;
    justify-content: center;
    flex: 0 0 28px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-pavement-page .ec-pavement-page__groups-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.ec-pavement-page .ec-pavement-page__group-item {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
    padding: 10px;
    color: var(--text_color_4);
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-page__group-item:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-pavement-page .ec-pavement-page__group-item--active {
    color: var(--text_color_4);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-pavement-page .ec-pavement-page__group-logo {
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    justify-content: center;
    flex: 0 0 48px;
    flex-direction: column;
    color: var(--text_color_3);
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    overflow: hidden;
}

.ec-pavement-page .ec-pavement-page__group-logo strong {
    font-size: 14px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-page__group-logo small {
    max-width: 42px;
    margin-top: 4px;
    overflow: hidden;
    color: var(--text_color_5);
    font-size: 6px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-pavement-page .ec-pavement-page__group-content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}

.ec-pavement-page .ec-pavement-page__group-content>strong {
    max-width: 100%;
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-pavement-page .ec-pavement-page__group-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 10px;
}

.ec-pavement-page .ec-pavement-page__group-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text_color_5);
    font-size: 10px;
    font-weight: 600;
}

.ec-pavement-page .ec-pavement-page__group-stats i {
    color: var(--text_color_3);
    font-size: 9px;
}

.ec-pavement-page .ec-pavement-page__group-item>i {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 10px;
}

.ec-pavement-page .ec-pavement-page__view-groups {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border-top: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-page__view-groups:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-page__content-card {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    padding: 26px;
}

.ec-pavement-page .ec-pavement-page__page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-pavement-page .ec-pavement-page__eyebrow {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ec-pavement-page .ec-pavement-page__page-header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-pavement-page .ec-pavement-page__page-header p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.65;
}

.ec-pavement-page .ec-pavement-page__page-header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-form {
    margin-top: 20px;
}

.ec-pavement-page .ec-pavement-form__section {
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-pavement-page .ec-pavement-form__section+.ec-pavement-form__section {
    margin-top: 16px;
}

.ec-pavement-page .ec-pavement-form__section-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.ec-pavement-page .ec-pavement-form__section-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-pavement-page .ec-pavement-form__section-header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-form__section-header p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-pavement-page .ec-pavement-form__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ec-pavement-page .ec-pavement-form__option {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 0;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-form__option:hover {
    border-color: var(--bg_color_8);
    background: var(--bg_color_5);
}

.ec-pavement-page .ec-pavement-form__option:has(input:checked) {
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-pavement-page .ec-pavement-form__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-pavement-page .ec-pavement-form__radio {
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
    justify-content: center;
    flex: 0 0 20px;
    color: transparent;
    font-size: 9px;
    border: 1px solid var(--bg_color_8);
    border-radius: 50%;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-form__option:has(input:checked) .ec-pavement-form__radio {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-form__option-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-pavement-page .ec-pavement-form__option:has(input:checked) .ec-pavement-form__option-icon {
    background: var(--bg_color_1);
}

.ec-pavement-page .ec-pavement-form__option-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.ec-pavement-page .ec-pavement-form__option-copy strong {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-pavement-page .ec-pavement-form__option-copy small {
    color: var(--text_color_5);
    font-size: 11px;
    line-height: 1.45;
}

.ec-pavement-page .ec-pavement-form__points {
    display: flex;
    align-items: center;
    min-height: 30px;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 10px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_5);
}

.ec-pavement-page .ec-pavement-form__option:has(input:checked) .ec-pavement-form__points {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-form__label em {
    color: var(--text_color_3);
    font-style: normal;
}

.ec-pavement-page .ec-pavement-form__date-control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-form__date-control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-pavement-page .ec-pavement-form__date-control i {
    color: var(--text_color_3);
}

.ec-pavement-page .ec-pavement-form__date-control input {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-pavement-page .ec-pavement-form__points-summary {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-pavement-page .ec-pavement-form__points-summary.is-active {
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-pavement-page .ec-pavement-form__points-summary-icon {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-pavement-page .ec-pavement-form__points-summary-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
}

.ec-pavement-page .ec-pavement-form__points-summary-copy small {
    color: var(--text_color_5);
    font-size: 10px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-form__points-summary-copy strong {
    color: var(--text_color_3);
    font-size: 17px;
    font-weight: 700;
}

.ec-pavement-page .ec-pavement-form__success {
    display: none;
    align-items: flex-start;
    gap: 11px;
    margin-top: 16px;
    padding: 14px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_16);
}

.ec-pavement-page .ec-pavement-form__success.show {
    display: flex;
}

.ec-pavement-page .ec-pavement-form__success>i {
    margin-top: 2px;
}

.ec-pavement-page .ec-pavement-form__success div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-pavement-page .ec-pavement-form__success strong {
    color: var(--text_color_4);
    font-size: 13px;
}

.ec-pavement-page .ec-pavement-form__success span {
    color: var(--text_color_6);
    font-size: 11px;
}

.ec-pavement-page .ec-pavement-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-pavement-page .ec-pavement-form__reset {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-pavement-page .ec-pavement-form__reset:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-form__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-pavement-page .ec-pavement-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-connection-page__content-card {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-connection-form__section-icon {
    display: flex;
    align-items: center;
}

.ec-connection-preview__member-card {
    display: flex;
    align-items: center;
}

.ec-connection-preview__member-icon {
    display: flex;
    align-items: center;
}

.ec-connection-preview__email-footer {
    display: flex;
    align-items: center;
}

.ec-connection-page__page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-connection-page__page-header-copy {
    min-width: 0;
}

.ec-connection-page__page-header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-connection-page__page-header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-connection-page__intro {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-connection-page__intro-icon {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_1);
}

.ec-connection-page__intro p {
    margin: 0;
    color: var(--text_color_6);
    font-size: 12px;
    line-height: 1.75;
}

.ec-connection-form {
    margin-top: 20px;
}

.ec-connection-form__section {
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-connection-form__section+.ec-connection-form__section {
    margin-top: 16px;
}

.ec-connection-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-connection-form__label em {
    color: var(--text_color_3);
    font-style: normal;
}

.ec-connection-form__control {
    display: flex;
    align-items: center;
    min-height: 48px;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-connection-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__control.is-invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ec-connection-form__control i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-connection-form__control input {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-connection-form__control input::placeholder {
    color: var(--text_color_5);
}

.ec-connection-form__textarea-wrap textarea::placeholder {
    color: var(--text_color_5);
}

.ec-connection-form__recipient-search-wrap input::placeholder {
    color: var(--text_color_5);
}

.ec-connection-form__textarea-wrap {
    position: relative;
}

.ec-connection-form__textarea-wrap textarea {
    width: 100%;
    min-height: 128px;
    padding: 13px 13px 32px;
    resize: vertical;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    outline: 0;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-connection-form__textarea-wrap textarea:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__textarea-wrap>span {
    position: absolute;
    right: 12px;
    bottom: 9px;
    color: var(--text_color_5);
    font-size: 10px;
    font-weight: 600;
}

.ec-connection-form__textarea-wrap>span strong {
    color: var(--text_color_3);
}

.ec-connection-form__error {
    display: none;
    margin-top: 6px;
    color: #B42318;
    font-size: 10px;
    font-weight: 700;
}

.ec-connection-form__error.show {
    display: block;
}

.ec-connection-form__recipient-dropdown {
    position: relative;
    width: 100%;
}

.ec-connection-form__recipient-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    gap: 12px;
    padding: 0 14px;
    color: var(--text_color_4);
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-connection-form__recipient-button:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__recipient-button:focus {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__recipient-button.show {
    color: var(--text_color_4);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__recipient-button.is-invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ec-connection-form__recipient-button>i {
    width: 20px;
    flex: 0 0 20px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-connection-form__recipient-button>span {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-connection-form__recipient-button::after {
    margin-left: auto;
    color: var(--text_color_5);
}

.ec-connection-form__recipient-menu {
    width: 100%;
    min-width: 100%;
    z-index: 1110;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-connection-form__recipient-menu.show {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ec-connection-form__recipient-search-wrap {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 9px;
    padding: 0 10px;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_5);
}

.ec-connection-form__recipient-search-wrap:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-connection-form__recipient-search-wrap>i {
    color: var(--text_color_3);
}

.ec-connection-form__recipient-search-wrap input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-connection-form__recipient-search-wrap button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    color: var(--text_color_5);
    border-radius: 7px;
    background: transparent;
    border: none;
}

.ec-connection-form__recipient-search-wrap button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-connection-form__recipient-results {
    max-height: 280px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.ec-connection-form__recipient-option {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    color: var(--text_color_4);
    text-align: left;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    border: none;
}

.ec-connection-form__recipient-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-connection-form__recipient-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-connection-form__recipient-option>i {
    width: 18px;
    margin-top: 3px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-connection-form__recipient-option:hover>i {
    color: var(--text_color_1);
}

.ec-connection-form__recipient-option.active>i {
    color: var(--text_color_1);
}

.ec-connection-form__recipient-option>span {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.ec-connection-form__recipient-option strong {
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-connection-form__recipient-option small {
    color: var(--text_color_5);
    font-size: 10px;
    overflow-wrap: anywhere;
}

.ec-connection-form__recipient-option:hover small {
    color: var(--text_color_7);
}

.ec-connection-form__recipient-option.active small {
    color: var(--text_color_7);
}

.ec-connection-form__recipient-empty {
    padding: 24px 12px;
    color: var(--text_color_5);
    font-size: 12px;
    text-align: center;
}

.ec-connection-form__recipient-summary {
    margin: 0;
    padding: 2px 3px 0;
    color: var(--text_color_5);
    font-size: 10px;
}

.ec-connection-preview__tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px;
    overflow-x: auto;
    border-radius: 10px;
    scrollbar-width: none;
    width: fit-content;
}

.ec-connection-preview__tabs::-webkit-scrollbar {
    display: none;
}

.ec-connection-preview__tab {
    display: flex;
    align-items: center;
    min-height: 40px;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 14px;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-connection-preview__tab:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-connection-preview__tab--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-connection-preview__tab--active:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-connection-preview__panel {
    display: none;
}

.ec-connection-preview__panel--active {
    display: block;
}

.ec-connection-preview__email {
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-connection-preview__email-banner {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    gap: 24px;
    min-height: 128px;
    padding: 24px;
    overflow: hidden;
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-connection-preview__email-banner::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -115px;
    left: 24%;
    width: 340px;
    height: 250px;
    transform: rotate(-14deg);
}

.ec-connection-preview__email-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    right: -60px;
    bottom: -150px;
    width: 300px;
    height: 250px;
    border-color: rgba(15, 92, 92, 0.8);
}

.ec-connection-preview__brand {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    flex-direction: column;
    flex: 0 0 auto;
    line-height: 1;
}

.ec-connection-preview__brand strong {
    color: #4EA5E8;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -3px;
}

.ec-connection-preview__brand span {
    margin-top: 6px;
    color: var(--text_color_1);
    font-size: 9px;
    letter-spacing: 1.4px;
}

.ec-connection-preview__brand b {
    color: #4EA5E8;
}

.ec-connection-preview__banner-copy {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    flex: 1 1 auto;
    flex-direction: column;
    text-align: center;
}

.ec-connection-preview__banner-copy span {
    font-size: 16px;
    font-weight: 700;
}

.ec-connection-preview__banner-copy small {
    margin-top: 5px;
    color: var(--text_color_7);
    font-size: 10px;
}

.ec-connection-preview__socials {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    width: 86px;
    flex: 0 0 86px;
}

.ec-connection-preview__socials span {
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    justify-content: center;
    color: var(--text_color_4);
    font-size: 11px;
    border-radius: 50%;
    background: var(--bg_color_1);
}

.ec-connection-preview__email-body {
    margin: 0 auto;
}

.ec-connection-preview__email-body p {
    margin: 0 0 14px;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.7;
}

.ec-connection-preview__email-body p strong {
    color: var(--text_color_4);
}

.ec-connection-preview__details {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 18px;
}

.ec-connection-preview__detail {
    display: flex;
    min-width: calc(50% - 5px);
    align-items: flex-start;
    flex: 1 1 calc(50% - 5px);
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
}

.ec-connection-preview__detail span {
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ec-connection-preview__detail strong {
    max-width: 100%;
    color: var(--text_color_4);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.ec-connection-preview__signature {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0 !important;
}

.ec-connection-preview__signature span {
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-connection-form__success {
    display: none;
    align-items: flex-start;
    gap: 11px;
    margin-top: 16px;
    padding: 14px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_16);
}

.ec-connection-form__success.show {
    display: flex;
}

.ec-connection-form__success>i {
    margin-top: 2px;
}

.ec-connection-form__success>div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-connection-form__success strong {
    color: var(--text_color_4);
    font-size: 13px;
}

.ec-connection-form__success span {
    color: var(--text_color_6);
    font-size: 11px;
}

.ec-connection-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-connection-form__reset {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-connection-form__reset:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-connection-form__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-connection-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-connection-preview__email-image {
    width: 100%;
    display: block;
    overflow: hidden;
    background: var(--bg_color_4);
}

.ec-connection-preview__email-image img {
    width: 100%;
    height: auto;
    min-height: 92px;
    max-height: 180px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.ec-connection-form__recipient-option[hidden] {
    display: none !important;
}

.ec-sent-connections-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-sent-connections-section .ec-sent-connections-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-sent-connections-section .ec-sent-connections-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-sent-connections-section .ec-sent-connections-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-sent-connections-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button {
    display: flex;
    align-items: center;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button--primary {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button--primary:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_4);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__clear {
    display: flex;
    align-items: center;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    color: var(--text_color_3);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu {
    min-width: 220px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu>li {
    width: 100%;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu .dropdown-item {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu .dropdown-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__menu .dropdown-item.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-connections-filter {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-sent-connections-filter .ec-sent-connections-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-sent-connections-filter .ec-sent-connections-filter__heading {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ec-sent-connections-filter .ec-sent-connections-filter__heading-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-sent-connections-filter .ec-sent-connections-filter__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-sent-connections-filter .ec-sent-connections-filter__description {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-sent-connections-filter .ec-sent-connections-filter__label {
    display: block;
    margin-bottom: 7px;
}

.ec-sent-connections-filter .ec-sent-connections-filter__label-text {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-sent-connections-filter .ec-sent-connections-filter__date-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
}

.ec-sent-connections-filter .ec-sent-connections-filter__date-caption {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
}

.ec-sent-connections-filter .ec-sent-connections-filter__date-separator {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
}

.ec-sent-connections-filter .ec-sent-connections-filter__control {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 46px;
    flex: 1 1 0;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-sent-connections-filter .ec-sent-connections-filter__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-sent-connections-filter .ec-sent-connections-filter__control i {
    color: var(--text_color_3);
}

.ec-sent-connections-filter .ec-sent-connections-filter__control input {
    min-width: 0;
    min-height: 44px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-sent-connections-filter .ec-sent-connections-filter__error {
    display: none;
    margin: 8px 0 0;
    color: #B42318;
    font-size: 11px;
    font-weight: 700;
}

.ec-sent-connections-filter .ec-sent-connections-filter__error.show {
    display: block;
}

.ec-sent-connections-filter .ec-sent-connections-filter__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ec-sent-connections-filter .ec-sent-connections-filter__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: var(--text_color_1);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-sent-connections-filter .ec-sent-connections-filter__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-sent-connections-table {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-sent-connections-table .ec-sent-connections-table__head {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-sent-connections-table .ec-sent-connections-table__column {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 54px;
    padding: 11px 10px;
}

.ec-sent-connections-table .ec-sent-connections-table__column span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-sent-connections-table .ec-sent-connections-table__column--id {
    flex: 0 0 5%;
    max-width: 5%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--date {
    flex: 0 0 12%;
    max-width: 12%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--recipient {
    flex: 0 0 15%;
    max-width: 15%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--name {
    flex: 0 0 10%;
    max-width: 10%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--phone {
    flex: 0 0 13%;
    max-width: 13%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--email {
    flex: 0 0 17%;
    max-width: 17%;
}

.ec-sent-connections-table .ec-sent-connections-table__column--creator {
    flex: 1 1 auto;
    max-width: none;
}

.ec-sent-connections-table .ec-sent-connections-table__body {
    min-height: 190px;
}

.ec-sent-connections-table .ec-sent-connections-table__empty {
    display: flex;
    align-items: center;
    min-height: 190px;
    justify-content: center;
    flex-direction: column;
    padding: 34px 20px;
    text-align: center;
    background: var(--bg_color_1);
}

.ec-sent-connections-table .ec-sent-connections-table__empty-icon {
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    justify-content: center;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-sent-connections-table .ec-sent-connections-table__empty h2 {
    margin: 14px 0 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-sent-connections-table .ec-sent-connections-table__empty p {
    margin: 5px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-sent-connections-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__summary {
    margin: 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__button {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    border: none;
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__button--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-button {
    display: flex;
    align-items: center;
    min-height: 36px;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--bg_color_1);
    border: none;
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-button.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-menu {
    min-width: 160px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-option {
    min-height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-connections-pagination .ec-sent-connections-pagination__size-option.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-sent-connections-page .ec-sent-connections-table {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-sent-connections-page .ec-sent-connections-table__scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ec-sent-connections-page .ec-sent-connections-table__table {
    width: 100%;
    min-width: 1180px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.ec-sent-connections-page .ec-sent-connections-table__table thead {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-sent-connections-page .ec-sent-connections-table__table th {
    padding: 14px 12px;
    vertical-align: middle;
    text-align: left;
    border-bottom: 1px solid var(--bg_color_7);
    color: var(--text_color_1);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.ec-sent-connections-page .ec-sent-connections-table__table td {
    padding: 14px 12px;
    vertical-align: middle;
    text-align: left;
    border-bottom: 1px solid var(--bg_color_7);
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: anywhere;
    background: var(--bg_color_1);
}

.ec-sent-connections-page .ec-sent-connections-table__table tbody tr:nth-child(even) td {
    background: var(--bg_color_5);
}

.ec-sent-connections-page .ec-sent-connections-table__table tbody tr:hover td {
    background: var(--bg_color_16);
}

.ec-sent-connections-page .ec-sent-connections-table__table tbody tr:last-child td {
    border-bottom: 0;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(1) {
    width: 64px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(1) {
    width: 64px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(2) {
    width: 165px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(2) {
    width: 165px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(3) {
    width: 175px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(3) {
    width: 175px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(4) {
    width: 120px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(4) {
    width: 120px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(5) {
    width: 120px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(5) {
    width: 120px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(6) {
    width: 155px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(6) {
    width: 155px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(7) {
    width: 220px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(7) {
    width: 220px;
}

.ec-sent-connections-page .ec-sent-connections-table__table th:nth-child(8) {
    width: 170px;
}

.ec-sent-connections-page .ec-sent-connections-table__table td:nth-child(8) {
    width: 170px;
}

.ec-group-roster-page .ec-group-roster-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-group-roster-page .ec-group-roster-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-group-roster-page .ec-group-roster-section__list+.ec-group-roster-section__header {
    padding-top: 18px;
}

.ec-group-roster-page .ec-group-roster-section__heading-copy {
    min-width: 0;
}

.ec-group-roster-page .ec-group-roster-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-group-roster-page .ec-group-roster-section__header-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.ec-group-roster-page .ec-group-roster-section__count {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-group-roster-page .ec-group-roster-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-group-roster-page .ec-group-roster-section__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.ec-group-roster-page .ec-roster-member-card {
    display: flex;
    position: relative;
    min-width: 0;
    align-items: stretch;
    gap: 22px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-group-roster-page .ec-roster-member-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bg_color_3);
    opacity: 0;
    transition: 0.2s ease;
}

.ec-group-roster-page .ec-roster-member-card__photo-wrap {
    display: flex;
    align-items: center;
    width: auto;
    min-height: auto;
    justify-content: center;
    flex: 0 0 auto;
    align-self: flex-start;
}

.ec-group-roster-page .ec-roster-member-card__photo {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--bg_color_1);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--bg_color_8), 0 8px 22px var(--bg_color_12);
}

.ec-group-roster-page .ec-roster-member-card__content {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex: 1 1 auto;
}

.ec-group-roster-page .ec-roster-member-card__content-row {
    width: 100%;
    align-items: flex-start;
    --bs-gutter-x: 18px;
    --bs-gutter-y: 14px;
}

.ec-group-roster-page .ec-roster-member-card__main-column {
    min-width: 0;
}

.ec-group-roster-page .ec-roster-member-card__footer-column {
    display: flex;
    justify-content: flex-end;
}

.ec-group-roster-page .ec-roster-member-card__main {
    min-width: 0;
    border-radius: 10px;
}

.ec-group-roster-page .ec-roster-member-card__identity {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.ec-group-roster-page .ec-roster-member-card__category {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 26px;
    padding: 4px 8px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
    border-radius: 7px;
    background: var(--bg_color_16);
}

.ec-group-roster-page .ec-roster-member-card__name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-group-roster-page .ec-roster-member-card__name a {
    display: inline;
    color: var(--text_color_4);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: 0.2s ease;
}

.ec-group-roster-page .ec-roster-member-card__name a:hover {
    color: var(--text_color_3);
    text-decoration: underline;
}

.ec-group-roster-page .ec-roster-member-card__name a:focus {
    color: var(--text_color_3);
    text-decoration: underline;
}

.ec-group-roster-page .ec-roster-member-card__business {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.ec-group-roster-page .ec-roster-member-card__business strong {
    color: var(--text_color_4);
    font-weight: 700;
}

.ec-group-roster-page .ec-roster-member-card__role {
    margin: 6px 0 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.ec-group-roster-page .ec-roster-member-card__contacts {
    display: flex;
    min-width: 0;
    align-items: stretch;
    --bs-gutter-x: 9px;
    --bs-gutter-y: 9px;
}

.ec-group-roster-page .ec-roster-member-card__contact-column {
    display: flex;
}

.ec-group-roster-page .ec-roster-member-card__contact {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    gap: 9px;
    padding: 10px;
    color: var(--text_color_4);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-group-roster-page .ec-roster-member-card__contact:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-group-roster-page .ec-roster-member-card__contact-icon {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_6);
}

.ec-group-roster-page .ec-roster-member-card__contact>span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ec-group-roster-page .ec-roster-member-card__contact small {
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.ec-group-roster-page .ec-roster-member-card__contact strong {
    max-width: 100%;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ec-group-roster-page .ec-roster-member-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: start;
}

.ec-group-roster-page .ec-roster-member-card__minute-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text_color_4);
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 0;
    transition: 0.2s ease;
    border-bottom: 1.8px solid var(--bg_color_4);
}

.ec-group-roster-page .ec-roster-member-card__minute-button:hover {
    color: var(--text_color_3);
    border-color: var(--text_color_3);
}

.ec-group-roster-page .ec-roster-member-card__minute-button:focus {
    color: var(--text_color_3);
    border-color: var(--text_color_3);
}

.ec-member-scoreboard-page .ec-member-scoreboard-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-member-scoreboard-page .ec-member-scoreboard-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-scoreboard-page .ec-member-scoreboard-section__heading-copy {
    min-width: 0;
}

.ec-member-scoreboard-page .ec-member-scoreboard-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-member-scoreboard-page .ec-member-scoreboard-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-member-scoreboard-page .ec-member-scoreboard-section__groups {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.ec-member-scoreboard-page .ec-scoreboard-group {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    color: var(--text_color_4);
    text-align: left;
    border: none;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle:hover {
    color: var(--text_color_3);
    background: var(--bg_color_6);
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle:focus {
    color: var(--text_color_3);
    background: var(--bg_color_6);
}

.ec-member-scoreboard-page .ec-scoreboard-group__title {
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 11px;
}

.ec-member-scoreboard-page .ec-scoreboard-group__count {
    display: flex;
    align-items: center;
    min-height: 26px;
    justify-content: center;
    padding: 0 9px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid var(--bg_color_7);
    border-radius: 7px;
    background: var(--bg_color_1);
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle i {
    color: var(--text_color_5);
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-member-scoreboard-page .ec-scoreboard-group__toggle[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.ec-member-scoreboard-page .ec-scoreboard-group__body {
    padding: 0 10px 10px;
}

.ec-member-scoreboard-page .ec-scoreboard-table-head {
    min-height: 48px;
    margin: 0;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-scoreboard-page .ec-scoreboard-table-head__cell {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px 12px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-member-scoreboard-page .ec-scoreboard-table-head__cell--rank {
    justify-content: center;
}

.ec-member-scoreboard-page .ec-scoreboard-table-head__cell--score {
    justify-content: flex-end;
    text-align: right;
}

.ec-member-scoreboard-page .ec-scoreboard-group__rows {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.ec-member-scoreboard-page .ec-scoreboard-row {
    min-height: 68px;
    margin: 0;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-scoreboard-page .ec-scoreboard-row:nth-child(even) {
    background: var(--bg_color_5);
}

.ec-member-scoreboard-page .ec-scoreboard-row:last-child {
    border-bottom: 0;
}

.ec-member-scoreboard-page .ec-scoreboard-row:hover {
    background: var(--bg_color_16);
}

.ec-member-scoreboard-page .ec-scoreboard-cell {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 9px 12px;
}

.ec-member-scoreboard-page .ec-scoreboard-cell__label {
    display: none;
    margin-bottom: 5px;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ec-member-scoreboard-page .ec-scoreboard-cell--rank {
    justify-content: center;
}

.ec-member-scoreboard-page .ec-scoreboard-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.ec-member-scoreboard-page .ec-scoreboard-rank strong {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-member-scoreboard-page .ec-scoreboard-rank__crown {
    display: flex;
    align-items: center;
    width: 21px;
    height: 21px;
    justify-content: center;
    color: #D99A00;
    font-size: 11px;
    border-radius: 6px;
    background: #FFF3C4;
}

.ec-member-scoreboard-page .ec-scoreboard-member {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.ec-member-scoreboard-page .ec-scoreboard-member__avatar {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    overflow: hidden;
    border: 1px solid var(--bg_color_8);
    border-radius: 50%;
    background: var(--bg_color_6);
}

.ec-member-scoreboard-page .ec-scoreboard-member__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ec-member-scoreboard-page .ec-scoreboard-member__copy {
    display: flex;
    min-width: 0;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.ec-member-scoreboard-page .ec-scoreboard-member__category {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
    color: var(--text_color_3);
}

.ec-member-scoreboard-page .ec-scoreboard-member__name {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: 0.2s ease;
}

.ec-member-scoreboard-page .ec-scoreboard-member__name:hover {
    color: var(--text_color_3);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ec-member-scoreboard-page .ec-scoreboard-member__name:focus {
    color: var(--text_color_3);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ec-member-scoreboard-page .ec-scoreboard-badge {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
}

.ec-member-scoreboard-page .ec-scoreboard-badge__image {
    display: flex;
    align-items: center;
    width: 54px;
    height: 45px;
    justify-content: center;
    flex: 0 0 54px;
}

.ec-member-scoreboard-page .ec-scoreboard-badge__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ec-member-scoreboard-page .ec-scoreboard-badge__name {
    min-width: 0;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.ec-member-scoreboard-page .ec-scoreboard-cell--score {
    justify-content: flex-end;
    text-align: right;
}

.ec-member-scoreboard-page .ec-scoreboard-score {
    color: var(--text_color_4);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.ec-request-review-page .ec-request-review-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-request-review-page .ec-request-review-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-request-review-page .ec-request-review-section__header-copy {
    min-width: 0;
}

.ec-request-review-page .ec-request-review-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-request-review-page .ec-request-review-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-request-review-page .ec-request-review-section__intro {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-request-review-page .ec-request-review-section__intro-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-request-review-page .ec-request-review-section__intro-copy {
    min-width: 0;
}

.ec-request-review-page .ec-request-review-section__intro-copy p {
    margin: 0;
    color: var(--text_color_6);
    font-size: 12px;
}

.ec-request-review-page .ec-request-review-section__intro-copy strong {
    display: block;
    margin: 4px 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-request-review-page .ec-request-review-form {
    margin-top: 20px;
}

.ec-request-review-page .ec-request-review-form__section {
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-request-review-page .ec-request-review-form__section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-request-review-page .ec-request-review-form__section-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-request-review-page .ec-request-review-form__section-header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-request-review-page .ec-request-review-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-request-review-page .ec-request-review-form__label em {
    color: #B42318;
    font-style: normal;
}

.ec-request-review-page .ec-request-review-form__control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-request-review-page .ec-request-review-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-request-review-page .ec-request-review-form__control.is-invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ec-request-review-page .ec-request-review-form__control i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-request-review-page .ec-request-review-form__control input {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-request-review-page .ec-request-review-form__control input::placeholder {
    color: var(--text_color_5);
}

.ec-request-review-page .ec-request-review-form__error {
    display: none;
    margin: 6px 0 0;
    color: #B42318;
    font-size: 10px;
    font-weight: 700;
}

.ec-request-review-page .ec-request-review-form__error.show {
    display: block;
}

.ec-request-review-page .ec-request-review-form__information {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
    min-height: 78px;
    padding: 13px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-request-review-page .ec-request-review-form__information-icon {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_1);
}

.ec-request-review-page .ec-request-review-form__information-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.ec-request-review-page .ec-request-review-form__information-label {
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ec-request-review-page .ec-request-review-form__information-value {
    max-width: 100%;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ec-request-review-page .ec-request-review-form__link-row {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.ec-request-review-page .ec-request-review-form__link {
    min-width: 0;
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.ec-request-review-page .ec-request-review-form__link:hover {
    color: var(--text_color_4);
}

.ec-request-review-page .ec-request-review-form__copy-button {
    display: flex;
    align-items: center;
    min-height: 32px;
    justify-content: center;
    flex: 0 0 auto;
    gap: 7px;
    padding: 0 10px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-request-review-page .ec-request-review-form__copy-button:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-request-review-page .ec-request-review-form__success {
    display: none;
    align-items: flex-start;
    gap: 11px;
    margin-top: 16px;
    padding: 14px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_16);
}

.ec-request-review-page .ec-request-review-form__success.show {
    display: flex;
}

.ec-request-review-page .ec-request-review-form__success>i {
    margin-top: 2px;
}

.ec-request-review-page .ec-request-review-form__success-copy {
    min-width: 0;
}

.ec-request-review-page .ec-request-review-form__success strong {
    display: block;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-request-review-page .ec-request-review-form__success span {
    display: block;
    margin-top: 3px;
    color: var(--text_color_6);
    font-size: 11px;
    line-height: 1.5;
}

.ec-request-review-page .ec-request-review-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-request-review-page .ec-request-review-form__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: var(--text_color_1);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-request-review-page .ec-request-review-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-direct-message-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-direct-message-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-direct-message-section__header-copy {
    min-width: 0;
}

.ec-direct-message-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-direct-message-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-direct-message-form {
    margin-top: 20px;
}

.ec-direct-message-form__section {
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-direct-message-form__section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-direct-message-form__section-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-direct-message-form__section-copy {
    min-width: 0;
}

.ec-direct-message-form__section-copy h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-direct-message-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-direct-message-form__label em {
    color: #B42318;
    font-style: normal;
}

.ec-direct-message-form__control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.ec-direct-message-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-direct-message-form__control.is-invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ec-direct-message-form__control>i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-direct-message-form__control input {
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-direct-message-form__control input::placeholder {
    color: var(--text_color_5);
}

.ec-direct-message-form__textarea::placeholder {
    color: var(--text_color_5);
}

.ec-direct-message-form__textarea-wrap {
    position: relative;
}

.ec-direct-message-form__textarea {
    width: 100%;
    min-height: 180px;
    padding: 13px 13px 34px;
    resize: vertical;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    outline: 0;
    background: var(--bg_color_1);
    transition: border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.ec-direct-message-form__textarea:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-direct-message-form__textarea.is-invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ec-direct-message-form__character-count {
    position: absolute;
    right: 12px;
    bottom: 9px;
    color: var(--text_color_5);
    font-size: 10px;
    font-weight: 600;
    pointer-events: none;
}

.ec-direct-message-form__character-count strong {
    color: var(--text_color_3);
}

.ec-direct-message-form__error {
    display: none;
    margin: 6px 0 0;
    color: #B42318;
    font-size: 10px;
    font-weight: 700;
}

.ec-direct-message-form__error.show {
    display: block;
}

.ec-direct-message-form__success {
    display: none;
    align-items: flex-start;
    gap: 11px;
    margin-top: 16px;
    padding: 14px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_16);
}

.ec-direct-message-form__success.show {
    display: flex;
}

.ec-direct-message-form__success>i {
    margin-top: 2px;
}

.ec-direct-message-form__success-copy {
    min-width: 0;
}

.ec-direct-message-form__success-copy strong {
    display: block;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-direct-message-form__success-copy span {
    display: block;
    margin-top: 3px;
    color: var(--text_color_6);
    font-size: 11px;
    line-height: 1.5;
}

.ec-direct-message-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-direct-message-form__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-direct-message-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-direct-messages-section {
    padding: 26px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-direct-messages-switch-row {
    display: flex;
    align-items: center;
}

.ec-direct-messages-switch-row__button {
    display: flex;
    align-items: center;
}

.ec-direct-messages-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-direct-messages-section__heading-copy {
    min-width: 0;
}

.ec-direct-messages-section__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-direct-messages-section__header-icon {
    display: flex;
    align-items: center;
    width: 44px;
    height: 44px;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-direct-messages-toolbar {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 30;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.ec-direct-messages-toolbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ec-direct-messages-toolbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.ec-direct-messages-toolbar__button {
    display: flex;
    align-items: center;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    cursor: pointer;
    list-style: none;
    transition: 0.2s ease;
}

.ec-direct-messages-toolbar__button::-webkit-details-marker {
    display: none;
}

.ec-direct-messages-toolbar__button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-direct-messages-toolbar__button.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-direct-messages-section .ec-direct-messages-toolbar__button--csv {
    min-width: 94px;
}

.ec-direct-messages-dropdown[open]>.ec-direct-messages-toolbar__button {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-direct-messages-toolbar__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-direct-messages-toolbar__button--primary {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-direct-messages-toolbar__button--primary:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_4);
}

.ec-direct-messages-toolbar__clear {
    display: flex;
    align-items: center;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    cursor: pointer;
    list-style: none;
    transition: 0.2s ease;
    color: var(--text_color_3);
}

.ec-direct-messages-dropdown {
    position: relative;
}

.ec-direct-messages-dropdown__menu {
    min-width: 220px;
    margin-top: 8px !important;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-direct-messages-dropdown__menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-direct-messages-dropdown__menu>li {
    width: 100%;
}

.ec-direct-messages-dropdown__menu--compact {
    min-width: 220px;
}

.ec-direct-messages-dropdown__item {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    border: 0;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-direct-messages-dropdown__item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-direct-messages-dropdown__item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-direct-messages-dropdown__item.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-direct-messages-dropdown__item--active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-direct-messages-dropdown__item input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
}

.ec-direct-messages-dropdown__item:has(input[type="radio"]:checked) {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-direct-messages-filter {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-direct-messages-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-direct-messages-filter__heading {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ec-direct-messages-filter__heading-icon {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-direct-messages-filter__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-direct-messages-filter__description {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-direct-messages-filter__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-direct-messages-filter__date-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
}

.ec-direct-messages-filter__date-caption {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
}

.ec-direct-messages-filter__control {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 46px;
    flex: 1 1 0;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-direct-messages-filter__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-direct-messages-filter__control i {
    color: var(--text_color_3);
}

.ec-direct-messages-filter__control input {
    min-width: 0;
    min-height: 44px;
    flex: 1 1 auto;
    color: var(--text_color_4);
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-direct-messages-filter__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ec-direct-messages-filter__submit {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: var(--text_color_1);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_3);
    border-radius: 10px;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-direct-messages-filter__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-direct-messages-list {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-direct-messages-list__head {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-direct-messages-list__head-cell {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--text_color_1);
    font-size: 13px;
    font-weight: 700;
}

.ec-direct-messages-list__row {
    min-height: 62px;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-direct-messages-list__row:nth-child(even) {
    background: var(--bg_color_5);
}

.ec-direct-messages-list__row:last-child {
    border-bottom: 0;
}

.ec-direct-messages-list__row:hover {
    background: var(--bg_color_16);
}

.ec-direct-messages-list__cell {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 62px;
    padding: 12px 14px;
    color: var(--text_color_4);
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.ec-direct-messages-list__cell--subject a {
    color: var(--text_color_4);
    font-weight: 600;
}

.ec-direct-messages-list__cell--subject a:hover {
    color: var(--text_color_3);
}

.ec-direct-messages-list__mobile-label {
    display: none;
}

.ec-direct-messages-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-direct-messages-pagination__summary {
    margin: 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-direct-messages-pagination__controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ec-direct-messages-pagination__button {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    justify-content: center;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    border: none;
}

.ec-direct-messages-pagination__button:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-direct-messages-pagination__button--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-direct-messages-pagination__button--disabled {
    pointer-events: none;
    opacity: 0.45;
}

.ec-sent-connections-toolbar .ec-sent-connections-toolbar__button>i:first-child {
    width: 14px;
    flex: 0 0 14px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.ec-direct-messages-toolbar__button>i:first-child {
    width: 14px;
    flex: 0 0 14px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.ec-direct-messages-toolbar__chevron {
    margin-left: 2px;
    font-size: 9px;
    line-height: 1;
}

.ec-sent-connections-toolbar__chevron {
    margin-left: 2px;
    font-size: 9px;
    line-height: 1;
}

.ec-common-back-button-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.ec-common-back-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--text_color_4);
    border-radius: 10px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-common-back-button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: transparent;
}

.ec-member-profile-page__column {
    min-width: 0;
}

.ec-member-profile-page {
    min-width: 0;
    color: var(--text_color_4);
}

.ec-member-profile-page input {
    font-family: var(--font_manrope);
}

.ec-member-profile-page button {
    font-family: var(--font_manrope);
    border: 0;
}

.ec-member-profile-page__shell {
    min-width: 0;
}

.ec-member-profile-intro-video {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-member-profile-contact-card {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-member-profile-about-card {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-member-profile-hero {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: relative;
    z-index: 30;
    overflow: visible;
}

.ec-member-profile-hero__cover>img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.ec-member-profile-hero__mini-avatars {
    display: flex;
    align-items: center;
}

.ec-member-profile-hero__member {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ec-member-profile-hero__avatar-wrap {
    position: relative;
    width: 138px;
    height: 138px;
    flex: 0 0 138px;
    margin-top: 0;
    padding: 0;
    border-radius: 12px;
    background: var(--bg_color_8);
}

.ec-member-profile-hero__avatar {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.ec-member-profile-hero__online {
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 20px;
    height: 20px;
    border: 4px solid var(--bg_color_1);
    border-radius: 50%;
    background: #22A06B;
}

.ec-member-profile-hero__name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ec-member-profile-hero__name-row h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.ec-member-profile-hero__verified {
    color: var(--text_color_3);
    font-size: 18px;
}

.ec-member-profile-hero__copy>p {
    margin: 6px 0 0;
    color: var(--text_color_6);
    font-size: 14px;
    font-weight: 600;
}

.ec-member-profile-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 10px;
}

.ec-member-profile-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-member-profile-hero__meta i {
    color: var(--text_color_3);
}

.ec-member-profile-hero__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding-top: 18px;
}

.ec-member-profile-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8) !important;
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-button--secondary {
    color: var(--text_color_3);
}

.ec-member-profile-button--secondary:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3) !important;
    background: var(--bg_color_3);
}

.ec-member-profile-button--primary {
    color: var(--text_color_1);
    border-color: var(--bg_color_3) !important;
    background: var(--bg_color_3);
}

.ec-member-profile-button--primary:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-member-profile-button--icon {
    width: 42px;
    flex: 0 0 42px;
    padding: 0;
    color: var(--text_color_6);
}

.ec-member-profile-button--icon:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3) !important;
}

.ec-member-profile-stats {
    display: flex;
    min-height: 66px;
    align-items: stretch;
}

.ec-member-profile-stats__item {
    min-width: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 10px 20px;
    color: var(--text_color_5);
    border-right: 1px solid var(--bg_color_7);
    transition: 0.2s ease;
}

.ec-member-profile-stats__item:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-stats__item strong {
    color: var(--text_color_4);
    font-size: 17px;
    font-weight: 700;
}

.ec-member-profile-stats__item span {
    font-size: 12px;
    font-weight: 700;
}

.ec-member-profile-hero__social-proof {
    display: flex;
    align-items: center;
    min-height: 66px;
    justify-content: flex-end;
    gap: 12px;
    padding: 10px 24px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-profile-hero__social-proof strong {
    color: var(--text_color_4);
}

.ec-member-profile-hero__mini-avatars img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: cover;
    border: 2px solid var(--bg_color_1);
    border-radius: 9px;
    background: var(--bg_color_6);
}

.ec-member-profile-hero__mini-avatars img+img {
    margin-left: -9px;
}

.ec-member-profile-tabs {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    justify-content: stretch;
    gap: 0;
    margin: 0 0 20px;
    padding: 7px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-member-profile-tabs__button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-tabs__button--active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-tabs__button--active:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-profile-card__header h2 {
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.ec-member-profile-about-card__header h2 {
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.ec-member-profile-card__eyebrow {
    display: block;
    color: var(--text_color_3);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ec-member-profile-card__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-member-profile-about-card__section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-member-profile-intro-video__media>img {
    width: 100%;
    min-height: 210px;
    max-height: 270px;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.ec-member-profile-intro-video__play i {
    margin-left: 3px;
}

.ec-member-profile-intro-video__body {
    padding: 0 18px 18px;
}

.ec-member-profile-intro-video__body p {
    margin: 0;
    color: var(--text_color_6);
    font-size: 14px;
    line-height: 1.5;
}

.ec-member-profile-intro-video__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
}

.ec-member-profile-intro-video__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-member-profile-intro-video__meta i {
    color: var(--text_color_3);
}

.ec-member-profile-contact-card__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.ec-member-profile-contact-card__item {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    padding: 10px;
    color: var(--text_color_4);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: 0.2s ease;
}

.ec-member-profile-contact-card__item:hover {
    color: var(--text_color_4);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-member-profile-contact-card__item>span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-member-profile-contact-card__item small {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-member-profile-contact-card__item strong {
    max-width: 100%;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.ec-member-profile-panel[hidden] {
    display: none !important;
}

.ec-member-profile-composer__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ec-member-profile-composer__top>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
}

.ec-member-profile-composer__top>button {
    min-height: 46px;
    flex: 1 1 auto;
    padding: 0 14px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-member-profile-composer__top>button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
}

.ec-member-profile-post__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
}

.ec-member-profile-post__author {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.ec-member-profile-post__author>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.ec-member-profile-post__author>div {
    min-width: 0;
}

.ec-member-profile-post__author h3 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-member-profile-post__author p {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-member-profile-post__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: var(--text_color_5);
    border-radius: 9px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-member-profile-post__more:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-post__body {
    padding: 0 18px 16px;
}

.ec-member-profile-post__body p {
    margin: 0;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.75;
}

.ec-member-profile-post__link {
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    overflow: hidden;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-member-profile-post__media {
    overflow: hidden;
    border-top: 1px solid var(--bg_color_7);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_6);
}

.ec-member-profile-post__media img {
    width: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
}

.ec-member-profile-post__reactions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    color: var(--text_color_5);
    font-size: 12px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-profile-post__reactions span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ec-member-profile-post__reactions i {
    color: var(--text_color_1);
    padding: 5px;
    border-radius: 50%;
    background: var(--bg_color_3);
}

.ec-member-profile-post__actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 6px;
    padding: 7px 12px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-profile-post__actions button {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    gap: 8px;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-member-profile-post__actions button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-post__actions button.is-liked {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-post__comment-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
}

.ec-member-profile-post__comment-box>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.ec-member-profile-post__comment-box>div {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 40px;
    flex: 1 1 auto;
    gap: 6px;
    padding: 0 6px 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-member-profile-post__comment-box input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-size: 13px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-member-profile-post__comment-box button {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--text_color_5);
    border-radius: 7px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-member-profile-post__comment-box button:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-about-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-profile-about-card__header>button {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-about-card__header>button:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-member-profile-about-list {
    display: flex;
    flex-direction: column;
}

.ec-member-profile-about-list__item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-profile-about-list__item:last-child {
    border-bottom: 0;
}

.ec-member-profile-about-list__item:hover {
    background: var(--bg_color_5);
}

.ec-member-profile-about-list__label {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-profile-about-list__item strong {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text_color_4);
    font-weight: 700;
}

.ec-member-profile-about-list__item p {
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    color: var(--text_color_6);
}

.ec-member-profile-about-list__item a {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text_color_3);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.ec-member-profile-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.ec-member-profile-tags span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_16);
}

.ec-member-profile-tab-control {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.ec-member-profile-tabs__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: 44px;
    flex: 0 0 50%;
    gap: 8px;
    padding: 0 18px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.ec-member-profile-panel {
    flex-direction: column;
    gap: 20px;
    display: none;
}

#memberProfileStreamTab:focus-visible~.ec-member-profile-tabs label[for="memberProfileStreamTab"] {
    outline: 2px solid var(--bg_color_3);
    outline-offset: 3px;
}

#memberProfileAboutTab:focus-visible~.ec-member-profile-tabs label[for="memberProfileAboutTab"] {
    outline: 2px solid var(--bg_color_3);
    outline-offset: 3px;
}

#memberProfileStreamTab:checked~.ec-member-profile-panels .ec-member-profile-panel--stream {
    display: flex;
}

#memberProfileAboutTab:checked~.ec-member-profile-panels .ec-member-profile-panel--about {
    display: flex;
}

.ec-member-profile-actions-dropdown {
    position: relative;
    z-index: 1200;
    flex: 0 0 auto;
}

.ec-member-profile-button.dropdown-toggle::after {
    display: none;
}

.ec-member-profile-actions-menu li {
    width: 100%;
}

.ec-member-profile-actions-menu__item {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-actions-menu__item i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-member-profile-actions-menu__item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-actions-menu__item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-actions-menu__item:hover i {
    color: var(--text_color_1);
}

.ec-member-profile-actions-menu__item:focus i {
    color: var(--text_color_1);
}

.ec-member-profile-actions-menu__item--danger {
    color: #B42318;
}

.ec-member-profile-actions-menu__item--danger i {
    color: #B42318;
}

.ec-member-profile-actions-menu__item--danger:hover {
    color: var(--text_color_1);
    background: #B42318;
}

.ec-member-profile-actions-menu__item--danger:focus {
    color: var(--text_color_1);
    background: #B42318;
}

.ec-member-profile-actions-menu .dropdown-divider {
    margin: 7px 3px;
    border-color: var(--bg_color_7);
}

.ec-member-profile-post__comments {
    padding: 14px 18px 0;
}

.ec-member-profile-post__comment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ec-member-profile-post__comment>img {
    width: 36px;
    height: 36px;
    display: block;
    flex: 0 0 36px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--bg_color_6);
}

.ec-member-profile-post__comment-content {
    min-width: 0;
    flex: 1 1 auto;
    padding: 10px 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-member-profile-post__comment-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ec-member-profile-post__comment-heading strong {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-member-profile-post__comment-heading span {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.ec-member-profile-post__comment-content p {
    margin: 3px 0 0 0;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.6;
}

.ec-member-profile-post__comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 7px;
}

.ec-member-profile-post__comment-meta button {
    padding: 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
    background: transparent;
}

.ec-member-profile-post__comment-meta button:hover {
    color: var(--text_color_3);
}

.ec-member-profile-hero__cover {
    min-height: 350px;
    overflow: hidden;
    background: var(--bg_color_7);
    border-radius: 10px 10px 0 0;
}

.ec-member-profile-hero__identity {
    z-index: 2;
    padding: 0 24px 22px;
    position: relative;
    background: var(--bg_color_1);
}

.ec-member-profile-hero__footer {
    border-top: 1px solid var(--bg_color_7);
    position: relative;
    background: var(--bg_color_1);
}

.ec-member-profile-content {
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.ec-member-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 155px;
    min-width: 0;
}

.ec-member-profile-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.ec-member-profile-tabs__button+.ec-member-profile-tabs__button {
    border-left: 1px solid var(--bg_color_7);
}

#memberProfileStreamTab:checked~.ec-member-profile-tabs label[for="memberProfileStreamTab"] {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

#memberProfileAboutTab:checked~.ec-member-profile-tabs label[for="memberProfileAboutTab"] {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

#memberProfileStreamTab:checked~.ec-member-profile-tabs label[for="memberProfileAboutTab"] {
    color: var(--text_color_6);
    background: transparent;
}

#memberProfileAboutTab:checked~.ec-member-profile-tabs label[for="memberProfileStreamTab"] {
    color: var(--text_color_6);
    background: transparent;
}

.ec-member-profile-composer__actions i {
    color: var(--text_color_3);
    min-width: 16px;
    font-size: 13px;
}

.ec-member-profile-tabs__button i {
    min-width: 16px;
    font-size: 13px;
}

.ec-member-profile-intro-video .ec-member-profile-card__header h2 {
    margin: 0;
}

.ec-member-profile-contact-card .ec-member-profile-card__header h2 {
    margin: 0;
}

.ec-member-profile-composer__actions button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 25%;
    gap: 8px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.ec-member-profile-composer__actions button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
    border-color: var(--bg_color_7);
}

.ec-member-profile-composer__top>textarea {
    min-height: 46px;
    max-height: 140px;
    flex: 1 1 auto;
    padding: 12px 14px;
    resize: vertical;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    outline: 0;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-member-profile-composer__top>textarea::placeholder {
    color: var(--text_color_5);
}

.ec-member-profile-composer__top>textarea:focus {
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-composer__upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.ec-member-profile-composer__upload:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-composer__tool[open]>summary {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-composer__tool>summary:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-composer__upload i {
    min-width: 16px;
    color: var(--text_color_3);
    font-size: 13px;
    text-align: center;
}

.ec-member-profile-composer__tool>summary i {
    min-width: 16px;
    color: var(--text_color_3);
    font-size: 13px;
    text-align: center;
}

.ec-member-profile-composer__tool>summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(20% - 7px);
    gap: 8px;
    padding: 0 10px;
    cursor: pointer;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    width: 100%;
}

.ec-member-profile-composer__tool>summary::-webkit-details-marker {
    display: none;
}

.ec-member-profile-composer__tool-panel label {
    width: 100%;
    display: block;
    margin: 0;
}

.ec-member-profile-composer__tool-panel label+label {
    margin-top: 12px;
}

.ec-member-profile-composer__tool-panel label>span {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-profile-composer__tool-panel input {
    width: 100%;
    min-height: 44px;
    padding: 10px 11px;
    color: var(--text_color_4);
    font-size: 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
}

.ec-member-profile-composer__tool-panel textarea {
    width: 100%;
    padding: 10px 11px;
    color: var(--text_color_4);
    font-size: 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
    min-height: 110px;
    resize: vertical;
}

.ec-member-profile-composer__tool-panel input:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-composer__tool-panel textarea:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-intro-video__media {
    position: relative;
    width: calc(100% - 28px);
    display: block;
    margin: 14px;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg_color_4);
    cursor: pointer;
}

.ec-member-profile-video-modal .modal-header>div {
    min-width: 0;
}

.ec-member-profile-video-modal .modal-header span {
    display: block;
    margin-bottom: 4px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.ec-member-profile-video-modal .modal-body {
    padding: 0;
}

.ec-member-profile-video-modal__player {
    width: 100%;
    background: var(--bg_color_4);
}

.ec-member-profile-composer {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    padding: 18px 18px 13px 18px;
    position: relative;
    z-index: 100;
    overflow: visible;
}

.ec-member-profile-composer:has(.ec-member-profile-composer__tool[open]) {
    z-index: 300;
}

.ec-member-profile-composer__actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    border-top: 1px solid var(--bg_color_7);
    padding-top: 14px;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 7px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.ec-member-profile-composer__upload {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    cursor: pointer;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    position: relative;
    margin: 0;
    flex: 1 1 calc(25% - 7px);
}

.ec-member-profile-composer__tool {
    position: relative;
    flex: 1 1 calc(25% - 7px);
    z-index: 20;
}

.ec-member-profile-composer__tool[open] {
    z-index: 200;
}

.ec-member-profile-composer__tool-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    padding: 14px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    z-index: 500;
}

.ec-member-profile-post__comment-upload {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    margin: 0;
    cursor: pointer;
    color: var(--text_color_5);
    border-radius: 7px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-member-profile-post__comment-upload:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-post__comment-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.ec-member-profile-post__comment-upload i {
    pointer-events: none;
}

.ec-member-profile-actions-menu__header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__header span {
    display: block;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-member-profile-actions-menu__header strong {
    display: block;
    margin-top: 4px;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.ec-member-profile-actions-menu__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px 18px;
}

.ec-member-profile-actions-menu__field {
    display: block;
    margin: 0;
}

.ec-member-profile-actions-menu__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-profile-actions-menu__label i {
    width: 17px;
    flex: 0 0 17px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-member-profile-actions-menu__field input[type="text"] {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-actions-menu__field select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-actions-menu__field input[type="file"] {
    width: 100%;
    min-height: 42px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    padding: 6px;
    cursor: pointer;
}

.ec-member-profile-actions-menu__field input[type="file"]::file-selector-button {
    min-height: 30px;
    margin-right: 9px;
    padding: 0 11px;
    cursor: pointer;
    color: var(--text_color_1);
    font-family: var(--font_manrope);
    font-size: 11px;
    font-weight: 700;
    border: 0;
    border-radius: 7px;
    background: var(--bg_color_3);
}

.ec-member-profile-actions-menu__field input:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-actions-menu__field select:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-actions-menu__field input[type="range"] {
    width: 100%;
    accent-color: var(--bg_color_3);
}

.ec-member-profile-actions-menu__input-wrap {
    min-height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-actions-menu__input-wrap:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-actions-menu__input-wrap>span {
    align-self: stretch;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 10px;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 700;
    border-right: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__input-wrap input[type="text"] {
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ec-member-profile-actions-menu__remove {
    padding: 12px;
    border: 1px solid #F3C7C7;
    border-radius: 9px;
    background: #FFF8F8;
}

.ec-member-profile-actions-menu__remove-title {
    display: block;
    margin-bottom: 10px;
    color: #9B2C2C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.ec-member-profile-video-modal {
    z-index: 1085;
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal .modal-content {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 24px 70px rgba(11, 31, 42, 0.22);
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal input {
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal select {
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal textarea {
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal button {
    font-family: var(--font_manrope);
}

.ec-member-profile-video-modal .modal-dialog {
    padding: 18px;
    max-width: 1080px;
}

.ec-member-profile-video-modal .modal-header {
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    align-items: center;
    padding: 18px 22px;
}

.ec-member-profile-video-modal__heading {
    min-width: 0;
}

.ec-member-profile-video-modal .modal-title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.ec-member-profile-video-modal .btn-close {
    box-shadow: none;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 0;
    border-radius: 9px;
    background-size: 12px;
    opacity: 0.75;
}

.ec-member-profile-video-modal .btn-close:hover {
    opacity: 1;
    background-color: var(--bg_color_6);
}

.ec-member-profile-video-modal__player video {
    width: 100%;
    max-height: 68vh;
    display: block;
    background: var(--bg_color_4);
    min-height: 360px;
    object-fit: contain;
}

.ec-member-profile-actions-menu {
    z-index: 1250;
    margin-top: 8px !important;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    width: 300px;
    min-width: 300px;
    max-height: min(520px, calc(100vh - 110px));
    padding: 7px;
    overflow-y: auto;
    font-family: var(--font_manrope);
}

.ec-member-profile-actions-menu__option {
    position: relative;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 9px 10px;
    cursor: pointer;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-preferences-section button {
    font-family: var(--font_manrope);
}

.ec-preferences-section input {
    font-family: var(--font_manrope);
}

.ec-preferences-section select {
    font-family: var(--font_manrope);
}

.ec-preferences-section {
    font-family: var(--font_manrope);
    padding: 32px 0 56px;
    background: var(--bg_color_5);
}

.ec-preferences-section .ec-preferences-card {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 14px;
    background: var(--bg_color_1);
    box-shadow: 0 12px 34px var(--bg_color_11);
}

.ec-preferences-section .ec-preferences-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-preferences-section .ec-preferences-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-preferences-section .ec-preferences-header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 28px;
    font-weight: 700;
}

.ec-preferences-section .ec-preferences-header p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    font-weight: 500;
}

.ec-preferences-section .ec-preferences-back {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    color: var(--text_color_3);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-preferences-section .ec-preferences-back:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-tabs {
    display: flex;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px;
    overflow-x: auto;
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-preferences-section .ec-preferences-tab {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 0 15px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.ec-preferences-section .ec-preferences-tab:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-tab.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-form {
    padding: 8px 28px 28px;
}

.ec-preferences-section .ec-preferences-panel {
    padding-top: 12px;
}

.ec-preferences-section .ec-preferences-panel[hidden] {
    display: none;
}

.ec-preferences-section .ec-preferences-row {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-preferences-section .ec-preferences-row>label:first-child {
    width: 240px;
    flex: 0 0 240px;
    margin: 0;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
}

.ec-preferences-section .ec-preferences-row select {
    width: min(100%, 600px);
    min-height: 42px;
    padding: 0 12px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    outline: 0;
    background: var(--bg_color_1);
}

.ec-preferences-section .ec-preferences-url input {
    width: min(100%, 600px);
    min-height: 42px;
    padding: 0 12px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    outline: 0;
    background: var(--bg_color_1);
}

.ec-preferences-section .ec-preferences-row select:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-preferences-section .ec-preferences-url input:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-preferences-section .ec-preferences-row>select {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-preferences-section .ec-preferences-row>div {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-preferences-section .ec-preferences-dropdown {
    position: relative;
    width: min(100%, 600px);
}

.ec-preferences-section .ec-preferences-dropdown__trigger {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-preferences-section .ec-preferences-dropdown__trigger>span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ec-preferences-section .ec-preferences-dropdown__trigger>span>i {
    width: 16px;
    color: var(--text_color_5);
    text-align: center;
}

.ec-preferences-section .ec-preferences-dropdown__trigger>i:last-child {
    color: var(--text_color_5);
    font-size: 11px;
    transition: transform 0.2s ease;
}

.ec-preferences-section .ec-preferences-dropdown.open .ec-preferences-dropdown__trigger {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-preferences-section .ec-preferences-dropdown.open .ec-preferences-dropdown__trigger>i:last-child {
    transform: rotate(180deg);
}

.ec-preferences-section .ec-preferences-dropdown__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_1);
    box-shadow: 0 12px 28px rgba(11, 31, 42, 0.14);
}

.ec-preferences-section .ec-preferences-dropdown.open .ec-preferences-dropdown__menu {
    display: flex;
}

.ec-preferences-section .ec-preferences-dropdown__menu button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border: 0;
    border-radius: 6px;
    background: transparent;
}

.ec-preferences-section .ec-preferences-dropdown__menu button i {
    width: 16px;
    color: var(--text_color_5);
    text-align: center;
}

.ec-preferences-section .ec-preferences-dropdown__menu button:hover {
    color: var(--text_color_1);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-dropdown__menu button:focus-visible {
    color: var(--text_color_1);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-dropdown__menu button.active {
    color: var(--text_color_1);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-dropdown__menu button:hover i {
    color: var(--text_color_1);
}

.ec-preferences-section .ec-preferences-dropdown__menu button:focus-visible i {
    color: var(--text_color_1);
}

.ec-preferences-section .ec-preferences-dropdown__menu button.active i {
    color: var(--text_color_1);
}

.ec-preferences-section .ec-preferences-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex: 0 0 44px;
    margin: 0;
}

.ec-preferences-section .ec-preferences-switch input {
    position: absolute;
    opacity: 0;
}

.ec-preferences-section .ec-preferences-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: var(--bg_color_8);
    transition: 0.2s ease;
}

.ec-preferences-section .ec-preferences-switch span::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    content: "";
    border-radius: 50%;
    background: var(--bg_color_1);
    box-shadow: 0 2px 5px var(--bg_color_12);
    transition: 0.2s ease;
}

.ec-preferences-section .ec-preferences-switch input:checked+span {
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-switch input:checked+span::after {
    transform: translateX(20px);
}

.ec-preferences-section .ec-preferences-row--stack {
    align-items: flex-start;
}

.ec-preferences-section .ec-preferences-url small {
    display: block;
    margin-bottom: 8px;
    color: var(--text_color_5);
    font-size: 12px;
    line-height: 1.5;
}

.ec-preferences-section .ec-preferences-privacy-heading {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 4px 268px;
    padding: 0 13px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_5);
}

.ec-preferences-section .ec-preferences-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-preferences-section input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-notification-head {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 48px;
    padding: 0 14px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-preferences-section .ec-preferences-notification-head span:first-child {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-preferences-section .ec-preferences-notification-group>label span {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-preferences-section .ec-preferences-notification-head span:not(:first-child) {
    width: 72px;
    flex: 0 0 72px;
    text-align: center;
}

.ec-preferences-section .ec-preferences-notification-group>label input {
    width: 72px;
    flex: 0 0 72px;
    text-align: center;
}

.ec-preferences-section .ec-preferences-notification-group h2 {
    margin: 0;
    padding: 18px 14px 10px;
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-preferences-section .ec-preferences-notification-group>label {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 46px;
    margin: 0;
    padding: 9px 14px 9px 100px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-preferences-section .ec-preferences-empty {
    padding: 70px 20px;
    text-align: center;
}

.ec-preferences-section .ec-preferences-empty>span {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 24px;
    border-radius: 16px;
    background: var(--bg_color_16);
}

.ec-preferences-section .ec-preferences-empty h2 {
    margin: 16px 0 6px;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-preferences-section .ec-preferences-empty p {
    margin: 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-preferences-section .ec-preferences-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
}

.ec-preferences-section .ec-preferences-save {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-preferences-section .ec-preferences-save:hover {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-member-profile-actions-menu a.ec-member-profile-actions-menu__option {
    border: 0;
    text-decoration: none;
    font-family: var(--font_manrope);
}

.ec-member-profile-actions-menu button.ec-member-profile-actions-menu__option {
    border: 0;
    text-decoration: none;
    font-family: var(--font_manrope);
}

.ec-member-profile-actions-menu__option:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__details[open]>.ec-member-profile-actions-menu__option {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__option>span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ec-member-profile-actions-menu__option>span i {
    width: 17px;
    flex: 0 0 17px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-member-profile-actions-menu__option>i:last-child {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 9px;
}

.ec-member-profile-actions-menu__details>.ec-member-profile-actions-menu__option::-webkit-details-marker {
    display: none;
}

.ec-member-profile-actions-menu__details[open]>.ec-member-profile-actions-menu__option>i:last-child {
    transform: rotate(180deg);
}

.ec-member-profile-actions-menu__file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ec-member-profile-actions-menu__panel {
    margin: 3px 4px 7px;
    padding: 10px;
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__panel input[type="range"] {
    width: 100%;
    accent-color: var(--bg_color_3);
}

.ec-member-profile-actions-menu__panel select {
    width: 100%;
    min-height: 40px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    outline: 0;
    background: var(--bg_color_1);
    padding: 0 10px;
}

.ec-member-profile-actions-menu__panel select:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-actions-menu__compact-input:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-profile-actions-menu__compact-input {
    width: 100%;
    min-height: 40px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    outline: 0;
    background: var(--bg_color_1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ec-member-profile-actions-menu__compact-input>span {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 9px;
    color: var(--text_color_5);
    font-size: 11px;
    border-right: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-profile-actions-menu__compact-input input {
    min-width: 0;
    min-height: 38px;
    flex: 1 1 auto;
    padding: 0 9px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 600;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-member-profile-actions-menu__option--danger {
    color: #B42318;
}

.ec-member-profile-actions-menu__option--danger>span i {
    color: #B42318;
}

.ec-member-profile-actions-menu__panel--danger {
    border-color: #F3C7C7;
    background: #FFF8F8;
}

.ec-member-profile-actions-menu__check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: #7F1D1D;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.ec-member-profile-actions-menu__check+.ec-member-profile-actions-menu__check {
    margin-top: 8px;
}

.ec-member-profile-actions-menu__check input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 1px;
    accent-color: #B42318;
}

.ec-member-profile-post {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.ec-member-profile-post:has(.ec-member-profile-post__menu-list.show) {
    z-index: 220;
}

.ec-member-profile-post__menu {
    position: relative;
    flex: 0 0 auto;
    z-index: 40;
}

.ec-member-profile-post__more.dropdown-toggle::after {
    display: none;
}

.ec-member-profile-post__menu-list {
    width: 220px;
    min-width: 220px;
    z-index: 240;
    margin-top: 7px !important;
    padding: 7px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.ec-member-profile-post__menu-item {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-post__menu-item i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-member-profile-post__menu-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-post__menu-item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-post__menu-item:hover i {
    color: var(--text_color_1);
}

.ec-member-profile-post__menu-item:focus i {
    color: var(--text_color_1);
}

.ec-member-profile-post__menu-item--danger {
    color: #B42318;
}

.ec-member-profile-post__menu-item--danger i {
    color: #B42318;
}

.ec-member-profile-post__menu-item--danger:hover {
    color: var(--text_color_1);
    background: #B42318;
}

.ec-member-profile-post__menu-item--danger:focus {
    color: var(--text_color_1);
    background: #B42318;
}

.ec-member-profile-post__menu-list .dropdown-divider {
    margin: 6px 3px;
    border-color: var(--bg_color_7);
}

.ec-member-profile-intro-video__media>video {
    width: 100%;
    min-height: 210px;
    max-height: 270px;
    display: block;
    object-fit: cover;
    background: var(--bg_color_4);
}

.ec-member-profile-intro-video__play {
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    color: var(--text_color_1);
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(11, 31, 42, 0.82);
    transform: translate(-50%, -50%);
    display: none;
}

.ec-member-profile-intro-video__duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    color: var(--text_color_1);
    font-size: 10px;
    font-weight: 700;
    border-radius: 7px;
    background: rgba(11, 31, 42, 0.85);
    display: none;
}

.ec-member-profile-intro-video__overlay {
    display: none;
}

.ec-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.ec-login-header {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.ec-login-header .ec-login-header__home-link {
    display: flex;
    align-items: center;
}

.ec-login-form .ec-login-form__options {
    display: flex;
    align-items: center;
}

.ec-login-form .ec-login-form__remember {
    display: flex;
    align-items: center;
}

.ec-login-form-panel .ec-login-form-panel__register {
    display: flex;
    align-items: center;
}

.ec-login-form-panel .ec-login-form-panel__security {
    display: flex;
    align-items: center;
}

.ec-login-header .ec-login-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.ec-login-header .ec-login-header__brand {
    display: flex;
    align-items: center;
    width: 220px;
    max-width: 55%;
}

.ec-login-header .ec-login-header__brand img {
    width: 100%;
    max-height: 50px;
    min-height: 50px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.ec-login-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background: #FFFFFF;
}

.ec-login-main::before {
    display: none;
}

.ec-login-main::after {
    display: none;
}

.ec-login-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 18px 50px rgba(11, 31, 42, 0.10);
}

.ec-login-shell::before {
    display: none;
}

.ec-login-shell::after {
    display: none;
}

.ec-login-form-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 54px;
    background: transparent;
}

.ec-login-form-panel .ec-login-form-panel__heading {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ec-login-form-panel .ec-login-form-panel__icon {
    display: flex;
    align-items: center;
    width: 46px;
    height: 46px;
    justify-content: center;
    flex: 0 0 46px;
    color: #0F5C5C;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: var(--bg_color_16, rgba(15, 92, 92, 0.08));
}

.ec-login-form-panel .ec-login-form-panel__heading h1 {
    margin: 0;
    color: #0B1F2A;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.ec-login-form-panel .ec-login-form-panel__description {
    margin: 16px 0 0;
    color: #6B7280;
    font-size: 12px;
    line-height: 1.65;
}

.ec-login-form {
    margin-top: 28px;
}

.ec-login-form .ec-login-form__group+.ec-login-form__group {
    margin-top: 20px;
}

.ec-login-form .ec-login-form__group>label {
    margin: 0 0 8px;
    color: #0B1F2A;
    font-size: 12px;
    font-weight: 700;
}

.ec-login-form .ec-login-form__label-row label {
    margin: 0 0 8px;
    color: #0B1F2A;
    font-size: 12px;
    font-weight: 700;
}

.ec-login-form .ec-login-form__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ec-login-form .ec-login-form__control {
    display: flex;
    align-items: center;
    min-height: 50px;
    gap: 11px;
    padding: 0 13px;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    background: #FFFFFF;
    transition: 0.2s ease;
}

.ec-login-form .ec-login-form__control:focus-within {
    border-color: #0F5C5C;
    box-shadow: 0 0 0 3px var(--bg_color_16, rgba(15, 92, 92, 0.08));
}

.ec-login-form .ec-login-form__control>i {
    width: 16px;
    flex: 0 0 16px;
    color: #0F5C5C;
    text-align: center;
}

.ec-login-form .ec-login-form__control input {
    min-width: 0;
    min-height: 48px;
    flex: 1 1 auto;
    padding: 0;
    color: #0B1F2A;
    font-family: var(--font_manrope);
    font-size: 12px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-login-form .ec-login-form__control input::placeholder {
    color: #6B7280;
}

.ec-login-form .ec-login-form__password-toggle {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    margin-right: -5px;
    color: #6B7280;
    border: 0;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-login-form .ec-login-form__password-toggle:hover {
    color: #0F5C5C;
    outline: 0;
    background: var(--bg_color_16, rgba(15, 92, 92, 0.08));
}

.ec-login-form .ec-login-form__password-toggle:focus-visible {
    color: #0F5C5C;
    outline: 0;
    background: var(--bg_color_16, rgba(15, 92, 92, 0.08));
}

.ec-login-form .ec-login-form__submit {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 0 18px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #0F5C5C;
    border-radius: 10px;
    background: #0F5C5C;
    box-shadow: 0 8px 20px rgba(11, 31, 42, 0.12);
    transition: 0.2s ease;
}

.ec-login-form .ec-login-form__submit i {
    transition: transform 0.2s ease;
}

.ec-login-form .ec-login-form__submit:hover {
    color: #0F5C5C;
    border-color: #0F5C5C;
    outline: 0;
    background: #FFFFFF;
}

.ec-login-form .ec-login-form__submit:focus-visible {
    color: #0F5C5C;
    border-color: #0F5C5C;
    outline: 0;
    background: #FFFFFF;
}

.ec-login-form .ec-login-form__submit:hover i {
    transform: translateX(3px);
}

.ec-login-form .ec-login-form__submit:focus-visible i {
    transform: translateX(3px);
}

.ec-add-member-page {
    width: 100%;
    min-width: 0;
}

.ec-add-member-page .ec-add-member-page__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.ec-add-member-page .ec-add-member-page__heading-copy {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.ec-add-member-page .ec-add-member-page__eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-add-member-page .ec-add-member-page__heading h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-add-member-page .ec-add-member-page__heading p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.6;
}

.ec-add-member-page .ec-add-member-page__back {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 14px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-add-member-page .ec-add-member-page__back:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-add-member-form {
    width: 100%;
    min-width: 0;
}

.ec-add-member-accordion {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    border: 1px solid var(--bg_color_7);
    border-radius: 11px;
    background: var(--bg_color_1);
    box-shadow: 0 7px 22px var(--bg_color_11);
}

.ec-add-member-accordion .ec-add-member-accordion__item {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: var(--bg_color_1);
    box-shadow: none;
}

.ec-add-member-accordion .ec-add-member-accordion__item+.ec-add-member-accordion__item {
    border-top: 9px solid var(--bg_color_6);
}

.ec-add-member-accordion .ec-add-member-accordion__header {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: var(--text_color_1);
    text-align: left;
    border: 0;
    border-radius: 0;
    background: var(--bg_color_3);
    transition: 0.2s ease;
}

.ec-add-member-accordion .ec-add-member-accordion__item:first-child .ec-add-member-accordion__header {
    border-radius: 10px 10px 0 0;
}

.ec-add-member-accordion .ec-add-member-accordion__item:last-child .ec-add-member-accordion__header.collapsed {
    border-radius: 0 0 10px 10px;
}

.ec-add-member-accordion .ec-add-member-accordion__header:not(.collapsed) {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-add-member-accordion .ec-add-member-accordion__chevron {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    color: var(--text_color_1);
}

.ec-add-member-accordion .ec-add-member-accordion__chevron i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-add-member-accordion .ec-add-member-accordion__header:not(.collapsed) .ec-add-member-accordion__chevron i {
    transform: rotate(180deg);
}

.ec-add-member-accordion .ec-add-member-accordion__header-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_1);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.10);
}

.ec-add-member-accordion .ec-add-member-accordion__title {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_1);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-add-member-accordion .ec-add-member-accordion__body {
    position: relative;
    overflow: visible;
    padding: 20px 18px;
    border-top: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
}

.ec-add-member-accordion .ec-add-member-accordion__item:last-child .ec-add-member-accordion__body {
    border-radius: 0 0 10px 10px;
}

.ec-add-member-form .ec-add-member-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-add-member-form .ec-add-member-form__label em {
    color: var(--text_color_3);
    font-style: normal;
}

.ec-add-member-form .ec-add-member-form__control {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-form__control.is-invalid {
    border-color: #C9362B;
    box-shadow: 0 0 0 3px rgba(201, 54, 43, 0.08);
}

.ec-add-member-form .ec-add-member-form__control>i:first-child {
    width: 16px;
    flex: 0 0 16px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-add-member-form .ec-add-member-form__control input,
.ec-add-member-form .ec-add-member-form__control textarea {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-add-member-form .ec-add-member-form__control input {
    min-height: 44px;
}

.ec-add-member-form .ec-add-member-form__control input::placeholder,
.ec-add-member-form .ec-add-member-form__control textarea::placeholder {
    color: #9299A4;
}

.ec-add-member-form .ec-add-member-form__control input[type="date"] {
    min-height: 44px;
}

.ec-add-member-form .ec-add-member-form__error {
    display: none;
    margin-top: 6px;
    color: #B42318;
    font-size: 10px;
    font-weight: 600;
}

.ec-add-member-form .ec-add-member-form__error.show {
    display: block;
}

.ec-add-member-form .ec-add-member-form__password-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    color: var(--text_color_5);
    border: 0;
    border-radius: 7px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-form__password-toggle:hover {
    color: var(--text_color_3);
    background: var(--bg_color_6);
}

.ec-add-member-form .ec-add-member-dropdown {
    position: relative;
    width: 100%;
}

.ec-add-member-form .ec-add-member-dropdown__native {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ec-add-member-form .ec-add-member-dropdown__trigger {
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.ec-add-member-form .ec-add-member-dropdown__trigger>[data-dropdown-label] {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-add-member-form .ec-add-member-dropdown__trigger .ec-add-member-form__chevron {
    width: auto;
    margin-left: auto;
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-add-member-form .ec-add-member-dropdown__trigger[aria-expanded="true"] {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-dropdown__trigger[aria-expanded="true"] .ec-add-member-form__chevron {
    transform: rotate(180deg);
}

.ec-add-member-form .ec-add-member-dropdown__menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    z-index: 1080;
    max-height: 260px;
    display: none;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_1);
    box-shadow: 0 14px 34px rgba(11, 31, 42, 0.16);
    scrollbar-width: thin;
    scrollbar-color: var(--bg_color_8) transparent;
}

.ec-add-member-form .ec-add-member-dropdown__menu.show {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-add-member-form .ec-add-member-dropdown__menu::-webkit-scrollbar {
    width: 5px;
}

.ec-add-member-form .ec-add-member-dropdown__menu::-webkit-scrollbar-track {
    background: transparent;
}

.ec-add-member-form .ec-add-member-dropdown__menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bg_color_8);
}

.ec-add-member-form .ec-add-member-dropdown__menu button {
    width: 100%;
    min-height: 39px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    border: 0;
    border-radius: 7px;
    background: var(--bg_color_1);
    transition: 0.15s ease;
}

.ec-add-member-form .ec-add-member-dropdown__menu button:hover,
.ec-add-member-form .ec-add-member-dropdown__menu button:focus {
    color: var(--text_color_3);
    outline: 0;
    background: var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-dropdown__menu button.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-add-member-form .ec-add-member-category-select {
    width: 100%;
    max-height: 390px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 5px 2px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--bg_color_8) transparent;
}

.ec-add-member-form .ec-add-member-category-select::-webkit-scrollbar {
    width: 5px;
}

.ec-add-member-form .ec-add-member-category-select::-webkit-scrollbar-track {
    background: transparent;
}

.ec-add-member-form .ec-add-member-category-select::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bg_color_8);
}

.ec-add-member-form .ec-add-member-category-option {
    height: 100%;
    position: relative;
}

.ec-add-member-form .ec-add-member-category-option>input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ec-add-member-form .ec-add-member-category-card {
    min-height: 66px;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    gap: 9px;
    padding: 8px 9px;
    cursor: pointer;
    color: var(--text_color_4);
    text-align: left;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-category-card:hover {
    color: var(--text_color_3);
    border-color: rgba(15, 92, 92, 0.35);
    background: var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-category-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-add-member-form .ec-add-member-category-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ec-add-member-form .ec-add-member-category-card__name {
    min-width: 0;
    flex: 1 1 auto;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.ec-add-member-form .ec-add-member-category-card__check {
    width: 18px;
    height: 18px;
    display: flex;
    position: absolute;
    top: 4px;
    right: 4px;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 10px;
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-category-card__check i {
    font-size: 10px;
}

.ec-add-member-form .ec-add-member-category-option>input:focus-visible+.ec-add-member-category-card {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-category-option>input:checked+.ec-add-member-category-card {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
    box-shadow: 0 5px 14px rgba(15, 92, 92, 0.18);
}

.ec-add-member-form .ec-add-member-category-option>input:checked+.ec-add-member-category-card .ec-add-member-category-card__icon {
    background: var(--bg_color_1);
    color: var(--text_color_3);
}

.ec-add-member-form .ec-add-member-category-option>input:checked+.ec-add-member-category-card .ec-add-member-category-card__check {
    color: var(--text_color_1);
}

.ec-add-member-form .ec-add-member-form__file-control {
    min-height: 46px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.ec-add-member-form .ec-add-member-form__file-control input[type="file"] {
    width: 100%;
    min-height: 34px;
    padding: 0;
    color: var(--text_color_6);
    font-family: var(--font_manrope);
    font-size: 11px;
}

.ec-add-member-form .ec-add-member-form__file-control input[type="file"]::file-selector-button {
    min-height: 30px;
    margin-right: 8px;
    padding: 0 10px;
    color: var(--text_color_3);
    font-family: var(--font_manrope);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.25);
    border-radius: 7px;
    background: var(--bg_color_1);
}

.ec-add-member-form .ec-add-member-form__control--textarea {
    min-height: 116px;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ec-add-member-form .ec-add-member-form__control--textarea>i:first-child {
    margin-top: 3px;
}

.ec-add-member-form .ec-add-member-form__control--textarea textarea {
    min-height: 92px;
    resize: vertical;
}

.ec-add-member-form .ec-add-member-form__fieldset {
    height: 100%;
    margin: 0;
    padding: 13px;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
}

.ec-add-member-form .ec-add-member-form__fieldset legend {
    width: auto;
    margin: 0 0 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-add-member-form .ec-add-member-form__choice-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.ec-add-member-form .ec-add-member-form__choice {
    min-height: 40px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    gap: 8px;
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-form__choice:has(input:checked) {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-form__choice input {
    accent-color: var(--bg_color_3);
}

.ec-add-member-form .ec-add-member-settings {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.ec-add-member-form .ec-add-member-setting {
    min-height: 72px;
    display: flex;
    position: relative;
    align-items: center;
    flex: 1 1 calc(33.333% - 8px);
    gap: 10px;
    padding: 11px 12px;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
}

.ec-add-member-form .ec-add-member-setting__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-add-member-form .ec-add-member-setting__copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
}

.ec-add-member-form .ec-add-member-setting__title {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-add-member-form .ec-add-member-setting__description {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.ec-add-member-form .ec-add-member-setting>input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-add-member-form .ec-add-member-setting__switch {
    width: 34px;
    height: 20px;
    position: relative;
    flex: 0 0 34px;
    border-radius: 20px;
    background: var(--bg_color_8);
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-setting__switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg_color_1);
    box-shadow: 0 1px 4px rgba(11, 31, 42, 0.16);
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-setting>input:checked+.ec-add-member-setting__switch {
    background: var(--bg_color_3);
}

.ec-add-member-form .ec-add-member-setting>input:checked+.ec-add-member-setting__switch::after {
    transform: translateX(14px);
}

.ec-add-member-form .ec-add-member-form__success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 14px;
    color: var(--text_color_3);
    border: 1px solid rgba(15, 92, 92, 0.25);
    border-radius: 9px;
    background: var(--bg_color_16);
}

.ec-add-member-form .ec-add-member-form__success.show {
    display: flex;
}

.ec-add-member-form .ec-add-member-form__success>i {
    flex: 0 0 auto;
}

.ec-add-member-form .ec-add-member-form__success>div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ec-add-member-form .ec-add-member-form__success-title {
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
}

.ec-add-member-form .ec-add-member-form__success-text {
    color: var(--text_color_6);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.ec-add-member-form .ec-add-member-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-add-member-form .ec-add-member-form__cancel,
.ec-add-member-form .ec-add-member-form__submit {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    transition: 0.2s ease;
}

.ec-add-member-form .ec-add-member-form__cancel {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-add-member-form .ec-add-member-form__cancel:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-add-member-form .ec-add-member-form__submit {
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-add-member-form .ec-add-member-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-nav-submenu__menu .dropdown-item>i {
    width: 16px;
    margin-right: 7px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-member-management-section {
    font-family: var(--font_manrope);
    font-size: 12px;
}

.ec-member-management-section button {
    font-family: var(--font_manrope);
    font-size: 12px;
}

.ec-member-management-section input {
    font-family: var(--font_manrope);
    font-size: 12px;
}

.ec-member-management-section .ec-member-dialog button {
    font-family: var(--font_manrope);
    font-size: 12px;
}

.ec-member-management-section .ec-member-dialog input {
    font-family: var(--font_manrope);
    font-size: 12px;
}

.ec-member-management-section .ec-member-management__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.ec-member-management-section .ec-member-management__eyebrow {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ec-member-management-section .ec-member-management__heading h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ec-member-management-section .ec-member-management__heading p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.6;
}

.ec-member-management-section .ec-member-management__new-primary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 9px;
    padding: 0 17px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-management-section .ec-member-management__new-primary:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-member-management-section .ec-member-management__new-primary:focus-visible {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-member-management-section .ec-member-summary {
    margin-bottom: 24px;
}

.ec-member-management-section .ec-member-summary__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px rgba(11, 31, 42, 0.05);
}

.ec-member-management-section .ec-member-summary__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-size: 17px;
    border-radius: 11px;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-summary__card--subscriber .ec-member-summary__icon {
    color: #157347;
    background: #E8F7EF;
}

.ec-member-management-section .ec-member-summary__card--waiting .ec-member-summary__icon {
    color: #A15C00;
    background: #FFF4DE;
}

.ec-member-management-section .ec-member-summary__card--unsubscribed .ec-member-summary__icon {
    color: #B42318;
    background: #FFF0EE;
}

.ec-member-management-section .ec-member-summary__card>div {
    min-width: 0;
}

.ec-member-management-section .ec-member-summary__card small {
    display: block;
    margin-bottom: 4px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-member-management-section .ec-member-summary__card strong {
    display: block;
    color: var(--text_color_4);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.1;
}

.ec-member-management-section .ec-member-list-card {
    overflow: visible;
    border: 1px solid var(--bg_color_7);
    border-radius: 14px;
    background: var(--bg_color_1);
    box-shadow: 0 10px 32px rgba(11, 31, 42, 0.06);
}

.ec-member-management-section .ec-member-list-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-management-section .ec-member-list-card__top h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-list-card__top p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-management-section .ec-member-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ec-member-management-section .ec-member-action {
    display: flex;
    align-items: center;
    min-height: 38px;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    color: var(--text_color_6);
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-management-section .ec-member-action:hover {
    color: var(--text_color_3);
    outline: 0;
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-action:focus-visible {
    color: var(--text_color_3);
    outline: 0;
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-action--new {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-member-management-section .ec-member-action--new:hover {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-member-management-section .ec-member-action--new:focus-visible {
    color: var(--text_color_1);
    background: var(--bg_color_4);
}

.ec-member-management-section .ec-member-action--edit:not(:disabled) {
    color: #8A5800;
    border-color: #E7C886;
    background: #FFF9EA;
}

.ec-member-management-section .ec-member-action--delete:not(:disabled) {
    color: #B42318;
    border-color: #F0BBB6;
    background: #FFF5F4;
}

.ec-member-management-section .ec-member-action:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.ec-member-management-section .ec-member-filters {
    position: relative;
    z-index: 5;
    padding: 18px 22px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-management-section .ec-member-filter__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-filter__search {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    gap: 10px;
    padding: 0 7px 0 13px;
}

.ec-member-management-section .ec-member-filter__search:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-management-section .ec-member-filter-dropdown.open .ec-member-filter-dropdown__trigger {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-management-section .ec-member-filter__search>i {
    color: var(--text_color_5);
}

.ec-member-management-section .ec-member-filter-dropdown__trigger>i:first-child {
    color: var(--text_color_5);
}

.ec-member-management-section .ec-member-filter__search input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0;
    color: var(--text_color_4);
    font-size: 12px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-member-management-section .ec-member-filter__search input::placeholder {
    color: #9299A4;
}

.ec-member-management-section .ec-member-filter__search button {
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text_color_5);
    border: 0;
    border-radius: 50%;
    background: var(--bg_color_6);
}

.ec-member-management-section .ec-member-filter__search.has-value button {
    display: flex;
}

.ec-member-management-section .ec-member-filter-dropdown {
    position: relative;
}

.ec-member-management-section .ec-member-filter-dropdown__trigger {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 13px;
    color: var(--text_color_4);
    text-align: left;
}

.ec-member-management-section .ec-member-filter-dropdown__trigger span {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-member-management-section .ec-member-filter-dropdown__trigger>i:last-child {
    color: var(--text_color_5);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.ec-member-management-section .ec-member-filter-dropdown.open .ec-member-filter-dropdown__trigger>i:last-child {
    transform: rotate(180deg);
}

.ec-member-management-section .ec-member-filter-dropdown__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 7px);
    left: 0;
    width: 100%;
    min-width: 210px;
    display: none;
    padding: 6px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_1);
    box-shadow: 0 12px 28px rgba(11, 31, 42, 0.14);
}

.ec-member-management-section .ec-member-filter-dropdown.open .ec-member-filter-dropdown__menu {
    display: block;
}

.ec-member-management-section .ec-member-filter-dropdown__menu button {
    width: 100%;
    min-height: 36px;
    display: block;
    padding: 8px 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    border: 0;
    border-radius: 6px;
    background: transparent;
}

.ec-member-management-section .ec-member-filter-dropdown__menu button:hover {
    color: var(--text_color_3);
    outline: 0;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-filter-dropdown__menu button:focus-visible {
    color: var(--text_color_3);
    outline: 0;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-filter-dropdown__menu button.active {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-management-section .ec-member-selection-bar {
    align-items: center;
    display: none;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 22px;
    color: var(--text_color_3);
    border-bottom: 1px solid rgba(15, 92, 92, 0.16);
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-selection-bar.show {
    display: flex;
}

.ec-member-management-section .ec-member-selection-bar button {
    padding: 0;
    color: var(--text_color_3);
    font-weight: 700;
    border: 0;
    background: transparent;
}

.ec-member-management-section .ec-member-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.ec-member-management-section .ec-member-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
}

.ec-member-management-section .ec-member-table th {
    padding: 13px 12px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid var(--bg_color_7);
    background: #F3F6F7;
    white-space: nowrap;
}

.ec-member-management-section .ec-member-table td {
    padding: 13px 12px;
    color: var(--text_color_6);
    font-size: 12px;
    vertical-align: middle;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-management-section .ec-member-table tbody tr {
    transition: background 0.2s ease;
}

.ec-member-management-section .ec-member-table tbody tr:hover {
    background: #FAFCFC;
}

.ec-member-management-section .ec-member-table tbody tr.selected {
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-table tbody tr[hidden] {
    display: none;
}

.ec-member-management-section .ec-member-table__number {
    width: 42px;
    color: var(--text_color_5) !important;
    text-align: center !important;
}

.ec-member-management-section .ec-member-table__check {
    width: 42px;
    text-align: center !important;
}

.ec-member-management-section .ec-member-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--bg_color_3);
}

.ec-member-management-section .ec-member-profile {
    display: flex;
    align-items: center;
    min-width: 175px;
    gap: 10px;
}

.ec-member-management-section .ec-member-profile>span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    font-weight: 700;
    border-radius: 50%;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-profile strong {
    display: block;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-profile small {
    display: block;
    margin-top: 2px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-management-section .ec-member-table time small {
    display: block;
    margin-top: 2px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-management-section .ec-member-table td>a {
    color: #3971B9;
    font-weight: 600;
}

.ec-member-management-section .ec-member-table td>a:hover {
    color: var(--text_color_3);
    text-decoration: underline;
}

.ec-member-management-section .ec-member-status {
    display: flex;
    align-items: center;
    width: fit-content;
    min-height: 27px;
    justify-content: center;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
}

.ec-member-management-section .ec-member-status--subscriber {
    color: #157347;
    background: #E8F7EF;
}

.ec-member-management-section .ec-member-status--waiting {
    color: #945400;
    background: #FFF3DA;
}

.ec-member-management-section .ec-member-status--unsubscribed {
    color: #B42318;
    background: #FFF0EE;
}

.ec-member-management-section .ec-member-table time {
    color: var(--text_color_6);
    white-space: nowrap;
}

.ec-member-management-section .ec-member-table__row-actions {
    width: 124px;
    min-width: 124px;
    text-align: center !important;
}

.ec-member-management-section .ec-member-empty {
    display: none;
    padding: 54px 20px;
    text-align: center;
}

.ec-member-management-section .ec-member-empty.show {
    display: block;
}

.ec-member-management-section .ec-member-empty>span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--text_color_3);
    font-size: 19px;
    border-radius: 50%;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-empty strong {
    display: block;
    color: var(--text_color_4);
    font-size: 14px;
}

.ec-member-management-section .ec-member-empty p {
    margin: 5px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-management-section .ec-member-list-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 22px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-member-management-section .ec-member-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ec-member-management-section .ec-member-pagination button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-member-management-section .ec-member-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.ec-member-management-section .ec-member-pagination span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--text_color_1);
    font-weight: 700;
    background: var(--bg_color_3);
}

body:has(.ec-member-management-section).ec-member-dialog-open {
    overflow: hidden;
}

.ec-member-management-section .ec-member-dialog {
    font-family: var(--font_manrope);
    font-size: 12px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1100;
    inset: 0;
    justify-content: center;
    padding: 20px;
}

.ec-member-management-section .ec-member-dialog[hidden] {
    display: none;
}

.ec-member-management-section .ec-member-dialog__backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(11, 31, 42, 0.62);
    backdrop-filter: blur(3px);
}

.ec-member-management-section .ec-member-dialog__panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    overflow: hidden;
    border-radius: 13px;
    background: var(--bg_color_1);
    box-shadow: 0 25px 60px rgba(11, 31, 42, 0.28);
}

.ec-member-management-section .ec-member-dialog__panel--small {
    width: min(440px, 100%);
    padding-top: 25px;
}

.ec-member-management-section .ec-member-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-member-management-section .ec-member-dialog__header>div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ec-member-management-section .ec-member-dialog__header>div>span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_16);
}

.ec-member-management-section .ec-member-dialog__header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 17px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-dialog__delete-copy h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 17px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-dialog__header p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    line-height: 1.55;
}

.ec-member-management-section .ec-member-dialog__delete-copy p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    line-height: 1.55;
}

.ec-member-management-section .ec-member-dialog__header>button {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--text_color_5);
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-member-management-section .ec-member-dialog__body {
    padding: 20px;
}

.ec-member-management-section .ec-member-dialog__body label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
}

.ec-member-management-section .ec-member-dialog__body input {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    outline: 0;
}

.ec-member-management-section .ec-member-dialog__body input:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-member-management-section .ec-member-dialog__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding: 14px 20px;
    border-top: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-member-management-section .ec-member-dialog__footer button {
    min-height: 38px;
    padding: 0 14px;
    color: var(--text_color_6);
    font-weight: 700;
    border: 1px solid var(--bg_color_8);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-member-management-section .ec-member-dialog__footer button[type="submit"] {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-member-management-section .ec-member-dialog__footer .ec-member-dialog__delete-confirm {
    color: var(--text_color_1);
    border-color: #B42318;
    background: #B42318;
}

.ec-member-management-section .ec-member-dialog__delete-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    color: #B42318;
    font-size: 20px;
    border-radius: 50%;
    background: #FFF0EE;
}

.ec-member-management-section .ec-member-dialog__delete-copy {
    padding: 0 24px 22px;
    text-align: center;
}

.ec-member-management-section .ec-member-toast {
    font-family: var(--font_manrope);
    font-size: 12px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
    max-width: calc(100% - 48px);
    gap: 9px;
    padding: 13px 16px;
    color: var(--text_color_1);
    font-weight: 700;
    border-radius: 9px;
    background: var(--bg_color_4);
    box-shadow: 0 15px 35px rgba(11, 31, 42, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: 0.25s ease;
}

.ec-member-management-section .ec-member-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.ec-member-management-section .ec-member-table__action-cell {
    width: 124px;
    min-width: 124px;
    text-align: center;
}

.ec-member-management-section .ec-member-row-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ec-member-management-section .ec-member-row-actions__button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    padding: 0;
    color: var(--text_color_5);
    border: 1px solid var(--bg_color_7);
    border-radius: 7px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-management-section .ec-member-row-actions__button:hover,
.ec-member-management-section .ec-member-row-actions__button:focus-visible {
    color: var(--text_color_3);
    outline: 0;
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
    text-decoration: none;
}

.ec-member-management-section .ec-member-row-actions__button--delete {
    color: #B42318;
}

.ec-member-management-section .ec-member-row-actions__button--delete:hover,
.ec-member-management-section .ec-member-row-actions__button--delete:focus-visible {
    color: #B42318;
    border-color: #F3B7B3;
    background: #FFF0EE;
}

.ec-create-group-page {
    width: 100%;
}

.ec-create-group-page .ec-create-group-page__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.ec-create-group-page .ec-create-group-page__heading-copy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
}

.ec-create-group-page .ec-create-group-page__eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-create-group-page .ec-create-group-page__title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.ec-create-group-page .ec-create-group-page__description {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.ec-create-group-page .ec-create-group-page__back {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 9px;
    padding: 0 17px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-create-group-page .ec-create-group-page__back:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__back:focus-visible {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    outline: 0;
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__form {
    width: 100%;
}

.ec-create-group-page .ec-create-group-page__card {
    overflow: visible;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 28px rgba(11, 31, 42, 0.05);
}

.ec-create-group-page .ec-create-group-page__card+.ec-create-group-page__card {
    margin-top: 20px;
}

.ec-create-group-page .ec-create-group-page__card-header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--bg_color_7);
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, rgba(15, 92, 92, 0.07), rgba(15, 92, 92, 0.01));
}

.ec-create-group-page .ec-create-group-page__card-icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_1);
    font-size: 15px;
    border-radius: 10px;
    background: var(--bg_color_3);
    box-shadow: 0 7px 16px rgba(15, 92, 92, 0.2);
}

.ec-create-group-page .ec-create-group-page__card-heading-copy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
}

.ec-create-group-page .ec-create-group-page__card-title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-create-group-page .ec-create-group-page__card-description {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

.ec-create-group-page .ec-create-group-page__card-body {
    padding: 22px;
}

.ec-create-group-page .ec-create-group-page__field-column {
    position: relative;
}

.ec-create-group-page .ec-create-group-page__label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 8px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.ec-create-group-page .ec-create-group-page__required {
    color: #D14343;
}

.ec-create-group-page .ec-create-group-page__control {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-create-group-page .ec-create-group-page__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-create-group-page .ec-create-group-page__control--readonly {
    background: var(--bg_color_5);
}

.ec-create-group-page .ec-create-group-page__control-icon {
    width: 16px;
    flex: 0 0 16px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-create-group-page .ec-create-group-page__input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    flex: 1 1 auto;
    padding: 0;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 500;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-create-group-page .ec-create-group-page__input::placeholder {
    color: #9CA3AF;
}

.ec-create-group-page .ec-create-group-page__input--readonly {
    cursor: not-allowed;
    color: var(--text_color_5);
}

.ec-create-group-page .ec-create-group-page__file-control {
    overflow: hidden;
    padding-right: 12px;
    padding-left: 12px;
    max-height: 46px;
}

.ec-create-group-page .ec-create-group-page__file-input-simple {
    min-width: 0;
    min-height: 44px;
    padding: 6px 0;
    overflow: hidden;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.ec-create-group-page .ec-create-group-page__file-input-simple::file-selector-button {
    min-height: 34px;
    margin: 5px 10px 5px 0;
    padding: 0 12px;
    cursor: pointer;
    color: var(--text_color_3);
    font-family: var(--font_manrope);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.26);
    border-radius: 8px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-create-group-page .ec-create-group-page__file-input-simple:hover::file-selector-button {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__control--picker {
    overflow: hidden;
    cursor: pointer;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__control-icon {
    pointer-events: none;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="date"] {
    position: relative;
    cursor: pointer;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="time"] {
    position: relative;
    cursor: pointer;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="datetime-local"] {
    position: relative;
    cursor: pointer;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -39px;
    width: calc(100% + 39px);
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -39px;
    width: calc(100% + 39px);
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.ec-create-group-page .ec-create-group-page__control--picker .ec-create-group-page__input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -39px;
    width: calc(100% + 39px);
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.ec-create-group-page .ec-create-group-page__dropdown {
    position: relative;
    width: 100%;
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    cursor: pointer;
    list-style: none;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger::-webkit-details-marker {
    display: none;
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger.show {
    border-color: var(--bg_color_3);
    outline: 0;
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger:hover {
    border-color: var(--bg_color_3);
    outline: 0;
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger:focus-visible {
    border-color: var(--bg_color_3);
    outline: 0;
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-create-group-page .ec-create-group-page__dropdown-icon {
    width: 16px;
    flex: 0 0 16px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-create-group-page .ec-create-group-page__dropdown-value {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
}

.ec-create-group-page .ec-create-group-page__dropdown-placeholder {
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #9CA3AF;
}

.ec-create-group-page .ec-create-group-page__dropdown-selected {
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

.ec-create-group-page .ec-create-group-page__dropdown-chevron {
    margin-left: auto;
    color: var(--text_color_5);
    font-size: 10px;
    transition: transform 0.2s ease;
}

.ec-create-group-page .ec-create-group-page__dropdown-trigger.show .ec-create-group-page__dropdown-chevron {
    transform: rotate(180deg);
}

.ec-create-group-page .ec-create-group-page__dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    min-width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 16px 40px rgba(11, 31, 42, 0.12);
}

.ec-create-group-page .ec-create-group-page__dropdown-menu.show {
    display: flex;
}

.ec-create-group-page .ec-create-group-page__dropdown-menu--scroll {
    max-height: 250px;
    overflow-y: auto;
}

.ec-create-group-page .ec-create-group-page__dropdown-option {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 40px;
    align-items: center;
    padding: 9px 10px;
    cursor: pointer;
    color: var(--text_color_4);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.18s ease;
}

.ec-create-group-page .ec-create-group-page__dropdown-option:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__dropdown-option:has(.ec-create-group-page__dropdown-radio:checked) {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__dropdown-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ec-create-group-page .ec-create-group-page__dropdown-option-text {
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="raj_sorathiya"]:checked) .ec-create-group-page__dropdown-selected--creator-raj {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="neel_gajera"]:checked) .ec-create-group-page__dropdown-selected--creator-neel {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="priya_shah"]:checked) .ec-create-group-page__dropdown-selected--creator-priya {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="admin_user"]:checked) .ec-create-group-page__dropdown-selected--creator-admin {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="rajkot"]:checked) .ec-create-group-page__dropdown-selected--city-rajkot {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="ahmedabad"]:checked) .ec-create-group-page__dropdown-selected--city-ahmedabad {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="surat"]:checked) .ec-create-group-page__dropdown-selected--city-surat {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="vadodara"]:checked) .ec-create-group-page__dropdown-selected--city-vadodara {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="monday"]:checked) .ec-create-group-page__dropdown-selected--day-monday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="tuesday"]:checked) .ec-create-group-page__dropdown-selected--day-tuesday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="wednesday"]:checked) .ec-create-group-page__dropdown-selected--day-wednesday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="thursday"]:checked) .ec-create-group-page__dropdown-selected--day-thursday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="friday"]:checked) .ec-create-group-page__dropdown-selected--day-friday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="saturday"]:checked) .ec-create-group-page__dropdown-selected--day-saturday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="sunday"]:checked) .ec-create-group-page__dropdown-selected--day-sunday {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="active"]:checked) .ec-create-group-page__dropdown-selected--status-active {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="upcoming"]:checked) .ec-create-group-page__dropdown-selected--status-upcoming {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="inactive"]:checked) .ec-create-group-page__dropdown-selected--status-inactive {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__dropdown:has(.ec-create-group-page__dropdown-radio[value="draft"]:checked) .ec-create-group-page__dropdown-selected--status-draft {
    display: inline;
}

.ec-create-group-page .ec-create-group-page__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding: 18px;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 28px rgba(11, 31, 42, 0.05);
}

.ec-create-group-page .ec-create-group-page__reset {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-create-group-page .ec-create-group-page__reset:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__submit {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-create-group-page .ec-create-group-page__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-group-profile-page .ec-group-profile-card-heading,
.ec-group-profile-page .ec-group-profile-details-heading {
    min-width: 0;
}

.ec-group-profile-page .ec-group-profile-card-title,
.ec-group-profile-page .ec-group-profile-details-title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-group-profile-page .ec-group-profile-daily-post__body {
    padding: 16px;
}

.ec-group-profile-page .ec-group-profile-daily-post__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ec-group-profile-page .ec-group-profile-daily-post__avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 10px;
    object-fit: cover;
}

.ec-group-profile-page .ec-group-profile-daily-post__author-copy {
    min-width: 0;
}

.ec-group-profile-page .ec-group-profile-daily-post__name {
    margin: 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-group-profile-page .ec-group-profile-daily-post__meta {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-group-profile-page .ec-group-profile-daily-post__text {
    margin: 14px 0 0;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.5;
}

.ec-group-profile-page .ec-group-profile-daily-post__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-group-profile-page .ec-group-profile-daily-post__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-group-profile-page .ec-group-profile-daily-post__stat i {
    color: var(--text_color_3);
}

.ec-group-profile-page .ec-group-profile-mini-card {
    overflow: hidden;
}

.ec-group-profile-page .ec-group-profile-mini-tab-control {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-group-profile-page .ec-group-profile-mini-tabs {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 6px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-group-profile-page .ec-group-profile-mini-tabs__button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    min-height: 40px;
    gap: 7px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-group-profile-page #groupEventsTab:checked~.ec-group-profile-mini-tabs label[for="groupEventsTab"],
.ec-group-profile-page #groupMembersTab:checked~.ec-group-profile-mini-tabs label[for="groupMembersTab"] {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-group-profile-page .ec-group-profile-mini-panels {
    min-width: 0;
}

.ec-group-profile-page .ec-group-profile-mini-panel {
    display: none;
    padding: 8px 14px;
}

.ec-group-profile-page #groupEventsTab:checked~.ec-group-profile-mini-panels .ec-group-profile-mini-panel--events,
.ec-group-profile-page #groupMembersTab:checked~.ec-group-profile-mini-panels .ec-group-profile-mini-panel--members {
    display: block;
}

.ec-group-profile-page .ec-group-profile-event-item,
.ec-group-profile-page .ec-group-profile-member-item,
.ec-group-profile-page .ec-group-profile-rsvp-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 0;
}

.ec-group-profile-page .ec-group-profile-event-item+.ec-group-profile-event-item,
.ec-group-profile-page .ec-group-profile-member-item+.ec-group-profile-member-item,
.ec-group-profile-page .ec-group-profile-rsvp-item+.ec-group-profile-rsvp-item {
    border-top: 1px solid var(--bg_color_7);
}

.ec-group-profile-page .ec-group-profile-event-date {
    width: 42px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    flex-direction: column;
    border-radius: 8px;
    background: var(--bg_color_6);
}

.ec-group-profile-page .ec-group-profile-event-month {
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
}

.ec-group-profile-page .ec-group-profile-event-day {
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-group-profile-page .ec-group-profile-event-copy,
.ec-group-profile-page .ec-group-profile-member-copy,
.ec-group-profile-page .ec-group-profile-rsvp-copy {
    min-width: 0;
}

.ec-group-profile-page .ec-group-profile-event-title,
.ec-group-profile-page .ec-group-profile-member-name,
.ec-group-profile-page .ec-group-profile-rsvp-title {
    margin: 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-group-profile-page .ec-group-profile-event-meta,
.ec-group-profile-page .ec-group-profile-member-meta,
.ec-group-profile-page .ec-group-profile-rsvp-meta {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-group-profile-page .ec-group-profile-member-avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    object-fit: cover;
}

.ec-group-profile-page .ec-group-profile-rsvp-list {
    padding: 8px 14px;
}

.ec-group-profile-page .ec-group-profile-rsvp-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_6);
}

.ec-group-profile-page .ec-group-profile-details-value {
    margin: 0;
    color: var(--text_color_4);
    font-size: 13px;
    line-height: 1.65;
}

/* Profile Stream - post composer publishing additions */
.ec-member-profile-composer__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-member-profile-composer__preview[hidden] {
    display: none !important;
}

.ec-member-profile-composer__preview-media {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border-radius: 9px;
    background: var(--bg_color_6);
}

.ec-member-profile-composer__preview-media img,
.ec-member-profile-composer__preview-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ec-member-profile-composer__preview-copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
}

.ec-member-profile-composer__preview-copy strong {
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-member-profile-composer__preview-copy span {
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.ec-member-profile-composer__preview>button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_5);
    border: 0;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-member-profile-composer__preview>button:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-member-profile-composer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--bg_color_7);
}

.ec-member-profile-composer__status {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.ec-member-profile-composer__status.is-success {
    color: var(--text_color_3);
}

.ec-member-profile-composer__status.is-error {
    color: #B42318;
}

.ec-member-profile-composer__footer-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
}

.ec-member-profile-composer__clear,
.ec-member-profile-composer__submit {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    transition: 0.2s ease;
}

.ec-member-profile-composer__clear {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-member-profile-composer__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-member-profile-composer__submit {
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-member-profile-composer__submit:hover:not(:disabled) {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-member-profile-composer__submit:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.ec-member-profile-post__media video {
    width: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
    background: var(--bg_color_4);
}

.ec-member-profile-post__event,
.ec-member-profile-post__insight {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 13px;
    padding: 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-member-profile-post__event>span,
.ec-member-profile-post__insight>span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_1);
}

.ec-member-profile-post__event>div,
.ec-member-profile-post__insight>div {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-member-profile-post__event small,
.ec-member-profile-post__insight small {
    display: block;
    margin-bottom: 3px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ec-member-profile-post__event strong {
    display: block;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.ec-member-profile-post__event p,
.ec-member-profile-post__insight p {
    margin: 4px 0 0;
    color: var(--text_color_6);
    font-size: 12px;
    line-height: 1.6;
}

.ec-member-profile-post--new {
    animation: ecProfilePostAppear 0.28s ease both;
}

@keyframes ecProfilePostAppear {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Merged site header. Existing component behaviour is preserved. */
.ec-site-header {
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    box-shadow: 0 4px 16px var(--bg_color_11);
}

.ec-site-header .ec-topbar {
    width: 100%;
    padding: 10px 0;
    border-bottom: 0;
    background: var(--bg_color_1);
}

.ec-topbar .container-fluid {
    width: 100%;
    max-width: none;
    padding-right: 24px;
    padding-left: 24px;
}

.ec-topbar .row {
    width: auto;
    min-width: 0;
}

.ec-topbar .ec-topbar__brand-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 0;
    width: auto;
    max-width: none;
}

.ec-topbar .ec-topbar__brand {
    width: 190px;
    max-width: 100%;
}

.ec-topbar .ec-topbar__navigation-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: 0;
}

.ec-topbar .ec-topbar__account-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
}

.ec-topbar .ec-topbar__account {
    width: auto;
    margin-left: auto;
}

.ec-site-header .ec-main-nav {
    position: relative;
    z-index: 2;
    width: auto;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ec-site-header .ec-main-nav .ec-main-nav__collapse {
    overflow: visible;
}

.ec-site-header .ec-main-nav .ec-main-nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 0;
}

.ec-site-header .ec-main-nav .ec-main-nav__link {
    min-height: 42px;
    color: var(--text_color_4);
    white-space: nowrap;
}

.ec-site-header .ec-main-nav .ec-main-nav__link:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_16);
}

.ec-site-header .ec-main-nav .ec-main-nav__link.show {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_16);
}

.ec-site-header .ec-main-nav .ec-main-nav__link--active {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-site-header .ec-main-nav .ec-main-nav__link--active:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-site-header .ec-main-nav .ec-main-nav__link--active.show {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-site-header .ec-main-nav .ec-nav-dropdown {
    margin-top: 8px;
}

.ec-site-header .ec-main-nav .ec-header-search-menu {
    margin-top: 8px;
}

/* .ec-side-card {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
} */

.ec-side-card .ec-side-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-side-card .ec-side-card__header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 18px;
    font-weight: 700;
}

.ec-side-card .ec-side-card__heading-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_1);
    border-radius: 10px;
    background: var(--bg_color_3);
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__link {
    display: block;
    color: var(--text_color_4);
    background: var(--bg_color_1);
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid var(--bg_color_7);
    /* background: var(--bg_color_5); */
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__media img {
    width: 100%;
    /* max-width: 220px; */
    /* max-height: 72px; */
    display: block;
    object-fit: contain;
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__content>div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__title {
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__content>span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_6);
    transition: 0.2s ease;
}

.ec-bizvitals-banner-card .ec-bizvitals-banner-card__link:hover .ec-bizvitals-banner-card__content>span {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-latest-activity-card .ec-latest-activity-card__list {
    display: flex;
    flex-direction: column;
    padding: 14px 14px;
}

.ec-latest-activity-card .ec-latest-activity-card__item {
    display: flex;
    position: relative;
    align-items: flex-start;
    gap: 11px;
    color: var(--text_color_4);
    padding: 6px 0;
}

.ec-latest-activity-card .ec-latest-activity-card__step {
    width: 22px;
    min-height: 44px;
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 22px;
    padding-top: 5px;
}

.ec-latest-activity-card .ec-latest-activity-card__step-dot {
    width: 11px;
    height: 11px;
    position: relative;
    z-index: 2;
    flex: 0 0 11px;
    border: 3px solid var(--bg_color_3);
    border-radius: 50%;
    background: var(--bg_color_1);
}

.ec-latest-activity-card .ec-latest-activity-card__item:not(:last-child) .ec-latest-activity-card__step::after {
    content: "";
    position: absolute;
    top: 15px;
    bottom: -18px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: var(--bg_color_8);
}

.ec-latest-activity-card .ec-latest-activity-card__copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
}

.ec-latest-activity-card .ec-latest-activity-card__date {
    color: var(--text_color_3);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.ec-latest-activity-card .ec-latest-activity-card__description {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.ec-next-meeting-card .ec-next-meeting-card__list {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 3px;
}

.ec-next-meeting-card .ec-next-meeting-card__item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    color: var(--text_color_4);
    border: 1px solid transparent;
    border-radius: 9px;
    transition: 0.2s ease;
}

.ec-next-meeting-card .ec-next-meeting-card__item:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-next-meeting-card .ec-next-meeting-card__date {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    flex-direction: column;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_6);
    line-height: 1;
}

.ec-next-meeting-card .ec-next-meeting-card__date-day {
    font-size: 15px;
    font-weight: 700;
}

.ec-next-meeting-card .ec-next-meeting-card__date-month {
    margin-top: 3px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.ec-next-meeting-card .ec-next-meeting-card__copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
}

.ec-next-meeting-card .ec-next-meeting-card__title {
    overflow: hidden;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-next-meeting-card .ec-next-meeting-card__meta {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--text_color_5);
    font-size: 12px;
    line-height: 1.35;
}

.ec-next-meeting-card .ec-next-meeting-card__meta i {
    color: var(--text_color_3);
    font-size: 10px;
}

.ec-next-meeting-card .ec-next-meeting-card__item>i {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 9px;
}

/* Business Category List */
.ec-business-category-section {
    padding: 0;
    background: transparent;
}

.ec-business-category-section .ec-business-category-section__header {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 4px 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-business-category-section .ec-business-category-section__heading {
    min-width: 0;
}

.ec-business-category-section .ec-business-category-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ec-business-category-section .ec-business-category-section__eyebrow i {
    font-size: 12px;
}

.ec-business-category-section .ec-business-category-section__header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.ec-business-category-section .ec-business-category-section__header p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.5;
}

.ec-business-category-section .ec-business-category-section__add {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 16px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-section .ec-business-category-section__add:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-business-category-section .ec-business-category-section__search {
    height: 46px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
    padding: 0 6px 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-section .ec-business-category-section__search:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-business-category-section .ec-business-category-section__search>i {
    color: var(--text_color_3);
}

.ec-business-category-section .ec-business-category-section__search input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 13px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-business-category-section .ec-business-category-section__search input::placeholder {
    color: var(--text_color_5);
}

.ec-business-category-section .ec-business-category-section__search button {
    width: 34px;
    height: 34px;
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_5);
    border: 0;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
}

.ec-business-category-section .ec-business-category-section__search button.show {
    display: flex;
}

.ec-business-category-section .ec-business-category-section__search button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_6);
}

.ec-business-category-section .ec-business-category-section__list {
    margin-top: 5px;
}

.ec-business-category-section .ec-business-category-section__column.is-hidden {
    display: none;
}

.ec-business-category-section .ec-business-category-section__empty {
    display: none;
    margin-top: 18px;
    padding: 30px 15px;
    color: var(--text_color_5);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 1px dashed var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-business-category-section .ec-business-category-section__empty.show {
    display: block;
}


.ec-business-category-section .ec-business-category-section__search,
.ec-business-category-section .ec-business-category-section__list,
.ec-business-category-section .ec-business-category-section__empty {
    position: relative;
}

.ec-business-category-section .ec-business-category-section__list {
    margin-right: 0;
    margin-left: 0;
    padding-top: 2px;
}


/* Business Category Delete Modal */
.ec-business-category-delete-modal {
    font-family: var(--font_manrope);
}

.ec-business-category-delete-modal .modal-dialog {
    width: calc(100% - 32px);
    max-width: 380px;
    margin-right: auto;
    margin-left: auto;
}

.ec-business-category-delete-modal .modal-content {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 14px;
    background: var(--bg_color_1);
    box-shadow: 0 24px 60px rgba(11, 31, 42, 0.20);
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__body {
    padding: 28px 24px 18px;
    text-align: center;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #C9362B;
    font-size: 16px;
    border-radius: 12px;
    background: #FDE9E7;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__body h2 {
    margin: 0;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__body p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px 18px;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__cancel,
.ec-business-category-delete-modal .ec-business-category-delete-modal__confirm {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    padding: 0 14px;
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 9px;
    outline: 0;
    transition: 0.2s ease;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__cancel {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__cancel:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_5);
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__confirm {
    color: var(--text_color_1);
    border: 1px solid #C9362B;
    background: #C9362B;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__confirm:hover {
    color: var(--text_color_1);
    border-color: #A92D24;
    background: #A92D24;
}

.ec-business-category-delete-modal .ec-business-category-delete-modal__cancel:focus,
.ec-business-category-delete-modal .ec-business-category-delete-modal__confirm:focus {
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.modal-backdrop.show {
    opacity: 0.46;
}

/* Business Category Add Form */
.ec-business-category-form-section {
    min-width: 0;
}

.ec-business-category-form-section .ec-business-category-form-section__header {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 4px 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-business-category-form-section .ec-business-category-form-section__heading {
    min-width: 0;
}

.ec-business-category-form-section .ec-business-category-form-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ec-business-category-form-section .ec-business-category-form-section__eyebrow i {
    font-size: 12px;
}

.ec-business-category-form-section .ec-business-category-form-section__header h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.ec-business-category-form-section .ec-business-category-form-section__header p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.5;
}

.ec-business-category-form-section .ec-business-category-form-section__back {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 15px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-form-section .ec-business-category-form-section__back:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-business-category-form {
    margin-top: 22px;
}

.ec-business-category-form .ec-business-category-form__card {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 12px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
}

.ec-business-category-form .ec-business-category-form__card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--bg_color_7);
}

.ec-business-category-form .ec-business-category-form__card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_6);
}

.ec-business-category-form .ec-business-category-form__card-header h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
}

.ec-business-category-form .ec-business-category-form__card-header p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    line-height: 1.5;
}

.ec-business-category-form .ec-business-category-form__card-body {
    padding: 22px;
}

.ec-business-category-form .ec-business-category-form__field+.ec-business-category-form__field {
    margin-top: 20px;
}

.ec-business-category-form .ec-business-category-form__field>label:first-child {
    display: block;
    margin-bottom: 8px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-business-category-form .ec-business-category-form__required {
    color: #C0392B;
}

.ec-business-category-form .ec-business-category-form__control {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-form .ec-business-category-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-business-category-form .ec-business-category-form__control>i {
    color: var(--text_color_3);
}

.ec-business-category-form .ec-business-category-form__control input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 13px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-business-category-form .ec-business-category-form__control input::placeholder {
    color: var(--text_color_5);
}

.ec-business-category-form .ec-business-category-form__file-control {
    min-height: 76px;
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    border: 1px dashed var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-business-category-form .ec-business-category-form__file-control:hover {
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-business-category-form .ec-business-category-form__file-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ec-business-category-form .ec-business-category-form__file-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    color: var(--text_color_3);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-business-category-form .ec-business-category-form__file-copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
}

.ec-business-category-form .ec-business-category-form__file-title {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-business-category-form .ec-business-category-form__file-note {
    color: var(--text_color_5);
    font-size: 11px;
}

.ec-business-category-form .ec-business-category-form__file-button {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 12px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-business-category-form .ec-business-category-form__preview-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ec-business-category-form .ec-business-category-form__preview-label {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-business-category-form .ec-business-category-form__preview {
    max-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.ec-business-category-form .ec-business-category-form__preview img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

.ec-business-category-form .ec-business-category-form__preview-empty {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text_color_5);
    font-size: 12px;
}

.ec-business-category-form .ec-business-category-form__preview-empty i {
    color: var(--text_color_3);
    font-size: 28px;
}

.ec-business-category-form .ec-business-category-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid var(--bg_color_7);
    background: var(--bg_color_5);
}

.ec-business-category-form .ec-business-category-form__cancel,
.ec-business-category-form .ec-business-category-form__submit {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.2s ease;
}

.ec-business-category-form .ec-business-category-form__cancel {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-business-category-form .ec-business-category-form__cancel:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-business-category-form .ec-business-category-form__submit {
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-business-category-form .ec-business-category-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-business-category-table {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
}

.ec-business-category-table .ec-business-category-table__head {
    min-height: 50px;
    display: flex;
    align-items: center;
    color: var(--text_color_6);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_6);
}

.ec-business-category-table .ec-business-category-table__head>div {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ec-business-category-table .ec-business-category-table__body {
    display: flex;
    flex-direction: column;
}

.ec-business-category-table .ec-business-category-row {
    min-height: 78px;
    display: flex;
    align-items: center;
    color: var(--text_color_4);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-table .ec-business-category-row:last-child {
    border-bottom: 0;
}

.ec-business-category-table .ec-business-category-row:nth-child(even) {
    background: var(--bg_color_5);
}

.ec-business-category-table .ec-business-category-row:hover {
    background: var(--bg_color_16);
}

.ec-business-category-table .ec-business-category-row.is-hidden {
    display: none;
}

.ec-business-category-table .ec-business-category-table__sr {
    width: 70px;
    min-width: 70px;
    flex: 0 0 70px;
    justify-content: center;
    text-align: center;
}

.ec-business-category-table .ec-business-category-table__image-title,
.ec-business-category-table .ec-business-category-table__image-cell {
    width: 100px;
    min-width: 100px;
    flex: 0 0 100px;
}

.ec-business-category-table .ec-business-category-table__name-title,
.ec-business-category-table .ec-business-category-table__name-cell {
    min-width: 0;
    flex: 1 1 auto;
}

.ec-business-category-table .ec-business-category-table__actions-title,
.ec-business-category-table .ec-business-category-table__actions-cell {
    width: 130px;
    min-width: 130px;
    flex: 0 0 130px;
    justify-content: flex-end;
}

.ec-business-category-table .ec-business-category-table__image-cell,
.ec-business-category-table .ec-business-category-table__name-cell,
.ec-business-category-table .ec-business-category-table__actions-cell,
.ec-business-category-table .ec-business-category-table__sr {
    display: flex;
    align-items: center;
    padding: 10px 14px;
}

.ec-business-category-table .ec-business-category-row__sr-no {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.ec-business-category-table .ec-business-category-row__image {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    overflow: hidden;
    border-radius: 9px;
    background: var(--bg_color_6);
}

.ec-business-category-table .ec-business-category-row__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ec-business-category-table .ec-business-category-row__name {
    min-width: 0;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.ec-business-category-table .ec-business-category-row__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ec-business-category-table .ec-business-category-row__action {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    font-size: 12px;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-business-category-table .ec-business-category-row__action--edit {
    color: var(--text_color_3);
    border: 1px solid rgba(15, 92, 92, 0.30);
}

.ec-business-category-table .ec-business-category-row__action--edit:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-business-category-table .ec-business-category-row__action--delete {
    color: #C0392B;
    border: 1px solid rgba(192, 57, 43, 0.25);
}

.ec-business-category-table .ec-business-category-row__action--delete:hover {
    color: var(--text_color_1);
    border-color: #C0392B;
    background: #C0392B;
}

.ec-edit-profile-page .ec-edit-profile-page__content {
    width: 100%;
    min-width: 0;
}

.ec-edit-profile-page .ec-edit-profile-page__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.ec-edit-profile-page .ec-edit-profile-page__heading-copy {
    min-width: 0;
}

.ec-edit-profile-page .ec-edit-profile-page__eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--text_color_3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-edit-profile-page .ec-edit-profile-page__heading h1 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.ec-edit-profile-page .ec-edit-profile-page__heading p {
    margin: 7px 0 0;
    color: var(--text_color_5);
    font-size: 13px;
    line-height: 1.6;
}

.ec-edit-profile-page .ec-edit-profile-page__back {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 14px;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.28);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-edit-profile-page .ec-edit-profile-page__back:hover {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-edit-profile-form {
    width: 100%;
    min-width: 0;
}

.ec-edit-profile-card {
    overflow: hidden;
    border: 1px solid var(--bg_color_7);
    border-radius: 11px;
    background: var(--bg_color_1);
    box-shadow: 0 7px 22px var(--bg_color_11);
}

.ec-edit-profile-card+.ec-edit-profile-card {
    margin-top: 18px;
}

.ec-edit-profile-card .ec-edit-profile-card__header {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg_color_7);
    background: linear-gradient(90deg, var(--bg_color_6) 0%, var(--bg_color_1) 100%);
}

.ec-edit-profile-card .ec-edit-profile-card__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: var(--text_color_1);
    font-size: 14px;
    border-radius: 9px;
    background: var(--bg_color_3);
    box-shadow: 0 5px 12px rgba(15, 92, 92, 0.18);
}

.ec-edit-profile-card .ec-edit-profile-card__heading-copy {
    min-width: 0;
}

.ec-edit-profile-card .ec-edit-profile-card__heading-copy h2 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-edit-profile-card .ec-edit-profile-card__heading-copy p {
    margin: 4px 0 0;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.ec-edit-profile-card .ec-edit-profile-card__body {
    padding: 20px;
}

.ec-edit-profile-form .ec-edit-profile-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-edit-profile-form .ec-edit-profile-form__control {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-edit-profile-form .ec-edit-profile-form__control:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-edit-profile-form .ec-edit-profile-form__control>i:first-child {
    width: 16px;
    flex: 0 0 16px;
    color: var(--text_color_3);
    text-align: center;
}

.ec-edit-profile-form .ec-edit-profile-form__control input,
.ec-edit-profile-form .ec-edit-profile-form__control select,
.ec-edit-profile-form .ec-edit-profile-form__control textarea {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ec-edit-profile-form .ec-edit-profile-form__control input {
    min-height: 44px;
}

.ec-edit-profile-form .ec-edit-profile-form__control input::placeholder,
.ec-edit-profile-form .ec-edit-profile-form__control textarea::placeholder {
    color: #9299A4;
}

.ec-edit-profile-form .ec-edit-profile-form__control select {
    width: 100%;
    min-height: 44px;
    padding: 0 28px 0 0;
    cursor: pointer;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    border: 0;
    outline: 0;
    appearance: none;
    background: transparent;
}

.ec-edit-profile-form .ec-edit-profile-form__control select option {
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    background: var(--bg_color_1);
}

.ec-edit-profile-form .ec-edit-profile-form__control select option:checked {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-edit-profile-form .ec-edit-profile-form__chevron {
    width: auto !important;
    margin-left: auto;
    flex: 0 0 auto !important;
    color: var(--text_color_5) !important;
    font-size: 9px;
    pointer-events: none;
}

.ec-edit-profile-form .ec-edit-profile-form__file-control {
    min-height: 46px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.ec-edit-profile-form .ec-edit-profile-form__file-control input[type="file"] {
    width: 100%;
    min-height: 34px;
    padding: 0;
    color: var(--text_color_6);
    font-size: 11px;
}

.ec-edit-profile-form .ec-edit-profile-form__file-control input[type="file"]::file-selector-button {
    min-height: 30px;
    margin-right: 8px;
    padding: 0 10px;
    color: var(--text_color_3);
    font-family: var(--font_manrope);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(15, 92, 92, 0.25);
    border-radius: 7px;
    background: var(--bg_color_5);
}

.ec-edit-profile-form .ec-edit-profile-form__control--textarea {
    min-height: 116px;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ec-edit-profile-form .ec-edit-profile-form__control--textarea>i:first-child {
    margin-top: 3px;
}

.ec-edit-profile-form .ec-edit-profile-form__control--textarea textarea {
    min-height: 92px;
    resize: vertical;
    line-height: 1.6;
}

.ec-edit-profile-form .ec-edit-profile-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid var(--bg_color_7);
}

.ec-edit-profile-form .ec-edit-profile-form__cancel,
.ec-edit-profile-form .ec-edit-profile-form__submit {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    transition: 0.2s ease;
}

.ec-edit-profile-form .ec-edit-profile-form__cancel {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.ec-edit-profile-form .ec-edit-profile-form__cancel:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.ec-edit-profile-form .ec-edit-profile-form__submit {
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-edit-profile-form .ec-edit-profile-form__submit:hover {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.ec-edit-profile-form .ec-edit-profile-form__fieldset {
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ec-edit-profile-form .ec-edit-profile-form__fieldset legend {
    width: auto;
    margin: 0 0 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-edit-profile-form .ec-edit-profile-form__choice-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.ec-edit-profile-form .ec-edit-profile-form__choice {
    min-height: 46px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-edit-profile-form .ec-edit-profile-form__choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ec-edit-profile-form .ec-edit-profile-form__choice span {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.ec-edit-profile-form .ec-edit-profile-form__choice:hover {
    color: var(--text_color_3);
    border-color: rgba(15, 92, 92, 0.35);
}

.ec-edit-profile-form .ec-edit-profile-form__choice:has(input:checked) {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_16);
}

.ec-edit-profile-form .ec-edit-profile-form__choice:has(input:focus-visible) {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-edit-profile-category-select {
    width: 100%;
    max-height: 390px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 5px 2px 2px;
}

.ec-edit-profile-category-select__footer {
    margin-top: 14px;
}

.ec-edit-profile-category-option {
    height: 100%;
    position: relative;
}

.ec-edit-profile-category-option>input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ec-edit-profile-category-card {
    min-height: 66px;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    gap: 9px;
    padding: 8px 9px;
    cursor: pointer;
    color: var(--text_color_4);
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.ec-edit-profile-category-card:hover {
    color: var(--text_color_3);
    border-color: rgba(15, 92, 92, 0.35);
    background: var(--bg_color_16);
}

.ec-edit-profile-category-card__image {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-edit-profile-category-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ec-edit-profile-category-card__name {
    min-width: 0;
    flex: 1 1 auto;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.ec-edit-profile-category-card__check {
    position: absolute;
    top: 6px;
    right: 6px;
    color: transparent;
    font-size: 12px;
}

.ec-edit-profile-category-card__check i {
    font-size: 12px;
}

.ec-edit-profile-category-option>input:checked+.ec-edit-profile-category-card {
    color: var(--text_color_1);
    border-color: var(--bg_color_3);
    background: var(--bg_color_3);
}

.ec-edit-profile-category-option>input:checked+.ec-edit-profile-category-card .ec-edit-profile-category-card__check {
    color: var(--text_color_1);
}

.ec-edit-profile-settings {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.ec-edit-profile-setting {
    min-height: 72px;
    display: flex;
    position: relative;
    align-items: center;
    flex: 1 1 calc(33.333% - 8px);
    gap: 10px;
    padding: 11px 12px;
    cursor: pointer;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_5);
}

.ec-edit-profile-setting__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_3);
    border-radius: 8px;
    background: var(--bg_color_1);
}

.ec-edit-profile-setting__copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
}

.ec-edit-profile-setting__title {
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.ec-edit-profile-setting__description {
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.ec-edit-profile-setting>input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ec-edit-profile-setting__switch {
    width: 34px;
    height: 20px;
    position: relative;
    flex: 0 0 34px;
    border-radius: 20px;
    background: var(--bg_color_8);
    transition: 0.2s ease;
}

.ec-edit-profile-setting__switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.ec-edit-profile-setting>input:checked+.ec-edit-profile-setting__switch {
    background: var(--bg_color_3);
}

.ec-edit-profile-setting>input:checked+.ec-edit-profile-setting__switch::after {
    transform: translateX(14px);
}

.ec-edit-profile-dropdown {
    position: relative;
    width: 100%;
}

.ec-edit-profile-dropdown>summary {
    list-style: none;
}

.ec-edit-profile-dropdown>summary::-webkit-details-marker {
    display: none;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__trigger {
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__selected {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__selected-text {
    display: none;
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ec-edit-profile-dropdown[open] .ec-edit-profile-dropdown__trigger {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__trigger .ec-edit-profile-form__chevron {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.ec-edit-profile-dropdown[open] .ec-edit-profile-form__chevron {
    transform: rotate(180deg);
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    z-index: 1090;
    max-height: 260px;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    gap: 3px;
    padding: 6px;
    border: 1px solid var(--bg_color_7);
    border-radius: 9px;
    background: var(--bg_color_1);
    box-shadow: 0 14px 34px rgba(11, 31, 42, 0.16);
    scrollbar-width: thin;
    scrollbar-color: var(--bg_color_8) transparent;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__menu::-webkit-scrollbar {
    width: 5px;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__menu::-webkit-scrollbar-track {
    background: transparent;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bg_color_8);
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__option {
    width: 100%;
    min-height: 39px;
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
    border-radius: 7px;
    transition: 0.15s ease;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__option span {
    width: 100%;
    min-height: 39px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-family: var(--font_manrope);
    font-size: 12px;
    font-weight: 500;
    border-radius: 7px;
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__option:hover span {
    color: var(--text_color_3);
    background: var(--bg_color_16);
}

.ec-edit-profile-dropdown .ec-edit-profile-dropdown__option:has(input:checked) span {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.ec-edit-profile-card {
    overflow: visible;
}

.ec-edit-profile-card .ec-edit-profile-card__header {
    border-radius: 10px 10px 0 0;
}

.ec-edit-profile-card .ec-edit-profile-card__body {
    position: relative;
    border-radius: 0 0 10px 10px;
    background: var(--bg_color_1);
}

.ec-edit-profile-dropdown:has(#editGroupOption1:checked) .ec-edit-profile-dropdown__selected-text--editGroup-empty-0 {
    display: block;
}

.ec-edit-profile-dropdown:has(#editGroupOption2:checked) .ec-edit-profile-dropdown__selected-text--editGroup-business-leaders-circle {
    display: block;
}

.ec-edit-profile-dropdown:has(#editGroupOption3:checked) .ec-edit-profile-dropdown__selected-text--editGroup-growth-network {
    display: block;
}

.ec-edit-profile-dropdown:has(#editGroupOption4:checked) .ec-edit-profile-dropdown__selected-text--editGroup-startup-founders-hub {
    display: block;
}

.ec-edit-profile-dropdown:has(#editGroupOption5:checked) .ec-edit-profile-dropdown__selected-text--editGroup-rajkot-business-group {
    display: block;
}

.ec-edit-profile-dropdown:has(#editGroupOption6:checked) .ec-edit-profile-dropdown__selected-text--editGroup-professional-connect {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption1:checked) .ec-edit-profile-dropdown__selected-text--editCountry-empty-0 {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption2:checked) .ec-edit-profile-dropdown__selected-text--editCountry-india {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption3:checked) .ec-edit-profile-dropdown__selected-text--editCountry-united-states {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption4:checked) .ec-edit-profile-dropdown__selected-text--editCountry-canada {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption5:checked) .ec-edit-profile-dropdown__selected-text--editCountry-united-kingdom {
    display: block;
}

.ec-edit-profile-dropdown:has(#editCountryOption6:checked) .ec-edit-profile-dropdown__selected-text--editCountry-australia {
    display: block;
}

.ec-edit-profile-dropdown:has(#editStateOption1:checked) .ec-edit-profile-dropdown__selected-text--editState-empty-0 {
    display: block;
}

.ec-edit-profile-dropdown:has(#editStateOption2:checked) .ec-edit-profile-dropdown__selected-text--editState-gujarat {
    display: block;
}

.ec-edit-profile-dropdown:has(#editStateOption3:checked) .ec-edit-profile-dropdown__selected-text--editState-maharashtra {
    display: block;
}

.ec-edit-profile-dropdown:has(#editStateOption4:checked) .ec-edit-profile-dropdown__selected-text--editState-rajasthan {
    display: block;
}

.ec-edit-profile-dropdown:has(#editStateOption5:checked) .ec-edit-profile-dropdown__selected-text--editState-delhi {
    display: block;
}

.ec-edit-profile-dropdown:has(#editRoleOption1:checked) .ec-edit-profile-dropdown__selected-text--editRole-empty-0 {
    display: block;
}

.ec-edit-profile-dropdown:has(#editRoleOption2:checked) .ec-edit-profile-dropdown__selected-text--editRole-city-incharge {
    display: block;
}

.ec-edit-profile-dropdown:has(#editRoleOption3:checked) .ec-edit-profile-dropdown__selected-text--editRole-group-incharge {
    display: block;
}

.ec-edit-profile-dropdown:has(#editRoleOption4:checked) .ec-edit-profile-dropdown__selected-text--editRole-member {
    display: block;
}

.ec-edit-profile-dropdown:has(#editLanguageOption1:checked) .ec-edit-profile-dropdown__selected-text--editLanguage-english {
    display: block;
}

.ec-edit-profile-dropdown:has(#editLanguageOption2:checked) .ec-edit-profile-dropdown__selected-text--editLanguage-hindi {
    display: block;
}

.ec-edit-profile-dropdown:has(#editLanguageOption3:checked) .ec-edit-profile-dropdown__selected-text--editLanguage-gujarati {
    display: block;
}

.ec-edit-profile-dropdown:has(#editLanguageOption4:checked) .ec-edit-profile-dropdown__selected-text--editLanguage-spanish {
    display: block;
}

.ec-edit-profile-dropdown:has(#editVerifyStatusOption1:checked) .ec-edit-profile-dropdown__selected-text--editVerifyStatus-pending {
    display: block;
}

.ec-edit-profile-dropdown:has(#editVerifyStatusOption2:checked) .ec-edit-profile-dropdown__selected-text--editVerifyStatus-verified {
    display: block;
}

.ec-edit-profile-dropdown:has(#editVerifyStatusOption3:checked) .ec-edit-profile-dropdown__selected-text--editVerifyStatus-rejected {
    display: block;
}

.feedpage .ec-member-profile-panel {
    display: block;
}

.feedpage {
    min-width: 0;
    color: var(--text_color_4);
}

.feedpage button,
.feedpage input,
.feedpage textarea {
    font-family: var(--font_manrope);
}

.feedpage button {
    border: 0;
}

.feedpage .ec-member-profile-panel--stream {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedpage .ec-member-profile-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.feedpage .ec-member-profile-composer__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedpage .ec-member-profile-composer__top>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
}

.feedpage .ec-member-profile-composer__top>button {
    min-height: 46px;
    flex: 1 1 auto;
    padding: 0 14px;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-composer__top>button:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
}

.feedpage .ec-member-profile-post__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
}

.feedpage .ec-member-profile-post__author {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.feedpage .ec-member-profile-post__author>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.feedpage .ec-member-profile-post__author>div {
    min-width: 0;
}

.feedpage .ec-member-profile-post__author h3 {
    margin: 0;
    color: var(--text_color_4);
    font-size: 14px;
    font-weight: 700;
}

.feedpage .ec-member-profile-post__author p {
    margin: 3px 0 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 600;
}

.feedpage .ec-member-profile-post__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: var(--text_color_5);
    border-radius: 9px;
    background: transparent;
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-post__more:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__body {
    padding: 0 18px 16px;
}

.feedpage .ec-member-profile-post__body p {
    margin: 0;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.75;
}

.feedpage .ec-member-profile-post__link {
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    overflow: hidden;
    color: var(--text_color_3);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feedpage .ec-member-profile-post__media {
    overflow: hidden;
    border-top: 1px solid var(--bg_color_7);
    border-bottom: 1px solid var(--bg_color_7);
    background: var(--bg_color_6);
}

.feedpage .ec-member-profile-post__media img {
    width: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
}

.feedpage .ec-member-profile-post__reactions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    color: var(--text_color_5);
    font-size: 12px;
    border-bottom: 1px solid var(--bg_color_7);
}

.feedpage .ec-member-profile-post__reactions span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.feedpage .ec-member-profile-post__reactions i {
    color: var(--text_color_1);
    padding: 5px;
    border-radius: 50%;
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-post__actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 6px;
    padding: 7px 12px;
    border-bottom: 1px solid var(--bg_color_7);
}

.feedpage .ec-member-profile-post__actions button {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    gap: 8px;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-post__actions button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__actions button.is-liked {
    color: var(--text_color_3);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__comment-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
}

.feedpage .ec-member-profile-post__comment-box>img {
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg_color_6);
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.feedpage .ec-member-profile-post__comment-box>div {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 40px;
    flex: 1 1 auto;
    gap: 6px;
    padding: 0 6px 0 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__comment-box input {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_4);
    font-size: 13px;
    border: 0;
    outline: 0;
    background: transparent;
}

.feedpage .ec-member-profile-post__comment-box button {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--text_color_5);
    border-radius: 7px;
    background: transparent;
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-post__comment-box button:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-post__comments {
    padding: 14px 18px 0;
}

.feedpage .ec-member-profile-post__comment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feedpage .ec-member-profile-post__comment>img {
    width: 36px;
    height: 36px;
    display: block;
    flex: 0 0 36px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--bg_color_6);
}

.feedpage .ec-member-profile-post__comment-content {
    min-width: 0;
    flex: 1 1 auto;
    padding: 10px 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__comment-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.feedpage .ec-member-profile-post__comment-heading strong {
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.feedpage .ec-member-profile-post__comment-heading span {
    flex: 0 0 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.feedpage .ec-member-profile-post__comment-content p {
    margin: 3px 0 0 0;
    color: var(--text_color_6);
    font-size: 13px;
    line-height: 1.6;
}

.feedpage .ec-member-profile-post__comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 7px;
}

.feedpage .ec-member-profile-post__comment-meta button {
    padding: 0;
    color: var(--text_color_5);
    font-size: 12px;
    font-weight: 700;
    background: transparent;
}

.feedpage .ec-member-profile-post__comment-meta button:hover {
    color: var(--text_color_3);
}

.feedpage .ec-member-profile-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.feedpage .ec-member-profile-composer__actions i {
    color: var(--text_color_3);
    min-width: 16px;
    font-size: 13px;
}

.feedpage .ec-member-profile-composer__actions button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 25%;
    gap: 8px;
    padding: 0 10px;
    color: var(--text_color_6);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.feedpage .ec-member-profile-composer__actions button:hover {
    color: var(--text_color_3);
    background: var(--bg_color_5);
    border-color: var(--bg_color_7);
}

.feedpage .ec-member-profile-composer__top>textarea {
    min-height: 46px;
    max-height: 140px;
    flex: 1 1 auto;
    padding: 12px 14px;
    resize: vertical;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    border: 1px solid var(--bg_color_8);
    border-radius: 10px;
    outline: 0;
    background: var(--bg_color_5);
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-composer__top>textarea::placeholder {
    color: var(--text_color_5);
}

.feedpage .ec-member-profile-composer__top>textarea:focus {
    border-color: var(--bg_color_3);
    background: var(--bg_color_1);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.feedpage .ec-member-profile-composer__upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.feedpage .ec-member-profile-composer__upload:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-composer__tool[open]>summary {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-composer__tool>summary:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_7);
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-composer__upload i {
    min-width: 16px;
    color: var(--text_color_3);
    font-size: 13px;
    text-align: center;
}

.feedpage .ec-member-profile-composer__tool>summary i {
    min-width: 16px;
    color: var(--text_color_3);
    font-size: 13px;
    text-align: center;
}

.feedpage .ec-member-profile-composer__tool>summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(20% - 7px);
    gap: 8px;
    padding: 0 10px;
    cursor: pointer;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    width: 100%;
}

.feedpage .ec-member-profile-composer__tool>summary::-webkit-details-marker {
    display: none;
}

.feedpage .ec-member-profile-composer__tool-panel label {
    width: 100%;
    display: block;
    margin: 0;
}

.feedpage .ec-member-profile-composer__tool-panel label+label {
    margin-top: 12px;
}

.feedpage .ec-member-profile-composer__tool-panel label>span {
    display: block;
    margin-bottom: 7px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
}

.feedpage .ec-member-profile-composer__tool-panel input {
    width: 100%;
    min-height: 44px;
    padding: 10px 11px;
    color: var(--text_color_4);
    font-size: 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
}

.feedpage .ec-member-profile-composer__tool-panel textarea {
    width: 100%;
    padding: 10px 11px;
    color: var(--text_color_4);
    font-size: 12px;
    border: 1px solid var(--bg_color_8);
    border-radius: 9px;
    outline: 0;
    background: var(--bg_color_1);
    min-height: 110px;
    resize: vertical;
}

.feedpage .ec-member-profile-composer__tool-panel input:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.feedpage .ec-member-profile-composer__tool-panel textarea:focus {
    border-color: var(--bg_color_3);
    box-shadow: 0 0 0 3px var(--bg_color_16);
}

.feedpage .ec-member-profile-composer {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    padding: 18px 18px 13px 18px;
    position: relative;
    z-index: 100;
    overflow: visible;
}

.feedpage .ec-member-profile-composer:has(.ec-member-profile-composer__tool[open]) {
    z-index: 300;
}

.feedpage .ec-member-profile-composer__actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    border-top: 1px solid var(--bg_color_7);
    padding-top: 14px;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 7px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.feedpage .ec-member-profile-composer__upload {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    cursor: pointer;
    color: var(--text_color_6);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: 0.2s ease;
    position: relative;
    margin: 0;
    flex: 1 1 calc(25% - 7px);
}

.feedpage .ec-member-profile-composer__tool {
    position: relative;
    flex: 1 1 calc(25% - 7px);
    z-index: 20;
}

.feedpage .ec-member-profile-composer__tool[open] {
    z-index: 200;
}

.feedpage .ec-member-profile-composer__tool-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    padding: 14px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
    z-index: 500;
}

.feedpage .ec-member-profile-post__comment-upload {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    margin: 0;
    cursor: pointer;
    color: var(--text_color_5);
    border-radius: 7px;
    background: transparent;
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-post__comment-upload:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-post__comment-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.feedpage .ec-member-profile-post__comment-upload i {
    pointer-events: none;
}

.feedpage .ec-member-profile-post {
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 8px 24px var(--bg_color_11);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.feedpage .ec-member-profile-post:has(.ec-member-profile-post__menu-list.show) {
    z-index: 220;
}

.feedpage .ec-member-profile-post__menu {
    position: relative;
    flex: 0 0 auto;
    z-index: 40;
}

.feedpage .ec-member-profile-post__more.dropdown-toggle::after {
    display: none;
}

.feedpage .ec-member-profile-post__menu-list {
    width: 220px;
    min-width: 220px;
    z-index: 240;
    margin-top: 7px !important;
    padding: 7px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_1);
    box-shadow: 0 18px 46px var(--bg_color_12);
}

.feedpage .ec-member-profile-post__menu-item {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-post__menu-item i {
    width: 18px;
    flex: 0 0 18px;
    color: var(--text_color_3);
    text-align: center;
}

.feedpage .ec-member-profile-post__menu-item:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-post__menu-item:focus {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-post__menu-item:hover i {
    color: var(--text_color_1);
}

.feedpage .ec-member-profile-post__menu-item:focus i {
    color: var(--text_color_1);
}

.feedpage .ec-member-profile-post__menu-item--danger {
    color: #B42318;
}

.feedpage .ec-member-profile-post__menu-item--danger i {
    color: #B42318;
}

.feedpage .ec-member-profile-post__menu-item--danger:hover {
    color: var(--text_color_1);
    background: #B42318;
}

.feedpage .ec-member-profile-post__menu-item--danger:focus {
    color: var(--text_color_1);
    background: #B42318;
}

.feedpage .ec-member-profile-post__menu-list .dropdown-divider {
    margin: 6px 3px;
    border-color: var(--bg_color_7);
}

.feedpage .ec-member-profile-composer__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-composer__preview[hidden] {
    display: none !important;
}

.feedpage .ec-member-profile-composer__preview-media {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border-radius: 9px;
    background: var(--bg_color_6);
}

.feedpage .ec-member-profile-composer__preview-media img,
.feedpage .ec-member-profile-composer__preview-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.feedpage .ec-member-profile-composer__preview-copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
}

.feedpage .ec-member-profile-composer__preview-copy strong {
    overflow: hidden;
    color: var(--text_color_4);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feedpage .ec-member-profile-composer__preview-copy span {
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.feedpage .ec-member-profile-composer__preview>button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--text_color_5);
    border: 0;
    border-radius: 8px;
    background: var(--bg_color_1);
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-composer__preview>button:hover {
    color: var(--text_color_1);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-composer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--bg_color_7);
}

.feedpage .ec-member-profile-composer__status {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--text_color_5);
    font-size: 11px;
    font-weight: 600;
}

.feedpage .ec-member-profile-composer__status.is-success {
    color: var(--text_color_3);
}

.feedpage .ec-member-profile-composer__status.is-error {
    color: #B42318;
}

.feedpage .ec-member-profile-composer__footer-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
}

.feedpage .ec-member-profile-composer__clear,
.feedpage .ec-member-profile-composer__submit {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    transition: 0.2s ease;
}

.feedpage .ec-member-profile-composer__clear {
    color: var(--text_color_6);
    border: 1px solid var(--bg_color_8);
    background: var(--bg_color_1);
}

.feedpage .ec-member-profile-composer__clear:hover {
    color: var(--text_color_3);
    border-color: var(--bg_color_3);
}

.feedpage .ec-member-profile-composer__submit {
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_3);
    background: var(--bg_color_3);
}

.feedpage .ec-member-profile-composer__submit:hover:not(:disabled) {
    color: var(--text_color_3);
    background: var(--bg_color_1);
}

.feedpage .ec-member-profile-composer__submit:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.feedpage .ec-member-profile-post__media video {
    width: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
    background: var(--bg_color_4);
}

.feedpage .ec-member-profile-post__event,
.feedpage .ec-member-profile-post__insight {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 13px;
    padding: 12px;
    border: 1px solid var(--bg_color_7);
    border-radius: 10px;
    background: var(--bg_color_5);
}

.feedpage .ec-member-profile-post__event>span,
.feedpage .ec-member-profile-post__insight>span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    color: var(--text_color_3);
    border-radius: 9px;
    background: var(--bg_color_1);
}

.feedpage .ec-member-profile-post__event>div,
.feedpage .ec-member-profile-post__insight>div {
    min-width: 0;
    flex: 1 1 auto;
}

.feedpage .ec-member-profile-post__event small,
.feedpage .ec-member-profile-post__insight small {
    display: block;
    margin-bottom: 3px;
    color: var(--text_color_3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feedpage .ec-member-profile-post__event strong {
    display: block;
    color: var(--text_color_4);
    font-size: 13px;
    font-weight: 700;
}

.feedpage .ec-member-profile-post__event p,
.feedpage .ec-member-profile-post__insight p {
    margin: 4px 0 0;
    color: var(--text_color_6);
    font-size: 12px;
    line-height: 1.6;
}

.feedpage .ec-member-profile-post--new {
    animation: ecProfilePostAppear 0.28s ease both;
}
