.nested-tab-mode-feature_demo button.e-n-tab-title {
    display: block;
}


.nested-tab-mode-feature_demo .button-stats-inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.nested-tab-mode-feature_demo .view-stats-wrap {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.nested-tab-mode-feature_demo .view-stats-wrap .fas.fa-eye {
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #D0D0D0;
    font-size: 12px;
}

.nested-tab-mode-feature_demo button[aria-selected="true"] .view-stats-wrap .fas.fa-eye {
    color: #1D7885;
}

.nested-tab-mode-feature_demo .view-stats-wrap .view-stats {
    padding: 0!important;
}
.nested-tab-mode-feature_demo .feature-demo-extras {
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nested-tab-mode-feature_demo .disclaimer-notice-content {
    color: #737171;
    font-family: "Noto Sans", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.nested-tab-mode-feature_demo .cta-button {
    box-sizing: border-box;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    color: #fff;
    /* fill: #fff; */
    text-align: center;
    /* transition: all .3s; */
    text-decoration: none;
    font-family: var( --e-global-typography-accent-font-family ), Sans-serif;
    font-weight: var( --e-global-typography-accent-font-weight );
    background-color: transparent;
    background-image: linear-gradient(90deg, #222222 0%, #484848 100%);
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 0.9rem 1rem 0.9rem 1rem;
}

.feature-demo-extras.mobile-only {
    display: none;
}

@media (max-width: 767px) { 
    .feature-demo-extras.desktop-only {
        display: none;
    }
    .feature-demo-extras.mobile-only {
        display: flex;
    }    
}



.nested-tab-mode-feature_demo .e-n-tabs-content {
    position: relative; /* Ensure the children can be absolutely positioned */
}

.nested-tab-mode-feature_demo .e-n-tabs-content .tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nested-tab-mode-feature_demo .e-n-tabs-content .tab-panel.e-active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Bring the active tab into flow */
}