/*********** sub Header market data *****************/
.secondary-header-section {
    background: var(--cp-legacy-surface-base);
    border-bottom: 1px solid var(--cp-legacy-brand-border-30);
    --cp-market-strip-height: 40px;
    --cp-market-divider-gap: 24px;
    --cp-market-divider-color: var(--cp-legacy-brand-border-30);
    --cp-market-label-color: var(--cp-legacy-brand-primary);
    --cp-market-value-color: var(--cp-legacy-brand-ink-1);
    --cp-market-loader-base: #f0f0f0;
    --cp-market-loader-highlight: #e0e0e0;
}

.cp-market-strip {
    position: relative;
}

.cp-market-strip__frame {
    display: flex;
    align-items: center;
    min-height: var(--cp-market-strip-height);
}

.cp-market-strip__viewport,
.cp-market-strip__content,
.cp-market-strip__loader {
    min-height: var(--cp-market-strip-height);
    height: var(--cp-market-strip-height);
}

.cp-market-strip__viewport {
    flex: 1 1 auto;
    min-width: 0;
}

.cp-market-strip__viewport,
.cp-market-strip__content {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cp-market-strip__list,
.cp-market-strip__loader {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    min-width: max-content;
    white-space: nowrap;
}

.cp-market-strip__content--scrolling .cp-market-strip__list {
    animation: cp-market-strip-scroll var(--cp-market-scroll-duration, 40s) linear infinite;
    will-change: transform;
}

.cp-market-strip__item,
.cp-market-strip__loader-item {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding-right: var(--cp-market-divider-gap);
    margin-right: var(--cp-market-divider-gap);
}
.cp-market-strip__loader-item{
    justify-content: center;
    min-width: var(--cp-market-loader-width, 140px);
    padding-inline: 10px;
    box-sizing: border-box;
}

.cp-market-strip__item::after,
.cp-market-strip__loader-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 16px;
    background: var(--cp-market-divider-color);
    transform: translateY(-50%);
}

.cp-market-strip__item:last-child,
.cp-market-strip__loader-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.cp-market-strip__item:last-child::after,
.cp-market-strip__loader-item:last-child::after {
    display: none;
}

.cp-market-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 100%;
    color: inherit;
}

.cp-market-strip__action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 12px;
}



.cp-market-strip__action .cp-market-strip__label {
    font-size: var(--Font-Size-type-size-label);
    line-height: var(--Line-Height-type-lh-label);
    font-weight: var(--Font-Weight-type-weight-bold-700);

}

.cp-market-strip__label {
    color: var(--cp-market-label-color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.cp-market-strip__reading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cp-market-strip__value,
.cp-market-strip__change {
    color: var(--cp-market-value-color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
}

.cp-market-strip__change.price-up {
    color: var(--cp-legacy-success);
}

.cp-market-strip__change.price-down {
    color: var(--cp-legacy-error);
}

.cp-market-strip__change.is-na {
    color: var(--cp-market-value-color);
}

.cp-market-strip__loader-item span {
    width: 100%;
    max-width: 100%;
    height: 14px;
    display: block;
    border-radius: 0px;
    background: linear-gradient(
        90deg,
        var(--cp-market-loader-base) 25%,
        var(--cp-market-loader-highlight) 50%,
        var(--cp-market-loader-base) 75%
    );
    background-size: 200% 100%;
    animation: cp-market-loader-shimmer 1.25s linear infinite;
}

.cp-market-strip__loader-item--metric-lg {
    --cp-market-loader-width: 120px;
}

.cp-market-strip__loader-item--metric-xl {
    --cp-market-loader-width: 168px;
}

.cp-market-strip__loader-item--metric-md {
    --cp-market-loader-width: 138px;
}

.cp-market-strip__loader-item--token {
    --cp-market-loader-width: 108px;
}

@keyframes cp-market-loader-shimmer {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

@keyframes cp-market-strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.dark-skin .secondary-header-section {
    --cp-market-divider-color: var(--cp-dark-border-medium);
    --cp-market-value-color: var(--cp-dark-text-primary);
    --cp-market-loader-base: var(--cp-dark-fill-soft-08);
    --cp-market-loader-highlight: var(--cp-dark-fill-soft-16);
}

@media (prefers-reduced-motion: reduce) {
    .cp-market-strip__content--scrolling .cp-market-strip__list,
    .cp-market-strip__loader-item span {
        animation: none;
    }
}

@media (max-width: 767px) {
    .secondary-header-section {
        --cp-market-strip-height: 36px;
        --cp-market-divider-gap: 12px;
    }

    .remove-pd-mb {
        padding-left: 0;
        padding-right: 0;
    }

    .cp-market-strip__label,
    .cp-market-strip__value,
    .cp-market-strip__change {
        font-size: 12px;
        line-height: 16px;
    }

    .cp-market-strip__link {
        gap: 6px;
    }

    .cp-market-strip__reading {
        gap: 4px;
    }

    .cp-market-strip__item::after,
    .cp-market-strip__loader-item::after {
        height: 14px;
    }

    .cp-market-strip__loader-item span {
        height: 12px;
    }

    .cp-market-strip__loader-item--metric-lg {
        --cp-market-loader-width: 100px;
    }

    .cp-market-strip__loader-item--metric-xl {
        --cp-market-loader-width: 132px;
    }

    .cp-market-strip__loader-item--metric-md {
        --cp-market-loader-width: 112px;
    }

    .cp-market-strip__loader-item--token {
        --cp-market-loader-width: 84px;
    }

    .cp-market-strip__content--scrolling .cp-market-strip__list {
        animation-duration: 36s;
    }

    .cp-market-strip__action {
        display: none;
    }
}

@media (min-width: 992px) {
    .cp-market-strip__loader {
        width: 100%;
        min-width: 100%;
        padding-inline: 12px;
        box-sizing: border-box;
    }

    .cp-market-strip__loader-item {
        flex: 1 1 0;
        min-width: 0;
        margin-right: 0;
        padding-inline: 10px;
    }

    .cp-market-strip__loader-item span {
        width: 100%;
        max-width: 100%;
    }
}
/*********** Latest news*****************/

.set-margin-top{
    margin-top: 38px;
}
.margin-top-bottom{
    margin: 40px 0;
}
.section-sub-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--cp-legacy-text-strong);
    margin-bottom: 14px;
}
.home-post-section.border-bottom-none{
   border-bottom: 0 !important;
}
.white-bg-color{
  background: var(--cp-legacy-surface-base);
  padding: 40px 20px;
  margin: 20px 0;
}
.white-bg-single-post{
    background: var(--cp-legacy-surface-base);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0 16px;
}
.home-post-main-section{
    margin-bottom: 28px;
}
.posts_images_curve img {
    border-radius: 8px;
    width: 100% !important;
    margin-bottom: 10px;
}
.home-post-section{
    border-bottom: 1px solid var(--cp-legacy-text-alpha-10);
    margin-bottom: 18px;
    padding-bottom: 12px;
}
.news-featured-img{
    border-radius: 8px;
}
.home-post-main-section h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: var(--cp-legacy-text-strong);
    margin: 0;
	 display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.categories-list{
    margin: 6px 0;
}
.categories-list .post-categories li{
    color: var(--cp-legacy-brand-ink-1);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.home-post-section h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--cp-legacy-text-strong);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-post-section h4.openLoginModal{
	cursor:pointer;
}
.price-prediction-section .home-post-section h4{
    -webkit-line-clamp: 2;
}
.latest-post-section .home-post-section:last-child{
    border-bottom: 0;
}
.calculate_tax {
    margin-top: 14px;
    margin-bottom: 12px;
}
.wishlist{
    float: right;
}
.white-bg-color .home-post-section h5 .author-name{
    border-right: 0;
}
.blue-border-right{
    border-right: 1px solid var(--cp-legacy-brand-border-30) !important;
}
.top-ten-section{
    padding: 40px 0;
}
.top-ten-section .home-post-section h5 .author-name{
    border-right: 0 !important;
}
.home-post-section h5{
    margin-top: 8px;
}
.home-post-section a h4:hover, .liveblog-section h4 a:hover{
    color: #0669ff;
}

/* Keep metadata rows in one line with horizontal scroll. */
.cp-tab-post-meta-row{
    margin-top: 8px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.cp-tab-post-meta-row .cp-author-name,
.cp-tab-post-meta-row .cp-published_date,
.cp-tab-post-meta-row .published_date{
    flex: 0 0 auto;
}
.cp-home-post-section-meta.mt-12{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.cp-home-post-section-meta.mt-12 > *{
    flex: 0 0 auto;
}
.block-head-tabs.cp-live-news-details.d-flex{
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.block-head-tabs.cp-live-news-details.d-flex > li{
    flex: 0 0 auto;
}

/* Homepage tabbed blocks: skeleton-first lazy content to avoid first-tab WP_Query on TTFB. */
.cp-latest-tabs-box--lazy .posts-list-container{
    min-height: 360px;
}
.cp-latest-tabs-skeleton{
    list-style: none;
    margin: 0;
    padding: 0;
}
.cp-latest-tabs-skeleton .cp-tab-section::after{
    content: "";
    display: table;
    clear: both;
}
.cp-latest-tabs-skeleton-block{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--cp-legacy-text-alpha-08) 25%, var(--cp-legacy-text-alpha-14) 50%, var(--cp-legacy-text-alpha-08) 75%);
    background-size: 200% 100%;
    animation: cpLatestTabsSkeletonShimmer 1.35s linear infinite;
}
.cp-latest-tabs-skeleton-image{
    width: 100%;
    aspect-ratio: 16 / 9;
}
.cp-latest-tabs-skeleton-featured-image{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
}
.cp-latest-tabs-skeleton-title,
.cp-latest-tabs-skeleton-featured-title,
.cp-latest-tabs-skeleton-side-title{
    width: 100%;
    height: 18px;
    margin-bottom: 8px;
}
.cp-latest-tabs-skeleton-featured-title{
    height: 24px;
}
.cp-latest-tabs-skeleton-title--short,
.cp-latest-tabs-skeleton-featured-title--short,
.cp-latest-tabs-skeleton-side-title--short{
    width: 72%;
}
.cp-latest-tabs-skeleton-meta{
    width: 96px;
    height: 14px;
}
.cp-latest-tabs-skeleton-meta--short{
    width: 72px;
}
.cp-latest-tabs-skeleton-divider{
    width: 1px;
    height: 14px;
    margin: 0 12px;
    background: var(--cp-legacy-brand-alpha-18);
}
.cp-latest-tabs-skeleton-side-post{
    min-height: 86px;
}
.cp-latest-tabs-skeleton-card{
    min-height: 260px;
}
@keyframes cpLatestTabsSkeletonShimmer{
    0%{
        background-position: -200% 0;
    }
    100%{
        background-position: 200% 0;
    }
}
@media (max-width: 767px){
    .cp-latest-tabs-box--lazy .posts-list-container{
        min-height: 320px;
    }
    .cp-latest-tabs-skeleton-featured-image{
        margin-bottom: 16px;
    }
    .cp-latest-tabs-skeleton--style-2 .grid-4{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cp-latest-tabs-skeleton-card{
        min-height: auto;
    }
}

/* Homepage tabbed blocks: keep tabs on left and show dedicated desktop/mobile View All actions. */
.cp-latest-tabs-box .block-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

}
.cp-latest-tabs-box .block-head .block-head-tabs{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.cp-latest-tabs-box .block-head .block-head-tabs li{
    flex: 0 0 auto;
}
.cp-latest-tabs-box .block-head .cp-tab{
    white-space: nowrap;
}
.cp-latest-tabs-box .block-head .cp-tabs-head-action{
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 0 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}
.cp-latest-tabs-box .block-head .cp-tabs-head-action .btn{
    white-space: nowrap;
}
.cp-latest-tabs-box .cp-tabs-head-action-link[hidden]{
    display: none !important;
}
.cp-latest-tabs-box .cp-tabs-head-action .cp-latest-tabs-action-skeleton{
    width: 168px;
    height: 38px;
    border-radius: 8px;
}
.cp-latest-tabs-box .cp-tabs-head-action.is-ready .cp-latest-tabs-action-skeleton{
    display: none;
}
.cp-latest-tabs-box .cp-tabs-bottom-action{
    display: flex;
    justify-content: flex-end;
}
.cp-latest-tabs-box .cp-tabs-bottom-action .cp-latest-tabs-action-skeleton{
    width: 148px;
    height: 38px;
    border-radius: 8px;
}
@media (min-width: 768px){
    .cp-latest-tabs-box .mag-box-container .top-right{
        display: none !important;
    }
}
@media (max-width: 767px){
    .cp-latest-tabs-box .block-head{
        margin-bottom: 16px;
    }
    .cp-latest-tabs-box .block-head .cp-tabs-head-action{
        display: none !important;
    }
    .cp-latest-tabs-box .mag-box-container .top-right{
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: flex;
        justify-content: flex-end;
        margin-top: 16px;
    }
    .cp-latest-tabs-box .cp-tabs-bottom-action .cp-latest-tabs-action-skeleton{
        width: 138px;
        height: 36px;
    }
}

/* Homepage crypto events tabs: CTA in tab head on desktop and at bottom on mobile. */
.upcoming-events-sections .cp-events-tabs-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tabs-nav{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tabs-nav li{
    flex: 0 0 auto;
}
.upcoming-events-sections .cp-events-tabs-head .cp-tab{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.upcoming-events-sections{
    --cp-events-tab-active-border: var(--primary-50);
    --cp-events-tab-active-bg: var(--primary-5);
}
.dark-skin .upcoming-events-sections{
    --cp-events-tab-active-border: var(--primary-dark-50);
    --cp-events-tab-active-bg: var(--primary-dark-5);
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tab.active{
    border-color: var(--cp-events-tab-active-border);
    background: var(--cp-events-tab-active-bg);
    color: var(--cp-legacy-brand-primary);
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tab:hover:not(.active){
    background: var(--bg-muted-lite);
    border-color: var(--neutral-dark-border);
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tab .cp-events-tab-clear{
    margin-left: 2px;
    cursor: pointer;
    line-height: 0;
}
.upcoming-events-sections .cp-events-tabs-head .cp-events-tab .cp-events-tab-clear img{
    display: block;
}
.upcoming-events-sections[data-cp-events-layout="single"] .cp-events-tabs-head{
    justify-content: flex-end;
}
.upcoming-events-sections .cp-events-tabs-head-action{
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}
.upcoming-events-sections .cp-events-tabs-head-action:empty,
.upcoming-events-sections .cp-events-tabs-bottom-action:empty{
    display: none !important;
}
.upcoming-events-sections .cp-events-tabs-bottom-action{
    display: none;
    justify-content: flex-end;
}
@media (max-width: 767px){
    .upcoming-events-sections .cp-events-tabs-head{
        margin-bottom: 16px;
    }
    .upcoming-events-sections[data-cp-events-layout="single"] .cp-events-tabs-head{
        display: none;
    }
    .upcoming-events-sections .cp-events-tabs-head-action{
        display: none;
    }
    .upcoming-events-sections .cp-events-tabs-head-action:not(:empty){
        display: flex;
    }
    .upcoming-events-sections .cp-events-tabs-bottom-action{
        display: flex;
    }
}

/* Hide side posts marked by overflow guard (3rd/4th) after baseline checks. */
.cp-side-post-overflow .second-column .cp-home-post-section.cp-overflow-hidden-item{
    display: none !important;
}
.cp-side-post-overflow .second-column .cp-home-post-section.cp-overflow-new-last{
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Sidebar skeleton shown only during initial overflow-guard pass to avoid visible CLS jumps. */
.cp-overflow-guard-pending .second-column{
    position: relative;
}

.cp-overflow-sidebar-skeleton{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}
.cp-overflow-sidebar-skeleton-item{
    padding: 0 0 16px;
    border-bottom: 1px solid var(--cp-legacy-brand-alpha-18);
}
.cp-overflow-sidebar-skeleton-line{
    display: block;
    margin-bottom: 10px;
}
.cp-overflow-sidebar-skeleton-line.is-title-primary{
    width: 100%;
    height: 16px;
}
.cp-overflow-sidebar-skeleton-line.is-title-secondary{
    width: 82%;
    height: 14px;
}
.cp-overflow-sidebar-skeleton-line.is-meta{
    width: 62%;
    height: 12px;
}
.cp-overflow-sidebar-skeleton-item .cp-overflow-sidebar-skeleton-line:last-child{
    margin-bottom: 0;
}

.event_list_location .media-body h4{
    min-height: auto;
}

.read-more{
    cursor: pointer;
}
.live-label{
    background-color: var(--cp-legacy-error-strong);
    color: var(--color-foreground-inverse);
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 11px;
    letter-spacing: 0.50px;
    margin-left: 5px;
    vertical-align: text-top;
}
.cp-home-post-live-meta{
    white-space: nowrap;
}
.cp-home-post-live-badge{
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 18px;
    min-height: 18px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 6px;
    padding-right: 10px;
    font-size: 10px;
    line-height: 18px;
    font-weight: var(--Font-Weight-type-weight-medium-500);
    margin-bottom: 0;
}
.cp-home-post-live-badge .live-label{
    background: transparent;
    color: inherit;
    border-radius: 0;
    padding: 0;
    margin-left: 0;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0;
    vertical-align: baseline;
    font-weight: inherit;
}
.cp-home-post-live-badge img{
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    max-width: 10px;
    max-height: 10px;
}
@media (max-width: 767px){
    .cp-home-post-live-badge{
        height: var(--Line-Height-type-lh-label);
        min-height: var(--Line-Height-type-lh-label);
        padding-left: 5px;
        padding-right: 5px;
        gap: 2px;
    }
    .cp-home-post-live-badge img{
        width: 10px;
        height: 10px;
        max-width: 10px;
        max-height: 10px;
    }
}

.content-inner {
    max-height: 51px;
    overflow: hidden;
}
.hot-topic-orange{
    color: var(--cp-legacy-orange);
    font-size: 12px;
    font-weight: 600;
}
.live-news-details li{
    display: inline-block;
    border-right: 1px solid var(--cp-legacy-text-alpha-10);
    margin-right: 6px;
    padding-right: 8px;
    line-height: 12px;
    color: var(--cp-legacy-text-alpha-70);
}
.live-news-details li:last-child{
    border-right: 0;
    padding-right:0;
    margin-right: 0;
}
.hot-topic-orange img{
    vertical-align: bottom;
    width: 13px;
}
.author-name{
    color: var(--cp-legacy-brand-alpha-80);
}
.time-ago{
    color: var(--cp-legacy-brand-alpha-50) !important;
    font-weight: 600;
    float: right;
    top: 5px;
    position: relative
}
.border-right-0{
    border-right: 0 !important;
    padding-right: 0 !important;
}
.margin-right-space{
    margin-right: 3px;
}
.tag-live-label{
    line-height: 24px;
    color: var(--cp-legacy-error-strong);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 12px;
    text-transform: uppercase;
}

.live-news-details .single_live_news_time, .live-news-details .hot-topic-orange{
    border-left: 1px solid var(--cp-legacy-text-alpha-10);
    padding-left: 8px;
}
@media (max-width:767px) {

    .content-inner {
        max-height: 46px;
    }
    .read-more{
        font-size: 12px;
    }
}

/************ Live news end ****************/
/************ Home page upcoming event section **********************/

.event_list_location .media-body h4, .event-type {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--cp-legacy-brand-ink-1);
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-type img {
    vertical-align: sub;
    margin-right: 7px;
}

.event_seminar {

    margin-left: 8px;
    padding-left: 10px;
}

.events_list_block .event_date h5 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
    color: var(--cp-legacy-brand-ink-1);
    display: inline-block;
}

.events_list_block .event_date img{
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.event_list_location .media {
    margin: 12px 0;
}

.upcoming-event-section .events-status {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
}
.upcoming-event-section li{
    display: inline-block;
}
.upcoming-event-section h4{
    min-height: 45px;
    text-transform: capitalize;
    margin-top: 8px;
    margin-bottom: 10px;
	line-height: 22px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.upcoming-event-section h4 a{
        color: var(--cp-legacy-text-strong);
}
.events-status {
    margin: 10px 0;
}
.events-tags-lists{
    margin-top: -40px;
    z-index: 9;
    position: relative;
}
.upcoming-event-section .events-status .events-ongoing {
    color: rgb(13, 201, 129);
    font-size: 12px;
    background: rgb(219, 248, 237);
    padding: 5px 10px;
    border-radius: 6px;
}

.upcoming-event-section .events-status .events-upcoming {
    color: var(--cp-legacy-orange);
    background: rgb(251 230 213);
    padding: 5px 10px;
    border-radius: 6px;
}
.upcoming-event-section .events-status .events-past{
    color: #ff0000;
    background: var(--cp-legacy-error-alpha-10);
    padding: 5px 10px;
    border-radius: 6px;
}
.upcoming-event-section .event-tags{
    padding: 5px 10px;
    border-radius: 6px;
    margin-left: 7px;
    line-height: 16px;
    color: rgb(108, 117, 125);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
    background: rgb(232, 232, 232);
}
.upcoming-event-section .events-status img {
    float: right;
}



.upcoming-event-section{
    padding: 15px;
}
.zooming-image{
    transition: transform 0.5s ease;
}
.event-link-btn img{
    vertical-align: sub;
}
.homepage_sidebanner_ad{
    margin: 30px 0 0;
}


.social-share-list a{
    color:#000;
}
.social-share-list a:hover{
    color:#000!important;
}


.event-price{
    font-weight: 600;
}
#eventRegisterConfirmModal{
        z-index: 999;
        padding-top: 8%;
}
#eventRegisterConfirmModal .modal-content {
    box-shadow: 0 0 15px var(--cp-legacy-surface-alpha-50);
    background-color: var(--cp-legacy-surface-base);
    border-radius: 20px;
    padding: 24px;
}

#eventRegisterModal .modal-content{
    text-align: center;
    background: var(--cp-legacy-surface-page);
    width: 100%;
    margin: 0;
}
.event-modal-title{
    border-bottom: 1px solid var(--cp-legacy-text-alpha-10);
    padding-bottom: 12px;
    text-align: left;
    margin-bottom: 14px;
}
.event-modal-title h5{
    font-weight: 700;
    font-size: 18px;
        text-align: left;
    display: inline-block;
}
#eventRegisterModal .close-modal-btn, #eventRegisterConfirmModal .close-modal-btn{
    float: right;
    background: transparent;
    font-size: 24px;
    color: var(--cp-legacy-text-muted);
    font-weight: 300;
    margin-bottom: 4px;
}
#eventRegisterModal h4, #eventRegisterConfirmModal h4{
    color: var(--cp-legacy-text-strong);
    font-size: 16px;
    line-height: 26px;
}

#eventRegisterConfirmModal p, #eventRegisterModal p{
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
    font-weight: 500;
    margin-bottom: 20px;
 }

#cancelUnregisterBtn, #confirmUnregisterBtn{
    width: 70%;
    font-size: 14px;
    border-radius: 8px;
    padding: 7px 20px;
    font-weight: 600;
}
#cancelUnregisterBtn{
    background: rgb(226 226 227);
}
#confirmUnregisterBtn{
    background: var(--cp-legacy-brand-bright);
    color: #fff
}
.events-success-modal-title{
    background-color: var(--cp-legacy-success-strong-alpha-10);
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 100%;
    color: var(--cp-legacy-success-strong);
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
}
.events-success-modal-title img{
  width: 40px !important;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  background: var(--cp-legacy-surface-base);
  padding: 8px;
}
.modal-box{
    max-height: 516px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}
.modal-box::-webkit-scrollbar-thumb, .modal-box::-webkit-scrollbar{
    width: 3px;
    background: var(--cp-legacy-border-soft);
}
.event-card-details{
    background: linear-gradient(130deg, var(--cp-legacy-brand-ink-5), var(--cp-legacy-brand-ink-6) 60%, var(--cp-legacy-error-strong));
    position: relative;
    overflow: hidden;
    color: var(--color-foreground-inverse);
    text-align: left;
    padding: 12px;
    border-radius: 10px;
    display: flex;
}
.event-card-details:before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://image.coinpedia.org/static/common/event_bg_card.svg');
    background-size: cover;
    background-repeat: repeat;
}
.event-card-details h3{
    font-size: 13px;
    color: var(--cp-legacy-border-default);
        font-weight: 500;
 }
.event-card-details h2{
        min-height: 60px;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 1.5;
 }
 .event-card-details p{
    color: var(--color-foreground-inverse) !important;
    font-size: 13px !important;
    display: flex;
    gap: 6px;
    align-items: center;
   margin-top: 4px !important;
    min-width: 163px;
    font-weight: 400 !important;
 }
 .event-card-details  .event-location h3{
    font-size: 14px;
    color: var(--color-foreground-inverse);
    font-weight: 500;
 }
.card-share-btn{
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    gap: 8px;
   position: relative;
}
.card-share-btn .secondary-button{
    width: 100%;
    padding: 6px;
}
.card-share-btn .secondary-button img{
    vertical-align: bottom;
    margin-right: 12px;
}

.calendar-dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--cp-legacy-surface-base);
  border: 1px solid var(--cp-legacy-border-soft);
  border-radius: 8px;
  box-shadow: 0 4px 10px var(--cp-legacy-shadow-10);
  display: none;
  flex-direction: column;
   min-width: 160px;
  z-index: 9999;
  padding: 10px;
}

.calendar-dropdown.active {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

.calendar-dropdown a {
    padding: 8px;
    text-decoration: none;
    color: var(--cp-legacy-text-strong);
    transition: background 0.2s;
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
}

.calendar-dropdown a:hover {
  background-color: #f0f4ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.event-user-profile-img{
    width: 80px;
    border-radius: 50%;
    float: right;
    position: absolute;
    bottom: 14px;
    right: 14px;
}

.event-location{
        display: flex;
}
.speaker-photo{
    width: 32px;
    border-radius: 50%;
}
.speaker-list .speaker-item{
    display: inline-block;
    margin-right: 3px;
    margin-top: 6px;
}
.events-dateTime{
    padding-right: 20px;
}
.events-share-modal{
        z-index: 999999 !important;
}
.event-infomation svg.lucide-map-pin{
    min-width: 20px;
}
.events-dateTime svg.lucide-calendar{
       min-width: 14px;
}
.manage-event-image{
    display: flex;
    align-items: center;
    gap: 12px;
}
.manage-event-main-section{
    border: 1px solid var(--cp-legacy-text-alpha-10);
    border-radius: 8px;
    padding: 12px;
    text-align: left;
    margin-top: 6px;
}
.coupon-container{
    background: var(--cp-legacy-orange);
    border-radius: 8px;
    padding: 6px 10px;
    width: 188px;
    color: var(--cp-legacy-surface-page);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
}
.coupon-container .coupon-icon{
    vertical-align: middle;
}
.coupon-container.copied_code {
    background: #14B27533;
    color: #14B275;
}
.manage-event-main-section a{
        color: var(--cp-legacy-brand-primary);
}
.manage-event-main-section p{
    color:var(--cp-legacy-text-muted);
}
.image-rounded-lg{
    background: var(--cp-legacy-brand-alpha-10);
    padding: 4px 6px;
    border-radius: 8px;
    line-height: 0;
}
.events-registered-details h6{
     font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    color: var(--cp-legacy-text-strong);
}
.social-share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 0;
    margin-top: 14px;
    border-bottom: 1px solid #ebe6e7;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.social-share-list li {
    flex: 1 1 calc(33.333% - 16px);
    box-sizing: border-box;
    color: var(--cp-legacy-text-strong);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.events-share-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.events-share-icon img {
    width: 30px;
    height: 30px;
}

.events-share-icon span {
    font-size: 14px;
    font-weight: 500;
}


.share_block_link h5{
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cp-legacy-text-strong);
}
.download-share-card-btn #downloadShareCardBtn.secondary-button{
    width: 100%;
    padding: 8px 10px;
    margin-top: 12px;
    font-weight: 700;
}
.download-share-card-btn #downloadShareCardBtn.secondary-button img{
        vertical-align: text-bottom;
    margin-right: 2px;
}
 .events-share-modal.header-popup .modal-dialog .modal-content,  #eventRegisterModal .modal-content{
        background-color: var(--bg-surface);
 }
 .close-btn-confirmation{
        min-height: 8px;
 }
 .manage-event-main-section p{
    margin-bottom: 0;
 }
#socialShareModalCard, #eventregisterCard{
    position: relative;
}
.userProfileImage{
    border-radius: 10px;
        min-height: 200px;
}



/**************Placeholder content loder item **********************/

/* Animation for the loader */
.loader-infinite-transition .home-post-section .placeholder-transition  {
    background: linear-gradient(90deg, var(--cp-legacy-text-alpha-08) 25%, var(--cp-legacy-text-alpha-14) 50%, var(--cp-legacy-text-alpha-08) 75%);
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 4px;
}
.loader-infinite-transition .home-post-section .placeholder-image {
    height: 156px;
    width: 100%;
    margin-bottom: 6px;
}
.loader-infinite-transition .home-post-section .placeholder-text.title{
    height: 20px;
    width: 100%;
    margin-bottom: 4px;
}
.loader-infinite-transition .home-post-section .placeholder-text.meta-items{
    height: 20px;
    width: 36%;
    margin-bottom: 4px;
}
.loader-infinite-transition .home-post-section .border-right{
    margin-right: 8px;
    background-color:var(--cp-legacy-text-alpha-10);
    margin-left: 8px;
    width: 0.8px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: -5px;
}

.loader-infinite-transition .home-post-section .placeholder-transition::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    animation: loading_articles 1.2s infinite;
}

@keyframes loading_articles {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/***************** Sidebar design ****************************************/
.live_wire_btn{
    padding-top: 15px;

}

.home-sticky-sidebar {
    position: -webkit-sticky; /* for Safari and older browsers */
    position: sticky;
    top: 20px;
}
/************************************ Events social share **********************************************/

.share_popup_img{
		margin-left: 7%;
	}
.share-links a {
    display: contents;
    margin: 6px;
    transition: .3s;
    border-radius: 100%;

}

.social-share-icons-modal a{
    background-color: transparent !important;
}


.events-share-modal .close img{
    width: 20px;
    opacity: 0.5;
}
.event-list-wishlist{
    position: absolute;
    top: 10px;
    right: 25px;
    z-index: 99;
    display: flex;
    vertical-align: middle
}
.event_wishlist{
    width: 26px;
    height: 26px;
    background: rgb(250, 250, 250);
    border-radius: 6px;
    margin-left: 6px;
   text-align: center;
   cursor: pointer;
}
.event-list-wishlist img{
         vertical-align: middle;
    width: 15px;
}
.event-list-wishlist .event_wishlist:nth-child(2) img{
    vertical-align: bottom;
}
.events-share-modal h4{
    font-size: 18px;
    font-weight: 700;
    color: var(--cp-legacy-text-strong);
        display: inline-block;
}
.events-share-modal .modal-dialog{
   text-align: center;
}
.share_block_link .media{
     display: flex;
    height: 45px;
    background: #f6f3f4;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: left;
    align-items: center;
 }
.share_block_link .media-body{
    width: 100%;
}
.share_block_link #share-link{
    border: 0;
    width: 100%;
    padding: 0 8px 0 0;
    font-weight: 600;
    height: auto;
    font-size: 14px;
    color: var(--cp-legacy-text-muted);
}
.share_block_link #share-link:hover, .share_block_link #share-link:focus{
	background-color: transparent;
}
.sharepop_image{
    min-width: 20px;
    margin-top: 8px;
    cursor: pointer;
    width: 12px;
}
.share_block_link .media-body p{
	color: var(--cp-legacy-text-muted);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0px;
}

.share_event_popup_h5{
    color: var(--cp-legacy-text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
}
.event-tag-hover-wrapper {
    position: relative;
    display: inline-block;
}

.custom-tooltip {
    display: none;
    position: absolute;
    top: 120%; /* adjust if needed */
    left: 0;
    padding: 8px 10px;
    border: 1px solid var(--cp-legacy-border-soft);
    border-radius: 10px;
    z-index: 999;
    color: var(--cp-legacy-text-strong);
    background: var(--cp-legacy-brand-ink-1);
    box-shadow: none;
    max-width: 250px;
}
.custom-tooltip::before {
    content: "";
    position: absolute;
    top: -8px; /* moves arrow above tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--cp-legacy-brand-ink-1); /* same as tooltip background */
}
.event-tag-hover-wrapper:hover .custom-tooltip {
    display: block;
}

.tooltip-tag {
    background: rgb(26 26 73);
    padding: 5px 10px;
    color: hsl(0deg 0% 100%);
    font-weight: 400;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin: 3px;
    white-space: nowrap;
    display: block;
}
.event-share-twitter{
    background-color: rgb(241, 241, 241);
}
.event-share-linkedin{
    background-color: #e8f4fd;
}
.event-share-facebook{
    background-color: #e7f0fe;
}
.event-share-gmail{
    background-color: #fbf2eb;
}
.event-share-telegram{
    background-color: #e1f3fd;
}
.event-share-whatsapp{
    background-color: rgb(228, 248, 236);
}

/*************************   Ends social share***********************************/




@media (min-width:991px) {
    .pd-right{
        padding-right: 9px;
    }
    .pd-left-right{
        padding-left: 9px;
        padding-right: 9px;
    }
    .pd-left{
        padding-left: 9px;
    }

}
@media (max-width:991px) {
    .set-margin-top {
        margin-top: 0px;
    }
    .tablet-scroll .home-post-section{
        min-width: 250px;
    }
    .tablet-scroll .posts_images_curve img{
        max-width: 110px;
    }
    .tablet-scroll  .home-post-section h4{
        font-size: 14px;
        line-height: 18px;
        margin-left: 10px;
    }
}


/* Companies / Professionals list chevron interactions */
.cp-home-entity-list[aria-busy="true"] {
    min-height: 300px;
}

.cp-home-entity-item--placeholder {
    pointer-events: none;
}

.cp-home-entity-item--placeholder .cp-home-entity-skeleton-text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.cp-home-entity-skeleton {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--cp-legacy-text-alpha-08) 25%, var(--cp-legacy-text-alpha-14) 50%, var(--cp-legacy-text-alpha-08) 75%);
    background-size: 200% 100%;
    animation: cpHomeEntitySkeletonShimmer 1.35s linear infinite;
}

.cp-home-entity-skeleton--avatar {
    flex: 0 0 40px;
}

.cp-home-entity-skeleton--title {
    display: block !important;
    flex: 0 0 auto;
    align-self: flex-start;
    width: min(170px, 70%);
    height: 18px;
}

.cp-home-entity-skeleton--meta {
    display: block !important;
    flex: 0 0 auto;
    align-self: flex-start;
    width: min(120px, 55%);
    height: 14px;
}

.cp-home-entity-skeleton--chevron {
    width: 7px;
    height: 12px;
    border-radius: 999px;
}

@keyframes cpHomeEntitySkeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cp-home-entity-link .cp-home-entity-chevron {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.cp-home-entity-item:hover .cp-home-entity-chevron,
.cp-home-entity-link:focus-visible .cp-home-entity-chevron {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 767px){

	.loader-infinite-transition .home-post-section .placeholder-image {
        height: 120px;
    }
    .loader-infinite-transition .mobile-view-scroll .home-post-section h4{
        margin-bottom: 0;
		min-height: auto;
    }
    .loader-infinite-transition .home-post-section .placeholder-text.title , .loader-infinite-transition .home-post-section .placeholder-text.meta-items{
        height: 16px;
    }

    .home-post-section h5 .author-name, .home-post-main-section h5 .author-name, .home-post-main-section h5 .published_date {
        font-size: 12px;
    }
    .home-post-main-section h4{
        font-size: 20px;
        line-height: 28px;
        margin: 6px 0 0;
    }

    .home-post-main-section h5 {
        margin-top: 2px;
    }

    .mobile-view-scroll{
        display: flex;
        overflow: auto;
    }

    .mobile-margin-minus{
        margin: 0 -15px !important;
        border-radius: 0;
    }
    .mobile-view-scroll .home-post-section{
        border: 1px solid var(--cp-legacy-brand-border-30);
        border-radius: 8px;
        padding: 14px;
        border-bottom: 1px solid var(--cp-legacy-brand-border-30) !important;
        min-width: 220px;
        min-height: 250px;
    }
    .mobile-view-scroll .home-post-section h4{
        margin: 0 0 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
        line-height: 21px;
		min-height: 63px;
    }
    .mobile-view-scroll .home-post-section h5 .author-name, .mobile-view-scroll .home-post-main-section h5 .author-name{
        font-size: 12px;

    }
    .mobile-view-scroll .published_date {
        font-size: 12px;
    }
    .mobile-view-scroll .padding-right-mobile:not(:last-child){
        padding-right: 2px;
    }
    .mobile-view-scroll .home-post-section h5 {
        margin-bottom: 0;
    }
    .mobile-view-scroll .wishlist img{
        width: 11px;
    }
    .remove-bg-mobile{
        background-color: transparent !important;
        padding: 3px;
    }
    .custom-container .white-bg-color {
        padding: 20px 0px 26px !important;
    }
    .top-ten-section{
        padding: 0px 0;
    }
    .margin-top-bottom {
        margin: 26px 0;
    }
    .home-post-main-section {
        margin-bottom: 26px;
    }
    .first-side-ad a{
        font-size: 12px;
    }

    .homepage_banner_ad {
        margin: 22px 0;
        padding: 0;
    }
    .homepage_banner_ad  .video-sizes{
    border-radius: 4px;
    }
    body .homepage_banner_ad p{
        margin-top: 8px;
        font-size: 10px;
        right: 36px;
    }
    .homepage_banner_ad .close-ad-btn img{
        width: 12px;
    }
    #content{
        padding-bottom: 0px;
		opacity: 1;
    }
    .homepage_sidebanner_ad {
        margin: 28px 0 14px !important;
    }
    .event-link-btn a.event-mobile-btn span{
        color: var(--cp-legacy-brand-primary);
    }
    .upcoming-events-sections .tie-row.mobile-view-scroll .tie-col-md-3.tie-col-sm-6{
        width: auto;
    }
    .events-share-modal .modal-content{
        margin: 12px;
    }
    .events-share-modal{
        padding-top: 16%;
    }
}

@media (max-width: 580px){
    .white-bg-single-post{
        margin: 0px 0 16px;
    }
    #eventRegisterConfirmModal .modal-dialog{
        margin: 10px;
    }
    /**** events reposive cards*********/
    #eventRegisterModal{
            padding-top: 20px;
    }
    #eventregisterCard{
            position: relative;
    }
    .userProfileImage{
            min-height: auto;
    }

    #eventRegisterModal .modal-content{
        padding: 10px;
        margin: 10px;
        width: 96%;
    }

    .event-user-profile-img {
        bottom: 15px;
        width: 48px;
    }
    .card-share-btn .secondary-button img{
        width: 16px;
        vertical-align: middle;
    }
    #eventRegisterModal h4, #eventRegisterConfirmModal h4{
        font-size: 14px;
        line-height: 20px;
    }
    .events-registered-details h6 {
        font-size: 14px;
    }
    .events-success-modal-title{
            font-size: 14px;
            padding: 7px;
    }
    .events-success-modal-title img {
        width: 34px !important;
    }
    .events-share-modal .modal-content, #eventRegisterConfirmModal .modal-content{
        padding: 16px !important;
    }
    html .header-popup#myModal{
        padding-top: 20px !important;
    }
    #cancelUnregisterBtn, #confirmUnregisterBtn{
        width: 100%;
        font-size: 12px;
    }


}
@media (max-width: 480px){
     .social-share-list{
            gap: 8px;
    }
    .social-share-list li{
        flex: 1 1 calc(50% - 10px);
        font-size: 13px
    }
    .events-share-icon img {
        width: 20px;
        height: 22px;
    }
    .events-share-icon{
        gap: 6px;
        padding: 6px 8px;
    }
}
/**Home page css starts***/


.home_page_heading_tag span {
    font-weight: 600;
    color: var(--cp-legacy-text-strong);
}
.live-wire-space {
    padding: 15px;
}

.cp-live-wire-list[aria-busy="true"] {
    min-height: 420px;
}

.cp-live-wire-skeleton-item {
    pointer-events: none;
}

.cp-live-wire-skeleton {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--cp-legacy-text-alpha-08) 25%, var(--cp-legacy-text-alpha-14) 50%, var(--cp-legacy-text-alpha-08) 75%);
    background-size: 200% 100%;
    animation: cpLiveWireSkeletonShimmer 1.35s linear infinite;
}

.cp-live-wire-skeleton--tag {
    width: 72px;
    height: 24px;
}

.cp-live-wire-skeleton--time {
    width: 56px;
    height: 14px;
    border-radius: 999px;
}

.cp-live-wire-skeleton--title {
    width: 100%;
    height: 18px;
}

.cp-live-wire-skeleton--title-short {
    width: 78%;
}

.cp-live-wire-skeleton--excerpt {
    width: 66%;
    height: 14px;
}

@keyframes cpLiveWireSkeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.stories_category {
    line-height: 1;
    position: relative;
    left: 0px;
	margin-bottom: 14px;
}
.stories_category span {
    background: var(--cp-legacy-text-alpha-05);
    padding: 5px 10px;
    line-height: 18px;
    border-radius: 5px;
    text-transform: capitalize;
    color: var(--cp-legacy-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
}
.stories_category span.wishlist{
    background: transparent;
    padding: 0;
    line-height: 0;
    margin-top: -1px;
}
.live_news_time, .liveblog-section .modified-date span {
    color: var(--cp-legacy-brand-primary);
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 0px;
    margin-top: 0px;
}
.wide-post-box .media-heading, .liveblog-section .liveblog-title {
    color: var(--cp-legacy-text-strong);
    font-size: 16px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.5;
}
.liveblog-section .liveblog-title {
    font-size: 15px;
}
.wide-post-box .content-full p, .liveblog-section .liveblog-content p{
    font-size: 14px;
    font-weight: 400;
    color: var(--cp-legacy-text-muted);
}

.liveblog-section p span {
    color: var(--cp-legacy-text-muted) !important;
}
.wide-post-box .content-inner.update-modal .liveblog-section:first-child{
	margin-top: 0;
    border-top: 0;
}
.side_banner_ads_block {
    padding: 0;
}
/*********  Events start here *************/
.cp-events-tab-panels .cp-events-tab-panel{
    display: none;
}
.cp-events-tab-panels .cp-events-tab-panel.is-active{
    display: block;
}
.cp-events-empty-state{
    min-height: 90px;
    display: flex;
    align-items: center;
}
/* Keep ongoing/upcoming event cards at equal heights without breaking mobile horizontal scroll */
.upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded{
    align-items: stretch;
}
.upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded > [class*="tie-col-"]{
    display: flex;
}
.upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded > [class*="tie-col-"] .cp-events_list_block{
    width: 100%;
    height: 100%;
}
.upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded .cp-upcoming-event-section{
    flex: 1 1 auto;
}

@media (min-width: 1151px){
    .upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded{
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
    }
    .upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded > [class*="tie-col-"]{
        float: none;
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (max-width: 1150px){
    .upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded{
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .upcoming-events-sections .cp-events-tab-panel .tie-row.mobile-view-scroll.cp-events-loaded > [class*="tie-col-"]{
        float: none;
        flex: 0 0 300px;
        max-width: 300px;
    }
}
.upcoming_events {
    background: #ebe6df;
    padding: 20px 25px;
    border-radius: 15px;
    margin: 25px 0 0;
}
.events_list_block{
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    transition: 0.5s;
    border-radius: 10px;
}
.events_list_main_page .events_list_block {
    margin-bottom: 30px;
    border: 0px solid #fff;
    border-radius: 10px;
    transition: 0s;
    transition: 0.5s;
    padding: 5px;
    min-height: auto !important;

}

.events_list_main_page .events_list_block .registered-tag {
    min-height: 25px;
    margin: 0 !important;
    margin-bottom: 0 !important;
}

.events_list_main_page .events_list_block:hover {
    transition: 0.5s;
    box-shadow: 0 0 15px var(--cp-legacy-border-soft);
    border-radius: 10px;
}

.events_list_block .event_list_data h4 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 3px;
    margin-top: 5px;
    line-height: 20px;
    color: var(--cp-legacy-text-strong);
}

.events_list_block .event_list_location {
    font-size: 13px;
    font-weight: 400!important;
    color: var(--cp-legacy-text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.events_list_block .event_list_location img {
    vertical-align: sub;
    width: 18px;
    margin-right: 5px;
    position: relative;
    margin-top: 2px;
}

.events_list_block .event_subscriber_watchlist h5 {
    font-size: 13px;
    color: var(--cp-legacy-text-muted);
    font-weight: 400!important;
    margin-bottom: 0;
}

.events_list_block .upcoming_events_ongoing {
    color: #37aa49;
    font-size: 12px;
    padding: 2px 5px 1px;
    border-radius: 6px;
    font-weight: 400;
    display: inline-block;
    margin-top: 0;
    position: relative;
    left: 15px;
}

.events_list_block .event_subscriber_watchlist h5 img {
    width: 18px;
    vertical-align: sub;
}

.image-width-over{
    max-height: 150px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}
.events_list_block:hover{
    border-radius: 10px;
    border: 1px solid rgb(0 82 204 / 50%);
    transition: 0.5s;

}
.event_list_banner {
    width: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
    transform: scale(1);
     border-radius: 8px 8px 0 0;
    min-height: 159px;
}

.events_list_block:hover .event_list_banner{
     transform: scale(1.3);
    transition: 0.5s ease-in-out;

}

.onhover-show img{
    vertical-align: middle;
}

.custom-container{
    padding-left: 15px;
    padding-right: 15px;
}
.custom-container .white-bg-color{
    padding: 40px 5px;
}


@media(min-width: 1131px) and (max-width: 1299px){
    .events_list_block:hover .event_list_banner{
        border-radius: 60px 60px 0px 0px;
    }

}
@media(min-width: 992px) and (max-width: 1130px){
    .events_list_block:hover .event_list_banner{
        border-radius: 52px 52px 0px 0px;
    }
    .events_list_block:hover .onhover-show {
        max-width: 5rem;
        padding: 0 0px;
    }
}
@media(min-width: 801px) and (max-width: 992px){
    .events_list_block:hover .event_list_banner{
        border-radius: 85px 85px 0px 0px;
    }
}
@media(min-width: 768px) and (max-width: 800px){
    .events_list_block:hover .event_list_banner{
        border-radius: 80px 80px 0px 0px;
    }
}
@media(max-width: 768px) {
    .events_list_block .event_list_data h4 {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .events_list_block .event_date h5 {
        font-weight: 700;
        font-size: 12px;
        margin-bottom: 3px;
    }

    .events_list_block .event_list_location {
        font-size: 11px;
    }

    .upcoming-event-section{
        margin-top: -10px;
        padding: 14px 14px 0;
        border-radius: 0 0 8px 8px;
    }
    .side_banner_ads_block {
        padding: 0 0;
    }
    .upcoming-event-section .events-status{
        margin-bottom: 2px;
    }
    .events_list_block .event_list_banner {
        border-radius: 8px 8px 0 0;
        width: 100%;
    }
    .events_list_block:hover .event_list_banner{
        border-radius: 59px 59px 0px 0px;
    }
    .upcoming-event-section h4{
        font-size: 14px;
        line-height: 21px;
    }
    .event_list_location .media-body h4, .event-type{
        font-size: 12px;
        font-weight: 400;
        line-height: 21px;
    }
    .event-link-btn a.event-mobile-btn{
        border-radius: 8px;
        padding: 10px 16px;
        background: var(--cp-legacy-brand-alpha-10);
        font-weight: 700;
        font-size: 12px;
        line-height: 21px;
    }

	.event_wishlist{
		right: 14px;
	}

}
@media(max-width:767px){
    .events_list_block {
        margin-bottom: 25px;
        min-height: 170px;
        min-width: 250px;
    }
    .events_list_block .event_list_banner{
        width: 100%;
    }
    .hide-in-mobile{
        display:none !important;
    }
	 .event_list_banner{
        min-height: 132px !important;
    }

}
/*********  Events Ends Here *************/

@media (max-width: 991px){
.home_page_heading_tag {
    margin-top: 0px;
}
.secondary-header-section{
    margin-bottom: 16px;
}
.hidein-mobile{
	display:none
 }
}
@media (min-width:767px){
   .home_page_heading_tag, .nav_tabs_limit{
    display: inline-block;
   }
.show-in-mobile{
    display:none !important;
}
}
@media (min-width:768px){
    .show_section_mobile{
        display:none;
   }
}
@media (min-width: 768px) and (max-width: 991px){
.events_list_block{
    min-height: 407px;
}
}
@media (max-width:767px){
    .home_page_heading_tag {
        font-size: 18px !important;

   }
.homepage_banner_ad p{
    font-size: 12px;
}
}

@media(min-width: 576px) {
    #eventRegisterModal.header-popup .modal-dialog, .events-share-modal.header-popup .modal-dialog {
         max-width: 512px;
    }
     .events-share-modal.header-popup .modal-dialog .modal-content{
            width: 100%;
     }
      #eventRegisterModal.header-popup , .events-share-modal.header-popup{
		    overflow: auto;
	}

}
@media(max-width: 576px) {
    #eventRegisterModal{
        width: 100%;
        max-width: 100%;
    }
    #eventRegisterModal .modal-dialog{
        overflow-y: none !important;
        overflow-y: unset;
    }
      .events-share-modal.header-popup .modal-dialog{
         overflow-x: hidden;
        padding: 0 !important;

     }
}

@media (max-width: 1518px) {
    .cp-trending-section{
        margin-bottom: 0;
        margin-top: 0;
    }


    /* cp-latest-tabs-box: hide actual last post */

    .cp-latest-tabs-box .second-column > .cp-home-post-section:nth-last-of-type(2) {
        display: none;
    }

    .cp-latest-tabs-box .second-column > .cp-home-post-section:nth-last-of-type(3) {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

}

/* mobile view sections ends */


/**Home page css Ends***/
