* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Gilroy-bold";
    src: url('../fonts/lato/Gilroy-SemiBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-regular";
    src: url('../fonts/lato/Gilroy-Regular.woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-SemiBold";
    src: url('../fonts/lato/Lato-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url('../fonts/lato/Gilroy-Medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-Bold";
    src: url('../fonts/lato/Gilroy-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

:root {
    --lato-bold: Gilroy-bold;
    --lato-regular: Gilroy-regular;
    --lato-semibold: Gilroy-SemiBold;
    --gilroy-medium: Gilroy-Medium;
    --gilroy-bold: Gilroy-Bold;
    --black-color: #000000;
    --white-color: #ffffff;
    --boredr-color: #eee;
    --bg-color: #f7f7f7;
    --shadow: 0 2px 8px #00000036;
    --dark-color: #2b2b2b;
    --gray-color: #706E6E;
    --blue-color: #8E84F3;
}

body {
    background: var(--bg-color);
    width: 100%;
}

aside {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100dvh;
}

.Sidebar {
    width: 270px;
    height: var(--app-height);
    display: block;
    background: var(--white-color);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: hidden;
}

.left-side-logo {
    width: 100%;
    border-bottom: 1px solid var(--dark-color);
    padding: 1rem;
}

.left-side-logo a {
    width: 30px;
    height: 30px;
    /* border: 1px solid var(--black-color); */
    display: inline-block;
}

.left-side-logo a img {
    height: 40px;
    object-fit: contain;
}

.side-bar-menu {
    padding: 1rem;
    list-style: none;
}

.side__bar-links-cont {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.side-bar-menu .nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0px 4px;
    width: 100%;
    color: var(--gray-color);
    font-family: var(--lato-bold);
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
}

.side-bar-menu a .link__bg-sp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 8px 11px;
    border-radius: 11px;
}

.side-bar-menu a.active .link__bg-sp {
    background: var(--white-color);
}

.side-bar-menu a:hover .link__bg-sp {
    background: var(--white-color);
}

.side-bar-menu a .link__bg-sp .line__svg-sp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    border-radius: 7px;

}

.side-bar-menu a.active .link__bg-sp .line__svg-sp {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
}

.side-bar-menu a:hover .link__bg-sp .line__svg-sp {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
}

.side-bar-menu a.active .link__bg-sp .link__text {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.another__text {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-family: var(--lato-bold);
}

.side-bar-menu a.active {
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    box-shadow: var(--shadow);
}

.side-bar-menu .nav__link:hover {
    background: linear-gradient(to top, #92DBA4, #05978A);
    box-shadow: var(--shadow);
    color: var(--white-color);
}

.side-bar-menu a:hover .link__bg-sp .link__text {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.another__link {
    padding: 10px 22px;
    border: 1px solid var(--boredr-color);
    display: inline-block;
    width: 100%;
    margin-bottom: .5rem;
    color: var(--gray-color);
    font-family: var(--lato-bold);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
}

.another__link.activeted {
    border-color: #26BF94;
}

.another__link-mt {
    margin-top: 2rem;
}

main {
    display: grid;
    grid-template-columns: 270px 1fr;
}

.right-main {
    width: 100%;
    flex: 1;
    padding: 1rem;
    max-width: calc(1400px - 330px);
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    cursor: pointer;
    padding: 16px 23px;
}

.logo-wrapper {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--bg-color);
    border-radius: 50%;
    overflow: hidden;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-info .user-name {
    font-size: 13px;
    font-family: var(--lato-bold);
    color: var(--dark-color);
    font-weight: 600;
}

.user-info .user-role {
    font-size: 15px;
    font-family: var(--lato-regular);
    color: var(--dark-color);
    opacity: .8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-header {
    background: var(--white-color);
    padding: 1rem 1rem;
    box-shadow: var(--shadow);
    border-radius: 10px;
    position: sticky;
    top: 1.5rem;
    z-index: 100;
    /* display: flex; */
    /* align-items: center; */
    /* gap: 1rem; */
    /* justify-content: end; */
}

.dashboard-wrapper {
    /* background: var(--white-color); */
    /* box-shadow: var(--shadow); */
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    /* border-radius: 10px; */
}

.dashboard-title {
    font-size: 28px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.campaign-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.campaign-info {
    background: var(--white-color);
    /* border: 16px solid var(--bg-color); */
    box-shadow: var(--shadow);
    padding: 1rem;
    border-radius: 10px;
}

.campaign-info:hover {
    background: linear-gradient(to top, #92DBA4, #05978A);
    transition: 0.2s;
}

.campaign__count-box {
    display: flex;
    align-items: end;
    gap: 5px;
}

.campaign-info:hover .campaign-name,
.campaign-info:hover .campaign-name a,
.campaign-info:hover .campaign-count,
.campaign-info:hover .campaign-label,
.campaign-info:hover .campaign-link a {
    color: var(--white-color);
    opacity: 1;
}

.campaign-info .campaign-name {
    font-family: var(--lato-regular);
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.campaign-info .campaign-count {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
    font-size: 50px;
    transition: 0.2s;
}

.campaign-info .campaign-label {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 13px;
    font-size: 11px;
    opacity: .6;
    transition: 0.2s;
}

.campaign-link {
    text-align: end;
    width: 100%;
    display: flex;
    justify-content: end;
}

.campaign-info .campaign-link a {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
    /* margin-bottom: 10px; */
    font-size: 12px;
    opacity: .8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.campaign-info .campaign-social a {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: 0.2s;
}

.campaign-info .campaign-social a:hover.instagram {
    background: #d8d66c;
    color: var(--white-color);
}

.platforms-section {
    /* background: var(--white-color); */
    /* box-shadow: var(--shadow); */
    /* padding: 1.5rem; */
    border-radius: 10px;
    margin-top: 1rem;
}

.platforms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.platforms-title {
    font-size: 24px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
}

.platforms-view-all a {
    text-decoration: none;
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    padding: 17px 35px;
    color: var(--white-color);
    font-family: var(--lato-regular);
    font-size: 18px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    margin: auto;
    margin-bottom: 1rem;
}

.platforms-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.platforms-list .platform-icon {
    width: 2rem;
}

.platform__twitch .platform-icon {
    width: 1.5rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--bg-color);
    transition: all .2s;
}

.platform-card:hover {
    box-shadow: 0px 0px 15px #706e6e60;
}

.platform__card-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(20px);

    /* background: green; */

    position: relative;
    z-index: 2;
}

.platform__youtube span {
    background: linear-gradient(145deg, #fdd8d879 0%, #ffffff80 100%);
    box-shadow: inset 0 4px 10px rgba(255, 100, 100, 0.1),
        0 4px 12px rgba(0, 0, 0, 0);
}

.platform__insta span {
    background: linear-gradient(145deg, #b1358a1a 0%, #8a3ac81c 100%);
    box-shadow: inset 0 0px 10px rgba(255, 100, 247, 0.1),
        0 4px 12px rgba(0, 0, 0, 0);
}

.platform__tiktok span {
    background: linear-gradient(145deg, #69c9d013 0%, #69c9d01f 100%);
    box-shadow: inset 0 0px 10px rgba(100, 250, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0);
}

.platform__twitch span {
    background: linear-gradient(145deg, #631bff15 0%, #c831ff11 100%);
    box-shadow: inset 0 0px 10px rgba(159, 100, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0);
}

.platform__card-icon {
    margin-bottom: 0.5rem;
    position: relative;
    /* background-color: red; */
    display: block;
}

.platform__card-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;

    /* z-index: ; */
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(6px);
}

.platform__youtube::after,
.platform__tiktok::after {
    background: red;
}

.platform__insta::after {
    background: #D4467E;
}

.platform__twitch::after {
    background: #641BFF;
}

.platform-card .platform-count {
    font-size: 18px;
    font-family: var(--lato-bold);
    color: var(--dark-color);
}

.platform__count-text {
    font-size: 30px;
}

.platform__count-plus {
    color: #26BF94;
    font-weight: 900;
}

.platform-card .platform-name {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--dark-color);
    opacity: .8;
}

.brand-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.brand-charts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.home__chart {
    width: 250px;
}

.brand-card {

    position: relative;
}

.home__card-brand {
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 15px;
}

.youtube__chart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-brand {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* margin-top: 1.5rem; */
}

.brand-name {
    font-size: 20px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
}

.brand-name i {
    font-size: 16px;
    color: var(--blue-color);
}

.brand-image-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.brand-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card-box {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    padding-bottom: 0;
}

.brand-card-box .brand-info,
.brand-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-category {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--lato-regular);
    color: var(--dark-color);
}

.brand-location {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--lato-regular);
    color: var(--dark-color);
    font-size: 13px;
    opacity: .8;
}

.brand-card-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-card-social-links a {
    width: 30px;
    height: 30px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-color);
}

.brand-description {
    font-family: var(--lato-regular);
    font-weight: 500;
    color: var(--dark-color);
    font-size: 13px;
    line-height: 1.3;
    margin: 1rem 0;
    padding: 0 1.5rem;
}

.brand-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--bg-color);
    margin-bottom: 1rem;
    background: #F8F8F8;
}

.brand-stats .stat-number {
    font-size: 20px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    line-height: .9;
    white-space: nowrap;
}

.brand-stat-item {
    display: flex;
    align-items: end;
    gap: 5px;
    width: 100%;
    padding: 1rem 0;
    border-right: 1px solid #eaeaea;
}

.brand-stat-item:last-child {
    border-right: none;
}

.brand-stats .stat-label {
    font-size: 8px;
    text-transform: uppercase;
    font-family: var(--lato-regular);
    font-weight: 500;
    opacity: .8;
    color: var(--dark-color);
    text-align: center;
}

.chart-title {
    font-size: 18px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--bg-color);
    margin-bottom: 1rem;
}

.recommended-influencers-container {
    /* background: var(--white-color); */
    /* margin-top: 1.5rem; */
    /* border-radius: 10px; */
    /* box-shadow: var(--shadow); */
    border-top: 1px solid var(--boredr-color);
    overflow: hidden;
}

.influencer-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--bg-color);

}

.home__category {
    background: #ac46ff1f !important;
    color: #AD46FF !important;
}

.home__table {
    white-space: nowrap;
    overflow-x: auto;
}

.brand__tabel-box {
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 1rem;
    white-space: nowrap;
}

.table-wrapper {
    background: var(--white-color);
    border-radius: 10px;
    overflow-x: auto;
}

.influencer-img-placeholder {
    width: 1.75rem;
    height: 1.75rem;
}

.influencer-img-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.influencer-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.influencer-title .influencer-name a {
    text-decoration: none;
    color: var(--dark-color);
    font-family: var(--lato-bold);
    font-weight: 600;
    font-size: 14px;
}

.influencer-table td,
.influencer-table th {
    padding: .75rem;
    vertical-align: middle;
    line-height: 1.462;
}

.influencer-table th {
    font-family: var(--lato-bold);
    font-weight: 600;
    text-align: start;
    border: none;
}

/* tbody,
td,
tfoot,
th,
thead,
tr {
    border: 1px solid var(--bg-color);
} */

tbody tr {
    border: 1px solid var(--boredr-color);
    border-radius: 10px;
}

tbody {
    padding: 1rem;
}

thead tr {
    background: #043E54;
    color: var(--white-color);
}

.influencer-table td .subscriber-count,
.influencer-table td .engagement-rate,
.influencer-table td .avg-views {
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.influencer-table td .country {
    font-size: 14px;
    font-family: var(--lato-regular);
    font-weight: 500;
    color: var(--dark-color);
    opacity: .8;
}

.influencer-table td .category {
    font-size: 10px;
    font-family: var(--lato-bold);
    padding: .25rem .45rem;
    font-weight: 600;
    border-radius: 9px;
    color: #26BF94;
    background-color: RGBA(38, 191, 148, 0.1);
}

.recommended-influencers-title {
    padding: 1rem;
}

.recomended_influencer-title {
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 1.5rem;
}

.view-all-data {
    margin-top: 1.5rem;
    text-align: end;
}

.footer {
    background: var(--white-color);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-family: var(--lato-regular);
    font-weight: 500;
    color: #a7a7a7;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 -2px 8px #00000036;
}

.footer a {
    color: var(--blue-color);
    text-decoration: none;
    font-family: var(--lato-regular);
    font-weight: 500;
}


/* Search page style  */
.form-wrapper {
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    gap: 1.5rem;
}

.active_filters-title {
    font-family: var(--lato-bold);
    color: var(--black-color);
    white-space: nowrap;
}

.filter-tag {
    font-family: var(--gilroy-medium);
    color: var(--gray-color);
    background: #ECEEF2;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.active_filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
}

.active_filters-header {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.form-inner {
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
    /* max-width: 350px; */
    width: 300px;
    max-height: calc(100dvh - 153px);
    overflow-y: auto;
    flex-shrink: 0;
}

.form-inner::-webkit-scrollbar,
.form-sidebar::-webkit-scrollbar,
.report_influencer-wrapper::-webkit-scrollbar,
.influencer-form::-webkit-scrollbar,
.side__bar-links-cont::-webkit-scrollbar {
    background-color: var(--boredr-color);
    width: 8px;
    border-radius: 20px;
}

.form-inner::-webkit-scrollbar-thumb,
.form-sidebar::-webkit-scrollbar-thumb,
.report_influencer-wrapper::-webkit-scrollbar-thumb,
.influencer-form::-webkit-scrollbar-thumb,
.side__bar-links-cont::-webkit-scrollbar-thumb {
    background: var(--black-color);
    border-radius: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding: 1rem;
    border: 1px solid var(--boredr-color);
    border-radius: 14px;
}

.influencer-form {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.influencer-form hr {
    border: none;
    height: 1px;
    background: var(--boredr-color);
}

.form-label {
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--dark-color);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
    font-size: 14px;
}

.form-label img {
    width: 14px;
}

.form-label__analy {
    /* padding: 0 1rem; */
    /* margin-top: 1rem; */
    margin-bottom: 1.2rem;
}

.form-input,
.form-select {
    padding: 8px 15px;
    outline: none;
    background: none;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    appearance: none;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--boredr-color);
}

.form-select {
    background: #fafafa;
}

.campaign-create-title-sentiment {
    margin-bottom: 1rem;
}

.range-group {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.range-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.range-input label {
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-weight: 400;
    font-size: 14px;
    opacity: .8;
}

.form-heading {
    padding: 1.5rem;
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-weight: 400;
    font-size: 14px;
    opacity: .8;
}

.form-group-s {
    gap: 1.5rem;
}

.form-inner-heading {
    font-family: var(--lato-bold);
    font-size: 25px;
    font-weight: 700;
    /* padding: 1.5rem; */
}

.form-inner-heading span {
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-family: var(--lato-bold);
}

.form-wrapper {
    margin-top: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    font-size: 14px;
    gap: 1rem;
}

.checkbox-group input {
    accent-color: #0C9B8B;
}

.search-cont-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.report-cont-top {
    margin-top: 1rem;
}


.form-sidebar__form {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    /* padding: 1.5rem; */
}

.form-group--search {
    width: 100%;
    display: flex;
    /* align-items: center; */
    /* gap: 1rem; */
    border: 1px solid #57575733;
    background: #fafafa;
    padding: 4px;
    border-radius: 15px;

}

.form-group--search-sentiment {
    background: var(--white-color);
}

.form-group--search input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    font-family: var(--lato-regular);
    font-size: 16px;
}

.form-group--search input::placeholder {
    opacity: .7;
}

.form-button {
    padding: 17px 35px;
    border: none;
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    font-family: var(--lato-regular);
    font-weight: 400;
    outline: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 18px;
}

.form-sidebar__results-count {
    padding-bottom: 1rem;
    padding-top: 0;
    font-family: var(--lato-regular);
    color: var(--black-color);
}

.form-sidebar__result-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* padding: 1.5rem; */
    gap: 1.5rem;
    max-height: calc(100dvh - 188px);
    overflow-y: auto;
}

.result-card {
    border: 1px solid var(--boredr-color);
    padding: 1.5rem;
    border-radius: 14px;
    background: var(--white-color);
}

.result-card__top {
    display: flex;
    justify-content: space-between;
}

.result-card__info {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.result-card__img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.result-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card__name {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.result-card__location {
    font-size: 11px;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    opacity: .7;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.result-card__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--boredr-color);
    margin: .5rem 0 1rem;
    border-radius: 14px;
}

.result-card__stat:nth-child(1) {
    border-right: 1px solid var(--boredr-color);
}

.result-card__stat {
    padding: .5rem;
    text-align: center;
}

.result-card__label {
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--lato-regular);
    color: var(--black-color);
    margin-bottom: 5px;
}

.result-card__value {
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--lato-bold);
    color: var(--black-color);
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card__tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.result-card__tags div {
    outline: none;
    border-style: none;
    border-radius: 2rem;
    font-family: var(--lato-regular);
    font-size: 10px;
    font-weight: 400;
    padding: 3px 8px;
}

.chart-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 1rem;
}

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

.home__card-brand .brand-charts {
    height: 100%;
}


.result-card__view-btn {
    outline: none;
    border: none;
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--gilroy-medium);
}

.result-card__tag {
    background: #63bce628;
    color: #63BCE6;
}

.result-card__menu-btn {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.form-group-select {
    position: relative;
    width: fit-content;
}

.form-group-select-sentiment {
    background: var(--white-color);
    border-radius: 15px;
}

.form-group-select-sentiment select {
    border: 1px solid rgba(73, 73, 73, 0.226);
    background: var(--white-color) !important;

}

.form-group-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: -webkit-fill-available;
    pointer-events: none;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group-select select {
    padding-right: 2.5rem;
}

.top-head-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--dark-color);
}

.top-head-right span {
    display: flex;
}

.search-pagination {
    padding: 1.5rem;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 1.5rem;
}

.search-pagination button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--lato-bold);
    outline: none;
    background: none;
    border: 1px solid var(--black-color);
    border-radius: 3px;
}

.search-pagination .active {
    background: var(--black-color);
    color: var(--white-color);
}


/* List page style  */

.list-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--boredr-color);
}

.list-header__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.list-header__controls select {
    appearance: none;
    padding: 9px 15px;
    border: 1px solid var(--boredr-color);
    outline: none;
    border-color: var(--boredr-color);
    font-family: var(--lato-bold);
    font-weight: 700;
    border-radius: 10px;
}

.list-header__controls button,
.list-header__controls a {
    padding: 9px 15px;
    border: none;
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    font-family: var(--lato-regular);
    font-weight: 400;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
}

.list-table {
    /* padding: 1.5rem; */
    border-radius: 12px;
    background: var(--white-color);
    max-height: 1000px;
    overflow-y: auto;
    padding-bottom: 1rem;
    border: 1px solid var(--boredr-color);
}

.list-table table {
    width: 100%;
    border-collapse: collapse;
}

.list-table table th {
    text-align: left;
    padding: 10px 1rem;
    font-family: var(--lato-bold);
    font-weight: 700;
    font-size: 14px;
}

.list-table table td {
    text-align: left;
    padding: 10px 1rem;
    font-family: var(--lato-regular);
    font-weight: 500;
    color: var(--black-color);
    font-size: 14px;
}

.list-table table td a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--black-color);
}

.list-table__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-table__actions button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
}

.list-table__actions button svg {
    pointer-events: none;
}

.list-table__edit-btn {
    background: #8d84f300;
}

.list-table__delete-btn {
    background: #e0442900;
    color: #e04429;
}

.list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #F0FFF5;
    border-radius: 16px;
    margin-top: 2rem;
}

.list-footer__info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: var(--lato-regular);
    font-weight: 400;

}

.list-footer__info {
    color: #05978A;
    font-family: var(--lato-semibold);
    font-size: 18px;
}

.list-footer__results {
    position: relative;
}

.list-footer__results select {
    padding: 8px 15px;
    outline: none;
    background: none;
    border-color: var(--boredr-color);
    appearance: none;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--dark-color);
    padding-right: 2rem;
}

.list-footer__results-icon {
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    pointer-events: none;
}

.list-table__icon {
    width: 25px;
    height: 25px;
    border: 1px solid var(--boredr-color);
    border-radius: 3px;
}

.create-list-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000036;
    z-index: 100;
    align-content: center;
    visibility: hidden;
}

.create-list-modal.active {
    visibility: visible;
}

.create-list-modal__container {
    background: var(--white-color);
    max-width: 500px;
    width: 100%;
    margin: auto;
    box-shadow: var(--shadow);
    border-radius: 5px;
}

.create-list-modal__header {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--boredr-color);
}

.create-list-modal__title {
    font-size: 18px;
    font-family: var(--lato-semibold);
}

.create-list-modal__form-group {
    padding: .5rem 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 0;
}

.create-list-modal__form-group input,
.create-list-modal__form-group select {
    padding: 8px 15px;
    appearance: none;
    outline: none;
    border: 1px solid var(--boredr-color);
    font-family: var(--lato-semibold);
    color: var(--black-color);
    border-radius: 8px;
}

.create-list-modal__form-group textarea {
    min-height: 60px;
    height: auto;
    resize: vertical;
    outline: none;
    border: 1px solid var(--boredr-color);
    padding: 8px 15px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.create-list-modal__label {
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.create-list-modal__actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--boredr-color);
    margin-top: 1rem;
}

.create-list-modal__actions button {
    padding: 9px 15px;
    border: none;
    cursor: pointer;
    font-family: var(--lato-semibold);
    color: var(--black-color);
    font-size: 12px;
    color: var(--white-color);
    border-radius: 8px;
}

.create-list-modal__button--cancel {
    background: var(--black-color);
}

.create-list-modal__button--create {
    background: linear-gradient(to top, #92DBA4, #05978A);
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-family: var(--lato-semibold);
}

.list-table__link svg {
    margin-top: 5px;
}

.create-list-modal__close {
    cursor: pointer;
}


/* Campaigns page style  */


.campaign-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

.campaign-card-date {
    font-size: 12px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    opacity: .8;
}

.campaign-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #fff5d8; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-card__icon .lucide-instagram-icon {
    color: #f02965;
}

.campaign-card__icon .bi-youtube {
    color: #e04429;
}

.campaign-card__icon img {
    width: 60%;
}

.campaign-card__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-card__tags,
.campaign-card__stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign-card__middle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 1.5rem;
}

.campaign-card__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--boredr-color);
    margin-bottom: 3.5rem;
    background: #f1f1f1;
}

.campaign-card__metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.campaign-card__delete-button {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #e04429;
    color: var(--white-color);
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.campaign-header {
    padding: 1.5rem;
    display: flex;
    justify-content: end;
}

.campaign-header__create-button {
    font-family: var(--lato-semibold);
    padding: 8px 15px;
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.campaign-list {
    /* padding: 1.5rem; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.campaign-card-box {
    border: 1px solid var(--boredr-color);
    border-radius: 10px;
    background: var(--white-color);
    --r: 20px;
    --s: 25px;
    --x: 13px;
    --y: 11px;
    border-radius: var(--r);
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(100% - var(--_d) - var(--x)) 100% var(--_m),
        100% calc(100% - var(--_d) - var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
        var(--_g) calc(-1*var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask-repeat: no-repeat;


}

.campaign__list-main {
    position: relative;
}

.campaign-card__metrics {
    font-size: 14px;
    font-family: var(--lato-semibold);
}

.campaign-card__metrics-views,
.campaign-card__metrics-cpv {
    display: flex;
    align-items: center;
    gap: 5px;

    font-family: var(--lato-regular);
    padding: 5px 7px;
    border-radius: 10px;
}

.campaign-card__metrics-views {
    color: #49C4F9;
    border: 1px solid #49C4F9;
    background: #49c4f91c;
}

.campaign-card__metrics-cpv {
    color: #8B6AE0;
    border: 1px solid #8B6AE0;
    background: #8b6ae01f;
}

.campaign-card-heading {
    display: flex;
    align-items: center;
    gap: 5px;
}

.campaign-card-rating svg {
    color: #F5B849;
}

.campaign-card-rating span:nth-child(2) {
    font-size: 11px;
    font-family: var(--lato-regular);
    color: var(--black-color);
}

.campaign-card-rating span:last-child {
    font-size: 11px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.campaign-card__title {
    font-size: 18px;
    font-family: var(--lato-bold);
    margin-bottom: 5px;
}

.campaign-card__rating-star {
    color: #F5B849;
}

.campaign-card__stat,
.campaign-card__audience,
.campaign-card__created,
.campaign-card__ratings,
.campaign-card__platform {
    color: var(--black-color);
}

.campaign-card__stat span:last-child {
    font-size: 22px;
    font-family: var(--lato-bold);
}

.campaign-card__stat span:first-child {
    font-size: 14px;
    font-family: var(--lato-regular);
}

.campaign-card__ratings {
    font-size: 12px;
    margin-top: 5px;
}

.campaign-card__platform a,
.campaign-card-av {
    font-size: 12px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    text-decoration: none;
}

.campaign-form-wrapper {
    width: 100%;
    height: 100%;
    z-index: 100;
    /* margin-top: 1.5rem; */
}


.campaign-form-container {
    width: 100%;
    margin: auto;
}

.campaign-form__section-title {
    padding: 1rem 1.5rem;
    font-family: var(--lato-bold);
    font-size: 22px;
}

.campaign-form__row {
    display: flex;
    gap: 1rem;
}

.campaign-form__field-group select {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    border: 1px solid var(--boredr-color);
    appearance: none;
    font-family: var(--lato-semibold);
    background: #F3F3F5;
    border-radius: 9px;
    color: var(--gray-color);
}

.campaign-form__field-group {
    width: 100%;
}

.campaign-form__label {
    font-family: var(--gilroy-medium);
    color: var(--black-color);
    margin-bottom: 5px;
}

.campaign-card-fileupload {
    border: 2px dashed var(--gray-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 10px;
    border-radius: 12px;
}

.campaign-form__input {
    position: relative;
}

.campaign-form__input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.campaign-form__field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* margin-bottom: 15px; */
    /* padding: 0 1.5rem; */
}

.campaign-form input[type=text],
.campaign-form input[type=number],
.campaign-form input[type=date],
.campaign-form input[type=email],
.campaign-form input[type=url],
.campaign-form input[type=password] {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    border: 1px solid var(--boredr-color);
    font-family: var(--lato-bold);
    background: #F3F3F5;
    border-radius: 9px;
    color: var(--gray-color);
}

.setting__chage-pass-box {
    max-width: 550px;
    width: 100%;
}

.campaign-form__box {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campaign-form__section {
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    box-shadow: var(--shadow);
    border-radius: 12px;
}

.campaign-form__field-group textarea {
    font-family: var(--lato-semibold);
    padding: 8px 15px;
    outline: none;
    border: 1px solid var(--boredr-color);
    min-height: 60px;
    height: auto;
    resize: vertical;
    background: #F3F3F5;
    border-radius: 9px;
    color: var(--gray-color);
}

.campaign-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-form__field-group,
.campaign-form__input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campaign-form__submit {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.campaign-form__submit button {
    border: none;
    outline: none;
    padding: 8px 25px;
    font-family: var(--lato-regular);
    color: var(--white-color);
    cursor: pointer;
    font-size: 18px;
}

.form__submit-setting {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: end;
}

.form__submit-setting button {
    border: none;
    outline: none;
    padding: 17px 35px;
    font-family: var(--lato-regular);
    color: var(--white-color);
    cursor: pointer;
    font-size: 18px;
}

.campaign-form__cancle-button {
    background: var(--blue-color);
}

.campaign-form__create-button {
    background: linear-gradient(to top, #92DBA4, #05978A);
    border-radius: 15px;
}

.campaign-form__field-group {
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.campaign-create-title {
    font-size: 28px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.campaign-create-disc {
    font-size: 17px;
    font-family: var(--lato-regular);
    color: var(--gray-color);
    margin-bottom: 1rem;
    margin-top: 10px;
}

/* Brand page style */
.form-sidebar__search-brand {
    background: var(--white-color);
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-sidebar__search-sentiment {
    display: flex;
    gap: 1.5rem;
}

.brand__waper {
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.campaign-form__checkbox-group {
    font-family: var(--lato-regular);
}

.campaign-form__checkbox-group input {
    accent-color: #05978A;
}

.campaign-details-merket {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;

}

.campaign-details-box {
    width: 100%;
    border: 1px solid var(--boredr-color);
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.campaign-details-box-icon {
    flex-shrink: 0;
    width: 53px;
    height: 53px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DAFFFC;
    color: #07988B;
}

.campaign-details-box-title {
    font-family: var(--lato-regular);
    font-size: 15px;
    color: var(--black-color);
    margin-bottom: 5px;
}

.campaign-details-box-num {
    font-size: 26px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.campaign-detail-tabel-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.campaign-detail-tabel-link a {
    color: var(--gray-color);
    opacity: .6;
}

.campaign-details-headin {
    font-size: 28px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    background: var(--white-color);
    margin-top: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: var(--shadow);
}

.platform-brand {
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-table-para {
    font-family: var(--lato-regular);
    font-size: 14px;
    color: var(--gray-color);
    opacity: .8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 200px;
    width: 100%;
}

/* brand page style */
.brand-overview {
    display: flex;
    justify-content: space-between;
    background: var(--white-color);
    box-shadow: var(--shadow);
    min-height: 230px;
    --r: 50px;
    --s: 66px;
    --x: 31px;
    --y: 31px;
    width: 100%;
    border-radius: var(--r);
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(var(--_d) + var(--x)) 0 var(--_m),
        0 calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(var(--_d) + var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
    padding: 1rem;
}

.brand-overview__logo {
    width: 140px;
    height: 140px;
    background: var(--white-color);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    padding: 4px;
    border: 3px solid #0C9B8B;
    border-right-color: var(--white-color);
}

.brand-overview__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-overview__header {
    display: flex;
    align-items: start;
    gap: 10px;
    padding-left: 10rem;

}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-info__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--lato-semibold);
    color: var(--dark-color);
}

.brand-overview__title {
    font-size: 20px;
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
}

.brand-overview__description {
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--dark-color);
    margin: 5px 0;
    font-size: 14px;
}

.brand-overview__description-mb {
    display: none;
}

.brand-overview__social-list {
    display: flex;
    gap: 18px;
    list-style: none;
}

.influencer__dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

.influencer_table {
    white-space: nowrap;
    overflow-x: auto;
}

.brand-overview__social-list a {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    /* background: #fff5d8; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    text-decoration: none;
}

.brand__top-heading {
    margin-top: 1rem;
}

.brand-overview__social-list a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-stats-b {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
}

.brand-stats__item .brand-stats__value {
    font-size: 30px;
    font-family: var(--lato-bold);
    font-weight: 700;
    transition: all .3s ease;
}

.brand-stats__item {
    text-align: center;
    background: var(--white-color);
    border-radius: 19px;
    border: 1px solid var(--boredr-color);
    box-shadow: var(--shadow);
    padding: 1rem;
    width: 100%;
    transition: all .3s ease;
}

.brand-stats__item .brand-stats__label {
    font-family: var(--lato-regular);
    font-size: 10px;
    font-weight: 400;
    color: var(--dark-color);
    transition: all .3s ease;
}

.brand-stats__item:hover {
    background: linear-gradient(to top, #92DBA4, #05978A);
    color: var(--white-color);
    transform: translateY(-10px);
}

.brand-stats__item:hover .brand-stats__label,
.brand-stats__item:hover .brand-stats__value {
    color: var(--white-color);
    opacity: 1;
}

#brand-container {
    margin-top: 1.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-button {
    padding: 17px 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    font-weight: bold;
    width: fit-content;
    font-family: var(--lato-semibold);
    font-weight: 600;
    /* border: 1px solid var(--boredr-color); */
    font-size: 16px;
}

.tab-button.active {
    background-color: #0C9B8B;
    color: white;
}

.tabs-brand {
    display: flex;
    padding: 1.5rem 0;
}

.tab__content-container {
    /* border-radius: 10px; */
    /* box-shadow: var(--shadow); */
    margin-top: 1.5rem;
}

.brand-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--boredr-color);
}

.brand-section__controls {
    display: flex;
    gap: 1rem;
}

.brand-section__form {
    display: flex;
    gap: .5rem;
}

.brand-section__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
}

.brand-section__link {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-decoration: none;
    border: 1px solid var(--boredr-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.brand-section__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DAFFFC;
    color: #07988B;
}

.brand-section__link .brand-section__label {
    font-size: 20px;
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
    margin-top: 10px;
}

.brand-section__link .brand-section__value {
    font-size: 12px;
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    opacity: .7;
    margin: 5px 0;
}

.brand-section__change {
    font-size: 14px;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: #e04429;
}

.brand-section__button {
    padding: 8px 15px;
    font-size: 16px;
    font-family: var(--lato-semibold);
    color: var(--gray-color);
    border: none;
    outline: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--boredr-color);
}

.brand-section__button.active {
    color: var(--white-color);
    background: linear-gradient(to top, #92DBA4, #05978A);
}

.brand__section,
.brand__chart-main {
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 15px;
}

.brand__chart-main {
    margin-top: 1rem;
}

.brand-language-summary-another {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1rem;
    margin-top: 1rem;
}

.brand-section__form input {
    padding: 8px 15px;
    outline: none;
    border-radius: 8px;
    font-family: var(--lato-regular);
    border: 1px solid var(--boredr-color);
}

.brand-section__form button {
    padding: 8px 15px;
    border: 1px solid #07988B;
    font-size: 16px;
    font-family: var(--lato-semibold);
    color: #07988B;
    background: transparent;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.brand-section__title {
    font-size: 22px;
    font-family: var(--lato-bold);
    font-weight: 600;
    color: var(--dark-color);
}

.brand-section__ment {
    padding: 1rem;
}

#viewsChart__brand-1,
#viewsChart__brand-2 {
    padding: 1.5rem;
}

.brand-language-summary__summary {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    border-top: 1px solid var(--boredr-color);
    /* margin-top: 1rem; */
}

.brand-language-summary__summary .summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.brand-language-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.brand-language-summary__chart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.brand-language-summary__container,
.videoTabSection {
    border: 1px solid var(--boredr-color);
    background: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 15px;
}

.videoTabSection {
    margin-top: 1rem;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* padding: 1.5rem; */
    gap: 1.5rem;
    height: 100%;
}

.stats-summary__item {
    border: 1px solid var(--boredr-color);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.stats-summary__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    /* color: var(--white-color); */
    flex-shrink: 0;
}

.stats-summary__label {
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    opacity: .7;
    font-size: 14px;
    margin-bottom: 5px;
}

.stats-summary__value {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.summary__item .summary__label {
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    opacity: .8;
    font-size: 14px;
}

.summary__item .summary__value {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
}

.summary__view-all {
    font-family: var(--lato-semibold);
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #92DBA4;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    /* padding: 20px; */
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    padding: 1rem 0;
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.modal-content__table {
    max-height: 80dvh;
    overflow-y: auto;
}

.modal-content table tbody,
.modal-content table td,
.modal-content table tfoot,
.modal-content table th,
.modal-content table thead,
.modal-content table tr {
    border-left: none;
    border-right: none;
}

.modal-content th,
.modal-content td {
    padding: 8px 1.5rem;
    text-align: left;
    border: 0;
    font-family: var(--lato-regular);
}

.modal-content td {
    font-size: 14px;
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
    margin-right: 1.5rem;
}

.modal-content__table-close {
    padding: 8px 15px;
    display: block;
    margin-left: auto;
    margin-right: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-family: var(--lato-semibold);
    color: var(--white-color);
    background: var(--black-color);
    border: none;
    outline: none;
    border-radius: 3px;
}

.modal-content h3 {
    font-family: var(--lato-bold);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.brand__videos-heading {
    font-size: 22px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    margin: 1rem 0;
    padding: 0 1rem;
}


.videoTabNav {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    background: #f8f8f8;
    margin-left: 1rem;
    border-radius: 100px;
}

.videoTabBtn {
    padding: 15px 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    font-weight: bold;
    width: 100%;
    font-family: var(--lato-semibold);
    font-weight: 600;
    font-size: 18px;
    width: fit-content;
}

.videoTabBtn.is-selected {
    background-color: #05978A;
    color: #fff;
}

.videoTabContent {
    display: none;
}

.videoTabContent.is-visible {
    display: flex;
    flex-wrap: nowrap;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow-x: auto;
}

.video-card__thumbnail {
    height: 170px;
    display: flex;
}

.video-card__date {
    font-size: 11px;
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

.video-card__link {
    text-decoration: none;
    border: 1px solid var(--boredr-color);
    display: block;
    border-radius: 10px;
    transition: all .2s;
    width: 300px;
}


.video-card__link:hover {
    box-shadow: var(--shadow);
}

.video-card__meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: var(--black-color);
    font-size: 11px;
    opacity: .8;
    margin-top: 1rem;
}

.video-card__content {
    padding: 1rem;
    display: block;
}

.video-card__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 1rem; */
}

.video-card__text .video-card__title {
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: var(--black-color);
}

.video-card__description {
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    opacity: .7;
    font-size: 12px;
}

.video-card__stats {
    display: flex;
    gap: 1rem;
}

.video-card__stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab-content.active#videos {
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.tab-content.active#influencers {
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.brand__video-cont {
    width: 100%;
}

.brand__totals-result {
    font-family: var(--lato-semibold);
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--black-color);
    font-size: 14px;
    opacity: .8;
}

.active-status-brand {
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 3px;
    outline: none;
    border: none;
    margin-right: 3px;
    display: inline-flex;
    flex-shrink: 0;
}

.active-status-brand img {
    width: 100%;
}

.status-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-header__create-btn-senti,
.create-list-modal__button--cancel {
    background: transparent !important;
    color: #05978A !important;
    border: 1px solid #05978A !important;
}


.compare-brand__search {
    padding: 8px 15px;
    outline: none;
    background: var(--boredr-color);
    border: 1px solid var(--boredr-color);
    font-family: var(--lato-regular);
    font-weight: 400;
    color: var(--black-color);
    border-radius: 8px;
    appearance: none;
    width: 100%;
    margin-bottom: 1rem;
}

.compare__top-cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.search__compare {
    margin-top: 1rem;
}

.compare-brand__header {
    display: flex;
    align-items: center;
    gap: 5px;
    /* padding: 1.5rem; */
}

.compare-brand__image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-brand__image-green {
    background: #D0FAD9;
    color: #07988B;
}

.compare-brand__image-purple {
    color: #AD46FF;
    background: #EED9FF;
}

.compare-brand__image-blue {
    color: #2B7FFF;
    background: #D5E6FF;
}

.compare-brand__title {
    font-size: 18px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.compare-brand__stats {
    /* padding: 1.5rem; */
}

.compare-brand__stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--boredr-color);
    border-radius: 15px;
    margin-bottom: 0.5em;
}

/* .compare-brand__content {
    padding: 0 1.5rem;
} */

.compare-brand__stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.compare-brand__stat-icon-red {
    background: #E6533C;
}

.compare-brand__stat-icon-blue {
    background: #49B6F5;
}

.compare-brand__stat-icon-yellow {
    background: #F5B849;
}

.youtube__chart {
    padding: 1rem 1rem;
    width: 100%;
}



.compare-brand {
    background: var(--white-color);
    box-shadow: var(--shadow);
    /* margin-top: 1.5rem; */
    border-radius: 10px;
}

.compare-brand__stat-block {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid var(--boredr-color);
    border-radius: 10px;
    /* max-width: 400px; */
    width: 100%;
    align-items: flex-start;
}

.compare-brand__stat-diff {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: #26BF94;
}

.compare-brand__stat-comparison {
    display: flex;
    /* flex-wrap: wrap; */
    background: var(--white-color);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-top: 1.5rem;
    gap: 1.5rem;
    border-radius: 10px;
}

.compare-brand__stat-label {
    font-size: 12px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    opacity: .6;
}

.compare-brand__stat-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compare-brand__stat-value {
    flex-shrink: 0;
    font-size: 40px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    line-height: 1;
}

.compare__table-form {
    display: flex;
    background: var(--white-color);
    box-shadow: var(--shadow);
    /* padding: 1.5rem; */
    gap: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    overflow: hidden;
}

.compare__table-form-research {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    position: relative;
}

.influencer__header-title {
    padding-top: 0 !important;
}

.brand__video-cont-research {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.search-cont-top-research {
    margin-bottom: 0.5rem;
}

.shoper_overlap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    padding: 1rem;
    border: 1px solid var(--boredr-color);
    border-radius: 15px;
    background: var(--white-color);
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.overlap__heading {
    font-size: 22px;
    color: var(--black-color);
    font-family: var(--lato-bold);
    margin-bottom: 1rem;
}

.veen-main {
    position: relative;
    width: fit-content;
    margin: auto;
    font-size: 13px;
    font-family: var(--lato-regular);
}

.veen-1 {
    width: 200px;
    height: 200px;
    background: #95dda54d;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 10;
    align-content: center;
    text-align: center;
    color: var(--black-color);
}

.veen-2 {
    width: 120px;
    height: 120px;
    background: #95DDA5;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: -40px;
    left: -40px;
    align-content: center;
    padding-left: 2rem;
    color: var(--white-color);
}

.veen-3 {
    width: 120px;
    height: 120px;
    background: #043E54;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    bottom: -20px;
    left: -60px;
    align-content: center;
    padding-left: 1rem;
    color: var(--white-color);
}

.veen-4 {
    width: 120px;
    height: 120px;
    background: #17A08D;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: -10px;
    right: -60px;
    align-content: center;
    padding-left: 3.5rem;
    color: var(--white-color);
}

.veen-5 {
    width: 120px;
    height: 120px;
    background: #59C099;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    bottom: -40px;
    right: -40px;
    align-content: center;
    padding-left: 3rem;
    color: var(--white-color);
}

#overlap__box {
    min-height: 350px;
    height: auto;
    align-content: center;
}

.shoper_header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
    border: 1px solid var(--boredr-color);
    padding: 0.5rem;
    border-radius: 15px;
    position: relative;
}

.compare__form-icon {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
}

.shoper_header-icon {
    flex-shrink: 0;
    width: 31px;
    height: 28px;
    border-radius: 9px;
    overflow: hidden;
}

.shoper_header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shoper_result {
    margin: 1rem 0;
}

.shoper_result .shoper_result-num,
.shoper_unique-num {
    font-family: var(--lato-bold);
    color: var(--black-color);
    font-size: 14px;
}

.shoper_result .shoper_result-text,
.shoper_unique-heading {
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-size: 12px;
}

.shoper_heading {
    font-size: 14px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.shoper_flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--boredr-color);
    border-radius: 15px;
    padding: 0.5em;
}

.shoper_flex-dot {
    border-top: 1px dashed var(--gray-color);
    width: 100%;
    height: 1px;
}

.shoper_flex-avatar {
    position: relative;
    flex-shrink: 0;
}

.shoper_flex-avatar img:first-child {
    position: absolute;
    right: -15px;
}

.shoper_flex-avatar img {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.shoper_flex {
    margin-top: .8rem;
    margin-bottom: .8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shoper_compare {
    padding: 1rem;
    box-shadow: var(--shadow);
    background: var(--white-color);
    border-radius: 15px;
}

.compare__form {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow-x: auto;
    margin-top: 1rem;
    gap: 5px;
}

.compare__form-select {
    position: relative;
}

.compare__form-select select,
.compare__form-select input {
    border: 1px solid var(--boredr-color);
    border-radius: 9px;
    padding: 8px 15px;
    font-family: var(--lato-regular);
    font-size: 14px;
    appearance: none;
    padding-right: 50px;
    outline: none;
}

.compare__form-select input {
    padding-right: 15px;
}

.compare__form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand__video-cont {
    /* padding: 1.5rem 0; */
    overflow: hidden;
    padding-bottom: 1rem;
}

.platform-selector__options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white-color);
    box-shadow: var(--shadow);
    flex-direction: column;
    border-radius: 5px;
    z-index: 100;
    overflow: hidden;
}

.brands__total-table {
    margin-top: 1rem;
}

.brands__total-table span:first-child {
    font-family: var(--lato-regular);
    color: var(--gray-color);
}

.brands__total-table span:last-child {
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.platform-selector__options.show {
    display: flex;
}

.platform-selector {
    position: relative;
    max-width: 200px;
    min-width: 150px;
}

.platform-selector__button {
    background: var(--white-color);
    color: var(--black-color);
    padding: 8px 15px;
    border-radius: 9px;
    outline: none;
    border: none;
    display: block;
    cursor: pointer;
    border: 1px solid var(--boredr-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.platform-selector__options a {
    padding: 1rem;
    text-decoration: none;
    color: var(--black-color);
    font-family: var(--lato-semibold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-selector__options a:hover {
    background: #eeeeee;
}

.right__research-cont {
    width: 100%;
}

.report__select select {
    padding-right: 2.5rem !important;
}

.report__choese-file {
    padding: 0 !important;
    height: 33px;
    align-content: center;
}

.report__choese-file::-webkit-file-upload-button {
    visibility: hidden;
}

.report__choese-file::before {
    content: 'Choese File';
    background: var(--boredr-color);
    height: 100%;
    padding: 8px 15px;
}

.list-table {
    white-space: nowrap;
    overflow-x: auto;
}

.brand-section__cards-report {
    grid-template-columns: repeat(4, 1fr);
}

.report-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    /* padding: 1.5rem; */
}

.campaign-create-title-details {
    margin-bottom: 1rem;
}

.report-metrics__item {
    /* display: flex; */
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--boredr-color);
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 5px 10px var(--boredr-color);
}

.report-metrics__item:hover {
    background: linear-gradient(to top, #92DBA4, #05978A);
}

.report-metrics__item:hover .report-metrics__icon {
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
}

.report-metrics__item:hover .report-metrics_title {
    color: var(--white-color);
}

.report-metrics__item:hover .report-metrics__value {
    color: var(--white-color);
}

.report-metrics__item:hover .report-metrics__label {
    color: var(--white-color);
}

.report-metrics__icon {
    /* width: 40px; */
    /* height: 40px; */
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-metrics_title {
    display: flex;
    /* text-transform: capitalize; */
    font-family: var(--lato-semibold);
    gap: 5px;
    margin-bottom: 1rem;
}

.report-metrics__value {
    font-size: 40px;
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
    line-height: 1;
}

.report-metrics__content {
    display: flex;
    align-items: end;
    gap: 5px;
}

.report-metrics__label {
    font-size: 12px;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: var(--black-color);
    opacity: .7;
    margin: 5px 0;
}

.report-metrics__link a {
    font-size: 10px;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: var(--blue-color);
    text-decoration: none;
}

.report__main-cont {
    /* background: var(--white-color); */
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.report__add-post-btn {
    padding: 8px 15px;
    white-space: nowrap;
    margin-left: 1.5rem;
    border: none;
    outline: none;
    font-family: var(--lato-semibold);
    font-weight: 600;
    color: var(--white-color);
    background: var(--black-color);
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
}

.list-header__title {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
    font-size: 24px;
    opacity: .6;
}

.brand-sentiment-heading {
    margin-top: 1rem;
}

.list-table__trend-btn {
    color: #26BF94;
    background: #e0fff6;
}

.create-post-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.create-list-modal__container {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
}

.engagement-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-top: 1rem;
}

.engagement-charts {
    padding: 1rem;
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 20px;
}

.engagement-summary {
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 20px;
    padding: 1rem;
}

.engagement-title {
    font-size: 22px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    opacity: .6;
}

.engagement-value {
    font-size: 47px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    margin-top: 1rem;
}

.engagement-desc {
    font-size: 14px;
    font-family: var(--lato-regular);
    color: var(--gray-color);
}

.metric {
    border: 1px solid var(--boredr-color);
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    padding: 10px 1rem;
}

.metric-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    opacity: .7;
}

.metric-value {
    font-size: 18px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.engagement-metrics {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1rem;
}

.chart-header {
    display: flex;
    align-items: center;
}

.chart-header button {
    background: transparent;
    padding: 10px 1rem;
    font-size: 16px;
    color: var(--black-color);
    opacity: .6;
    border-radius: 35px;
    border: none;
    font-family: var(--lato-regular);
    cursor: pointer;
}

.chart-header button.active {
    color: var(--white-color);
    background: linear-gradient(to top, #92DBA4, #05978A);
    opacity: 1;
}

.category-performance {
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
}

.category-title {
    font-size: 22px;
    color: var(--black-color);
    font-family: var(--lato-bold);
    margin-bottom: 1rem;
}

.header-label-top {
    font-size: 17px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    border: 1px solid var(--boredr-color);
    border-radius: 13px;
    padding: 1rem;
    margin-bottom: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}


.category-table .header-label {
    font-size: 12px;
    padding: 7px 1rem;
    border-radius: 8px;
    border: 1px solid var(--boredr-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--lato-regular);
    color: var(--black-color);
}

.category-header {
    width: 100%;
    max-width: 250px;
}

.category-row {
    width: 40%;
    border: 1px solid var(--boredr-color);
    border-radius: 14px;
    padding: 10px;
}

.category-values,
.category-header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.category-values .value {
    font-size: 13px;
    color: var(--black-color);
    font-family: var(--lato-bold);
    border: 1px solid var(--boredr-color);
    border-radius: 8px;
    text-align: center;
    padding: 8px 1rem;
}

.influencers__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.influencers-title {
    font-size: 28px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.influencers__all a {
    font-size: 18px;
    font-family: var(--lato-regular);
    background: linear-gradient(to top, #92DBA4, #05978A);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #26BF94;
}

.top-influencers {
    margin-top: 1rem;
    position: relative;
}

.influencers-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.custom-scroll::-webkit-scrollbar {
    height: 10px;
    /* scrollbar height */
}

.custom-scroll::-webkit-scrollbar-track {
    background: #D9D9D9;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #92DBA4, #05978A);
    border-radius: 20px;
    /* border: 3px solid transparent; */
    background-clip: content-box;
}

.influencer-card {
    min-width: 260px;
    flex-shrink: 0;
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 17px;
    padding: 14px;
}

.influencer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.influencer-image {
    width: 96px;
    height: 86px;
    border-radius: 12px;
    overflow: hidden;
}

.influencer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-name {
    font-family: var(--lato-bold);
    color: var(--black-color);
    /* margin-bottom: 5px; */
    display: flex;
    gap: 3px;
}

.influencer__table-name {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.influencer_type {
    display: flex;
    gap: 3px;
}

.video_influencers-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

/* .video_report-btn {
    position: absolute;
    top: 80vh;
    left: 50%;
    transform: translateX(-50%);
} */

.influencer_num {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: var(--lato-regular);
    font-size: 11px;
    color: var(--black-color);
    gap: 4px;
}

.influencer-name-user {
    font-size: 12px;
    opacity: 0.7;
}

.influencer-username {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    opacity: .6;
}

.influencer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
    gap: 10px;
}

.influencer-stats .stat {
    border: .7px solid var(--boredr-color);
    border-radius: 13px;
    padding: 10px;
}

.influencer-stats .stat-value {
    text-align: center;
}

.influencer-stats .stat-value span:first-child {
    font-size: 20px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    margin-bottom: 5px;
}

.influencer-stats .stat-value span:last-child {
    font-size: 10px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    opacity: .4;
}

.influencer-stats .stat-label {
    font-size: 7px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    opacity: .4;
    text-align: center;
}

.content-card {
    min-width: 300px;
    background: var(--white-color);
    border-radius: 18px;
    padding: 10px;
}

.video_card-report {
    min-width: auto !important;
}

.content-img {
    width: 100%;
}

.content-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
}

.content-main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#00000000, #0000007e);
    bottom: 0;
    left: 0;
}

.creator-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.creator-avatar {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-name {
    font-family: var(--lato-semibold);
    color: var(--white-color);
    font-size: 15px;
    text-decoration: none;
}

.creator-location {
    font-size: 14px;
    color: var(--white-color);
    font-family: var(--lato-regular);
}

.content-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
    font-size: 12px;
}

.top-contents {
    margin-top: 2rem;
}

.report__cart-g {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.report__card {
    border: 1px solid var(--boredr-color);
    border-radius: 20px;
    /* padding: 1rem; */
    background: var(--white-color);
}

.report__word {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

.report__word div {
    border: 1px solid var(--boredr-color);
    border-radius: 30px;
    padding: 5px 24px;
}

.report__word div span:first-child {
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.report__word div span:last-child {
    font-family: var(--lato-regular);
    color: var(--black-color);
    opacity: .8;
}

.report_cart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.report__card .influencers__all {
    margin-top: 1rem;
    padding: 1rem;
    padding-top: 0;
}

.ad__titile {
    font-size: 22px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    padding: 1rem;
}

.category-name {
    display: flex;
    padding: 8px 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.category-name .category-type {
    font-family: var(--lato-bold);
    color: var(--black-color);
    font-size: 15px;
}

.category-name .category-range {
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-size: 15px;
    opacity: .7;
}

.category-table {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.trend-list-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.no-posts-msg {
    padding: 1.5rem;
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
}

.insta__report-msg,
.no-posts-wrapper {
    padding: 1.5rem;
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
}

.trend-list-modal__container {
    max-width: 700px;
    width: 100%;
    background: var(--white-color);
    margin: auto;
    border-radius: 10px;
}

.trend-list-modal {
    align-content: center;
}

.trend__cart-title {
    font-family: var(--lato-bold);
    font-weight: 700;
    color: var(--black-color);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--boredr-color);
}

#chart__trend-report {
    padding: 1.5rem;
}

.trend-list-modal__close {
    cursor: pointer;
}

.login_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    width: 100%;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white-color);
    padding: 1.5rem;
}

.left_form-logo img {
    height: 68px;
    margin-bottom: 1rem;
}

.right_box-form_content-img img {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: block;
}

.right_box-form_content {
    background: #043E54;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 34px;
}

.login_image {
    width: 100%;
}

.left_form {
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 1rem;
}

.left_form-hading {
    font-size: 25px;
    font-family: var(--lato-bold);
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}

.sign_google {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgb(244, 251, 255);
    border: none;
    outline: none;
    border-radius: 3px;
    font-size: 14px;
    font-family: var(--lato-regular);
    cursor: pointer;
}

.sign_google:hover {
    background: #e4ecf2;
}

.left_form-or {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-family: var(--lato-regular);
    font-size: 14px;
    margin: 2rem 0;
}

.left_form-or span:nth-child(1) {
    height: 1px;
    width: 100%;
    background: var(--boredr-color);
}

.left_form-or span:nth-child(3) {
    height: 1px;
    width: 100%;
    background: var(--boredr-color);
}

.left_form-para {
    font-family: var(--lato-regular);
    color: var(--black-color);
    margin-top: 1rem;
    text-align: center;
}

.left_form-para a {
    color: var(--black-color);
    text-decoration: none;
}

.login_container {
    background: #F7F7F7;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.input_login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--lato-regular);
    color: var(--black-color);
}

.left_form-password {
    margin-top: 0.8rem;
}

.input_login input {
    height: 60px;
    width: 100%;
    outline: none;
    border: 1px solid var(--boredr-color);
    border-radius: 3px;
    background: #F7F7F7;
    padding: 0 1rem;
}

.login_image_title {
    font-size: 36px;
    font-family: var(--gilroy-medium);
    color: var(--white-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.login_image_container {
    position: relative;
}

.login_child1 {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 50%;
}

.login_child2 {
    position: absolute;
    bottom: 10%;
    right: -7%;
    transform: translateY(-50%);
    width: 50%;
}

.forget_pass-btn {
    text-align: end;
    margin-top: 5px;
}

.forget_pass-btn a {
    text-decoration: none;
    font-family: var(--lato-regular);
    color: rgb(65, 65, 255);
    font-size: 14px;
}

.forget_pass-btn a:hover {
    text-decoration: underline;
}

.remmber_check label {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    margin-top: 10px;
    margin-bottom: 1rem;
    user-select: none;
}

.login_btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 50px;
    border: none;
    background: linear-gradient(to bottom, #92DBA4, #05978A);
    border-radius: 15px;
    color: var(--bg-color);
    cursor: pointer;
    font-size: 18px;
}

.right_box-form_content-arti {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.right_box-form_content-arti h2 {
    font-size: 30px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    margin-bottom: .7rem;
}

.right_box-form_content-arti p {
    font-family: var(--lato-regular);
    color: var(--black-color);
    line-height: 1.5;
}



/* yt video page style  */

.yt_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yt_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt_details {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.yt_video-title {
    font-size: 22px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#yt-date {
    font-size: 15px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    margin-top: 5px;
}

.yt__box {
    background: var(--white-color);
    box-shadow: var(--shadow);
    border: 1px solid var(--boredr-color);
    padding: 1rem;
    border-radius: 15px;
}

.yt__video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.yt__video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yt__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yt__option-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

#shareBtn {
    background: var(--boredr-color);
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 7px 15px;
    font-size: 12px;
    font-family: var(--lato-regular);
    gap: 5px;
    border-radius: 100px;
    cursor: pointer;
}

#shareBtn img {
    height: 15px;
    object-fit: contain;
}

.like_dislike {
    display: flex;
    align-items: center;
    background: var(--boredr-color);
    border-radius: 100px;
}

.like_dislike button {
    border: none;
    outline: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 15px;
    font-size: 12px;
    font-family: var(--lato-regular);
}

.like_dislike button:last-child {
    border-left: 1px solid #d8d8d8;
}

.yt__more-btn button {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: none;
    outline: none;
    background: var(--boredr-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.yt__channel-content {
    padding: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 8rem;
    --r: 28px;
    /* the radius */
    --s: 53px;
    /* size of inner curve */
    --x: 25px;
    /* horizontal offset (no percentage) */
    --y: 25px;
    /* vertical offset (no percentage) */

    background: var(--white-color);
    border-radius: var(--r);
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(var(--_d) + var(--x)) 0 var(--_m),
        0 calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(var(--_d) + var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
    /* height: 250px; */
    position: relative;
    box-shadow: var(--shadow);
}

.yt__channel-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(#ffffff71, #ffffff);
}

.yt__channel-content.active::after {
    background: transparent;
}

.yt__channel-second {
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    padding: 4px;
    border: 3px solid #0C9B8B;
    border-right-color: var(--white-color);
}

.yt__channel-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt__channel-details {
    position: relative;
    margin-top: 1rem;
}

.yt__channel-content p {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    opacity: .8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt__channel-content p.expanded {
    -webkit-line-clamp: unset;
}

.channel_title {
    font-size: 20px;
    font-family: var(--lato-bold);
    color: var(--black-color);
    margin-bottom: 10px;
}

.yt__channel-view {
    font-size: 14px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 100;
}

.main__video-cont {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 1rem;
    margin-top: 1rem;
}

.yt__details-r {
    border: 1px solid var(--boredr-color);
    background: var(--white-color);
    border-radius: 15px;
    padding: 1rem;
}

.yt_details-r-avatar {
    width: 140px;
    height: 140px;
    background: var(--white-color);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
    border: 3px solid #0C9B8B;
    border-right-color: var(--white-color);
    margin: 0 auto;
    margin-bottom: 10px;
}

.yt_details-r-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt__detailsr-heading {
    text-align: center;
}

.yt_total-subs-box {
    text-align: center;
}

.yt_total-subs {
    font-size: 16px;
    color: var(--black-color);
    font-family: var(--lato-bold);
}

.yt_total-subs-text {
    font-family: var(--lato-regular);
    color: var(--black-color);
}

.yt__details-disc {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    line-height: 20px;
    text-align: center;
    margin: 1rem 0;
}

.social__icons-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social__icons-box img {
    width: 28px;
}

.recent__box {
    background: var(--white-color);
    border: 1px solid var(--boredr-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1rem;
    margin-top: 1rem;
}

.recent__heading {
    font-size: 22px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.recent__videos {
    border: 1px solid var(--boredr-color);
    padding: 5px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent__videos-avatar {
    max-width: 108px;
    height: 90px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.recent__videos-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title__recent {
    font-family: var(--lato-bold);
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disc__recent {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0;
}

.recent__video-date {
    font-size: 9px;
    font-family: var(--lato-regular);
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 3px;
}

#recent-videos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.influencer__report-invert {
    --r: 20px;
    /* the radius */
    --s: 30px;
    /* size of inner curve */
    --x: 223px;
    /* horizontal offset (no percentage) */
    --y: 10px;
    /* vertical offset (no percentage) */

    background: var(--white-color);
    border-radius: var(--r);
    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(var(--_d) + var(--x)) 0 var(--_m),
        0 calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 0 0, #0000 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(var(--_d) + var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
    padding: 1rem;
    padding-top: 5rem;
    height: 100%;
}

.influencer__report-box {
    position: relative;
}

.influencer__report-invert-title {
    position: absolute;
    top: 0;
    left: 0;
}

.influencer__report-invert .report__word {
    padding-bottom: 1rem;
}

.report-icon {
    width: 60px;
    height: 60px;
    border: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.report-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--boredr-color);
    padding: 10px;
    border-radius: 12px;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-name {
    font-size: 18px;
    font-family: var(--lato-bold);
    color: var(--black-color);
}

.report-username {
    font-size: 14px;
    font-family: var(--gilroy-medium);
    color: var(--black-color);
    opacity: .5;
    margin-top: 5px;
}

.report-subs-count .subs-number {
    font-size: 30px;
    font-family: var(--gilroy-bold);
    color: var(--black-color);
}

.report-subs-count .subs-unit {
    font-family: var(--gilroy-bold);
    color: var(--black-color);
    opacity: .5;
}

.report-subs-label {
    font-size: 9px;
    font-family: var(--lato-bold);
    color: var(--gray-color);
}

.report_influencer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.report-chart__title-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

.report__influencer-main {
    margin-top: 2.5rem;
}

.influencer_table thead tr {
    background: #FBFBFB !important;
    font-size: 20px !important;
    font-family: var(--lato-bold) !important;
    color: var(--black-color) !important;
    text-align: start !important;
    padding: 0 1rem;
}

.influencer_table table {
    width: 100%;
}

.influencer_table thead tr th {
    text-align: left !important;
    padding: 10px 1rem;
}

.influencer_table tbody tr td {
    padding: 10px 1rem;
    border-bottom: 1px solid var(--boredr-color);
    font-size: 18px;
    font-family: var(--gilroy-medium);
    color: var(--gray-color);
}

.influencer_table tbody tr td:first-child,
.custom__color-black {
    color: var(--black-color) !important;
}


.search-box {
    position: relative;
}


.suggestions {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
}

.suggestions li strong {
    font-weight: bold;
    font-family: var(--lato-bold);
    color: #000;
}

.suggestions li span {
    color: #777;
    font-size: 14px;
    font-family: var(--gilroy-medium);
}

.suggestions li:hover {
    background: #f5f5f5;
}

.influfer__report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-info__label {
    font-size: 10px;
    font-family: var(--gilroy-medium);
    color: var(--gray-color);
}

.company-info__icon {
    opacity: .7;
}

.form__open-btn {
    display: none;
}

.brands-table {
    max-height: calc(var(--app-height) - 181px);
    overflow-y: auto;
    overflow-x: auto;
}

.brand-section__controls {
    white-space: nowrap;
    flex-wrap: wrap;
}

.brand_sentiment-table {
    max-height: calc(var(--app-height) - 244px);
    overflow-y: hidden;
}

.acc-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 250ms ease;
    background: #fafafa;
  }

  .brand_sentimen-sr-n {
    font-size: 26px !important;
    font-family: var(--lato-bold) !important;
    opacity: 30%;
  }

  .brand_sentimen-title-t {
    font-size: 15px !important;
    font-family: var(--lato-bold) !important;
    white-space: wrap !important;
  }


@media only screen and (min-width: 1700px) {
    .right-main {
        max-width: 1400px;
    }

    .home__chart {
        width: 330px;
    }
}

@media only screen and (max-width: 1700px) {
    .compare__brand-chart {
        width: 270px;
    }
}


@media only screen and (max-width: 1360px) {
    .brand-section {
        grid-template-columns: 1fr;
    }

    .home__chart {
        width: 100%;
    }

    .chart-wrapper {
        width: fit-content;
        margin: auto;
    }

    .campaign-card,
    .platforms-list,
    .report-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-sidebar__result-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-section,
    .report__cart-g {
        grid-template-columns: 1fr;
    }

    .category-table {
        flex-wrap: wrap;
    }

    .right-main {
        width: 100%;
        flex: 1;
        padding: 1rem;
        max-width: calc(1400px - 430px);
        margin: 0 auto;
    }

    .category-header {
        max-width: none;
    }

    .category-row {
        width: 49%;
    }

    .compare__top-cont,
    .brand-language-summary,
    .brand-language-summary-another {
        grid-template-columns: repeat(1, 1fr);
    }

    .compare__brand-chart {
        width: 100%;
    }

    .influfer__report-header {
        flex-direction: column;
        align-items: self-start;
        gap: 5px;
    }

    .brand-stats-b {
        position: static;
        flex-wrap: wrap;
    }

    .brand-overview {
        flex-direction: column;
        gap: 10px;
    }

    .form-inner {
        position: relative;
    }

    .form__open-btn {
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #06988B;
        color: var(--white-color);
        width: 22px;
        height: 22px;
        outline: none;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

    .influencer-form {
        height: calc(100dvh - 153px);
        overflow-y: auto;
    }



    .form-inner {
        position: absolute;
        z-index: 10;
        top: 0;
        left: -305px;
        padding-right: 1rem;
        overflow: unset;
        transition: all .3s ease;
        max-height: none;
    }

    .form-inner.opened {
        left: 0;
    }

    .form-wrapper {
        position: relative;
        display: block;
    }

    aside {
        z-index: 20;
    }

    .brand__video-cont {
        min-height: 650px;
    }

    .tab-content.active#videos,
    .tab-content.active#influencers {
        position: relative;
    }

    .brands-table,
    .competitor-research-table {
        min-height: auto;
    }

    .brand-section__header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .main__video-cont,
    .campaign-list {
        grid-template-columns: 1fr;
    }

    .campaign-details-merket {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .campare__brands-table-cont {
        min-height: fit-content;
    }

}

.menu__btn,
.menu__close-btn {
    display: none;
}

.campare__brands-table {
    overflow-x: auto;
}

.influencer__table {
    max-height: calc(var(--app-height) - 100px);
    overflow-y: auto;
}

.influencer-table-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dropdown_list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    margin-top: 5px;
    display: none;
    flex-direction: column;
    z-index: 100;
}

.dropdown_item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    font-family: var(--gilroy-medium);
}

.dropdown_item:hover {
    background: #f2f2f2;
}

.dropdown_item img {
    width: 20px;
    margin-right: 8px;
}

.shoper_header,
.custom_select {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.query_btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.query_btn {
    font-family: var(--lato-regular);
    background: var(--white-color);
    border: 1px solid #d1d1d1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.new_query-btn {
    background: #119D8D !important;
    color: var(--white-color);
}

.query_tab-control-main {
    margin-top: 1.5rem;
}

.query_tab-btns {
    display: flex;
    gap: 1rem;
}

.query_tab-btn {
    padding: 10px 1rem;
    border: 1px solid var(--dark-color);
    border-radius: 40px;
    background: var(--bg-color);
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-size: 18px;
    cursor: pointer;
}

.query_tab-btn.active {
    background: #043E54;
    color: var(--white-color);
}

.listening-section {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.listening-filters {
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    width: 330px;
    flex-shrink: 0;
}

.listening-filter .listening-filter-header {
    padding: 10px 1rem;
    font-size: 18px;
    font-family: var(--gilroy-medium);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.listening-filter {
    border-bottom: 1px solid #E1E1E1;
}

.listening-filter-desc {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--dark-color);
    padding: 0 1rem 1rem;
}

.listening-intro {
    border: 1px solid #07988B;
    background: #F4FFFE;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.listening-intro-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2B7FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listening-intro-title {
    font-family: var(--gilroy-medium);
    color: var(--black-color);
}

.listening-intro-desc {
    font-size: 14px;
    font-family: var(--lato-regular);
    color: var(--gray-color);
    line-height: 20px;
    margin: 7px 0;
}

.listening-intro-actions {
    display: flex;
    gap: 1rem;
}

.listening-intro-actions a {
    padding: 10px 1rem;
    font-size: 14px;
    font-family: var(--lato-regular);
    border-radius: 40px;
    text-decoration: none;
}

.listening-btn {
    border: 1px solid #aaa;
    color: var(--black-color);
}

.listening-btn2 {
    color: var(--white-color);
    background: #04978A;
}

.listening-mention {
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white-color);
}

.listening-mention-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.listening-mention-icon1 {
    background: #E5FFFD;
}

.listening-mention-icon2 {
    background: #F3F4F6;
}

.listening-mention-meta {
    font-size: 14px;
    font-family: var(--gilroy-medium);
    color: #6A7282;
}

.listening-mention-headline {
    font-size: 18px;
    font-family: var(--lato-semibold);
    line-height: 28px;
    color: #0A0A0A;
    margin-top: 7px;
}

.listening-mention-text {
    font-family: var(--lato-regular);
    line-height: 24px;
    color: #4A5565;
    margin: 10px 0;
}

.listening-mention-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listening-mention-sentiment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.listening-sentiment-text {
    font-size: 14px;
    font-family: var(--lato-regular);
    color: #00A63E;
}

.listening-sentiment-dot {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #DCFCE7;
    position: relative;
}

.listening-sentiment-dot::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00A63E;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.listening-sentiment-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listening-favorite {
    font-family: var(--lato-regular);
    font-size: 14px;
    color: #6A7282;
}

.listening-mention-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.listening-stat,
.listening-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--lato-regular);
    font-size: 14px;
    color: #6A7282;
}

.listening-location span:first-child {
    width: 22px;
    height: 22px;
    background: #DCFCE7;
    border-radius: 3px;
    flex-shrink: 0;
}

.mentions-chart {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    background: var(--white-color);
    margin-top: 1rem;
}

.mentions-section {
    width: 100%;
}

.mentions-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.mentions-card {
    width: 100%;
    border: 1px solid #E1E1E1;
    border-radius: 15px;
    padding: 1rem;
    background: var(--white-color);
}

.mentions-card-title,
.mentions-card-change {
    font-size: 13px;
    font-family: var(--lato-regular);
    color: var(--dark-color);
}

.mentions-card-value {
    font-size: 32px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
    line-height: 150%;
}

.subscriptions-list__head,
.subscriptions-list__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 1rem;
    border-bottom: 1px solid #E1E1E1;
    white-space: nowrap;
    min-width: 550px;
    gap: 2rem;
}

.subscriptions-list__head {
    font-size: 18px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
}

.subscriptions-list__row {
    font-family: var(--lato-regular);
    color: var(--dark-color);
}

.subscriptions-list__row:last-child {
    border-color: transparent;
}

.subscriptions-list {
    background: var(--white-color);
    border: 1px solid #E1E1E1;
    border-radius: 15px;
    margin-top: 1rem;
    overflow-x: auto;
}

.subscriptions-section {
    margin-top: 1.5rem;
}

.subscriptions-search {
    background: var(--white-color);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid #E1E1E1;
}

.brand-monitoring {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1rem;
}

.brand-monitoring__filters {
    border: 1px solid #E1E1E1;
    border-radius: 15px;
    background: var(--white-color);
    padding: 1rem;
}

.brand-monitoring__filters .listening-filter {
    border: 1px solid #E1E1E1;
    background: var(--bg-color);
    border-radius: 10px;
}

.brand-monitoring__filters-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-monitoring__title {
    font-size: 22px;
    font-family: var(--lato-semibold);
    color: var(--black-color);
    margin: 10px 0;
}

.brand-monitoring__title-mt0 {
    margin-top: 0;
}

.results-header__matches {
    font-family: var(--gilroy-medium);
    color: var(--black-color);
}

.results-header__preview {
    font-family: var(--lato-regular);
    color: var(--black-color);
    line-height: 18px;
}

.results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.brand-monitoring__results {
    border: 1px solid #E1E1E1;
    border-radius: 15px;
    background: var(--white-color);
    padding: 1rem;
}

.results-header__limit {
    font-family: var(--lato-regular);
    color: var(--black-color);
    font-size: 12px;
}

.results-header__bar {
    width: 130px;
    height: 6px;
    background: #f4f4f4;
    border-radius: 23px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.results-header__bar::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, #04978A, #95DDA5);
    border-radius: 15px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.results-list .result-card-search {
    background: var(--bg-color);
    border: 1px solid #E1E1E1;
    border-radius: 15px;
    padding: 1rem;
}

.result-card__source {
    font-family: var(--lato-regular);
    color: var(--black-color);
    line-height: 18px;
}

.result-card__headline {
    font-size: 18px;
    font-family: var(--gilroy-medium);
    color: var(--black-color);
    line-height: 18px;
    margin: 8px 0;
}

.result-card__desc,
.result-card__date {
    font-size: 14px;
    font-family: var(--lato-regular);
    color: var(--gray-color);
}

.result-card__date {
    margin-top: 10px;
}

.search_result-btn {
    display: flex;
    justify-content: end;
    margin-bottom: 1rem;
}

.search_result-btn .search_btn {
    padding: 17px 50px;
    background: linear-gradient(to right, #04978A, #95DDA5);
    font-size: 18px;
    font-family: var(--gilroy-medium);
    color: var(--white-color);
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
}

@media only screen and (max-width: 1210px) {
    .listening-section {
        flex-direction: column;
    }

    .listening-filters {
        width: 100%;
    }
}

@media only screen and (max-width: 1245px) {
    .right-main {
        max-width: calc(1400px - 642px);
    }
}

@media only screen and (max-width: 1024px) {
    aside {
        position: fixed;
        /* display: none; */
        z-index: 200;
        top: 0;
        left: -270px;
        transition: all .3s ease;
    }

    aside.active {
        left: 0;
    }

    main {
        display: block;
        overflow: hidden;
    }

    .right-main {
        max-width: none;
    }

    .chart-wrapper {
        width: 100%;
    }

    .Sidebar {
        position: relative;
    }

    .sentiment_query-search {
        margin-top: 1.5rem;
    }

    .menu__btn,
    .menu__close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        color: var(--white-color);
        background: #26BF94;
        border: none;
        outline: none;
        cursor: pointer;
        border-radius: 5px;
    }

    .menu__close-btn {
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .form-button {
        padding: 10px 35px;
    }

    .form-sidebar__form {
        gap: 1rem;
    }

    .influencer-form {
        height: 100%;
        max-height: calc(100dvh - 177px);
        overflow-y: auto;
    }

    .form-inner {
        position: fixed;
        top: 161px;
        max-height: calc(100dvh - 177px);
        left: -285px;
    }

    .form-wrapper {
        margin-top: 1rem;
    }

    .site-header {
        margin-top: 1rem;
    }

    .list__table {
        max-height: calc(var(--app-height) - 163px);
        overflow-y: auto;
    }

    .campaign-form-wrapper {
        margin-top: 1rem;
    }

    .brands-table {
        max-height: calc(var(--app-height) - 199px);
        overflow-y: auto;
    }

    .brand_sentiment-table {
        max-height: calc(var(--app-height) - 274px);
        overflow-y: hidden;
    }

    .influencer__table {
        max-height: calc(var(--app-height) - 140px);
        overflow-y: auto;
    }

    .video_influencers-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .right_box-form_content {
        padding: 2rem;
    }

    .login_image_title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .listening-mention-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: self-start;
    }

    .listening-mention-stats {
        width: 100%;
    }

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

    .right_box-form_content {
        display: none;
    }

    .left_form {
        padding: 0;
    }

    .left_form-logo img {
        height: 50px;
    }
}


@media only screen and (max-width: 580px) {
    .brand-charts {
        grid-template-columns: repeat(1, 1fr);
    }

    .brand-stats {
        flex-direction: column;
        justify-content: center;
    }

    .brand-stat-item {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding: 1rem;
    }

    .brand-stat-item:last-child {
        border-bottom: none;
    }

    .brand-stats {
        padding: 0;
    }

    .brand-card-box {
        padding: 1rem;
        padding-bottom: 0;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-description {
        padding: 0 1rem;
    }

    .brand-card-box {
        flex-direction: column;
        gap: 10px;
    }

    .platforms-title {
        font-size: 20px;
    }

    #chart,
    #chart3 {
        width: fit-content;
        margin: auto;
    }

    .form-sidebar__form {
        flex-direction: column-reverse;
    }

    .form-group-select {
        width: auto;
    }

    .form-group-select select {
        width: 100%;
    }

    .form-inner {
        position: fixed;
        top: 210px;
        max-height: calc(100dvh - 226px);
        left: -285px;
    }

    .form-sidebar {
        max-height: calc(100dvh - 226px);
    }

    .form-sidebar__result-list {
        grid-template-columns: 1fr;
    }

    .influencer-form {
        max-height: calc(100dvh - 226px);
    }

    .form-sidebar__result-list {
        max-height: calc(var(--app-height) - 305px);
    }

    .engagement-value {
        font-size: 30px;
    }

    .engagement-title {
        font-size: 20px;
    }

    .report-metrics__value {
        font-size: 30px;
    }

    .chart-header button {
        font-size: 11px;
    }

    .category-row {
        width: 100%;
    }

    .campaign-card__title {
        font-size: 14px;
    }

    .campaign-card-date {
        font-size: 10px;
    }

    .campaign-card__top {
        flex-direction: column;
        gap: 1rem;
    }

    .campaign-details-headin,
    .campaign-create-title {
        font-size: 22px;
    }

    .tabs-brand {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }

    .brand-overview__logo {
        width: 100px;
        height: 100px;
    }

    .brand-overview {
        min-height: 200px;
        --r: 14px;
    }

    .brand-section__cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .videoTabNav {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        background: transparent;
    }

    .videoTabBtn {
        width: 100%;
    }

    .brand-overview__header {
        padding-left: 7rem;
    }

    .brand-language-summary__summary {
        padding: 1rem;
    }

    .summary__item .summary__label {
        font-size: 12px;
    }

    .summary__item .summary__value {
        font-size: 14px;
    }

    .form-sidebar__search-sentiment {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .form-input,
    .form-select {
        padding: 12px 15px;
    }

    .shoper_overlap {
        grid-template-columns: 1fr;
    }

    .video_influencers-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-info {
        flex-wrap: wrap;
        row-gap: 5px;
    }

    .brand-overview__description-ds {
        display: none;
    }

    .brand-overview__description-mb {
        display: block;
    }

    .brand-overview__header {
        min-height: 100px;
    }

    .influencer_table thead tr {
        font-size: 16px !important;
    }

    .influencer_table tbody tr td {
        font-size: 14px;
    }

    .influencer__dropdown {
        flex-direction: column;
        align-items: start;
        margin-bottom: 1rem;
    }

    .influencer__dropdown .compare__form-select {
        margin-left: auto;
    }

    .influencer__report-invert {
        --r: 14px;
        --x: 230px;
    }

    .yt__channel-content {
        padding-left: 1rem;
    }

    .channel_title-ds {
        padding-left: 5rem;
        min-height: 4rem;
    }

    .yt__channel-second {
        width: 70px;
        height: 70px;
    }

    .yt__channel-content {
        --r: 15px;
        --s: 44px;
        --x: 20px;
        --y: 20px;
    }

    .yt_details-r-avatar {
        width: 110px;
        height: 110px;
    }

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

    .listening-mention,
    .listening-intro {
        flex-direction: column;
    }

    .query_tab-btns {
        flex-direction: column;
    }

    .mentions-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .form-button {
        font-size: 12px;
    }
}



@media only screen and (max-width: 425px) {
    .campaign-info .campaign-name {
        font-size: 12px;
    }

    .platform__count-text {
        font-size: 20px;
    }

    .list-header {
        flex-direction: column;
        gap: 10px;
    }

    .list__table {
        max-height: calc(var(--app-height) - 169px);
        overflow-y: auto;
    }

    .chart-header {
        flex-direction: column;
        gap: 10px;
    }

    .report-metrics {
        grid-template-columns: 1fr;
    }

    .campaign-details-merket {
        grid-template-columns: 1fr;
    }

    .campaign-form__row {
        flex-direction: column;
    }

    .campaign-form__checkbox-group {
        display: flex;
        align-items: self-start;
        gap: 5px;
    }

    .campaign-form__checkbox-group input {
        margin-top: 3px;
    }

    .stats-summary {
        grid-template-columns: repeat(1, 1fr);
    }

    .brand_sentiment-table {
        max-height: calc(var(--app-height) - 310px);
        overflow-y: hidden;
    }

    .search-cont-top {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .sentiment_query-search {
        flex-direction: column;
        align-items: self-start;
    }

    .platform-selector {
        margin-left: auto;
    }

    .video_influencers-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .compare__brand-chart {
        max-width: 270px;
        width: 100%;
    }

    .listening-mention-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .listening-intro-actions a {
        font-size: 12px;
    }

    .listening-intro-actions {
        flex-wrap: wrap;
    }

    .results-header {
        flex-direction: column;
        align-items: self-start;
        gap: 10px;
    }
}

@media only screen and (max-width: 375px) {
    .campaign-card {
        grid-template-columns: 1fr;
    }

    .home__chart {
        width: 285px !important;
    }

    .campaign-card-heading {
        flex-wrap: wrap;
    }

    .veen-1 {
        width: 150px;
        height: 150px;
    }

    .veen-5,
    .veen-4,
    .veen-3,
    .veen-2 {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }

    .veen-4 {
        right: -50px;
        padding-left: 3rem;
    }

    .veen-3 {
        left: -45px;
    }

    .compare__brand-chart {
        max-width: 250px;
        width: 100%;
    }

    .report-icon {
        width: 40px;
        height: 40px;
    }

    .report-name {
        font-size: 12px;
    }

    .report-username {
        font-size: 10px;
    }

    .report-subs-count .subs-number {
        font-size: 25px;
    }
}

@media only screen and (max-width: 350px) {
    .compare__brand-chart {
        max-width: 230px;
        width: 100%;
    }

    .report-chart__title-flex {
        flex-direction: column;
        align-items: self-start;
    }

    .summary__view-all {
        margin-left: auto;
    }
}

@media only screen and (max-width: 320px) {
    .compare__brand-chart {
        max-width: 210px;
        width: 100%;
    }
}