#posts::after{
    display: block;
    content: " ";
    clear: both;
}

.lecture{
    width: calc(100% - 305px);
}
.lectures{
    width: 280px;
}
.lectures .h2{
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
}


.packageSelect {
    width: 100%;
    box-shadow: var(--boxShadow);
    border-radius: var(--radius);
    
}
.packageSelect li:not(.active) {
    border: 1px solid rgb(0 0 0 / 7%);
    border-top: 0;
}
.packageSelect li{
    display: inline-block;
    width: 50%;
    padding: 12px 0;
    text-align: center;
    font-size: 1.3rem;
    background-color: #444;
    color: #fff;
    cursor: pointer;
}
.packageSelect li:first-child{
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-right: 0 !important;
}
.packageSelect li:last-child{
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    border-left: 0 !important;
}
.packageSelect li:first-child:last-child{
    width: 100%;
    border: 0 !important;
}
.packageSelect li.active{
    color: var(--primary);
    background-color: #fff;
    font-weight: 700;
    border: 0 !important;
}
.packageSelect li:not(.active) span{
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}
.packageSelect li.active span::before{    
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-inline-end: 7px;
    background: url(../img/check.png) center no-repeat;
    background-size: 100% 100%;
    content: "";
    position: relative;
    top: 5px;
}

.miniPacDesc{
    padding: 20px;
    font-size: 1.15rem;
}
.miniPacDesc > div{
    border: 1px solid rgb(0 0 0 / 6%);
    padding: 20px;
    line-height: 30px;
    background-color: #f8f9fe;
    border-radius: 2px;
}



::-webkit-scrollbar{
    width: 6px;
}
::-webkit-scrollbar-track {

    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-image: var(--gradeBg);
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.lecturesTable h2{
    color: var(--primary);
    padding: 15px;
}
.indexTitle{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 35px 15px 10px;
    text-shadow: none;
    color: var(--secondary);
}

.instructorAvatar{
    --width: 70px;
    --av-radius: var(--radius);
}

.post{
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 25px;
    background-color: var(--postBg);    
    border-radius: var(--radius);
    box-shadow: var(--boxShadow);
}

/** Composing/Editing Inline **/
.post > .alert{    
    margin: 0;
    font-size: 17px;   
}
.post.composing{
    border-color: var(--primary);
}
/*.post .composerMain{
    margin-bottom: 0;
    padding-bottom: 15px;
    border-radius: 0;
}*/
.post .composer:empty{
    display: none;
}

/* Post Preview */
.fullpostPreview{
    /*background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;*/
}
.fullpostPreview img{
    width: 100%;
    max-height: 350px;
}

.post__body img{
    display: block;
    max-width: min(100%, 600px);
    /* margin: auto; */
}

/** Post/Comment Header (avatar,author,wall,date,drpmnu) **/
.postHeader, .comHeader{
    position: relative;
}

.post .author,
.post .wall{
    display: inline-block;
    color: var(--light);
    text-shadow: 1px 1px 1px rgba(0,0,0, .5);
    font-family: var(--font-family);
    font-size: var(--h5);
    font-weight: 700;
    margin-left: 15px;
}
.post .wall::before{
    float: right; /*remove*/
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    content: "\f0d9"; /*f104*/    
    margin-left: 8px;
    color: var(--primary);
    text-shadow: none;
}
.post .author:hover,
.post .wall:hover{
    color: #fff;
}
.post .wall:hover::before{
    color: var(--secondary);
}
.post .date{
    display: inline-block;
    opacity: .7;
    font-size: 12px;
    border-bottom: 1px solid transparent;
    color: #fff;
    float: left;
}
.post a.date:hover{
    opacity: 1;
    border-bottom-color: var(--primary);
    text-shadow: 1px 1px 1px rgba(0,0,0, .5);
}

/* Post Header */
.postHeader{
    padding: 25px 15px 10px;
}

.wall{
    font-size: 26px;
    margin-bottom: 33px;
}
.wall a{
    color: var(--primary);
    background: linear-gradient(270deg, #3315b3, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.001);
}


.fullPost .wall::before{
    color: var(--primary);
}
.postHeader .avatar{
    position: absolute;
    right: 15px;
    top: 10px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: 3px solid rgba(0, 0, 0, .5);
    z-index: 2;
}
@media only screen and (max-width: 450px) {
    .post .author{
        display: block;
    }
}


/* Comment Header */
.comment .author{
    float: right;
    color: var(--secondary);
    font-weight: 600;
    font-size: .9rem;
}
.comment .date{
    float: left;
    margin-left: 25px;
    margin-right: 15px;    
}

/** Post/Comment Body **/
.post .body{
    position: relative;
}
.post__body{
    padding: 0 15px 15px 15px;
}

/* Related Posts */
.post .centerLine span,
.post .centerLine i{
    background-color: var(--primary);
    color: var(--light);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.post .carouselPosts{
    padding: 0;
}


/** Footer **/
.postFooter{
    position: relative;
    width: 100%;
    padding: 8px 10px;
    background-color: var(--postFooterBg);
    color: var(--txtColor);
    font-family: var(--font-family);
    font-size: var(--h4);
    border-top: 1px solid rgba(0,0,0, .1);

    height: 40px;
}
.postFooter::after{
    display: block;
    content: " ";
    clear: both;
}
.fullPost .postFooter{
    background-color: var(--darkLight);
    color: #fff;
}
.fullPost .postFooter a{
    color: rgba(255,255,255, .9);
}

.postFooter a{
    line-height: 22px;
    color: var(--txtColor);
}
.postFooter a:hover{
    color: var(--primary);
}

/* comments counter */
.commentsCount{    
    float: left;
    font-weight: bold;
    margin-right: 25px;
    
    padding-right: 32px;

    height: 22px;
    
    background: url(../img/chat2.png) center right no-repeat;
    background-size: 22px 22px;
}

.comFooter{
    position: relative;
    padding-top: 5px;
    margin-right: 50px;

    font-family: var(--font-family);
    font-size: var(--h4);
}
.comFooter::after{
    display: block;
    content: " ";
    clear: both;
}

/** Post/Comment Text **/
.post .price{
    color: var(--green);
    font-size: 13px;
    margin-top: -5px;
}
.post .location{
    color: var(--blue);
    font-size: 13px;
}

.post h1, .post h2{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}
.post h1 a, .post h2 a{
    color: var(--primary);
}
.fullPost .post__body h2{
    margin-top: 25px;
}
.post h3{
    margin-top: 15px;
    font-size:18px; /*22px*/
    line-height: 26px; /*26px*/ 
}

.post hr{
    margin: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--boxShadow), .1);
}

.post code{
    direction: ltr !important; /*keep*/
    text-align: left; /*keep*/
    margin: 15px 0;
    position: relative;
    display: block;
    font-family: monospace;
    color: #fff;
    background-color: var(--darkLight);
    padding: 20px 15px 10px 15px !important;
    border: 1px solid rgba(255,255,255, .1);
    border-radius: var(--radius);
}
.comment code,
.comment .downloads{
    background-color: var(--dark);     
}


.post code::before,
.post .downloads::before{
    position: absolute;
    top: -13px;
    left: 25px;
    padding: 2px 8px;
    content: "\003C  Code \003E";
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0, .5);
    background-color: var(--primary);

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    border: 1px solid rgba(0,0,0, .1);

    font-family: monospace;
    font-weight: bold;
}
.post code::selection{background-color:#fff; color:var(--dark);text-shadow: none;}

/*.comment code{
    background-color: #fff;
}*/

.post .hashtag::before{
    display: inline-block;
    content: '#';
}
.post .hashtag{
    display: inline-block;
    color: var(--primary);
    border-bottom: 1px solid transparent;
    white-space: pre-wrap;
}
.post .hashtag:hover{
    border-color: var(--secondary);
}

.post .highlight{
    display: inline;
    background-color: var(--secondary);
}

.post iframe{
    display: block; /* to remove space under it */
    width: 100%;
    height: 350px;
}
.fullPost iframe{
    height: 550px;
}
@media all and (max-width: 1000px) {
    .fullPost iframe{
        height: 450px;
    }
}
@media all and (max-width: 850px) {
    .fullPost iframe{
        height: 400px;
    }
}
@media all and (max-width: 500px) {
    .fullPost iframe{
        height: 350px;
    }
}
@media all and (max-width: 450px) {
    .fullPost iframe{
        height: 300px;
    }
}
@media all and (max-width: 400px) {
    .fullPost iframe{
        height: 250px;
    }
}
@media all and (max-width: 350px) {
    .fullPost iframe{
        height: 200px;
    }
}

.post .emoji,
.comment .emoji{
    width: 22px;
    height: 22px;
}

.post .lnk{
    font-weight: bold;
    text-decoration: underline;
}
.post .lnk::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    display: inline-block;    
    margin-inline-end: 7px;
    color: var(--primary);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-display: swap;
    text-rendering: auto;
    line-height: 1;
    content: "\f08e";
}

/* Read More */
.readMore{
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin: 0 10px;
    border-bottom: 1px solid var(--primary);
    margin-right: 8px;
}
.readMore:hover{
    border-bottom-color: var(--secondary);
}


/* Social Share Buttons */
.socialShare{
    float: left;
    width: 36px;
    position: sticky;
    top: 65px;
    margin-left: -15px;    
    z-index: 100;
}
.socialShare::before {
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-bottom-color: #324d84;
	border-top: 0;
	border-right: 0;
	margin-left: 0px;
	margin-top: -5px;
}
.socialShare::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #0d6194;
    border-bottom: 0;
    border-right: 0;
    margin-left: 0px;
    margin-bottom: -5px;
}
.socialShare .btn{
    text-align: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 0px;
    font-size: 20px;
    border: 0;
    padding-top: 3px;
    box-shadow: inset 0 0 3px 1px rgba(0,0,0, .25);
}
.socialShare .btn:first-child{
    border-top-right-radius: 8px;
}
.socialShare .btn:last-child{
    border-bottom-right-radius: 8px;
}
.socialShare .btn i{
    margin: 0;
}
.socialShare .btn:hover{
    box-shadow: none;
}

/** Comments **/
.comments:empty{
    display: none;
}

.comment span.rating {
    position: absolute;
    top: 10px;
    left: 10px;
}

.guestAddCom{
    font-size: var(--h3);
    font-weight: 600;
    margin: 25px 10px 0;
}
.guestAddCom i{
    margin-left: 8px;
    color: var(--primary);
}

.closedPost{
    padding: 8px 0;
    text-align: center;
    background-color: var(--gray);
}

.post .signIn{
    /*padding: 15px;
    text-align: center;*/
}
.post .signIn a{
    display: block;
    font-family: var(--font-family);
    font-size: var(--h3);
    text-align: center;
    padding: 10px;
    color: #fff;
    background-color: var(--primary);
    border-radius: var(--radius2);
}
.post .signIn a::before{
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    font-weight: bold;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    content: "\f2bd";
    margin-left: 6px;
}
/*.post .signIn:hover{
    background-color: var(--dark);
}*/

.comment{
    position: relative;
    margin-bottom: 25px;
}

/* Comment Body */
.com__body{
    display: inline-block;
    width: auto;
    max-width: 600px;
    margin-right: 50px;
    
    /* color: #fff; */
    background-color: #eec; /*#4c6cb5*/
    border-radius: var(--radius);    
    width: calc(100% - 50px);
    padding: 10px 15px;
    word-break: break-word;
    border: 1px solid rgb(0 0 0 / 3%);
}
.replies .com__body{
    max-width: 560px;
}

/* waiting approval */
.com-waiting{
    border: 3px solid var(--warning);
} 
.com__body .date{
    float: left;  
    opacity: .7;
    margin-left: 0;
    font-size: 0.8rem;
}


.com__body .txt::before{
    display: block;
    content: " ";
    clear: both;
}
.com__body .txt{
    padding-top: 5px;
}

@media only screen and (min-width: 550px) and (max-width: 650px) {
    .comment .body{
        min-width: 0;        
    }
}
@media only screen and (max-width: 440px) {
    .comment .body{
        min-width: 0;        
    }
}

.comment .avatar{
    position: absolute;
    right: 0;
    top: 0;
}
.comment .av-0{
    cursor: auto;
}

.comments .reactions{
    float: none;
    position: absolute;
    right: 150px;
}

.comments .sortComments{
    display: block;
    font-family: var(--font-family);
    font-size: var(--h4);
    padding: 10px;
}
.comments .sortComments i{
    margin-left: 6px;
}
.comments .sortComments a{
    display: inline-block;
    margin-right: 15px;
}
.comments .sortComments a:hover, .comments .sortComments .d{
    color: var(--primary);
}
.comments .sortComments a:hover i, .comments .sortComments .d i{
    color: var(--secondary);
}

.comments .moreComments{
    display: block;
    font-family: var(--font-family);
    font-size: var(--h4);
    font-weight: bold;
    padding-right: 10px;
    padding-bottom: 10px;

}
.comments .sortComments .loading, .comments .moreComments .loading{
    display: none;
    color: var(--secondary);
}
.comments .sortComments.loading .loading, .comments .moreComments.loading .loading{
    display: inline-block;
}

.comments .addReply{
    display: inline-block;
    position: relative;
    right: 10px;
    cursor: pointer;
    font-weight: normal; /*bold*/
}
@media only screen and (min-width: 550px) and (max-width: 650px) {
    .comments .reactions {
        position: relative;
        right: 15px;
    }
    .comments .addReply{
        right: auto;
        float: left;
    }
}
@media only screen and (max-width: 430px) {
    .comments .reactions {
        position: relative;
        right: 15px;
    }
    .comments .addReply{
        right: auto;
        float: left;
    }
}

/* Sub-Comments (Replies) Container */
.comment .replies{
    padding-right: 40px;
}


/* Author Info (Post User Info) */
.instructorArea{
    position: relative;
    background-color: var(--darkLight);
    padding: 15px;
    margin: 25px 0;
    
    border-radius: var(--radius);
    box-shadow: var(--boxShadow);
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0, .75);
}
.userInfo{
    padding-right: 70px;
    min-height: 60px;
}
.userInfo .avatar{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
}
.userInfo h4{
    display: block;
    font-family: var(--font-family);
    font-size: var(--h4);
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0,0,0, .75);
}
.userInfo h4 a{
    color: #fff;
}
.userInfo .mySocial{
    position: absolute;
    top: 15px;
    left: 10px;
}

.instructorArea hr{
    margin: 25px 0;
    border-top: 1px solid rgba(0,0,0, .2);
    border-bottom: 1px solid rgba(255,255,255, .2);
}
.instructorArea .h3{
    text-shadow: 0 0 2px rgba(0,0,0, .75);
    margin-bottom: 20px;
    color: #fff;
}
.instructorArea .h3 i{
    color: #fff;
}

/** Composer **/
.comments .composerMain{
    max-width: 700px;
    box-shadow: none;
    margin-bottom: 0;
}
.vinputs{
    float: right;
    width: calc(100% - 260px);
}
.vinputs input{
    width: 48% !important;
    margin-left: 1% !important;
}

@media all and (max-width: 880px){
    .vinputs{
        float: none;
        width: 100%;

        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        
        align-items:flex-start;
        align-content:flex-start;
    }
    .vinputs input{
        margin-left: 0 !important;
    }
}
@media all and (max-width: 440px){
    .vinputs input{
        width: 100% !important;
    }
}

@media (width < 600px){
    .prevNextPosts .width50{
        width: 100% !important;
    }
    .prevPost + .nextPost{
        margin-top: 20px;
    }
}