/********** Template CSS **********/
:root {

    --light: #F3F6F9;
    --dark: #191C24;
    --bg: #16171D;
    --light-purple: #8335E1;
}

body {
    background:
        radial-gradient(circle at 0% 0%, rgba(131, 53, 225, 0.3), transparent 45%),
        radial-gradient(circle at 100% 0%, rgba(131, 53, 225, 0.3), transparent 45%),
        radial-gradient(circle at 100% 50%, rgba(131, 53, 225, 0.25), transparent 50%),
        #16171D;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}

p {
    margin-bottom: 0;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.withdraw-button {
    padding: 7px 30px;
    color: var(--light-purple);
    border: 1px solid var(--light-purple);
    border-radius: 8px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.withdraw-button:visited {
    color: var(--light-purple);
}

.withdraw-button:active,
.withdraw-button:hover {
    color: #fff;
}

/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: transparent;
    transition: 0.5s;
    z-index: 999;
    border-right: 1px solid rgba(245, 245, 245, 0.2);

    /* Hide scrollbar but keep scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

/* This CSS selector is to manage styling of wrapper of form inside `signin.html` page */
.form-col {

    background:
        radial-gradient(circle at top left, rgba(131, 53, 225, 0.35), transparent 50%),
        radial-gradient(circle at top right, rgba(131, 53, 225, 0.35), transparent 50%),
        radial-gradient(circle at top left, rgba(131, 53, 225, 0.35), transparent 50%),
        #16171D;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-col button[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.form-input-wrapper {
    display: flex;
    background-color: #1f172e59;
}



/* This CSS selector is to manage styling of wrapper of form header which has "Welcome Back" and "Please enter your details" text in `signin.html` page */

.form-header img {
    width: 240px;
    height: auto;
}

/* This css will be triggered when the screen sie is below `1600px` */
@media screen and (max-width:1600px) {
    .form-header img {
        width: 196px !important;
    }

}



.content {
    margin-left: 250px;
    min-height: 100vh;
    background: transparent;
    transition: 0.5s;
}

.navbar {
    transition: background 0.3s, backdrop-filter 0.3s;
    background: transparent;
    z-index: 900;
}

.navbar .cstm-navbar-search-Wrapper {
    min-width: 200px;
    width: 100%;
    max-width: 610px;
}

@media screen and (max-width:992px) {

    .navbar .cstm-navbar-search-Wrapper {
        display: none !important;
    }

    nav .dropdown-menu {
        background: linear-gradient(to top, #372159 5%, #1b1b25 95%);
    }

    nav .dropdown-menu a {
        color: #fff !important;
    }

    .dropdown-toggle::after {
        display: none;
    }
}




@media (min-width: 992px) {
    .sidebar .navbar .sidebar-toggler {
        display: none !important;
    }

    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .navbar>img {
        margin-left: 0 !important;
        border: 1px solid;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
        padding-top: 50px;
    }

    .sidebar .navbar .sidebar-toggler {
        display: block;
    }

    .sidebar.open {
        margin-left: 0;
        background:
            radial-gradient(circle at top left, rgba(131, 53, 225, 0.35), transparent 50%),
            radial-gradient(circle at top right, rgba(131, 53, 225, 0.35), transparent 50%),
            #16171D;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar {
    background-color: transparent;
    padding: 10px 25px;
    padding-left: 0;
    width: 100%;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.sidebar .navbar .sidebar-toggler {
    font-size: 22px;
    color: #000;
    background-color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: absolute;
    top: -30px;
    left: 30px;
    z-index: 10;

}

.navbar-brand {
    padding-top: 10px;
    padding-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .navbar-brand {
    margin-bottom: 35px;
}

.sidebar .navbar .navbar-nav .nav-link {
    width: 100%;
    padding: 22px 19px;
    padding-left: 38px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 31px;
    margin: 5px 0px;
    cursor: pointer;
}

.sidebar .navbar .navbar-nav .nav-link img {
    width: 25px;
    height: 25px;
    opacity: 70%;
}

.sidebar .navbar .navbar-nav .nav-link.active img,
.sidebar .navbar .navbar-nav .nav-link.hover img {
    opacity: 100%;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--light) !important;
    /* background: var(--light-purple) !important; */
    background: linear-gradient(to right, var(--light-purple), #ae44e9);
    border-color: var(--primary);
}




.sidebar .navbar .dropdown-toggle::after {
    /* position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s; */
    display: none;
}


/* .sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
} */

.sidebar .navbar .dropdown-item {
    /*padding-left: 25px;*/
    border-radius: 0 30px 30px 0;
}


.content .navbar .navbar-nav {
    padding: 12px 0;
    gap: 30px;
}


.content .navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.6);
    outline: none;
    height: fit-content;
}


.content .navbar .navbar-nav .nav-link a {
    width: 20px;
    height: 20px;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--light-purple);
}

.content .navbar .navbar-nav .notification-active {
    position: relative;
}

.content .navbar .navbar-nav .nav-link.notification-active::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #FF0000;
    border-radius: 25px;
    position: absolute;
    top: 3px;
    right: 1px;
    left: auto;
}

.content .navbar .navbar-nav .dropdown-menu .notification-active::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #FF0000;
    border-radius: 25px;
    position: absolute;
    top: 4px;
    right: auto;
    left: 28px;
}



.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}

.box-chartgraph {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.box-chartgraph p {
    font-size: 14px !important;
}

.box-chartgraph i {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    padding: 0px;
    margin-right: 0px;
}

#earning-table {
    display: none;
}

.sales-table thead tr {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sales-table .tr-even {
    background-color: rgba(128, 52, 224, 0.2);
}

.sales-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sales-table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.sales-table-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 300;
    transition: 0.3s;
}

.sales-table-btn:hover {
    background-color: #a566ff;
    color: #fff;
}

.sales-table-see-more {
    color: #a566ff;
    font-weight: 500;
    text-decoration: none;
}

.sales-table-see-more:hover {
    text-decoration: underline;
}

.text-purple {
    color: #a566ff;
}

/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}



/* CUSTOM CLASSES */

/* DASHBOARD PAGE CLASSES START*/
/* ---------------------------------------------------------------------------- */

.cstm-revenue-info-box-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px 18px;
}


.cstm-revenue-info-box-container .sales-box {

    /* height: 100px; */
    /* min-width: 200px; */
    position: relative;
    padding: 40px 20px !important;

    background: linear-gradient(to top, #372159 5%, #1b1b25 95%);
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sales-box {
    position: relative;
    padding: 16px 20px 1px 20px !important;
    background: linear-gradient(to top, #372159 5%, #1b1b25 95%);
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}


.sales-box img {
    width: 58px;
    height: auto;
    margin-right: 14px;
}

.sales-box p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 8px;
}

.sales-box h6 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    font-weight: 700;

}

.box-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;

}

.box-content>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-content>div div {
    background: transparent;
    width: 16px;
    height: 16px;
    border: 0;
    outline: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.box-content>div p {
    margin: 0;
    font-size: 22px;
    font-weight: 300;
}

.box-content>div img {
    width: 16px !important;
    height: 16px !important;
    margin: 0;
}

.box-content .price {
    font-weight: 700;
    font-size: 20px;
    color: #DC3545;

}

.chart-card-container {
    background: linear-gradient(145deg, #14121b, #1e1b29);
    border-radius: 12px;
    padding: 20px 25px;
    max-width: 100%;
    height: 350px;
    color: #fff;
    position: relative;
}

.chart-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #d1cbe9;
}

.legend-color {
    width: 10px;
    height: 10px;
    background-color: #9a4eff;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-label {
    color: #c9bdf0;
    font-size: 14px;
}

canvas#monthlyEarningChart {
    width: 100% !important;
    height: 100% !important;
}

/* Container that wraps both tables */

.container-wrapper {
    display: flex;
    gap: 22px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Subscriptions Card Styling */
.subscriptions-card {
    background: linear-gradient(to bottom, #1D1F27, #A7EACB1A);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    max-height: 350px;
    flex: 1 1 48%;
    /* Each card takes up nearly half width */
    display: flex;
    flex-direction: column;
    min-width: 300px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Stacking on Smaller Screens */
@media (max-width: 768px) {
    .subscriptions-card {
        flex: 1 1 100%;
    }
}

/* Header Styling */
.subscriptions-card h6 {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* See More Link */
.subscriptions-card .see-more {
    color: var(--light-purple);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Scrollable table */
.table-scroll {
    max-height: 300px;
    overflow-y: auto;
}

/* Sticky table header */
.subscriptions-table thead {
    background-color: transparent !important;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Table headers */
.subscriptions-table th {
    background-color: #21242c;
    color: #cccccc;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 12px;
    white-space: nowrap;
}

/* Sort button inside headers */
.subscriptions-table th button {
    width: fit-content !important;
    height: fit-content !important;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    margin-left: 4px;
}

/* Sort button image */
.subscriptions-table th button img {
    width: 8px;
    height: 8px;
    margin: 0;
}

/* Alternating row background */
.subscriptions-table tbody tr:nth-child(odd) {
    background-color: rgb(128, 52, 224, 0.1)
}

/* Row borders */
.subscriptions-table tbody tr {
    border-bottom: 1px solid #29293f;
}

/* Table cell content alignment */
.subscriptions-table tbody tr td {
    vertical-align: middle;
    background-color: transparent;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
}

.subscriptions-table:nth-child(1) tbody tr td:nth-child(4),
.subscriptions-table:nth-child(1) tbody tr td:nth-child(5) {
    font-weight: 600;
}

/* Profile image */
.subscriptions-table img {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    object-fit: cover;
}

/* View Details Button */
.subscriptions-table .btn-view {
    background: linear-gradient(to bottom, #1D1F27, #3b255e);
    color: #ABABAB;
    border: 1px solid #ABABAB;
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

/* Button Hover (Optional) */
.subscriptions-table .btn-view:hover {
    background-color: #3a1d5d;
    color: white;
}


/* ---------------------------------------------------------------- */
/* DASHBOARD PAGE CLASSES END */



/* COMMUNITY PAGE CSS STARTS */
/* ---------------------------------------------------------------- */

.cstm-banner-image-container {
    background-color: #010011;
    height: 200px;
    width: 100%;
    border-radius: 16px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.cstm-banner-image-container::after {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #010011;
    position: absolute;
    opacity: 28%;
}

.cstm-banner-image-container img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin-left: auto;
    margin-right: 0;
    position: relative;

}

.cstm-banner-image-container button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
    top: auto;
    z-index: 3;
    border: 1px solid white;
    border-radius: 4px;
    padding: 8px 16px;
    background-color: rgba(1, 0, 17, 0.25);
    color: white;
    font-size: 14px;
    display: flex;
    gap: 6px;
}

.cstm-banner-image-container button:hover {
    background-color: rgba(1, 0, 17, 0.3);
}

.cstm-banner-content-wrapper>div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-top: -45px;
    z-index: 1;
}

.cstm-banner-content-wrapper>div>img {
    border: 2px solid #612ba7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.cstm-banner-content-actions {
    display: flex;
    gap: 8px;
}

.cstm-banner-content-actions button {
    background: linear-gradient(to top, #3a255e, #1D1F27);
    border: 2px solid #612ba7;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 8px;
    color: #fffF;
    font-size: 14px;
    line-height: 1em;

}

.cstm-banner-content-actions button:hover {
    transform: scale(1.03);
}

.cstm-banner-content-actions button:last-of-type {
    width: fit-content;
    padding: 0 12px;
}

.cstm-banner-footer-content {
    margin-top: 54px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.205);
}

@media screen and (max-width:992px) {
    .cstm-banner-content-wrapper>div {
        align-items: flex-start !important;
    }

    .cstm-banner-content-wrapper>div>img {
        margin-left: 42px;
    }

    .cstm-banner-content-wrapper>div>div {
        width: 100%;
    }

    .cstm-banner-content-actions {
        padding: 0 21.5px;
    }

    .cstm-banner-content-actions button {
        min-width: 30px;
        min-height: 30px;
    }

    .cstm-banner-content-actions button:last-child {
        width: 100%;
    }

    .cstm-banner-footer-content {
        display: none;
    }
}

.cstm-banner-footer-content>div {
    margin: 0 auto;
    display: flex;
    gap: 44px;
}

.cstm-footer-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 4px;
    padding-right: 8px;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transform: translateY(2px);
    color: #fff;
    cursor: pointer;
}

.cstm-footer-info-box:hover,
.cstm-footer-info-box.active {
    border-bottom: 3px solid #612ba7;
}

.cstm-footer-info-box strong {
    font-size: 16px;
    font-weight: 500;
}

.cstm-footer-info-box p {
    margin: 0;
    font-weight: 300;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 75%;
}

.cstm-footer-info-box p img {
    width: 18px;
    height: 18px;
    transform: translateY(-1px);
}

.cstm-community-page-content {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 46px;
    padding: 30px 0;
}

.cstm-community-page-content aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media screen and (max-width:1300px) {

    .cstm-community-page-content {
        grid-template-columns: 1fr;
        padding: 30px 10px;
    }

    .cstm-community-page-content aside {
        display: none !important;
    }

}

.cstm-community-page-content aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cstm-aside-programs-wrapper {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: linear-gradient(to bottom, #1D1F27, #8034E01A);
}

.cstm-aside-programs-wrapper h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.cstm-aside-programs-wrapper hr {
    margin: 12px 0;
}

.cstm-aside-horizontal-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.cstm-aside-horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.cstm-aside-horizontal-scroll-wrapper:active {
    cursor: grabbing;
}

.cstm-aside-programs-wrapper article {
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 14px 20px;
    background: linear-gradient(to bottom, #1D1F27, #8034E01A);
}

.cstm-aside-programs-wrapper article div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.cstm-aside-programs-wrapper article div:nth-child(1) p {
    margin: 0;
    font-size: 18px;
    /* Font Size Updated */
    font-weight: 400;
    /* Font Weight Updated */
    color: #fff;
    opacity: 60%;
}

.cstm-aside-programs-wrapper article img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cstm-aside-programs-wrapper article h4 {
    font-size: 24px;
    font-weight: 700;
    font-weight: 500;
}

@media screen and (max-width:1400px) {
    .cstm-community-page-content {
        gap: 25px;
    }

    .cstm-aside-programs-wrapper article h4 {
        font-size: 20px;
    }
}

.cstm-aside-programs-wrapper article>p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    opacity: 80%;
    margin-bottom: 4px;
}

.cstm-aside-programs-wrapper article .cstm-tags-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cstm-tags-wrapper p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}

.cstm-tags-wrapper p.tag {
    background-color: #8034E0;
    padding: 4px 8px;
    border-radius: 6px;

}

.cstm-aside-channels-wrapper {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: linear-gradient(to bottom, #1D1F27, #8034E01A);
    /* background added */
}

.cstm-aside-channels-wrapper h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.cstm-aside-channels-wrapper hr {
    margin: 12px 0;
}

.cstm-aside-channels-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cstm-aside-channels-content>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cstm-aside-channels-content>div>span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cstm-aside-channels-content>div>span p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    opacity: 80%;
}

.cstm-aside-channels-content>div>span img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.459);
    object-fit: cover;
    object-position: center;
}

.cstm-aside-channels-content>div button {
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 400;
    color: #8034E0;
    cursor: pointer;
}

.cstm-aside-channels-content>div button.joined {
    opacity: 65%;
}

.cstm-aside-channels-wrapper>div {
    display: flex;
    flex-direction: column;
}

.cstm-aside-channels-wrapper>div button.see-all-btn {
    background: transparent;
    border: 0;
    outline: 0;
    color: #8034E0;
    margin-left: auto;
    margin-right: auto;
}

.cstm-community-page-content .main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 28px;
}

.content-wrapper {
    padding: 20px;
    padding-left: 10px;
}

@media screen and (max-width:992px) {
    .content-wrapper {
        padding: 10px;
    }
}


.cstm-community-page-content .main-content>div {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 30px 35px;
}


.cstm-community-page-content .main-content>div:nth-child(1) {
    display: flex;
    gap: 15px;
}

.cstm-community-page-content .main-content>div:nth-child(1)>.gradient-border {
    display: none;
}

.cstm-community-page-content .main-content>div:nth-child(1)>div:nth-child(2) {
    width: 100%;
}

@media screen and (max-width:992px) {
    .cstm-community-page-content .main-content>div:nth-child(1)>.gradient-border {
        display: inline-block;
    }
}

.cstm-community-page-content .main-content>div:nth-child(1) textarea {
    width: 100%;
    height: 150px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background-color: #16171D;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}


.cstm-community-page-content .main-content>div:nth-child(1) .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.cstm-community-page-content .main-content>div:nth-child(1) .actions div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstm-community-page-content .main-content>div:nth-child(1) .actions div:nth-child(1) {
    gap: 20px;
}

@media screen and (max-width:992px) {
    .cstm-community-page-content .main-content>div:nth-child(1) textarea {
        font-size: 14px;
        padding: 10px;
        height: 81px;
    }

    .cstm-community-page-content .main-content>div:nth-child(1) .actions div {
        gap: 5px !important;
    }

}

.cstm-community-page-content .main-content>div:nth-child(1) .actions div:nth-child(1) img {
    width: 20px;
    height: auto;
}

.cstm-community-page-content .main-content>div:nth-child(1) .actions div p {
    margin-bottom: 0;
    margin-right: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    opacity: 70%;
}

.cstm-community-page-content .main-content>div:nth-child(1) .actions button {
    border: 1px solid #8034E0;
    border-radius: 6px;
    background: linear-gradient(to bottom, #38255a, #27213a);
    font-size: 16px;
    color: #fff;
    width: fit-content;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.main-content .select-group {
    display: none;
}

@media screen and (max-width:992px) {


    .video-element {
        display: none !important;
    }

    .main-content .select-group {
        display: flex;
        gap: 14.5px;
    }

    .custom-select {
        position: relative;
        width: 100%;
    }

    .custom-select select {
        width: 100%;
        padding: 17px 10px;
        background: linear-gradient(to bottom, #1c1c25, #201b2e);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;

        /* Hide default arrow */
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;

        /* Padding-right to make space for custom icon */
        padding-right: 40px;
    }

    /* Custom icon using background image */
    .custom-select::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 30px;
        height: 35px;
        background-image: url('img/icons/select\ dropdown\ icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        pointer-events: none;
        color: #fff;
    }

    .cstm-community-page-content .main-content>div:nth-child(1) .actions div:nth-child(1) {
        gap: 14px;
    }

    .cstm-community-page-content .main-content>div:nth-child(1) .actions div:nth-child(1) img {
        width: 18px;
        height: 18px;
    }


    .cstm-community-page-content .main-content>div:nth-child(1) .actions div p {
        font-size: 12px;
        margin-right: 10px;
    }

    .cstm-community-page-content .main-content>div:nth-child(1) .actions button {
        width: 30px !important;
        height: 30px !important;
        padding: 7px;
    }

    .cstm-community-page-content .main-content>div:nth-child(1) .actions button p {
        display: none !important;
    }



}

.cstm-community-page-content .main-content>div:nth-child(1) .actions button p {
    margin: 0;
    margin-right: 5px;
}

.video-element {
    height: 520px;
    width: 100%;
    padding: 0 !important;
}

.video-element .video {
    position: relative;
    border: 1px solid;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to bottom, #1c1c25, #201b2e);
}

.video-element .video .play-Icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 60px;
    height: 60px;
}

.video-element .video .play-Icon img {
    width: 100%;
    height: 100%;
}

.dynamic-content {
    border: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dynamic-content>div {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 30px 35px;
}

@media screen and (max-width:992px) {

    .dynamic-content {
        padding: 0 !important;
    }

    .dynamic-content>div {
        padding: 15px !important;
    }

}

.dynamic-content .post-Wrapper {
    max-width: 100% !important;

}

.dynamic-content .post-Wrapper .post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dynamic-content .post-Wrapper .post-header>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.dynamic-content .post-Wrapper .post-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;

}

.dynamic-content .post-Wrapper .post-header>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dynamic-content .post-Wrapper .post-header div:nth-child(2) div {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width:992px) {
    .dynamic-content {
        padding: 0px !important;
    }

}


.post-header .post-user-name {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.post-header .post-user-username {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 50%;
}

.post-header .post-user-tick {
    width: 20px !important;
    height: 20px !important;

}

.post-header .post-posted-on {
    opacity: 50%;
}

.post-header .post-posted-on,
.post-header .post-posted-topic {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.post-header .actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
}

.post-header .actions button {
    width: fit-content !important;
    height: fit-content !important;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.post-header .actions button img {
    width: 25px !important;
    height: 25px !important;
}

@media screen and (max-width:992px) {

    .post-header .post-user-name,
    .post-header .post-user-username,
    .post-header .post-posted-on,
    .post-header .post-posted-topic {
        font-size: 12px !important;
    }

    .post-header .post-user-tick {
        width: 15px !important;
        height: 15px !important;

    }

    .post-header .actions {
        gap: 14px;
    }

    .post-header .actions button img {
        height: 15px !important;
        width: auto !important;
    }

}


.post-content {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.post-content p {
    font-size: 16x;
    font-weight: 400;
    color: #fff;
    opacity: 70%;
}

.post-content .image-group {
    display: flex;
    gap: 15px;
}

.post-content .image-group img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.205);
}

.post-content .image-group>img {
    width: 70%;
}

.post-content .image-group .extra-images {
    width: 30%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


.post-content .image-group .extra-images>div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.205);
    border-radius: 10px;
    font-size: 32px;
    font-weight: 400;


}

@media screen and (max-width:992px) {
    .post-content .image-group {
        flex-direction: column;
        width: 100%;

    }

    .post-content .image-group img {
        border-radius: 5px;
        width: 100%;
    }

    .post-content .image-group .extra-images {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .post-content .image-group .extra-images>div {
        font-size: 15px;
        border-radius: 5px;
    }

}

.post-content .image-only {
    max-height: 600px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;

}

.post-content .image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.post-footer>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.post-footer .footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}



.post-footer .footer-action img {
    width: 20px;
    height: 20px;
    margin: 0;
}

.post-footer .footer-action p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.post-footer .footer-action p.tag {
    font-size: 14px;
    background-color: rgba(217, 217, 217, 0.2);
    padding: 3px 14px;
    border-radius: 25px;
}

.post-footer>div .seperator {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width:992px) {
    .post-content p {
        font-size: 13px;
    }

    .post-footer>div {
        justify-content: space-between;
        gap: 5px;
    }

    .post-footer .footer-action {
        gap: 5px;
    }

    .post-footer .footer-action img {
        width: 15px;
        height: 15px;
        margin: 0;
    }

    .post-footer .footer-action p {
        font-size: 12px !important;
    }

    .post-footer .footer-action p.tag {
        padding-left: 4px !important;
        padding-right: 4px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width:992px) {
    .cstm-community-page-content .main-content>div {
        padding: 15px;
    }

    .cstm-community-page-content .main-content {
        padding: 0 !important;
        gap: 15px;
    }
}

.gradient-border {
    width: 56px;
    /* 50px image + 3px border on each side */
    height: 56px;
    border-radius: 50%;
    padding: 3px;
    /* space for the border */
    background: linear-gradient(to bottom, #8034E0, #1f1f2b);
    /* your gradient */
    display: inline-block;
}

.gradient-border img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
}

/* COMMUNITY PAGE CSS ENDS HERE */
/* ---------------------------------------------------------------------------------------- */




.dashboard-heading {
    flex-direction: row !important;
}

.dashboard-heading h5,
.dashboard-heading div {
    width: fit-content !important;
}

.dashboard-heading h5 {
    font-size: 26px;
    font-weight: 700;
}

.dashboard-heading h5 br {
    display: none;
}



.monthly-chart-container {
    background:
        radial-gradient(circle at center, rgba(131, 53, 225, 0.2), rgba(131, 53, 225, 0.05) 20%, transparent 40%),
        linear-gradient(to bottom, #1D1F27, rgba(131, 53, 225, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px !important;
}


/* RESPONSIVE STYLING */
/* This css will be triggered when the screen sie is below `1600px` */
@media screen and (max-width:1600px) {

    .cstm-revenue-info-box-container {
        grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));

    }

    .cstm-revenue-info-box-container .sales-box {

        padding: 30px 14px !important;

    }

    .sales-box p {
        font-size: 14px;

    }

    .sales-box h6 {
        font-size: 22px;

    }

}

@media screen and (max-width:1380px) {
    .container-wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width:992px) {
    .dashboard-heading h5 br {
        display: inline-block;
    }

    .dashboard-heading h5 {
        font-weight: 400;
        font-size: 24px;
    }

}