/*#region OpenSans Font*/

@font-face {
    font-family: OpenSansRegular;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-Regular.ttf) format('truetype');
}

@font-face {
    font-family: OpenSansRegularItalic;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-RegularItalic.ttf) format('truetype');
}

@font-face {
    font-family: OpenSansBold;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-Bold.ttf) format('truetype');
}

@font-face {
    font-family: OpenSansBoldItalic;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-BoldItalic.ttf) format('truetype');
}

@font-face {
    font-family: OpenSansLight;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-Light.ttf) format('truetype');
}

@font-face {
    font-family: OpenSansItalic;
    src: url(https://s3.ap-south-1.amazonaws.com/cdn2.onference.in/fonts/Open_Sans/OpenSans-LightItalic.ttf) format('truetype');
}


/*#endregion*/

/*#region header css */

.header-area {
    float: left;
    width: 100%;
    /*overflow: hidden;*/
    box-shadow: 0px 4px 5px 0 rgba(0, 0, 0, 0.11);
    background-color: #ffffff;
    padding-top: 15px;
    position: fixed;
    z-index: 9;
}

.header-container {
    width: 95%;
    margin: 0 auto;
    /*overflow: hidden;*/
}

.footer-container {
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
}

.onference-logo {
    float: left;
    overflow: hidden;
    padding-right: 40px;
}

.header-search {
    float: left;
    overflow: hidden;
    border-radius: 10px;
    border: solid 1px #cccccc;
    margin: 5px 0px 0px 60px;
    padding: 8px;
}

.header-txt-search {
    width: 400px;
    float: left;
    border: none;
    background-color: #ffffff;
    outline: none;
}

.header-btn-search {
    width: 25px;
    height: 25px;
    /* background-image: url(https://cdn2.onference.in/images/cutouts/search.png); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px 22px;
    float: right;
}

    .header-btn-search:hover {
        cursor: pointer;
    }

.header-menu {
    float: left;
    /*overflow: hidden;*/
    padding-left: 50px;
}

    .header-menu ul {
        float: none;
        list-style: none;
        padding: 0px;
        margin: 0 0 0 10px;
        flex-direction: row;
    }

        .header-menu ul li {
            list-style: none;
            position: relative;
            float: left;
            display: block;
            padding: 13px 30px 25px 30px;
            border-bottom: 3px solid #ffffff;
        }

            .header-menu ul li a {
                font-family: OpenSansRegular;
                color: #333333;
                text-decoration: none !important;
                font-size: 15px;
                text-transform: uppercase;
            }

            .header-menu ul li.active {
                border-bottom: 3px solid #ffcc00;
                cursor: pointer;
            }

                .header-menu ul li.active > a {
                    color: #ffcc00;
                    font-weight: 600;
                    cursor: pointer;
                }

            .header-menu ul li:hover {
                border-bottom: 3px solid #ffcc00;
                cursor: pointer;
            }

                .header-menu ul li:hover a:not(.btn-view-profile):not(.btn-logout) {
                    color: #ffcc00;
                    font-weight: 600;
                    cursor: pointer;
                }

.notification-menu {
    overflow: hidden;
    float: right;
    padding: 10px;
}

    .notification-menu:hover > img {
        cursor: pointer;
    }

.my-account {
    position: relative;
}
    .my-account:hover .login-signup-card {
        display: block;
    }

.login-signup-card {
    display: none;
    position: absolute;
    z-index: 9;
    width: 290px;
    background-color: #ffffff;
    padding: 20px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    top: 65px;
    right: -70px;
}

.welcome-text {
    text-align: center;
    font-size: 14px;
    font-family: OpenSansRegular;
}

.btn-login-signup {
    padding: 20px 0px 30px 0px;
    float: left;
    width: 100%;
}

.btn-login {
    float: left;
    width: 100%;
    padding: 6px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: OpenSansBold;
    color: #ff9933;
    outline: none;
    text-align: center;
}

.btn-signup {
    float: left;
    padding: 6px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: OpenSansBold;
    color: #ff9933;
    outline: none;
}

.logged-account {
    position: relative;
    padding: 0px !important;
    padding-left: 30px !important;
}

    .logged-account .logged-in-username {
        white-space: nowrap;
        /* overflow: hidden; */
        text-overflow: ellipsis;
        max-width: 80px;
        width: 80px;
    }

    .logged-account:hover .logout-view-card {
        /* display: block; */
        display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    }

    .logged-account a:not(.btn-view-profile) {
        padding-top: 14px;
        float: left;
        margin-right: 15px;
    }

    .logged-account span {
        width: 40px;
        height: 40px;
        float: right;
        margin-top: 5px;
        margin-left: 10px;
        border-radius: 100%;
        background-color: #ccc;
        overflow: hidden;
    }

.logout-view-card {
    display: none;
    position: absolute;
    z-index: 9;
    /* width: 190px; */
    width: 200px;
    background-color: #ffffff;
    /* padding: 20px 25px; */
    padding: 20px 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    top: 65px;
    right: -15px;
    
}

.btn-view-profile {
    font-size: 14px !important;
    width: 100%;
    padding: 0px;
}

.btn-logout {
    font-size: 14px !important;
    width: 100%;
    padding-top: 20px;
}

.logout-view-card a:hover {
    color: #ffcc00;
    cursor: pointer;
}


/*#endregion */

/*#region mobile store banner css */

.mobile-store-banner {
    display: none;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    background-color: orange;
    color: #fff;
    height: 40px;
}

.mobile-app {
    float: left;
    /* Firefox */
    width: -moz-calc(100% - 100px);
    /* WebKit */
    width: -webkit-calc(100% - 100px);
    /* Opera */
    width: -o-calc(100% - 100px);
    /* Standard */
    width: calc(100% - 100px);
    overflow: hidden;
    height: 30px;
}

.banner-close {
    margin-top: 5px;
    float: left;
}

.get-text {
    font-size: 12px;
    font-family: OpenSansRegular;
    width: calc(100% - 21px);
    float: left;
    margin-left: 5px;
    line-height: 14px;
    margin-top: 2px;
}

.app-store-link.google {
    display: none;
    width: 100px;
    float: right;
    cursor: pointer;
}

.app-store-link.ios {
    display: none;
    width: 85px;
    float: right;
    cursor: pointer;
}

/*#endregion*/

/*#region mobile header css */

.mobile-area {
    display: none;
    float: left;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 5px 0 rgba(0, 0, 0, 0.11);
    background-color: #ffffff;
    /* padding: 10px 10px 10px; */
    padding: 10px 10px 10px;
    position: fixed;
    z-index: 9;
}

.mobile-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newMenuBtn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mob-ham {
    float: left;
    padding: 4px;
    width: 36px;
    overflow: hidden;
}

    .mob-ham span {
        /* font-size: 18px; */
        font-size: 25px;
    }

.mob-onference-logo {
    float: left;
    overflow: hidden;
}

    .mob-onference-logo img {
        width: 75%;
        /* width: 91%; */
    }

.mobile-search {
    overflow: hidden;
    float: right;
    /* padding: 5px 15px 5px 0px; */
}

.mobile-search-div {
    width: 94%;
    position: absolute;
    z-index: 999;
    right: 0;
    left: 100%;
    padding-top: 10px;
    padding: 8px 10px;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
    background-color: #efefef;
}

    .mobile-search-div .search-text {
        border: 0;
        outline: none;
        width: 85%;
        float: left;
        position: relative;
        background-color: inherit;
    }

    .mobile-search-div .mob-search-cancel .fa-times {
        float: right;
        padding: 4px;
    }

.mobile-notification {
    overflow: hidden;
    float: right;
    /* padding: 5px 0px; */
}
.mobile-backBtn {
    overflow: hidden;
    float: right;
    /* padding: 5px 0px; */
}

/*#endregion */

/*#region mobile menu css */

.mob-user-profile {
    float: left;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #b1b1b1;
    padding: 10px 10px;
}

.mob-user-icon {
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 60%;
    overflow: hidden;
    margin-right: 10px;
    background-color: #cccccc;
}

.mob-user-name {
    float: left;
    overflow: hidden;
    width: 64%;
    color: #333333;
    padding-top: 3px;
    font-family: OpenSansBold;
    font-size: 16px;
}

.mob-user-qual {
    float: left;
    overflow: hidden;
    width: 64%;
    color: #333333;
    padding-top: 4px;
    font-family: OpenSansRegular;
    font-size: 12px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mob-user-edit {
    float: left;
    overflow: hidden;
    color: #ff6600;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: OpenSansRegular;
    font-size: 12px;
    padding: 0px 11px;
    border-radius: 4px;
    margin-top: 4px;
}

.nav-side-menu {
    overflow: auto;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    color: #e1ffff;
    background-color: #fff;
    z-index: 99;
    padding-bottom: 40px;
}

    .nav-side-menu ul,
    .nav-side-menu li {
        list-style: none;
        padding: 0px;
        margin: 0px;
        line-height: 35px;
        float: left;
        width: 100%;
        cursor: pointer;
    }

        .nav-side-menu ul :not(collapsed) .arrow:before,
        .nav-side-menu li :not(collapsed) .arrow:before {
            font-family: FontAwesome;
            content: "\f078";
            display: inline-block;
            padding-left: 10px;
            padding-right: 10px;
            vertical-align: middle;
            float: right;
        }

        .nav-side-menu ul .active,
        .nav-side-menu li .active {
            border-left: 3px solid #d19b3d;
            background-color: #4f5b69;
        }

        .nav-side-menu ul .sub-menu li.active,
        .nav-side-menu li .sub-menu li.active {
            color: #d19b3d;
        }

            .nav-side-menu ul .sub-menu li.active a,
            .nav-side-menu li .sub-menu li.active a {
                color: #d19b3d;
            }

        .nav-side-menu ul .sub-menu li,
        .nav-side-menu li .sub-menu li {
            background-color: #f7f7f7;
            border: none;
            line-height: 28px;
            margin-left: 0px;
            color: #333333;
            font-size: 14px;
            font-family: OpenSansRegular;
            padding: 5px 10px 5px 0px;
        }

            .nav-side-menu ul .sub-menu li:hover,
            .nav-side-menu li .sub-menu li:hover {
                background-color: #e6e6e6;
            }

            .nav-side-menu ul .sub-menu li:before,
            .nav-side-menu li .sub-menu li:before {
                font-family: FontAwesome;
                content: "\f105";
                display: inline-block;
                padding-left: 10px;
                padding-right: 10px;
                vertical-align: middle;
            }

    .nav-side-menu li {
        padding: 10px;
        padding-left: 0px;
        /*border-left: 3px solid #4a4a4a; */
        border-bottom: 1px solid #b1b1b1;
    }

        .nav-side-menu li a {
            float: left;
            width: 100%;
            text-decoration: none;
            color: #333333;
            font-size: 14px;
            font-family: OpenSansRegular;
        }

            .nav-side-menu li a i {
                padding: 0px 10px;
                width: 40px;
            }

        .nav-side-menu li:hover {
            border-left: 3px solid #0ab3ff;
            background-color: #f1f1f1;
            -webkit-transition: all 1s ease;
            -moz-transition: all 1s ease;
            -o-transition: all 1s ease;
            -ms-transition: all 1s ease;
            transition: all 1s ease;
        }

.footer-link {
    width: auto !important;
    float: none !important;
}

.menu-overlay {
    display: none;
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    filter: alpha(opacity=50);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
}

/*#endregion */

/*#region Helper Classes*/
.hidden-visibility{
visibility: hidden !important;
}
.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

a:hover, a:active {
    color: #ff9933;
    text-decoration: none;
}

/*#endregion Helper Classes*/

/*#region error css */

.form-error {
    float: left;
    width: 100%;
    color: #ff0000;
    font-size: 12px;
    height: 20px;
}

/*#endregion */

/*#region sweet alert custom css */

.swal2-icon.swal2-info {
    border-color: #28c0fd75;
    color: #28c0fd;
}

/*#endregion */

/*#region footer css */

.footer-area {
    float: left;
    width: 100%;
    overflow: hidden;
    padding: 10px 0px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.11);
}

.footer-links {
    width: 100%;
    float: left;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
}

    .footer-links li {
        list-style: none;
        float: left;
    }

        .footer-links li a {
            cursor: pointer;
            font-family: OpenSansRegular;
            font-size: 13px;
            color: #333333;
        }

    .footer-links > li:hover a,
    .footer-links > li.active a {
        color: #ffcc00 !important;
    }

.footer-link-divider {
    float: left;
    padding: 4px 10px;
    font-family: OpenSansRegular;
    font-size: 13px;
    color: #333333;
}

.copyright {
    float: right !important;
    font-family: OpenSansRegular;
    color: #333333;
    font-size: 13px;
    line-height: 26px;
}

/*#endregion */

/* EJS partials CSS*/

.newsFeedBackBtn{
    display: flex;
    flex-direction: column;
    /* width: 100px; */
    gap: 10px;
    padding:20px 0px 20px 30px;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 10px;
    /* border-bottom: 3px solid #c7c4c4; */
    text-align: center;
    color: #334155;
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
}

.back-btn-container {
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.back-btn-container svg{
    width: 16px;
    height: 16px;
}
.all-routes{
    display: flex;
    align-items: center;
    gap:5px;
    text-transform: capitalize;
}

.route-link{
    display: flex;
    align-items: center;
}

.all-routes svg{
    width: 12px;
    height: 12px;
}

.all-routes a{
    color: #334155;
    font-size: 20px;
    border: 1px solid #E2E2E2;
    padding: 2px;
   
}

.video-content{
    display:inline-block;
     /* display:inline-block; */
     box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.11);
     background-color: #ffffff;
     border-radius: 15px;
     padding: 7px;
     height: 208px;
     width: 250px;
     min-width: 250px;
     position: relative;
}
.video-content a{
    display:inline-block;
}
.uploaded-video {
    /* border-radius: 5px; */
    /* box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.11);
    background-color: #ffffff; */
    /* padding: 7px; */
    /* width: 100%; */
    /* margin: 0px 5px; */
    /* height: 150px; */
    width: 100%;
    /* height: 113px; */
}
.uploaded-video a{
    width: 100%;
}
.video-name {
    /* font-family: OpenSansBold;
    font-size: 16px; */
    color: #333333;
    padding: 15px 5px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: 52px;
    overflow: hidden;
    margin-bottom: 0;
    cursor: pointer;
    color: #324669;
    /* margin-bottom: 8px; */

font-family: Lato;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}
.newsFeedAboutText{
    font-size: 16px;
}

.sub-time-detail {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* padding: 0px 8px; */
    gap: 9px;
    padding-top: 7px;
}
.speakername{
    color: #324669;

font-family: Lato;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 120%;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
min-height: 30px;
padding-left: 7px;
}
.video-duration {
    /* background-image: url(https://cdn2.onference.in/images/cutouts/duration.png); */
    background-repeat: no-repeat;
    background-position: left center;
    /* font-family: OpenSansRegular;
    font-size: 14px; */
    color: #333333;
    /* padding-left: 15px; */
    /* margin: 5px 0px 0px 0px; */
	/* width: 32%; */
    float: left;
    color: #758196;

font-family: Lato;
font-size: 12px;
font-style: normal;
font-weight: 400;
/* line-height: 120% */
align-items: center;
display: flex;
gap: 10px;
}
.video-view {
    /* opacity: 0.5; */
    /* font-family: OpenSansRegular;
    font-size: 14px; */
    color: rgba(0, 0, 0, 0.5);
    text-align: right;
    padding: 10px 5px 0px 0px;
	/* width: 34%; */
    float: left;

    color: #758196;

font-family: Lato;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}

.vid-price{
    /* font-family: OpenSansRegular;
    font-size: 14px; */
    color: #363232;
    text-align: start;
    padding: 0px 5px 0px 0px;
    /* width: 32%; */
    float: left;

    color: #758196;

font-family: Lato;
font-size: 12px;
font-style: normal;
font-weight: 700;
/* line-height: 120% */
display: flex;
    align-items: center;
    gap: 10px;

}

.video-up-btns{
    margin-top: 20px;
    display: flex;
    font-family: 'Lato';
    /* justify-content: space-between; */
    justify-content: end;
    gap: 7px;
    gap: 16px;
    
}
.video-up-btns svg{
    width: 20px;
    height: 20px;
}
.video-up-btns a{
    text-decoration: none;
    color: #758196;
}

.video-up-btns .edit-btn{
    /* border: 1px solid #CBD5E1;
    border-radius: 8px;
    width: max-content;
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 5px; */

    border: 1px solid #CBD5E1;
    border-radius: 8px;
    width: max-content;
    text-align: center;
    display: flex;
    align-items: center;
    /* float: left; */
    margin-bottom: 5px;
    position: absolute;
    left: 10px;
}
.video-up-btns .edit-btn a{
    padding: 3px 10px;
}
.status-ind{
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 2px;
    margin: 0px 5px 5px 0px;
    width: 150px;
    height: 32px;
    text-align: center;
    cursor: pointer;
}
.status-share{
    margin: 0px 5px 5px 0px;
    width: 150px;
    height: 32px;
    text-align: center;
}
.status-share-innerDiv{
    /* border: 1px solid #DD6A15; */
    cursor: pointer;
    color: #FF7A00;
    /* width: 80px; */
    float: right;
    border-radius: 5px;
    padding: 2px;
}
.editbtnwithIcon{
    display: flex;
}

.video-subTitle{
    display: inline-flex;
    height: 20px;
    padding: 2px 6px;
    width: max-content;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 11px;
background: #E2F5FF;

    color: #334155;
font-family: Lato;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: normal;

overflow: hidden;
    /* width: 100%; */
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* EJS partials CSS -end*/

/*#region index content loader css */

.index-content-loader {
    float: left;
    width: 100%;
    overflow: hidden;
    display: none;
}

.index-content-loader section {
    flex: 1 1 25%;
}

.sk-wave {
    width: 6em;
    height: 4em;
    margin: auto;
    text-align: center;
    font-size: 1em;
}

.sk-wave .sk-rect {
    background-color: #ff9900;
    height: 100%;
    width: .5em;
    display: inline-block;
    -webkit-animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
    animation: sk-wave-stretch-delay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect-1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}

.sk-wave .sk-rect-2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-wave .sk-rect-3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-wave .sk-rect-4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-wave .sk-rect-5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.hang-on {
    display: none;
    text-align: center;
    font-size: 14px;
    font-family: OpenSansRegular;
    color: #333333;
    margin-top: 5px;
}
.share-popup-close{
    position: absolute;
    top: -11px;
    right: -6px;
    background: #FF7A00;
    color: #ffff;
    border-radius: 50%;
    /* padding: 5px; */
    width: 25px;
    height: 25px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
@-webkit-keyframes sk-wave-stretch-delay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes sk-wave-stretch-delay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/*#endregion*/
/*#region media queries */
/* airticle card css start from here */
.airticle-container{
    width: 100%;
    display: flex;
 
  flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    overflow-x: auto;
    padding: 0px 7px 7px 7px;
    }
.newFeed-container{
    width: 100%;
    display: flex;
 
  flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    overflow-x: auto;
    padding: 0px 7px 7px 7px;
    }
    .airticle-container-card{
        width: 172px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #FFF;
    padding: 10px 7px 13px 7px;
    /* shadow 1 */
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    
    }
    .airticle-message{
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #334155;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 100%;  */
    /* text-transform: lowercase; */
    padding-bottom: 6px;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    line-height: 15px;
    }
    .view-article-file{
        color: var(--Orange, #FF7A00);
        width: 70px;
    cursor: pointer;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    }
    .view-article-file a{
        color: var(--Orange, #FF7A00);
    }
    .airticle-container::-webkit-scrollbar {
        width: 8px; 
        height: 5px; 
      }
    .airticle-container::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px; 
    }
    
    .airticle-container::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }
    /* airticle card css end from here */
/*Custom Layout by Saeed*/

.engt-button{
	text-transform: unset;
}


/* qna css start here */
.qna-message{
    display:none
}
.qna-side-menu{
    display:none
}
.qna-head {
    color: #324669;
   font-family: Lato;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   letter-spacing: -0.32px;
   height: 19.172px;
   flex-shrink: 0;
   margin-top: 20px;
   }
   .askquery-content{
       display: flex;
           justify-content: space-between;
           align-items: center;
           width: 100%;
           /* max-width: 370px; */
           padding: 10px 10px 10px 15px;
           background: #EBF9FF;
           cursor: pointer;
           font-size: 16px;
       font-family: 'Lato';
   
   }
   .askquery-start-here{
       display: flex;
       align-items: center;
       gap: 10px;
   }
   .parent-qna-card{
       display: flex;
       align-items: center;
       width: 100%;
       overflow: hidden;
       overflow-x: auto;
       gap: 10px;
       padding-right: 30px;
       scrollbar-width: thin;
       scrollbar-color: transparent transparent; 
       /* cursor: pointer; */
       padding-top: 15px;
       padding-bottom: 10px;
   }
   .qna-hld{
       position: relative;
       float: left;
       /* width: 35ch; */
       width: 100%;
       max-width: 303px;
       min-width: 303px;
       overflow: hidden;
       /* border-radius: 5px; */
       box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.11);
       /* background-color: #ffffff; */
       /* margin-bottom: 20px; */
       /* height: 150px; */
       /* height: 173px; */
       height: 190px;
      
       padding: 8px 6px 10px 10px;
       border-radius: 12px;
   background: var(--Grays-White, #FFF);
   /* shadow 1 */
   box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.12);
   }
   
   .qna-hld> a{
   /* position: absolute; */
   right: 0;
   left: 0;
   top: 0;
   bottom: 0;
   }
   .qna-question-outer{
       display: flex;
        width: 100%;
       font-family: 'Lato';
       font-size: 16px;
       font-weight: 600;
       color: #64748B;
       justify-content: space-between;
   }
   .qna-user-innertest{
    text-overflow: ellipsis;
    overflow: hidden;
    /* width: 300px; */
    white-space: nowrap;
}
   .qna-question-inner{
       /* text-overflow: ellipsis;
       overflow: hidden;

       white-space: nowrap; */

       font-size: 16px;
    font-weight: 700;
    color: #64748B;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 109%;
    padding-top: 5px;
    height: 41px;
   }
   .qna-ans{
       font-size: 14px;
       font-weight: 400;
       color: #64748B;
       display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   overflow: hidden;
   line-height: 134%;
       padding-top: 5px;
       height: 60px;
   
   }
   .qna-line{
       margin-top: 10px;
       border: 1px solid #E4E4E4;
       /* width: 100%;
       height: 2px;
       background-color:#E4E4E4;
       position: absolute;
       left: 0;
       top: 114px; */
   }
   .qna-bottom-tools{
       display: flex;
       justify-content: space-between;
       width: 100%;
       align-items: center;
       padding-top: 7px;
   }
   .qna-calender-parent{
       display: flex;
       align-items: center;
       gap: 4px;
       color:#334155;
   }
   .qna-calender-text{
       font-size: 14px;
       font-family: Lato;
       font-weight: 400;
       padding-top: 4px;
   }
   .qna-mess-del-edit-icon{
       display: flex;
       align-items: center;
       gap: 10px;
       color:#334155;
   }
   .qna-delete,.qna-edit,.qna-message{
       cursor: pointer;
   
   }
   .qna-reply-container{
       display: flex;
       justify-content: center;
       align-items: center;
       font-size: 12px;
       color: #0CA9EA;
       gap: 2px;
   
   }
   .kolreplybtn{
       font-weight: 500;
       font-family: Lato;
       cursor: pointer;
   }
   .isspeakerEditBtn{
    display: flex;
        gap: 5px;
        align-items: center;
        font-size: 14px;
        color: gray;
   }
   .qnaprofileCard{
    display: flex;
    gap: 5px;
    align-items: center;
   }
   .qnaProfileImg img{
    width: 30px;
    height: 30px;
    border-radius: 50%;

   }
   /* qna css end here */


@media only screen and (min-width: 1441px) {
    .header-container,
    .footer-container,
    .body-hld {
        width: 1366px;
    }
}

@media only screen and (max-width : 1321px) and (min-width: 1209px) {
    .onference-logo {
        padding-right: 0px;
    }

    .header-search {
        margin: 5px 0px 0px 40px;
    }

    .header-txt-search {
        width: 350px;
    }

    .header-menu {
        padding-left: 40px;
    }

        .header-menu ul li {
            padding: 13px 20px 25px 20px;
        }
}

@media only screen and (max-width: 1208px) and (min-width: 992px) {
    .onference-logo {
        padding-right: 0px;
    }

    .header-search {
        margin: 5px 0px 0px 20px;
    }

    .header-txt-search {
        width: 270px;
    }

    .header-menu {
        padding-left: 20px;
    }

        .header-menu ul li {
            padding: 13px 10px 25px 10px;
        }
        /* EJS partials CSS*/
        .video-subTitle,.video-duration,.vid-price{
            font-size: 14px;
        }
        /* EJS partials CSS -end*/
}

/*@media only screen and (max-width : 1024px) {
}*/

/*Custom Layout instaed 959px*/
@media (min-width: 992px) {
    .video-subTitle,.video-duration,.vid-price{
        font-size: 14px;
    }
    .video-up-btns{
        /* position: absolute; */
    display: flex;
    bottom: 12px;
    gap: 10px;
    }
}
@media only screen and (max-width : 991px) {
    /* .video-up-btns {
        margin-top: 46px;
       
    } */
    .video-up-btns .edit-btn{
        font-size: 13px;
    }
    .video-up-btns .edit-btn a{
        padding: 5px 9px;
    }
    .sub-time-detail{
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        /* padding: 0px 8px; */
        gap: 9px;
        padding-top: 10 px;
    }

    .newsFeedAboutText{
        font-size: 14px;
    }
    .video-name{
        font-size: 14px;
        padding: 1px 5px 0px 0px;
        min-height: 36px;
    }
    .uploaded-video {
        border-radius: 5px;
        /* box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.11);
        background-color: #ffffff; */
        padding: 7px;
        /* width: 100%; */
        /* margin: 0px 5px; */
        /* height: 160px; */
        height: 113px;
        width: 173px;
    }
    .video-content {
        height: 180px;    
    }
    .header-area {
        display: none;
    }

    .mobile-area {
        display: block;
    }

    .footer-area {
        display: none;
    }
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 959px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .reply-date{
        font-size: 12px;
    }
    .qna-calender-text{
        font-size: 12px;
        color: #676262;
    }
    .uploaded-video {
        width: 173px;
    }
    .video-row > .video-content {
    
        flex-basis: calc(50% - 10px);
         /* 50% width with some margin */
        margin-bottom: 10px;
    }
    .uploaded-video{
        width: 173px;
        height: 113px;
        border-radius: 9px;
    }
    .video-name{
        padding: 0px;
    }
    .sub-time-detail{
        /* padding: 0px; */
        gap:5px;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

    .footer-link-divider {
        padding: 4px 5px;
    }

    .btn-signup,
    .btn-login {
        padding: 6px 15px;
        font-size: 14px;
        width: 125px;
    }
    .cmeSubscriptionBtn,.upgradeSubscriptionBtn{
        float: left;
        width: 100%;
        text-align: center;
        padding: 6px 8px;
        margin-top: 15px;
        font-size: 14px;

    }

    .back-btn-container {
        font-size: 13px;
        gap: 5px;
    }
    .back-btn-container svg{
        width: 8px;
        height: 8px;
    }
    .all-routes{
        gap:8px;
    }
    .all-routes a{
        font-size: 13px;
    }
    .all-routes svg{
        width: 8px;
        height: 8px;
    }
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

    .footer-links {
        padding: 0px;
    }

        .footer-links li a {
            font-size: 12px;
        }

    .footer-link-divider {
        padding: 4px 4px 0px 4px;
    }

    .btn-signup,
    .btn-login {
        padding: 6px 15px;
        font-size: 14px;
        width: 125px;
    }
    .cmeSubscriptionBtn,.upgradeSubscriptionBtn{
        float: left;
        width: 100%;
        text-align: center;
        padding: 6px 8px;
        margin-top: 15px;
        font-size: 14px;

    }
}
/*#endregion */



/*#region Mobi app popup custom css */
.mobiapp-padd0
{
    padding: 0!important;
}

.md-contpadd{
    border-radius: 16px 16px 0px 0px!important;
}
.mobiapp-txttile {
    font-family: OpenSansBold;
    text-align: center;
    font-size: 14px;
    width: 100%;
    float: left;
    align-items: center;
    background-color: #33ccff;
    border-radius: 16px 16px 0px 0px;
    color: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0px 20px;
}

.mobiapp-txtdesp {
    font-family: OpenSansBold;
    font-size: 18px;
    color: #333333;
    margin: 0px;
    padding-bottom: 5px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    float: left;
    text-align: center;
    padding: 15px 10px;
    border-bottom: solid 1px #ddd;
    background-color: #fff;
}

.mobiapp-mainappndweb {
    padding: 15px 15px 0px 15px;
    width: 100%;
    float: left;
    background-color: #fff;
}

.mobiapp-action {
    align-items: center;
    display: flex;
    height: auto;
    position: relative;
    padding-bottom: 15px;
}

.mobiapp-icon img{
    vertical-align: middle;
}
.mobiapp-icon {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    float: left;
    width: 20%;
}

span.mobiapp-appTitle {
    height: 36px;
    line-height: 36px;
    vertical-align: middle;
    font-family: OpenSansBold;
    font-size: 14px;
    color: #333333;
    margin: 0px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
    width: 90%;
    float: left;
    text-align: center;
}

a.mobiapp-openApplnk {
    text-decoration: none;
    /* flex: 0 0 80px; */
    margin-left: auto;
    text-transform: capitalize;
    float: left;
    background-color: #ff9933;
    text-align: center;
    border-radius: 20px;
    padding: 5px;
    color: #fff;
    font-family: OpenSansBold;
    font-size: 14px;
    width: 45%;
}
.md-modal-mobiapp{
    position: fixed;
    bottom: -392px;
    left: 50%;
    width: 101% !important;
    top: initial;
    max-width: none;
    min-width: auto;
}

.mobiapp-bgcont{
    background-color: #fff !important;
    color: #ff9933 !important;
    border: solid 1px #ff9933;
}

/*#endregion */

textarea {
    font-family: OpenSansRegular;
    overflow: hidden;
  }

  .comment-text::-webkit-input-placeholder { /* Edge */
    color: rgba(142, 135, 135, 0.5);;
  }

textarea:focus::-webkit-input-placeholder 
{
    color: rgba(142, 135, 135, 0.5);;
}
textarea:focus::-moz-placeholder{
    color: rgba(142, 135, 135, 0.5);;
}
textarea:focus:-moz-placeholder{
    color: rgba(142, 135, 135, 0.5);;
}


/* subscription css start ⬇️*/
.btn-subscription {
    width: 100%;
    border-radius: 5px;
    padding: 7px;
    border: solid 1px #cccccc;
    background-color: #ff9933;
    font-family: OpenSansRegular;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    outline: none;
    /* margin: 0px; */
}
.btn-subscription:hover{
    background-color:#ff9933; 
    outline: none;
}
.subscription-div{
    color: #000;
    line-height: 30px;
    font-size: 15px;
    /* border: 1px solid green; */
    box-shadow: 0 3px 8px 0 rgba(108, 223, 90, 0.822);
  transition: 0.3s;
  border-radius: 5px;
  padding: 10px;
min-width: 220px;
text-wrap: nowrap;
    /* display: flex;
    align-items: center;
    gap: 10px; */
    /* padding: 20px 0px; */
  }
  .subscription-sub-parent-div{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 10px 10px 10px;
    gap: 10px;
    overflow: hidden;
    overflow-x: auto;
  }
  /* scrollbar */
  .subscription-sub-parent-div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  .subscription-sub-parent-div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  
  .subscription-sub-parent-div::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  }
  
 
  .subscription-head{
    color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 0px;
    border-bottom: 1px solid  orange;
  }
.subscription-check-icon{
    color: green;
    font-weight: lighter;
}

.subscribe-btn {
    /* padding: 7px 20px; */
    padding: 3px 9px !important;
    color: #333;
    border: 1px solid #666666;
    border-radius: 10px;
    width: 100% !important;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    font-family: OpenSansRegular;
    cursor: pointer;
}

    .subscribe-btn:hover {
        background-color: #ff9900;
        color: #fff;
        border: 1px solid #fff;
    }
    .md-content {
        background: #fff;
        width: 100%;
        float: left;
    }
    /* .subscription-modal{
        display: none;
    } */

    .enrollsubsDiscount{
        color: orange !important;
        cursor: pointer !important;
        text-align: center !important;
        text-decoration: underline !important;
        text-wrap: nowrap !important;
    float: right !important;
    line-height: 0px !important;
    font-size: 14px !important;
        /* justify-content: center;
        align-items: center;
        text-align: center;
        display: block; */
    }
    .enrollsubsDiscount:hover{
        color: #ff9933 !important;
    }
    @media (max-width: 1200px){
        .enrollsubsDiscount{
            float: left !important;
            line-height: 33px !important;
        }
    }

    .cmeSubscriptionBtn,.upgradeSubscriptionBtn{
        border-radius: 5px;
    border: solid 1px #cccccc;
    background-color: #ff9900;
    font-family: OpenSansBold;
    font-size: 16px;
    color: #ffffff;
    float: right;
    cursor: pointer;
    padding: .375rem 10px;
    width: 195px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

    }

  /* subscription css end ⬆️*/

  .new-modal{
    /* border: 1px solid black; */
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 6.91px 6.91px -3.46px rgba(0, 0, 0, 0.04);

    box-shadow: 0px 13.82px 17.28px -3.46px rgba(0, 0, 0, 0.1);

    /* width: 100%; */
    /* height: 100%; */
  }


  /* share popup modal css start ⬇️ */
  .share-buttons {
    display: flex;
    gap: 45%;
    justify-content: start;
    align-items: center;
    text-align: center;
}
  
  .share-buttons a{
      color:inherit;
  }
  
  .share-btn{
      cursor:pointer;
      
      
  }
  
  .share-header{
      display: flex;
      gap:1em;
  
      /* justify-content: space-around; */
      align-items: center;
  }
  
  .share-popup{
      display: flex;
      text-align: left;
  }
  
  .share-popup img{
      max-width: 100%;
      max-height: 100%;
  }
  .share-popup-icon{
      display: flex;
      justify-content: center;
      align-items: start;
      /* margin-top: 5px; */
      padding: 2px;
      width: 25%;
  }
  
  .share-header p{
      color: #224AC0;
      margin: 0px 5px 5px 5px;
  }

/* share popup modal css end ⬆️ */


@media only screen and (max-width : 480px) {

    .footer-link-divider {
        padding: 4px 5px;
    }

    .btn-signup,
    .btn-login {
        padding: 6px 15px;
        font-size: 14px;
        width: 125px;
    }
    .cmeSubscriptionBtn,.upgradeSubscriptionBtn{
        float: left;
        width: 100%;
        text-align: center;
        padding: 6px 8px;
        margin-top: 15px;
        font-size: 14px;

    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

    .footer-links {
        padding: 0px;
    }

        .footer-links li a {
            font-size: 12px;
        }

    .footer-link-divider {
        padding: 4px 4px 0px 4px;
    }

    .btn-signup,
    .btn-login {
        padding: 6px 15px;
        font-size: 14px;
        width: 125px;
    }
    .cmeSubscriptionBtn,.upgradeSubscriptionBtn{
        float: left;
        width: 100%;
        text-align: center;
        padding: 6px 8px;
        margin-top: 15px;
        font-size: 14px;

    }
}
.newLogoParentCss{
    display:flex !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
}
.newLogoParentImg{
    /* width: 30vw !important; */
    height: 40px;
        width: auto !important;
}
@media (min-width: 700px) and (max-width: 991px) {
    .newLogoParentImg{
        /* width: 15vw !important; */
        height: 40px;
        width: auto !important;
    }
}
@media (min-width: 991px) and (max-width: 1370px) {
    .newLogoParentImg{
        width: 14vw !important;
        padding-top: 10px;
    }
    .onference-logo{
        padding-right: unset;
    }
}
@media (min-width: 991px) {
    .newLogoParentImg{
        /* width: 14vw !important; */
        height: 50px;
        width: auto !important;
    }
}
@media (max-width: 425px) {
    .newLogoParentImg{
        /* width: 14vw !important; */
        height: 35px;
        width: auto !important;
    }
}
@media (max-width: 320px) {
    .newLogoParentImg{
        /* width: 14vw !important; */
        height: 30px;
        width: auto !important;
    }
}
@media (min-width: 426px) and (max-width: 699px) {
    .newLogoParentImg{
        /* width: 19vw !important; */
        height: 40px;
        width: auto !important;
    }
}

/* css for noti,search and back btn css animation */
.mobile-outer-icons{
    /* display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    padding-right: 14px; */

    display: flex;
    flex-direction: row-reverse;
    text-align: center;
    /* justify-content: center; */
    gap: 20px;
    align-items: self-end;
}
/* .mobile-backBtn-tex-important {
    padding-top: 0px !important;
}

.mobile-backBtn-img-important {
    margin-top: 5px !important;
} */
.mobile-text{
    font-size: 12px;
    color: #334155;
}
#mobile-img-fluid{
    max-width: 20px ;
    width: 20px;
    height: 20px ;
}
.mobile-icon-center{
    /* display: inline-block;
    width: 40px; */
    /* padding-left: 12px; */
   
    cursor: pointer;
    flex: 1 0 0;
    max-width: 40px;
    line-height: 14px;
}
.mobile-noti{
    display: inline-block;
    animation: mobile-noti 1s ease forwards;
    padding-left: 7px;
}
.mobile-anim-backBtn {
    display: inline-block;
    width: 40px;
    /* padding-left: 12px; */
    cursor: pointer;
    animation: moveFromLeft 0.8s ease-in forwards, scaleUpDown 0.8s 2s ease infinite alternate;
    animation-name: moveFromLeft, scaleUpDown;
    animation-duration: 0.8s, 0.8s;
    animation-timing-function: ease-in, ease;
    animation-delay: 0s, 2s; 
    animation-fill-mode: forwards, none;
    animation-iteration-count: 1, 4; 

}
.mobile-backBtn-img{
    width: 26px;
    position: absolute;
    margin-top: 7px;
}

.backCommonText{
    display: inline-block;
    cursor: pointer;
    padding-top: 26px;
    animation: moveTextLeft 0.8s ease-in forwards;
}
.mobile-searchBtn {
    display: inline-block;
    animation: mobileSearchBtn 0.4s ease forwards;
}
@keyframes moveTextLeft {
    /* 0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(-0%);
        opacity: 1;
    } */

    0% {
        transform: translateX(100%) ; 
        opacity: 0;
    }
    50% {
        opacity: 1; 
    }
    100% {
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes mobileSearchBtn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@keyframes moveFromLeft {
    /* 0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(-0%);
        opacity: 1;
    } */
    0% {
        transform: translateX(100%) ; 
        opacity: 0;
    }
    50% {
        opacity: 1; 
    }
    100% {
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes scaleUpDown {
    
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(2.3);
    }
}

@keyframes mobile-noti {
    
    0% {
      transform: translateX(30px);
   
    }
    100% {
      
      transform: translateX(-5px);

    }
  }

  @media only screen and (max-width : 513px) {
    /* .mobile-backBtn-img{
    
        margin-top: 1px;
    }
    
    .backCommonText{ 
        padding-top: 20px;
       
    } */
  }

  .newlogoutcard{
    /* display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start; */
    /* top: 72px;
    right: -20px; */

    border-radius: 8px;
border: 1px solid #EFEEF1;

background: #FFF;

box-shadow: 0px 8px 22.3px 0px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(40px);
   
  }
  .newlogoutcard a{
    /* border-bottom: 1px solid #d1d1d1; */
    text-transform: capitalize !important;
    /* opacity: 0.1; */
    padding-left: 5px;
    font-size: 14px !important;
  }
  .newlogoutcard a:nth-child(1) {
    border-bottom: 2px solid #d1d1d1; 
    padding-bottom: 10px;
}
.newlogoutcard a:nth-child(2):hover {
    color: #ffcc00;
}
.newlogoutcard a:nth-child(2) {
    border-bottom: 2px solid #d1d1d1;
    padding-bottom: 15px;
}

/* css for extend btn start */
.cmeSubscriptionBtn,.upgradeSubscriptionBtn a{
    color: #fff;
}
.cmeSubscriptionBtn,.upgradeSubscriptionBtn a:hover{
    color: #ffff;
    text-decoration: none;
}
/* css for extend btn end */