@import url("/inc/plugins/reactions/assets/bootstrap/bootstrap-modal.css?v=1742151489x");
@import url("/inc/plugins/reactions/assets/css/selectize.bootstrap3.css?v=1742151489x");
@import url("/inc/plugins/reactions/assets/bootstrap/bootstrap-modal.css?v=1742151489x");
@import url("/inc/plugins/reactions/assets/css/core.css?v=1742151489x");
@import url("app.css?v=1742151489x2");


:root {
    --primary: #5d5fef;
    --success: #34d399;
    --gray: #94a3b8;
    --light-gray: #e2e8f0;
}

/*body {*/
/*    background: #f8fafc;*/
/*    color: #1e293b;*/
/*}*/
html {
    scroll-behavior: smooth;
}

body {
    position: relative !important;
    margin-right: auto;
    margin-left: auto;
    text-rendering: optimizeLegibility;

    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    /*background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),*/
    /*radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),*/
    /*radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.4) 0%, transparent 50%);*/
}

.darkside .step-title {
    color: #ffffff;
}

.darkside .onboarding-container {
    background: #1e1e21;
}

.darkside .step-content {
    background: #19191d;
}

.onboarding-container {
    background: white;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #4F799F19;
    /*box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);*/
}

.welcome-header {
    text-align: center;
    margin-bottom: 20px;
}

.welcome-header h1 {
    margin: 0 0 12px;
    font-size: 30px;
}

.welcome-header p {
    margin: 0;
    color: var(--gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 20px 0;
    padding: 20px 0;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: calc(10% + 25px);
    right: calc(10% + 25px);
    height: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.step-connector-progress {
    position: absolute;
    top: 45px;
    left: calc(10% + 25px);
    height: 2px;
    background: var(--success);
    transition: width 0.3s ease;
    z-index: 2;
}

.step {
    position: relative;
    width: 20%;
    text-align: center;
    z-index: 3;
}

.step-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step i {
    font-size: 24px;
    color: var(--gray);
}

.step.active .step-circle {
    border-color: var(--primary);
    background: var(--primary);
}

.step.done .step-circle {
    border-color: var(--success);
    background: var(--success);
}

.step.active i,
.step.done i {
    color: white;
}

.step-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.step-status {
    font-size: 12px;
    color: var(--gray);
}

.step.done .step-status {
    color: var(--success);
}

.step-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.step-content h3 {
    margin-top: 0;
    font-size: 19px;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #1e293b;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray);
}

.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
    opacity: 0.9;
}

.btn:active {
    transform: translateY(1px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qr-container {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    margin: 20px 0;
}

.qr-container img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .onboarding-container {
        margin: 20px;
        padding: 20px;
    }

    .steps-container::before {
        top: 65px;
        bottom: 65px;
        left: 46px;
        width: 2px;
        height: auto;
        right: auto;
    }

    .step-connector-progress {
        top: 65px;
        bottom: 65px;
        left: 46px;
        width: 2px !important;
        height: auto;
        right: auto;
    }

    .steps-container {
        flex-direction: column;
        gap: 0px;
        padding-left: 20px !important;
        padding: 0px;
    }

    .step {
        width: 100%;
        height: 70px;
        display: grid;
        grid-template-columns: 70px 1fr;
        align-items: center;
        text-align: left;
        margin: 10px 0;
    }

    .step-circle {
        margin: 0;
    }

    .step-title {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .step-status {
        font-size: 13px;
    }

    .welcome-header h1 {
        font-size: 24px;
    }

    .welcome-header p {
        font-size: 14px;
    }

    .step-content {
        padding: 20px;
    }

    .form-group label {
        font-size: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .onboarding-container {
        margin: 10px;
        padding: 15px;
    }

    .step-content {
        padding: 15px;
    }

    .btn {
        width: 100%;
    }
}

.darkside .profile-card {
    background-color: #1e1e21;
}

.darkside .accounts-list-menu .accounts-scroll-wrapper {
    background-color: rgb(51, 51, 51);
}

.darkside #js-account-inline-filters-content {
    background-color: color(srgb 0.15 0.15 0.15);
}

.darkside .accounts-list-menu .accounts-scroll-wrapper > ul .profile-info:hover, .darkside .accounts-list-menu .accounts-scroll-wrapper > ul a:hover, .darkside .accounts-list-menu .accounts-scroll-wrapper > ul li:hover {
    background-color: rgb(37, 37, 38) !important;
}

.darkside .dropdown-nav-menu-content a, .darkside .context-menu > ul a {
    color: #dddddd;
}

.darkside .card-header {
    background-color: #1e1e21 !important;
}

.darkside .card-body {
    background-color: #1e1e21;
}

.darkside .followers-location-placeholder {
    mix-blend-mode: multiply;
}

.darkside .card--sub-body {
    background-color: #19191d;
}

.darkside .targeting-options-popup {
    background-color: #1e1e21;
    border: 1px solid #303030;
}

.darkside .item-tag {
    background-color: #1e1e21;
    color: rgba(255, 255, 255, 1);
}

.darkside .item-tag.check--light-outline.selected {
    color: #0c4adb;
}

.darkside .growth-settings-content .selectize-input {
    background-color: #1e1e21;
}

.darkside .profile-info-container {
    border: 2px solid rgba(23, 23, 23, 0.52);
}

.darkside .username,
.darkside .stat-label,
.darkside .stat-value {
    color: #ffffff;
}

.darkside .menu {
    background-color: #252526;
}

.darkside .menu-item.active, .darkside .menu-item:hover:not(.active) {
    background-color: #161616;
}

.darkside .jconfirm.jconfirm-material .jconfirm-box {
    background-color: color(srgb 0.2 0.2 0.2);
}

.darkside .bypassing-react-input-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.darkside [class$="-toggler-button"] {
    background-color: #333333 !important;
    color: #ffffff !important;
}

[class$="-toggler-button"] {
    line-height: normal !important;
    padding: 6px 8px !important;
    font-weight: normal !important;
    color: #212121 !important;
    display: inline-block !important;
    font-size: 12px !important;
    -webkit-transition: all ease 0.1s !important;
    -moz-transition: all ease 0.1s !important;
    transition: all ease 0.1s !important;
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%) !important;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1) !important;
    background-color: #f0f0f0 !important;
}

.jconfirm-box {
    border-radius: 18px !important;
}

.jconfirm.jconfirm-material .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.67);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    top: 15px !important;
    right: 15px !important;
}

header {
    display: flex;
    flex-direction: column;
}

#topbar {
    position: initial;
}

.secondary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto 10px;
    max-width: 1080px;
    width: calc(100% - 30px);
    padding: 0 15px;
}

body header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

header .logo {
    font-size: 24px;
    display: flex;
    align-items: center;
}

/*Top bar */
.profile-card {
    background-color: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-card .custom-labels .custom-label {
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 12px;
    padding: 5px 5px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: rgb(201, 230, 255);
    -o-border-radius: 4px;
    height: 10px;
    color: rgb(99, 110, 114);
}

.profile-card .custom-labels {
    display: block;
    max-width: 257px;
    overflow-y: hidden;
}

.profile-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info-container {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 9px;
    padding: 8px 12px;
    cursor: pointer;
    flex-wrap: wrap;
    position: relative;
}

.profile-info {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 200px;
}

.profile-card-avatar-container {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 15px;
    padding-bottom: 4px;
    flex-shrink: 0;
}

.profile-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}

.darkside .profile-card-avatar {
    border: 2px solid rgba(23, 23, 23, 0.52);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username-container {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 9px;
}

.ig-icon {
    width: 16px;
    height: 16px;
}

.username {
    font-size: 1.3em;
    color: #333;
}

.plan-badge {
    background-color: #7c3aed;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 4px;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    color: #6b7280;
}

.stats {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 20px;
}

.stats .followers, .stats .following, .stats .warm-up-score {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 20px;
    color: #333;
}

.stat-change {
    color: #10b981;
    font-size: 14px;
}

.score-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-circle {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: visible;

}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.progress-ring__circle {
    fill: transparent;
    stroke-width: 4;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: all 0.3s ease;
}

.inner-circle {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.assistant-log-list-item .inner, .live-log-list-item .inner {
    padding-right: 70px !important;
}

.score-value {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Apple-style hover effect */
.score-circle:hover {
    transform: scale(1.03);

}

.start-button {
    border-color: #10b981;
    background-color: #4cb543;
    animation: start-button-glow 1s infinite alternate;
}

.start-button:hover {
    border-color: #10b981;
    background-color: #439e3c;
}

@keyframes start-button-glow {
    from {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.88), 0 0 10px #4CAF50;
    }

    to {
        box-shadow: 0 0 20px #4CAF50, 0 0 30px #4CAF50;
    }
}

@media (min-width: 640px) {
    .pause-button {
        align-self: center;
    }

    .profile-info-wrapper {
        margin-bottom: 40px;
    }
}

.pause-button {
    border-color: #fbdebb;
    background-color: #f59e0b;
}

.pause-button:hover {
    border-color: #fbdebb;
    background-color: #f59e0b;
}

.menu-wrapper {
    display: grid;
    place-content: center;
}

.menu {
    display: inline-flex;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.menu-item {
    display: flex;
    align-items: end;
    padding: 8px 16px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    cursor: pointer;
}

.menu-item svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.menu-item.active {
    background-color: #ffffff;
    color: #4f46e5;
}

.menu-item:hover:not(.active) {
    background-color: #f9fafb;
}

.new-badge {
    background-color: #fbbf24;
    color: #78350f;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 25px;
    margin-left: 8px;
}

@media (min-width: 640px) {
    .profile-info-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .profile-info-container {
        flex: 1;
        max-width: 345px;
    }

    .stats {
        justify-content: flex-end;
    }

    .pause-button {
        align-self: center;
    }
}

@media (min-width: 768px) {
    .avatar-container {
        width: 60px;
        height: 60px;
    }

    /*.username {
                font-size: 18px;
            }*/
    .stat-value {
        font-size: 24px;
    }

    .menu-item {
        font-size: 16px;
    }

    .menu-item svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 1024px) {
    .profile-card {
        padding: 30px;
    }

    .profile-info-wrapper {
        gap: 40px;
    }

    .stats {
        gap: 40px;
    }
}

.ColumnLayout {
    display: grid;
    row-gap: 32px;
    align-items: flex-start;
    padding-bottom: 20px;
}

.ColumnLayout--gap {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .ColumnLayout--gap {
        margin-right: 0px;
    }
}

.ColumnLayout > :last-child {
    margin-right: 0px;
}

.ColumnLayout--alignCenter {
    align-items: center;
}

.ColumnLayout--alignBottom {
    align-items: flex-end;
}

.ColumnLayout--alignStretch {
    align-items: stretch !important;
}

@media (min-width: 600px) {
    .ColumnLayout[data-columns="1,1,1"], .ColumnLayout[data-columns="1,1,1,1"], .ColumnLayout[data-columns="2,1"], .ColumnLayout[data-columns="2,1,0"], .ColumnLayout[data-columns="2,1,1"], .ColumnLayout[data-columns="2,2"], .ColumnLayout[data-columns="3,2"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .ColumnLayout[data-columns="2,2"].ColumnLayout--reflowDirectionRightToLeft
    > :first-child {
        order: 1;
    }
}

@media (max-width: 899px) {
    .ColumnLayout[data-columns="1,3"]:not( .ColumnLayout--reflowDirectionLeftToRight
    )
    > :first-child, .ColumnLayout[data-columns="3,1"].ColumnLayout--reflowDirectionRightToLeft
    > :first-child, .ColumnLayout[data-columns="3,2"].ColumnLayout--reflowDirectionRightToLeft
    > :first-child {
        order: 1;
    }
}

@media (min-width: 600px) and(max-width: 899px) {
    .ColumnLayout[data-columns-tablet="1"] {
        grid-template-columns: 1fr;
    }

    .ColumnLayout[data-columns-tablet="3,1"] {
        grid-template-columns: 3fr 1fr;
    }

    .ColumnLayout[data-columns="2,1,1"] > :first-child {
        grid-area: 1 / span 2;
    }
}

@media (min-width: 900px) {
    .ColumnLayout[data-columns="1,1,1"] {
        grid-template-columns: repeat(3, 1fr);
    }

    .ColumnLayout[data-columns="2,1"] {
        grid-template-columns: 2fr 1fr;
    }

    .ColumnLayout[data-columns="1,1,1,1"] {
        grid-template-columns: repeat(4, 1fr);
    }

    .ColumnLayout[data-columns="1,1"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .ColumnLayout[data-columns="1,3"] {
        grid-template-columns: 1fr minmax(0, 3fr);
    }

    .ColumnLayout[data-columns="3,1"] {
        grid-template-columns: 3fr 1fr;
    }

    .ColumnLayout[data-columns="2,1,1"] {
        grid-template-columns: 2fr repeat(2, 1fr);
    }

    .ColumnLayout[data-columns="2,1,0"] {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .ColumnLayout[data-columns="1,2,1"] {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

@media (min-width: 1112px) {
    .ColumnLayout[data-columns="3,2"] {
        grid-template-columns: 3fr 2fr;
        min-width: calc(calc(1080px / 4) * 5);
    }
}

.button {
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 15px 11px 15px 11px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button .icon {
    margin-right: 5px;
    margin-bottom: 2px;
    font-size: 18px;
}

.button .icon-only {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-top: 3px;
    font-size: 18px;
}

.box-button {
    display: flex;
}

.context-menu {
    margin-top: 17px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    margin: 0px !important;
    border: 1px solid #4f799f19;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(245, 245, 245, 0.5) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.context-menu > ul > span {
    padding: 15px;
    color: inherit;
    text-wrap: nowrap;
    display: block;
}

.context-menu > ul {
    padding: 0px;
    font-size: 12px;
    line-height: 20px;
    color: #9b9b9b;
    white-space: nowrap;
    text-align: left;
    list-style: none;
    /*The below 2 lines are important to overide Nextpost's css code*/
    background-color: transparent !important;
    border-radius: 18px !important;
    box-shadow: none !important;
}

.topbar-profile .context-menu > ul a {
    padding: 10px 50px 10px 20px !important;
}

.border-after {
    border-bottom: 1px solid #4f799f40 !important;
}

.suggestions-target-search {
    display: flex;
}

.suggestions-target-search > input {
    border-radius: 0px;
}

.js-search-select {
    width: 148px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: none;
}

.js-targeting-options {
    width: fit-content;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: none;
}

.remove-button {
    border-color: rgba(255, 166, 98, 0.77);
    background-color: rgba(255, 5, 5, 0.77);
    color: white;
}

.remove-button:hover {
    border-color: rgba(255, 166, 98, 0.77);
    background-color: rgba(255, 5, 5, 0.9);
    color: white;
}

.item-tag.check--light-outline {
    width: 93.5% !important;
    max-width: initial;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.check--light-outline-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 768px) {
    .check--light-outline-wrapper {
        flex-direction: column;
        gap: 0px;
    }
}

.item-tag.check--light-outline > svg {
    width: 85px !important;
}

.item-tag.check--light-outline.selected {
    color: #000;
    background-color: rgba(187, 217, 251, 0.10);
    border: 2px #0053FFD6 solid;
}

.item-tag-checkbox {
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

.item-tag.selected .item-tag-checkbox {
    opacity: 1;
}

.emoji-btn.custom-emoji {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    padding: 0 5px;
}

.custom-emoji-input {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
}

.emojionearea.emojionearea-inline {
    position: absolute;
    left: 0;
    top: 0;
}

.custom-emoji-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-emoji-btn:hover {
    background-color: #f0f0f0;
}

.custom-emoji-input {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
}

.context-menu.accounts-context-menu > ul a {
    width: 100%;
    padding: 4px 20px;
}

.context-menu.accounts-context-menu {
    margin-top: -42px;
    margin-right: 40px;
}

.accounts-list-menu .accounts-scroll-wrapper > ul li .context-menu-wrapper {
    padding: 10px 6px 40px 25px;
}

.accounts-list-menu .accounts-scroll-wrapper > ul li .context-menu.accounts-context-menu {
    top: 50px;
    right: 12px;
}

.accounts-list-menu .accounts-scroll-wrapper > ul li:last-child .context-menu.accounts-context-menu {
    top: -35px;
    right: 40px;
}

#js-account-inline-filters-content {
    position: relative;
    top: 0px;
    margin: 0px;
    padding: 17px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: color(srgb 0.952 0.957 0.9657);
    box-shadow: 3px 0 6px -3px #0000000f, -3px 0 6px -3px #0000000f, 0 -3px 6px -3px #0000000f;
}

.box-filters-items {
    display: flex;
    flex-wrap: wrap;
}

form.account-search {
    padding: 0px;
}

.button.small.u-small.button--account-filters {
    margin: 1px;
}

.targets-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.targets-collapsed.expanded {
    max-height: none;
    overflow: visible;
}

.show-more-targets {
    width: auto;
    min-width: 150px;
    margin: 0 auto;
}

.logotype-topbar {
    height: 24px;
}

.card-header {
    background-color: #ffffff !important;
}

.flex-direction--column {
    display: flex;
    flex-direction: column;
}

.skeleton {
    padding: 0px;
    max-width: calc(calc(100vw - 15px) - calc(calc(100vw - 15px) / 2 - 1080px / 2) * 2);
    margin-left: auto;
    margin-right: auto;
}

.container-1200 {
    max-width: calc(calc(100vw - 15px) - calc(calc(100vw - 15px) / 2 - 1080px / 2) * 2);
}

.card {
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex: 1;
    /* overflow: hidden; */
}

.card-header {
    -webkit-backdrop-filter: blur(35px) saturate(86%);
    backdrop-filter: blur(35px) saturate(86%);
}

.card-header, .sidecar-header {
    padding: 20px;
    margin: 0px;
    display: flex;
    border-radius: 18px 18px 0px 0px;
}

.sidecar-header {
    flex-direction: column;
}

.card-header {
    background-color: rgba(248, 248, 252, 0.75);
}

.card-header-icon {
    background: rgba(43, 105, 233, 0.1);
    color: #366dff;
    font-size: 18px;
    line-height: 16px;
    display: inline-block;
    height: 18px;
    margin-right: 8px;
    padding: 7px 7px 5px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    clip-path: polygon(100% 50%, 100% 56.6%, 100% 59.3%, 100% 61.4%, 99.9% 63.2%, 99.9% 64.8%, 99.9% 66.2%, 99.8% 67.5%, 99.8% 68.7%, 99.7% 69.8%, 99.6% 70.8%, 99.5% 71.8%, 99.5% 72.8%, 99.4% 73.7%, 99.3% 74.6%, 99.1% 75.4%, 99% 76.3%, 98.9% 77%, 98.8% 77.8%, 98.6% 78.5%, 98.5% 79.2%, 98.3% 79.9%, 98.1% 80.6%, 98% 81.3%, 97.8% 81.9%, 97.6% 82.5%, 97.4% 83.1%, 97.2% 83.7%, 97% 84.3%, 96.8% 84.8%, 96.5% 85.4%, 96.3% 85.9%, 96% 86.4%, 95.8% 86.9%, 95.5% 87.4%, 95.3% 87.9%, 95% 88.3%, 94.7% 88.8%, 94.4% 89.2%, 94.1% 89.7%, 93.8% 90.1%, 93.4% 90.5%, 93.1% 90.9%, 92.8% 91.3%, 92.4% 91.7%, 92% 92%, 91.7% 92.4%, 91.3% 92.8%, 90.9% 93.1%, 90.5% 93.4%, 90.1% 93.8%, 89.7% 94.1%, 89.2% 94.4%, 88.8% 94.7%, 88.3% 95%, 87.9% 95.3%, 87.4% 95.5%, 86.9% 95.8%, 86.4% 96%, 85.9% 96.3%, 85.4% 96.5%, 84.8% 96.8%, 84.3% 97%, 83.7% 97.2%, 83.1% 97.4%, 82.5% 97.6%, 81.9% 97.8%, 81.3% 98%, 80.6% 98.1%, 79.9% 98.3%, 79.2% 98.5%, 78.5% 98.6%, 77.8% 98.8%, 77% 98.9%, 76.3% 99%, 75.4% 99.1%, 74.6% 99.3%, 73.7% 99.4%, 72.8% 99.5%, 71.8% 99.5%, 70.8% 99.6%, 69.8% 99.7%, 68.7% 99.8%, 67.5% 99.8%, 66.2% 99.9%, 64.8% 99.9%, 63.2% 99.9%, 61.4% 100%, 59.3% 100%, 56.6% 100%, 50% 100%, 43.4% 100%, 40.7% 100%, 38.6% 100%, 36.8% 99.9%, 35.2% 99.9%, 33.8% 99.9%, 32.5% 99.8%, 31.3% 99.8%, 30.2% 99.7%, 29.2% 99.6%, 28.2% 99.5%, 27.2% 99.5%, 26.3% 99.4%, 25.4% 99.3%, 24.6% 99.1%, 23.7% 99%, 23% 98.9%, 22.2% 98.8%, 21.5% 98.6%, 20.8% 98.5%, 20.1% 98.3%, 19.4% 98.1%, 18.7% 98%, 18.1% 97.8%, 17.5% 97.6%, 16.9% 97.4%, 16.3% 97.2%, 15.7% 97%, 15.2% 96.8%, 14.6% 96.5%, 14.1% 96.3%, 13.6% 96%, 13.1% 95.8%, 12.6% 95.5%, 12.1% 95.3%, 11.7% 95%, 11.2% 94.7%, 10.8% 94.4%, 10.3% 94.1%, 9.9% 93.8%, 9.5% 93.4%, 9.1% 93.1%, 8.7% 92.8%, 8.3% 92.4%, 8% 92%, 7.6% 91.7%, 7.2% 91.3%, 6.9% 90.9%, 6.6% 90.5%, 6.2% 90.1%, 5.9% 89.7%, 5.6% 89.2%, 5.3% 88.8%, 5% 88.3%, 4.7% 87.9%, 4.5% 87.4%, 4.2% 86.9%, 4% 86.4%, 3.7% 85.9%, 3.5% 85.4%, 3.2% 84.8%, 3% 84.3%, 2.8% 83.7%, 2.6% 83.1%, 2.4% 82.5%, 2.2% 81.9%, 2% 81.3%, 1.9% 80.6%, 1.7% 79.9%, 1.5% 79.2%, 1.4% 78.5%, 1.2% 77.8%, 1.1% 77%, 1% 76.3%, 0.9% 75.4%, 0.7% 74.6%, 0.6% 73.7%, 0.5% 72.8%, 0.5% 71.8%, 0.4% 70.8%, 0.3% 69.8%, 0.2% 68.7%, 0.2% 67.5%, 0.1% 66.2%, 0.1% 64.8%, 0.1% 63.2%, 0% 61.4%, 0% 59.3%, 0% 56.6%, 0% 50%, 0% 43.4%, 0% 40.7%, 0% 38.6%, 0.1% 36.8%, 0.1% 35.2%, 0.1% 33.8%, 0.2% 32.5%, 0.2% 31.3%, 0.3% 30.2%, 0.4% 29.2%, 0.5% 28.2%, 0.5% 27.2%, 0.6% 26.3%, 0.7% 25.4%, 0.9% 24.6%, 1% 23.7%, 1.1% 23%, 1.2% 22.2%, 1.4% 21.5%, 1.5% 20.8%, 1.7% 20.1%, 1.9% 19.4%, 2% 18.7%, 2.2% 18.1%, 2.4% 17.5%, 2.6% 16.9%, 2.8% 16.3%, 3% 15.7%, 3.2% 15.2%, 3.5% 14.6%, 3.7% 14.1%, 4% 13.6%, 4.2% 13.1%, 4.5% 12.6%, 4.7% 12.1%, 5% 11.7%, 5.3% 11.2%, 5.6% 10.8%, 5.9% 10.3%, 6.2% 9.9%, 6.6% 9.5%, 6.9% 9.1%, 7.2% 8.7%, 7.6% 8.3%, 8% 8%, 8.3% 7.6%, 8.7% 7.2%, 9.1% 6.9%, 9.5% 6.6%, 9.9% 6.2%, 10.3% 5.9%, 10.8% 5.6%, 11.2% 5.3%, 11.7% 5%, 12.1% 4.7%, 12.6% 4.5%, 13.1% 4.2%, 13.6% 4%, 14.1% 3.7%, 14.6% 3.5%, 15.2% 3.2%, 15.7% 3%, 16.3% 2.8%, 16.9% 2.6%, 17.5% 2.4%, 18.1% 2.2%, 18.7% 2%, 19.4% 1.9%, 20.1% 1.7%, 20.8% 1.5%, 21.5% 1.4%, 22.2% 1.2%, 23% 1.1%, 23.7% 1%, 24.6% 0.9%, 25.4% 0.7%, 26.3% 0.6%, 27.2% 0.5%, 28.2% 0.5%, 29.2% 0.4%, 30.2% 0.3%, 31.3% 0.2%, 32.5% 0.2%, 33.8% 0.1%, 35.2% 0.1%, 36.8% 0.1%, 38.6% 0%, 40.7% 0%, 43.4% 0%, 50% 0%, 56.6% 0%, 59.3% 0%, 61.4% 0%, 63.2% 0.1%, 64.8% 0.1%, 66.2% 0.1%, 67.5% 0.2%, 68.7% 0.2%, 69.8% 0.3%, 70.8% 0.4%, 71.8% 0.5%, 72.8% 0.5%, 73.7% 0.6%, 74.6% 0.7%, 75.4% 0.9%, 76.3% 1%, 77% 1.1%, 77.8% 1.2%, 78.5% 1.4%, 79.2% 1.5%, 79.9% 1.7%, 80.6% 1.9%, 81.3% 2%, 81.9% 2.2%, 82.5% 2.4%, 83.1% 2.6%, 83.7% 2.8%, 84.3% 3%, 84.8% 3.2%, 85.4% 3.5%, 85.9% 3.7%, 86.4% 4%, 86.9% 4.2%, 87.4% 4.5%, 87.9% 4.7%, 88.3% 5%, 88.8% 5.3%, 89.2% 5.6%, 89.7% 5.9%, 90.1% 6.2%, 90.5% 6.6%, 90.9% 6.9%, 91.3% 7.2%, 91.7% 7.6%, 92% 8%, 92.4% 8.3%, 92.8% 8.7%, 93.1% 9.1%, 93.4% 9.5%, 93.8% 9.9%, 94.1% 10.3%, 94.4% 10.8%, 94.7% 11.2%, 95% 11.7%, 95.3% 12.1%, 95.5% 12.6%, 95.8% 13.1%, 96% 13.6%, 96.3% 14.1%, 96.5% 14.6%, 96.8% 15.2%, 97% 15.7%, 97.2% 16.3%, 97.4% 16.9%, 97.6% 17.5%, 97.8% 18.1%, 98% 18.7%, 98.1% 19.4%, 98.3% 20.1%, 98.5% 20.8%, 98.6% 21.5%, 98.8% 22.2%, 98.9% 23%, 99% 23.7%, 99.1% 24.6%, 99.3% 25.4%, 99.4% 26.3%, 99.5% 27.2%, 99.5% 28.2%, 99.6% 29.2%, 99.7% 30.2%, 99.8% 31.3%, 99.8% 32.5%, 99.9% 33.8%, 99.9% 35.2%, 99.9% 36.8%, 100% 38.6%, 100% 40.7%, 100% 43.4%);
}

.card-header.with--sub {
    padding-bottom: 5px;
}

.card-header h2, .sidecar h2 {
    margin: 0px;
    display: flex;
    align-items: center;
}

.card-body {
    background-color: white;
    height: 325px;
    display: flex;
    align-items: baseline;
    justify-content: left;
    position: relative;
    border-radius: 0px 0px 16px 16px;
}

.overview-content .card-body {
    overflow: hidden;
}

.card--sub-body {
    background-color: rgb(246 246 249);
    border-radius: 6px;
    /*noinspection CssInvalidPropertyValue*/
    width: -webkit-fill-available;
}

.darkside .apexcharts-svg tspan, .darkside .apexcharts-svg title, .darkside .apexcharts-legend-text, .darkside .apexcharts-text {
    color: #ffffff !important;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .growth-settings-content .card-body {
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-bottom: 10px !important;
    }

    .sidecar {
        width: 92%;
    }

    .card--sub-body {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    td {
        padding: 20px 10px;
    }
}

#main-content {
    position: relative;
    will-change: height;
    transition: height 0.8s ease;
}

#main-content:has(.route-content.onprogress) {
    height: calc(100vh - 35vh);
    overflow: hidden;
    border-radius: 16px;
}

.route-content.onprogress:after {
    position: absolute;
    inset: 0;
    z-index: 50;
    content: "";
    background:
            url(/assets/img/round-loading.svg) center / auto no-repeat,
            linear-gradient(to right, #FFFFFF7F, #FFDBFF80, #D9DAFD7F, #ffffff7f);
    background-size: auto, 200% 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 16px;
    animation: shimmer-onprogress 2s infinite;
}

.darkside .route-content.onprogress:after {
    background: url(/assets/img/round-loading.svg) center / auto no-repeat,
    linear-gradient(to right, #1e1e21ba, #2e1837ba, #1a1b37ba, #1e1e21ba);
    background-size: auto, 200% 100%;
    animation: shimmer-onprogress 2.4s infinite;
}

@keyframes shimmer-onprogress {
    0% {
        background-position: center, 200% 0;
    }
    100% {
        background-position: center, -200% 0;
    }
}

.card-body.onprogress:after, .stats-card.onprogress:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    transition: all ease .2s;
    background: rgba(255, 255, 255, 0.4) url(../img/round-loading.svg) center no-repeat;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.live-feed-container {
    max-height: 600px;
    overflow-y: auto;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
}

.live-feed-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.sub {
    line-height: 14px;
    color: #9b9b9b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.title-section h2 {
    margin: 0 10px;
    font-size: 24px;
    color: #333;
}

.stats h1 {
    font-size: 36px;
    margin: 0;
    color: #333;
}

.optimizing-badge {
    background-color: #e6f7ed;
    color: #10b981;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.chart-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.camera-button, .time-range button {
    background-color: #f3f4f6;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.time-range button.active {
    background-color: #e0e7ff;
    color: #4f46e5;
}

#followersChart {
    width: 100%;
    height: 300px;
}

/* Styles for live feed */
.live-feed {
    max-width: 360px;
    min-height: 140px;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    transition: all 2s ease-in;
}

.feed-item {
    position: relative;
    padding: 1rem 1.5rem 1rem 3.5rem;
}

.feed-item:before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 2.5rem;
    height: 100%;
    width: 2px;
    padding-top: 1rem;
    background-color: #e5e7eb;
}

.darkside .feed-item:before {
    background-color: #222224;
}

.feed-item.new-item, .feed-item:hover {
    background-color: rgba(59, 124, 255, 0.07);
}

.feed-item:last-child:before {
    content: '';
    opacity: 0;
}

.feed-icon {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.feed-icon svg {
    width: 1rem;
    height: 1rem;
}

.feed-content {
    margin-left: 0.75rem;
}

.feed-text {
    font-size: 0.875rem;
}

.feed-time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.feed-tag {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: #374151;
    margin-top: 0.625rem;
}

.feed-tag-container {
    display: flex;
    justify-content: space-between;
}

/* Existing colors */
.bg-pink-500 {
    background-color: #ec4899;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-amber-500 {
    background-color: #f59e0b;
}

.bg-slate-500 {
    background-color: #64748b;
}

.bg-purple-500 {
    background-color: #8b5cf6;
}

.bg-rose-500 {
    background-color: #f43f5e;
}

/* New colors */
.bg-red-gradient {
    background: linear-gradient(45deg, #ff5e00, #c72d8e);
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-teal-500 {
    background-color: #14b8a6;
}

.bg-cyan-500 {
    background-color: #06b6d4;
}

.bg-emerald-500 {
    background-color: #10b981;
}

.bg-lime-500 {
    background-color: #84cc16;
}

.bg-fuchsia-500 {
    background-color: #d946ef;
}

.bg-violet-500 {
    background-color: #8b5cf6;
}

.bg-gray-500 {
    background-color: #6b7280;
}

.avatar-group {
    display: flex;
    margin-top: 0.625rem;
}

.avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.65rem;
}

.avatar-more {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #4b5563;
    border: 2px solid white;
    margin-left: -0.65rem;
}

.row {
    padding-right: 0px;
    padding-left: 0px;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 9px;
    border-radius: 15px;
    overflow: hidden;
}

.map-location-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 9px;
    transition: all 0.3s ease;
    /* background-color: #f8fafc; */
}

.map-location-item:hover {
    /* background-color: #edf2f7; */
    /* transform: translateX(5px); */
}

.map-flag {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-location-info {
    flex-grow: 1;
}

.map-icon {
    width: 30px;
    height: 22px;
    margin-right: 12px;
}

.map-bar {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.darkside .map-bar {
    background: #222224;
}

.map-bar-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease-out;
}

.map-percentage {
    margin-left: 15px;
    /* font-size: 16px; */
    /* font-weight: 600; */
}

.jqvmap-label {
    position: absolute;
    display: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #292929;
    color: white;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    padding: 3px;
    pointer-events: none;
}

.country-label {
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.map-country-name {
    cursor: default;
    margin-bottom: 5px;
}

.map-percentage {
    /* font-size: 14px; */
    /* color: #666; */
}

@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    .map-sidebar {
        margin-left: 0;
        margin-top: 20px;
    }
}

.sidecar {
    margin-right: 20px !important;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 9px;
    border: 2px solid color(srgb 0.952 0.957 0.9657);
    flex: 1;
    height: fit-content;
}

.darkside .sidecar {
    border: 2px solid #222224;
}

.progress-container {
    margin-top: 10px;
    width: 100%
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-bar {
    flex-grow: 1;
    height: 3px;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.progress-bar-bold {
    flex-grow: 1;
    height: 32px;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.progress-fill {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding-left: 10px;
    color: white;
    transition: width 0.5s ease-out;
}

.progress-label {
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: default;
}

.progress-value, .map-percentage {
    cursor: default;
}

.map-location-item:hover {
    transition: all ease .3s;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}

.height-fit-content {
    height: fit-content;
}

.accounts-list-menu {
    position: absolute;
    top: 95px;
    left: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
    -webkit-transform: translateY(-10px) rotateX(10deg);
    -moz-transform: translateY(-10px) rotateX(10deg);
    -ms-transform: translateY(-10px) rotateX(10deg);
    -o-transform: translateY(-10px) rotateX(10deg);
    transform: translateY(-10px) rotateX(10deg);
}

.accounts-list-menu.active {
    z-index: 4;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px) rotateX(0deg);
    -moz-transform: translateY(0px) rotateX(0deg);
    -ms-transform: translateY(0px) rotateX(0deg);
    -o-transform: translateY(0px) rotateX(0deg);
    transform: translateY(0px) rotateX(0deg);
}

.accounts-list-menu .accounts-scroll-wrapper {
    max-height: none;
    overflow: visible;
    border-radius: 16px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #fff;
    box-shadow: 0 3px 6px 6px #0000000f;
}

.accounts-list-menu .accounts-scroll-wrapper > ul {
    margin: 0;
    padding: 0px;
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
    text-align: left;
    list-style: none;
    border: none;
    max-height: 57rem;
    overflow-y: scroll;
}

.accounts-list-menu .accounts-scroll-wrapper > ul li {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow-x: clip;
}

.accounts-list-menu .accounts-scroll-wrapper > ul .profile-info {
    padding: 7px 15px;
}

.accounts-list-menu .accounts-scroll-wrapper > ul .username {
    font-size: inherit;
}

.accounts-list-menu .accounts-scroll-wrapper > ul .username-container {
    padding-top: 0px;
}

.accounts-list-menu .accounts-scroll-wrapper > ul .profile-info:hover,
.accounts-list-menu .accounts-scroll-wrapper > ul a:hover,
.accounts-list-menu .accounts-scroll-wrapper > ul li:hover {
    background-color: rgba(249, 251, 254, 1);
    transform: none;
    -webkit-transform: none;
}

/* Scrollbar Styles (for webkit browsers) */
.live-feed::-webkit-scrollbar, .accounts-list-menu .accounts-scroll-wrapper > ul::-webkit-scrollbar {
    width: 8px;
}

.live-feed::-webkit-scrollbar-track, .accounts-list-menu .accounts-scroll-wrapper > ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.live-feed::-webkit-scrollbar-thumb, .accounts-list-menu .accounts-scroll-wrapper > ul::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

.live-feed::-webkit-scrollbar-thumb:hover, .accounts-list-menu .accounts-scroll-wrapper > ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Scrollbar Styles (for Firefox) */
.live-feed, .accounts-list-menu .accounts-scroll-wrapper > ul {
    scrollbar-width: thin;
    scrollbar-color: #6b7280 #f1f1f1;
}

.tag {
    padding: 8px 25px 8px 8px;
    background-color: #ffffff;
    color: rgba(107, 114, 128, 1);
    border: 1px solid #4f799f19;
    transition: all ease .2s;
    max-width: fit-content;
    margin-bottom: 10px;
    border-radius: 9px;
}

.tag.js-check-er-info {
    cursor: pointer;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.js-check-er-info-data {
    background-image: linear-gradient(108deg, #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s ease infinite;
}

.js-check-er-info-data [style*="color"] {
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
    animation: none;
}

.tag .js-check-er-info:hover {
    color: #2b69e9;
}

.tag .remove:hover {
    color: rgba(240, 81, 82, 1);
}

.tag:hover {
    transform: scale(0.97);
}

.tag .remove {
    top: 8px;
    padding-left: 4px;
    margin-left: 4px;
    font-size: 10px;
    border-left: 1px solid rgba(106, 113, 128, 0.6);
}

.item-tag {
    padding: 6px 12px;
    background-color: #ffffff;
    color: rgba(107, 114, 128, 1);
    max-width: fit-content;
    position: relative;
    display: inline-block;
    height: 20px;
    cursor: pointer;
    border: 1px solid #4f799f19;
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 9px;
    margin-bottom: 15px;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.item-tag:hover {
    color: #0053ff;
    border-color: #638dff8f;
    transform: scale(0.97);
    background-color: rgba(187, 217, 251, 0.10);
}

/*.item-tag:hover {*/
/*    color: #2b69e9;*/
/*    border-color: #2b69e9;*/
/*    transform: scale(0.97);*/
/*    background-color: rgba(59, 124, 255, .05);*/
/*}*/
.item-tag.selected {
    color: #ffffff;
    background-color: #0053FFD6;
}

.item-tag.selected:hover {
    color: #ffffff !important;
    background-color: #2b69e9;
    border-color: rgba(59, 124, 255, .05);
}

.target-highlighter {
    height: 4px;
    width: 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.color-orange {
    color: #ff9d06 !important;
}

.color-green {
    color: #20bd20 !important;
}

.color-red {
    color: red !important;
}

.color-black {
    color: black;
}

.darkside .color-black {
    color: #ffffff;
}

.color-basic {
    color: #9b9b9b;
}

.color-paused, .color-blue {
    color: #2b69e9
}

.mr-2 {
    margin-right: 2px;
}

.item-tag[data-id="emoji"] {
    position: relative;
    overflow: initial;
}

.emoji-popup {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 12px;
    padding: 6px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.emoji-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 47%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.emoji-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    transition: transform 0.1s ease;
}

.emoji-btn:hover {
    transform: scale(1.2);
}

.emoji-btn.active {
    background-color: #e0e0e0;
    border-radius: 50%;
}

.stats-card {
    position: relative;
}

p.placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-align: center;
    color: #6b7280;
    /*background: radial-gradient(circle at center, rgb(100, 149, 237) 9.24%, rgba(100, 149, 237, 0.5) 46.22%, rgba(100, 149, 237, 0) 61.34%);*/
}

live-placeholder p.placeholder {
    background: radial-gradient(circle at center, rgb(100, 149, 237) 9.24%, rgba(100, 149, 237, 0.5) 46.22%, rgba(100, 149, 237, 0) 61.34%);
}

.aside-list-item .circle {
    margin-left: 0px;
}

.aside-list-item .title {
    margin: 4px 41px 1px 0;
}

.skeleton-aside, .skeleton-content {
    border-radius: 16px;
    border: 1px solid #4F799F19;
}

.user-status-badge {
    left: 46px;
}

.skeleton .clearfix.row.mt-20 {
    margin-top: 0px !important;
}

.relogin-admin-button {
    color: #ff9d06 !important;
    border-color: #ff9d06 !important;
}

.relogin-admin-button:hover {
    color: #ff9d06 !important;
    border-color: #ff9d06 !important;
    background-color: rgba(255, 157, 8, 0.2) !important;
}

/* For Modules */
@media only screen and (min-width: 993px) {
    .col.l5 {
        width: 46.4%;
    }

    /*.col.l5:first-child:last-child {*/
    /*    width: 57.8%;*/
    /*}*/

    /*
        For the below buttons on modules page
        COPY, INSERT, CLEAR
     */
    .col.s12.m4.l4.mt-10.mr-10 {
        width: 31.21%;
    }

    .skeleton-aside {
        width: 32% !important;
    }

    .skeleton-content {
        width: 67% !important;
    }

    .sticky, .skeleton-aside {
        /*noinspection CssInvalidPropertyValue*/
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
    }

    .aside-list.js-loadmore-content {
        position: relative;
        height: 1000px;
    }
}

.modal-content {
    overflow: hidden;
}

.pmp-bulk-actions-header {
    padding: 14px 11px 10px 15px !important;
}

.pmp-bulk-btn {
    padding: 6px 4.4px !important;
}

.pmp-bulk-btn .icon.mr-3 {
    margin-right: 0px !important;
}

.apple-glow, .autocomplete-suggestions, .datepicker-wrapper {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), /* Cyan inner glow */ 0 0 40px rgba(128, 0, 255, 0.15), /* Purple middle glow */ 0 0 60px rgba(255, 0, 128, 0.15);
    /* Pink outer glow */
    animation: apple-glow-pulse 1.5s infinite;
}

@keyframes apple-glow-pulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), 0 0 40px rgba(128, 0, 255, 0.15), 0 0 60px rgba(255, 0, 128, 0.15);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.2), 0 0 50px rgba(128, 0, 255, 0.2), 0 0 70px rgba(255, 0, 128, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), 0 0 40px rgba(128, 0, 255, 0.15), 0 0 60px rgba(255, 0, 128, 0.15);
    }
}

.glow-card {
    background: rgba(255, 255, 255, 0.1);
    margin: 25px 0px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid #ffffff;
    position: relative;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0
    );
    z-index: -1;
    border-radius: 21px;
    filter: blur(24px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 0.7;
}

.glow-card h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.glow-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    max-width: 300px;
}

@media only screen and (min-width: 993px) {
    .col.offset-l1 {
        margin-left: 0% !important;
    }
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(108deg, #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
    padding: 2px 0;
}

.darkside .gradient-text {
    background-image: linear-gradient(108deg, #4fb1ff, #cc63df 34%, #ff5070 68%, #fda124);
}

.gradient-text.animated {
    background-size: 200% 100%;
    animation: gradient-shift 1.8s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.gradient-card {
    background-image: linear-gradient(to bottom right, rgba(0, 150, 255, 0.7), rgba(187, 99, 255, 0.7), rgba(245, 82, 115, 0.71));
}

.js-check-er-info {
    cursor: pointer;
}

.apexcharts-tooltip {
    border-radius: 18px !important;
}

.apexcharts-tooltip .apexcharts-tooltip-title {
    border-radius: 18px 18px 0 0 !important;
}

.apexcharts-legend-marker {
    top: 0 !important;
}

.mc-group.selectize-control.plugin-remove_button [data-value] {
    padding-right: 0px !important;
}

.mc-group .selectize-input.full:not(.input-active) {
    background-color: #4cb543;
    color: #fff !important;
}

.js-mc-group-form .mc-group-options {
    display: none;
}

.js-mc-group-form:has(.mc-group .selectize-input.has-items) .mc-group-options {
    display: block;
}

.mc-group.selectize-control.single .selectize-input:after {
    display: none !important;
}

#mc-group-selectized {
    padding-left: 20px !important;
}

.mc-group.selectize-control.plugin-remove_button [data-value] {
    padding-left: 20px;
}

.mc-group-field-icon--left {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 34px;
    height: 9px;
    padding: 0 0 18px 0;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #9b9b9b;
}

.mc-group-content .mc-group-field-icon--left {
    color: #ffffff;
    transition: color 0.2s ease;
}

.mc-group-content:has(.selectize-input.input-active) .mc-group-field-icon--left, .mc-group-content:has(.selectize-input.not-full) .mc-group-field-icon--left {
    color: #9b9b9b;
}

.selectize-input, .selectize-control.single .selectize-input.input-active {
    display: block;
}

.bypassing-infobox-btn {
    display: inline-flex !important;
    flex-direction: row !important;
}


/*.GlassContainer {*/
/*    --corner-radius: 24px;*/
/*    --base-strength: 14px;*/
/*    --extra-blur: 0px;*/
/*    --softness: 12px;*/
/*    --tint-amount: 0;*/
/*    --tint-saturation: 2;*/
/*    --tint-hue: 180deg;*/
/*    --contrast: 1;*/
/*    --brightness: 1;*/
/*    --invert: 1%;*/

/*    --total-strength: calc(var(--base-strength) + var(--extra-blur));*/
/*    --edge-width: calc(0.3px + (var(--softness) * 0.1));*/
/*    --emboss-width: calc((var(--softness) * 0.38));*/
/*    --refraction-width: calc((var(--softness) * 0.3));*/

/*    position: relative;*/
/*    overflow: visible;*/
/*    pointer-events: none;*/
/*}*/

/*.GlassContent {*/
/*    position: relative;*/
/*    display: block;*/
/*    z-index: 100;*/
/*    overflow: hidden;*/
/*    border-radius: var(--corner-radius);*/
/*    pointer-events: auto;*/
/*}*/

/*.GlassMaterial {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 1;*/
/*    overflow: visible;*/
/*    pointer-events: none;*/
/*}*/

/*.GlassMaterial:after {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 3;*/
/*    overflow: hidden;*/
/*    border-radius: var(--corner-radius);*/
/*    background-color: rgba(255, 255, 255, 0);*/
/*    !*background-color: rgba(0, 138, 255, 0.71);*!*/
/*}*/

/*.GlassMaterial > div {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    box-sizing: border-box;*/
/*    border-radius: var(--corner-radius);*/
/*    z-index: 2;*/
/*    overflow: hidden;*/
/*}*/

/*.GlassMaterial .GlassEdgeReflection {*/
/*    z-index: 4;*/
/*    margin: calc(var(--total-strength) * -1);*/
/*    border-radius: calc(var(--corner-radius) + var(--total-strength));*/
/*    backdrop-filter: blur(var(--total-strength)) brightness(1.2) saturate(1.2);*/
/*    padding: var(--edge-width);*/
/*    border: var(--total-strength) solid transparent;*/
/*    mask: linear-gradient(white 0 0) padding-box,*/
/*    linear-gradient(white 0 0) content-box;*/
/*    mask-composite: exclude, exclude;*/
/*}*/

/*.GlassMaterial .GlassEmbossReflection {*/
/*    backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0.25) brightness(1.11) saturate(1.2) hue-rotate(-10deg) contrast(2.3);*/
/*    padding: var(--emboss-width);*/
/*    border: 0 solid transparent;*/
/*    mask: linear-gradient(white 0 0) padding-box,*/
/*    linear-gradient(white 0 0) content-box;*/
/*    mask-composite: exclude, exclude;*/
/*}*/

/*.GlassMaterial .GlassRefraction {*/
/*    backdrop-filter: invert(0.1) brightness(1.2) contrast(1.5);*/
/*    padding: var(--refraction-width);*/
/*    border: calc(var(--emboss-width)) solid transparent;*/
/*    mask: linear-gradient(white 0 0) padding-box,*/
/*    linear-gradient(white 0 0) content-box;*/
/*    mask-composite: exclude, exclude;*/
/*}*/

/*.GlassMaterial .GlassBlur {*/
/*    backdrop-filter: blur(var(--extra-blur)) brightness(1.05);*/
/*    border-radius: calc(var(--corner-radius) - (var(--emboss-width) + var(--refraction-width)));*/
/*    margin: calc(var(--emboss-width) + var(--refraction-width));*/
/*}*/

/*.GlassMaterial .BlendLayers {*/
/*    z-index: 3;*/
/*    backdrop-filter: blur(calc((var(--softness) * 0.2) + (var(--extra-blur) * 0.2)));*/
/*}*/

/*.GlassMaterial .BlendEdge {*/
/*    z-index: 8;*/
/*    backdrop-filter: blur(calc(var(--edge-width) * 0.4)) contrast(1.6) saturate(1.5);*/
/*}*/

/*.GlassContainer:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 20;*/
/*    display: block;*/
/*    border-radius: var(--corner-radius);*/
/*    backdrop-filter: invert(var(--invert));*/
/*}*/

/*.GlassMaterial:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 11;*/
/*    display: block;*/
/*    border-radius: var(--corner-radius);*/
/*    padding: 1px;*/
/*    border: 0 solid transparent;*/
/*    background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.15) 0%, hsla(0, 0%, 0%, 0.2) 50%, hsla(0, 0%, 100%, 0.15) 100%);*/
/*    backdrop-filter: invert(0.15) opacity(1);*/
/*    mask: linear-gradient(white 0 0) padding-box,*/
/*    linear-gradient(white 0 0) content-box;*/
/*    mask-composite: exclude, exclude;*/
/*}*/

/*.GlassMaterial .Highlight {*/
/*    z-index: 12;*/
/*    display: block;*/
/*    border-radius: var(--corner-radius);*/
/*    padding: 1px;*/
/*    border: 0 solid transparent;*/
/*    backdrop-filter: brightness(1.2) contrast(1.6) saturate(1.2) opacity(1);*/
/*    mask: linear-gradient(white 0 0) padding-box,*/
/*    linear-gradient(white 0 0) content-box;*/
/*    mask-composite: exclude, exclude;*/
/*}*/

.GlassContainer {
    --corner-radius: 24px;
    --base-strength: 14px;
    --extra-blur: 2px;
    --softness: 12px;
    --tint-amount: 0;
    --tint-saturation: 2;
    --tint-hue: 180deg;
    --contrast: 1;
    --brightness: 1;
    --invert: 10%;

    --total-strength: calc(var(--base-strength) + var(--extra-blur));
    --edge-width: calc(0.3px + (var(--softness) * 0.1));
    --emboss-width: calc((var(--softness) * 0.38));
    --refraction-width: calc((var(--softness) * 0.3));

    position: relative;
    overflow: visible;
    pointer-events: none;
}

.GlassContent {
    position: relative;
    display: block;
    z-index: 100;
    overflow: hidden;
    border-radius: var(--corner-radius);
    pointer-events: auto;
}

.GlassMaterial {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.GlassMaterial:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    border-radius: var(--corner-radius);
    background-color: rgba(0, 84, 255, 0.71);

}

.GlassMaterial > div {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    border-radius: var(--corner-radius);
    z-index: 2;
    overflow: hidden;
}

.GlassMaterial .GlassEdgeReflection {
    z-index: 4;
    margin: calc(var(--total-strength) * -1);
    border-radius: calc(var(--corner-radius) + var(--total-strength));
    backdrop-filter: blur(var(--total-strength)) brightness(1.2) saturate(1.2);
    padding: var(--edge-width);
    border: var(--total-strength) solid transparent;
    mask: linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
    mask-composite: exclude, exclude;
}

.GlassMaterial .GlassEmbossReflection {
    backdrop-filter: blur(calc(var(--total-strength) * 1.5)) invert(0.25) brightness(1.11) saturate(1.2) hue-rotate(-10deg) contrast(2.3);
    padding: var(--emboss-width);
    border: 0 solid transparent;
    mask: linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
    mask-composite: exclude, exclude;
}

.GlassMaterial .GlassRefraction {
    backdrop-filter: invert(0.1) brightness(1.2) contrast(1.5);
    padding: var(--refraction-width);
    border: calc(var(--emboss-width)) solid transparent;
    mask: linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
    mask-composite: exclude, exclude;
}

.GlassMaterial .GlassBlur {
    backdrop-filter: blur(var(--extra-blur)) brightness(1.25);
    border-radius: calc(var(--corner-radius) - (var(--emboss-width) + var(--refraction-width)));
    margin: calc(var(--emboss-width) + var(--refraction-width));
}

.GlassMaterial .BlendLayers {
    z-index: 3;
    backdrop-filter: blur(calc((var(--softness) * 0.2) + (var(--extra-blur) * 0.2)));
}

.GlassMaterial .BlendEdge {
    z-index: 8;
    backdrop-filter: blur(calc(var(--edge-width) * 0.4)) contrast(1.6) saturate(1.5);
}

.GlassContainer:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 20;
    display: block;
    border-radius: var(--corner-radius);
    backdrop-filter: invert(var(--invert));
}

.GlassMaterial:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 11;
    display: block;
    border-radius: var(--corner-radius);
    padding: 1px;
    border: 0 solid transparent;
    background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.15) 0%, hsla(0, 0%, 0%, 0.2) 50%, hsla(0, 0%, 100%, 0.15) 100%);
    backdrop-filter: invert(0.15) opacity(1);
    mask: linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
    mask-composite: exclude, exclude;
}

.GlassMaterial .Highlight {
    z-index: 12;
    display: block;
    border-radius: var(--corner-radius);
    padding: 1px;
    border: 0 solid transparent;
    backdrop-filter: brightness(1.2) contrast(1.6) saturate(1.2) opacity(1);
    mask: linear-gradient(white 0 0) padding-box,
    linear-gradient(white 0 0) content-box;
    mask-composite: exclude, exclude;
}

.hidden {
    display: none;
}