html, body, div, span, applet, object, iframe,
h3,h2,h4,h5, h6,blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike,sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, button, input, textarea {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-weight: inherit;
   font-style: inherit;
   font-size: 100%;
   font-family: 'Mukta Malar', 'Arial', sans-serif;
   vertical-align: baseline;
   text-decoration:none;
   color:#121212;
   text-align: center;
   box-sizing:border-box;
}

body {
    -webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
    from { opacity: 1; }
    to   { opacity: 1; }
}

body{
	margin: 0;
	min-width: 360px;
	padding: 0;
	background:#fff;
	overflow-x:hidden;
}

:root{
	--main-color:#d5ac48;
	--main-color-dark:#bb9840;
}

.wrap{
	width:100%;
	max-width:980px;
	padding:0 15px;
	box-sizing:border-box;
	margin:0 auto;
}

.clear{
	clear:both;
}

hr{
	border:none;
	border-top:1px dashed #ccc;
	margin:15px auto;
	width:100%;
}

ul, li{
	margin:0;
	padding:0;
}

a, font{
	color: inherit;
	font-size: inherit;
}

button, a{
	outline:none;
}

em{
	font-style: italic;
}

sup{
	font-size: 0.8em;
    vertical-align: super;
}

sub{
	font-size: 0.8em;
    vertical-align: sub;
}

.errorstatement{
	margin:20px 0;
	text-align:left;
}

.errorstatement font{
	display:inline-block;
	vertical-align:middle;
	font-size:20px;
	font-weight:300;
	color:#f00;
	margin:10px 0;
	text-align:left;
}

.errorstatement button{
	display:inline-block;
	vertical-align:middle;
	margin:10px;
}

.errfield{
	border:1px solid #cc3333 !important;
}

.errnotify{
	font-size:12px;
	color:#cc3333;
	margin:10px 0;
	text-align:left;
}

.errnotify font{
	font-size:inherit;
}

.btn1{
	background:var(--main-color);
	color:#fff;
	padding:10px 25px;
	cursor:pointer;
	font-size:14px;
	font-weight:bold;
	transition:0.3s all;
	height: 40px;
}

.btn1:hover{
	background:var(--main-color-dark);
}

.btn2{
	background:#121212;
	color:#fff;
	padding:10px 25px;
	cursor:pointer;
	font-size:14px;
	font-weight:bold;
	transition:0.3s all;
	height: 40px;
}

.btn2:hover{
	background:#444;
}

::placeholder{
	font-size:12px;
}

#loadinggif{
	display:none;
	position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -60px; /* half width of the spinner gif */
    margin-top: -60px; /* half height of the spinner gif */
    text-align:center;
    z-index:123456;
    overflow: hidden;
    width: 120px; /* width of the spinner gif */
    height: 123px; /*hight of the spinner gif +2px to fix IE8 issue */
}

.iframe-scaler{
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
	position:relative;
}

.iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

.ui-datepicker{
	z-index: 20000 !important;	
}

.ui-datepicker,
.ui-datepicker *{
	font-size: 16px !important;
}

.ui-datepicker td {
    padding: 6px !important;
}

.ui-widget-content .ui-state-active{
	background: var(--main-color) !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight{
	color: #fff !important;
}

.ui-datepicker select{
	height: 28px !important; 
}

.ui-autocomplete,
.ui-autocomplete li div{
	text-align: left;
	font-size: 14px;
}

.ui-widget-content .ui-state-active{
	border: none;
	background: #555;
}

.owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    top: 25%;
}

.owl-theme .owl-nav [class*="owl-"]{
	font-size:20px !important;
	background:var(--main-color) !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background:var(--main-color-dark) !important;
}

.owl-theme .owl-nav .owl-prev{
	position:absolute;
	left:-2%;
}

.owl-theme .owl-nav .owl-next{
	position:absolute;
	right:-2%;
}

#webpushr-subscription-button span{
	color: #fff;
}

/********************FormDiv CSS******************************/

input[type="text"],
input[type="number"],
input[type="password"],
input[type="file"],
input[type="search"],
input[type="date"],
textarea{
	color:#121212;
	border:1px solid #ccc;
	font-size:16px;
	padding:0px 5px;
	height:40px;
	display:inline-block;
	outline:none;
	background:#fff;
	text-align:left;
}

input[type="file"]{
	background-color: transparent;
	border:none;
}

textarea{
	height:100px;
	resize:none;
}

select{
	color:#121212;
	border:1px solid #ccc;
	font-size:16px;
	padding:0px 5px;
	height:40px;
	display:inline-block;
	outline:none;
	background:#fff;
	text-align:left;
}

.formDiv h2{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	color: var(--main-color);
}

.formField{
	text-align:left;
	margin:25px 0;
}

.formField.btn{
	margin-bottom: 0;
}

.formField .formLabel{
	display:inline-table;
	vertical-align:middle;
	width:30%;
	max-width:300px;
	margin-right:2%;
	text-align:left;
	font-weight:600;
	font-size:14px;
}

.formField .formLabel font{
	font-size:12px;
	font-weight:400;
	font-style:italic;
	color:#999;
}

.formField .formData{
	display:inline-table;
	vertical-align:middle;
	width:67%;
	text-align:left;
}

.formField .formData font{
	font-size:12px;
	font-weight:400;
}

.formField .formData input[type="text"],
.formField .formData input[type="password"],
.formField .formData input[type="number"],
.formField .formData select,
.formField .formData textarea{
	width:100%;
	box-sizing: border-box;
	vertical-align: middle;
}

.formField button {
    margin-right: 15px;
}


.fileinputwrap,
.fileinputwrap2{
	display:inline-block;
	vertical-align:top;
	background-image:url(../images/defaultdp.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
    position: relative;
    width: 100px;
    height: 100px;
	box-sizing:border-box;
	border: 1px solid #ced4da;
}

.fileinputwrap2{
	width: 50px;
    height: 50px;
}

.fileinputwrap input[type="file"]{
	width: 100px;
    height: 100px;
    opacity: 0;
    filter: alpha(opacity=0); /* IE 5-7 */
}

.fileinputwrap2 input[type="file"]{
	width: 50px;
    height: 50px;
    opacity: 0;
    filter: alpha(opacity=0); /* IE 5-7 */
}

.fileinputwrap3{
	display:inline-block;
	vertical-align:top;
	background-image:url(../images/default_ft_image.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
    position: relative;
    width: 160px;
    height: 90px;
	box-sizing:border-box;
	border: 1px solid #ced4da;
}

.fileinputwrap3 input[type="file"]{
	width: 160px;
    height: 90px;
    opacity: 0;
    filter: alpha(opacity=0); /* IE 5-7 */
}

.removeimg{
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	border: 1px solid #ddd;
	padding: 3px;
	border-radius: 30px;
	width: 15px;
	height: 15px;
	cursor: pointer;
}

/************************Login Popup********************/

.loginpopuptrigger{
	cursor: pointer;
}

.login-popup {
	position: relative;
	padding: 10px;
	width: auto;
	max-width: 700px;
	margin: 20px auto;
	text-align:center;
	font-size:0;
	background:var(--main-color);
	border-radius:5px;
	border: 3px solid #fff;
}

.login-popup input[type="text"],
.login-popup input[type="email"],
.login-popup input[type="password"]{
	
}

.login-popup h3{
	font-size:24px;
	font-weight:300;
	color:#fff;
	text-align:center;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.login-popup h5{
	font-size:12px;
	margin:10px 0;
	color:#fff;
	text-align:center;
}

#loginform,
#createaccform{
	padding:20px 2%;
	text-align:center;	
	display:inline-block;
	vertical-align:top;
	box-sizing:border-box;
	font-size:14px;
	width:50%;
}

#createaccform{
	border-left:2px solid #fff;
}

.login-popup button{
	margin:10px 0;
}

.login-popup .or{
	display:none;
}

#logindiv,
#forgotdiv{
	overflow:hidden;
	margin-bottom:10px;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#forgotdiv{
	height:0;
	opacity:0;
}

#loginform h3.off{
	font-size:12px;
	cursor:pointer;
	font-weight:400;
	text-decoration:underline;
}

.login-popup input[type="text"],
.login-popup input[type="email"],
.login-popup input[type="password"]{
	font-size:18px;
	width:90%;
	max-width:300px;
	margin:10px 0;
	border:1px solid #121212;
	padding:5px;
	text-align:center;
	color: #121212;
}

.or {
    position: relative;
    font-size: 20px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.or:before, .or:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: #fff;
}
.or:before {
    margin-left: -50%;
    text-align: right;
}

/************************Header********************/

#header{
	width:100%;
	height:120px;
	z-index:9999;
	min-width: 360px;
	transition: 0.5s all;
}

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	height:90px !important;
	box-shadow: 0 0 4px #aaa;
	background: #fff;
}

#header #headerLogo{
	height: 70px;
	margin: 5px 0;
	display: inline-block;
	vertical-align: middle;
	transition: 0.5s all;
}

#header.sticky #headerLogo{
	height: 40px;
}

#header .leftdiv{
	float: left;
	width: 150px;
	text-align: left;
	font-size: 0;
}

#header .rightdiv{
	float: right;
	width: 150px;
	text-align: right;
	font-size: 0;
}

#header .lefticons{
	cursor: pointer;
	height: 50px;
	width: 35px;
	color: #121212;
	font-size: 20px;
	line-height: 55px;
	margin: 5px 0;
	display: inline-block;
	vertical-align: middle;
}

#header .righticons{
	cursor: pointer;
	height: 50px;
	width: 30px;
	color: #121212;
	font-size: 20px;
	line-height: 55px;
	margin: 5px 0 5px 5px;
	display: inline-block;
	vertical-align: middle;
}

.righticons.loggedin{
	color: var(--main-color) !important;
}

#header .menutrigger{
	display:none;
	cursor: pointer;
	float: left;
	height: 50px;
	width: 25px;
	color: #121212;
	font-size: 25px;
	line-height: 55px;
	margin: 5px 0;
}

#navigation{
	background: var(--main-color);
	height:40px;
	margin-top: 0;
}

.nav li{
	list-style:none;
}

.nav li {
	display: inline-block;
	padding: 0 15px;
    text-align:center;
}

.nav li a {
	text-decoration: none;
    color: #aaa;
	margin:0;
	cursor:pointer;
	font-size:16px;
	transition:.4s all;
	text-align: inherit;
	display: block;
	line-height: 40px;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

.nav li a:hover {
    color: #f5f5f5;
}

.nav li a.active {
    background: #444;
	color: #f5f5f5;
}

.nav li a.secondlevel{
	padding-left:43px;
}

.sb-slidebar .nav {
	margin-bottom:70px;
}

.sb-slidebar .nav li {
	display: block;
	text-align:left;
}

.sb-slidebar .searchdiv{
	margin: 50px 10px;
}

.sb-slidebar .searchdiv .searchinput{
	width:90%;
	height:40px;
	border:none;
	background:#fff;
	margin: 10px auto;
	padding:0 5px;
	font-size:14px;
}

.sb-slidebar .tagcloud,
.postdetails .tagcloud{
	margin: 30px 0;
}

.sb-slidebar .tagcloud span,
.postdetails .tagcloud span{
	font-size: 12px;
	color: #888;
	border: 1px solid #555;
	padding: 3px;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 5px;
	transition: all 0.3s;
}

.sb-slidebar .tagcloud span:hover,
.postdetails .tagcloud span:hover{
	border: 1px solid #eee;
	color: #fff;
}

.postdetails .tagcloud{
	text-align: center;
}

.postdetails .tagcloud span{
	color: #666;
	border: 1px solid #999;
}

.postdetails .tagcloud span:hover{
	color: #121212;
	border: 1px solid #666;
}

/************************Advertisement********************/

.advertisement1{
	background: #f5f5f5;
	font-size: 0;
	display: block;
}

.advertisement1 img{
	width: 960px;
	max-width: 100%;
}

#appealPopup,
#appealPopup2{
	padding: 5px;
	font-size: 0;
}

#appealPopup img,
#appealPopup2 img{
	width: 100%;
}


/************************Footer********************/

#footer-top{
	width:100%;
	background:#121212 url(../images/bg-dark.jpg) no-repeat center;
	background-size: cover;
	font-size: 0;
}

#footer-top .column{
	display: inline-block;
	vertical-align: top;
	margin-right: 2%;
	width: 32%;
	padding: 15px 10px;
}

#footer-top .column:last-child{
	margin-right: 0;
}

#footer-top #footerLogo{
	max-width: 120px;
}

#footer-top .socialicons{
	font-size: 20px;
	background: #666;
	border-radius:50px;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	line-height: 45px;
	color: #fff;
	margin: 5px;
	cursor: pointer;
}

#footer-top .emailaddress{
	font-size: 14px;
	color: #aaa;
}

#footer-top .nav li {
	display: block;
	text-align:left;
}

#footer-bottom{
	width:100%;
	background:#000;
}

#footer-bottom p{
	color: #ccc;
	font-size: 14px;
	margin: 0;
}

#footer-bottom p font{
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
}

#footer-bottom p a{
	color: #fff;
}

#footer-bottom p a:hover{
	text-decoration: underline;
}

/************************Top BG********************/

.topbg{
	background: url(../images/bg.jpg) center top no-repeat;
	background-size: cover;
}

/************************Main********************/

#main{
	min-height: 400px;
	font-size: 0;
	text-align: left;
	padding-top: 10px;
}

.withstickyheader{
	padding-top: 100px;
}

.breadcrumb {
    font-size: 12px;
    margin: 20px 0 0;
    text-align: center;
	border-bottom: 1px solid #eee;
}
.breadcrumb font {
    color: #666;
    display: inline-block;
    vertical-align: bottom;
	text-align:left;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	max-width:250px;
}
.breadcrumb a font{
    color: #121212;
}
.breadcrumb a:hover font {
    text-decoration: underline;
}

.listcontrols {
	border-bottom:1px solid #ccc;
	padding-bottom:10px;
	text-align:left;	
}

.listcontrols.bottom {
	border-bottom:0px solid #ccc;
	border-top:1px solid #ccc;
	padding-top:10px;
}

.listcontrols span{	
	display:inline-block;
	vertical-align:middle;
	margin-right:20px;
	text-align:left;
	margin-top:5px;
}

.listcontrols label{
	color:#999;
	font-size:12px;
	margin-right:5px;
	vertical-align:middle;
}

.listcontrols .viewby font,
.listcontrols .pageby font{
	font-size:20px;
	line-height:32px;
	color:#888;
	width:30px;
	height: 30px;
	border:1px solid #ccc;
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
	cursor:pointer;
	transition:0.5s all;
}

.listcontrols .viewby font:hover,
.listcontrols .pageby font:hover{
	color:#121212;
}

.listcontrols .viewby font.active{
	background:#121212;
	border:1px solid #121212;
	color:#fff;
}

.listcontrols .sortby select{
	width:100px;
	color:#666;
	font-size:14px;
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
	height:30px;
	border: 1px solid #ccc;
}

.listcontrols .pageby select{
	width:50px;
	color:#666;
	font-size:14px;
	display:inline-block;
	vertical-align:middle;
	margin-right:5px;
	height:30px;
	border: 1px solid #ccc;
}

h1{
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0;
}

#main .leftCol{
	display: inline-block;
	vertical-align: top;
	width: 65%;
	margin-right: 5%;
	margin-bottom: 20px;
}

#main .rightCol{
	display: inline-block;
	vertical-align: top;
	width: 30%;
	margin-bottom: 20px;
}

.filtergroup{
	margin-top: 28px;
}

.filtergroup h4{
	text-align: left;
	font-size: 15px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
}

.filtergroup ul li{
	font-size: 14px;
	list-style: none;
	padding: 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.notfound{
	margin: 50px auto 0;
	text-align: center;
}

.notfound i{
	font-size: 150px;
	color: var(--main-color);
}

.notfound h1{
	text-align: center !important;
	font-size: 34px !important;
	border-bottom: none !important;
	line-height: 40px !important;
}

.notfound h2{
	text-align: center;
	font-size: 40px;
	margin-bottom: 30px;
}

.emptystatement{
	font-size: 18px;
	padding: 15px 0;
	display: block;
	text-align: left;
	margin: 10px 0;
}

/************************Post list********************/

.postitem{
	margin: 20px 0;
	text-align: left;
	font-size: 0;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.postitem:nth-last-child(1){
	border-bottom: none !important;
	padding-bottom: 0 !important;
}

.post_left{
	display: inline-block;
	vertical-align: bottom;
	width: 30%;
	margin-right: 2%;
}

.post_right{
	display: inline-block;
	vertical-align: bottom;
	width: 68%;
}

.post_list_img{
	display: block;
    height: auto;
    overflow: hidden;
    position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	background-image:url(..images/default_ft_image.jpg);
	margin:0 auto;
	width:100%;
	padding:56.25% 0 0;
}

.post_list_img.book{
	background-size:contain;
	padding:100% 0 0;
}

.postitem h3{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	line-height: 24px;
	margin-bottom: 5px;
	overflow: hidden;
}

.postitem p{
	text-align: left;
	font-size: 16px;
	margin: 5px 0;
}

.postitem h5{
	text-align: left !important;
}

.postitem h5 span{
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.postitem .category{
	font-size: 11px;
	font-weight: 500;	
	color: var(--main-color);
	margin: 0 15px 0 0;	
	display: inline-block;
}

.postitem .subject{
	font-size: 11px;
	font-weight: 500;
	color: #888;
	margin: 0;
	display: inline-block;
}

.postitem .author{
	font-size: 14px;
	font-weight: 500;	
	color: #666;
	margin: 0;	
	display: inline-block;
	vertical-align: baseline;
	line-height: 30px;
}

.postitem .author .authorwithphoto{
	display: inline-block;
	vertical-align: baseline;
	margin-right: 10px;
}

.postitem .author .authorwithphoto img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 30px;
	height: 30px;
    border-radius: 30px;
}

.postitem .author .authorwithphoto span{
	display: inline-block;
	vertical-align: middle;
}

.postitem .datetime{
	font-size: 11px;
	color: #888;
	margin: 0;
	display: inline-block;
	vertical-align: baseline;
	line-height: 30px;
}

.whitegrid,
.overlaygrid{
	background: #fff;
	display: inline-block;
	vertical-align: top;
	border-bottom: none;
	padding-bottom: 0;
	width: 100%;	
}

.overlaygrid{
	background: #ccc;
	position: relative;	
}

.owl-item .whitegrid,
.owl-item .overlaygrid{
	width: 90%;
	margin: 20px auto;
}

.whitegrid .post_left,
.overlaygrid .post_left{
	width: 100%;
}

.whitegrid .post_right,
.overlaygrid .post_right{
	width: 100%;
	padding: 15px 8px;
}

.overlaygrid .post_right{
	position: absolute;
	bottom: 5px;
	padding: 5px 8px;
}

.overlaygrid .post_left::after {
  background: -webkit-linear-gradient(rgba(240, 47, 23, 0) 0%, rgba(0, 0, 0, .9) 100%);
  background: -o-linear-gradient(rgba(240, 47, 23, 0) 0%, rgba(0, 0, 0, .9) 100%);
  background: linear-gradient(rgba(240, 47, 23, 0) 0%, rgba(0, 0, 0, .9) 100%);
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.overlaygrid h3{
    height: auto;
    font-size: 12px;
    line-height: 16px;
	max-height: 32px;
	color: #fff;
	white-space: normal;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2;
  	text-overflow: ellipsis;
  	display: -webkit-box;
	overflow: hidden;
}

.whiteright{
	display: table;
	background: #fff;
	table-layout: fixed;
	border-bottom: none;
	padding-bottom: 0;
}

.whiteright .post_left{
	display: table-cell;
	width: 65%;
	vertical-align: top;
}

.whiteright .post_right{
	display: table-cell;
	width: 35%;
	vertical-align: top;
	padding: 0 8px 0 20px;
}

.overlaygrid .subject{
	color: #ddd;
}

.overlaygrid .author{
	color:#aaa;
}

.overlaygrid .datetime{
	color:#999;
}

.morelink{
	color: var(--main-color);
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	border: 1px solid;
	padding: 2px 6px;
	transition: 0.3s all;
}

.morelink:hover{
	background: var(--main-color);
	color: #fff;
}

.withinpost{
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.multi-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 3;        /* Number of lines to show */
  -webkit-box-orient: vertical; /* Required for line-clamping */
  overflow: hidden;             /* Hide the text that overflows */
}

/************************Post Detail********************/

.postdetails .wrap{
	max-width: 700px;
}

.postdetails .breadcrumb{
	display: none;
}

.postdetails h1{
	margin: 0 0 5px !important;
	border-bottom: none !important;
	font-size: 24px !important;
	line-height: 30px !important;
	text-align: center !important;
}

.postdetails h2.subtitle{
	margin: 0 0 15px !important;
	font-size: 18px !important;
	line-height: 22px !important;
	text-align: center !important;
}

.post_featured_img{
	display: block;
    height: auto;
    overflow: hidden;
    position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	background-color: #eee;
	width:100%;
	padding:56.25% 0 0;
	margin:15px auto 5px;
}

.post_featured_img_caption{
	font-size: 11px;
	text-align: center;
	border-bottom: 1px solid #ccc;
	color: #666;
	margin: 0 0 5px;
	line-height: 16px;
	padding: 3px;
}

.postdetails h5{
	text-align: center;
}

.postdetails h5 span{
	text-align: left;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.postdetails .category{
	font-size: 12px;
	font-weight: 500;	
	color: var(--main-color);
	margin: 0 15px 3px 0;	
}

.postdetails .subject{
	font-size: 12px;
	font-weight: 500;
	color: #888;
	margin: 0 0 3px;
}

.postdetails .authordisplay{
	font-size: 18px;
	font-weight: 500;	
	color: #666;
	margin: 5px 0 0 0;	
	text-align: center;
	white-space: normal;
}

.postdetails .authordisplay .authorwithphoto{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
}

.postdetails .authordisplay .authorwithphoto img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 60px;
	height: 60px;
    border-radius: 60px;
}

.postdetails .authordisplay .authorwithphoto span{
	display: inline-block;
	vertical-align: middle;
}

.postdetails .datetimedisplay{
	display: inline-block;
	vertical-align: middle;
	margin: 10px 10px 0;
}

.postdetails .datetimedisplay span{
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	color: #888;
}

.postdetails .viewcommentcount{
	display: inline-block;
	vertical-align: middle;
	margin: 10px 10px 0;
}

.postdetails .viewcommentcount span{
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	line-height: 20px;
	margin-left: 10px;
	color: #888;
}

.postdetails .viewcommentcount span i{
	vertical-align: middle;
}

.postdetails .sharesocial{
	display: inline-block;
	vertical-align: middle;
	margin: 10px 10px 0;
}

.postdetails .sharesocial span{
	font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #fff;
  width: 30px;
  height: 30px;
}

.postdetails .translatordisplay{
	text-align: left;
	font-size: 16px;	
}

.postdetails .translatordisplay .authorwithphoto{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.postdetails .translatordisplay .authorwithphoto img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 40px;
	height: 40px;
    border-radius: 40px;
}

.postdetails .translatordisplay .authorwithphoto font{
	display: inline-block;
	vertical-align: middle;	
	font-weight: bold;
}

.editorcontent p{
	text-align: left;
	font-size: 12pt;
	line-height: 30px;
	margin: 6px auto 14px;
}

.editorcontent p span, .editorcontent font {
    /*font-size: inherit !important;*/
}

.editorcontent h3{
	text-align: left;
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
}

.editorcontent h4{
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
}

.editorcontent ul li,
.editorcontent ol li{
	font-size: 16px;
	text-align: left;
	list-style-position: outside;
	line-height: 26px;
	margin: 10px 0 10px 30px;
}

.editorcontent blockquote{
	background: #f1f1f1;
	border-left: 5px solid #888;
	padding: 1px 10px;
	margin: 20px 0;
	font-size: 12pt;
	text-align: left;
}

.editorcontent a{
	color: var(--main-color);
}

.editorcontent a:hover{
	text-decoration: underline;
}

.editorcontent img{
	max-width: 100%;
	height: auto;
}

.editorcontent img[style*="float: left"] {
    margin:  0 15px 0 0 !important;
	max-width: 50%;
}

.editorcontent img[style*="float: right"] {
    margin: 0 0 0 15px !important; 
	max-width: 50%;
}

figure{
	margin: 0;
}

figure.align-left{
	float: left;
	width: 50%;
	margin: 0 15px 10px 0;
}

figure.align-right{
	float: right;
	width: 50%;
	margin: 0 0 10px 15px;
}

figcaption{
	font-size: 11px;
	text-align: left;
	border-bottom: 1px solid #bbb;
	color: #666;
	margin: 0 0 15px;
	line-height: 16px;
	padding: 3px;
}

.editorcontent tbody td{
	text-align: left;
	font-size: 16px;
	line-height: 26px;
	padding: 5px;
	border: 1px solid #ccc;
}

.editorcontent thead td{
	text-align: left;
	font-size: 12px;
	line-height: 22px;
	font-weight: bold;
	padding: 5px;
	border: 1px solid #ccc;
	background: #eee;
}

.headingwithphoto{
	margin: 20px 0;
} 

.authorbio{
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.bioitem{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	text-align: left;
	display: table;
	width: 100%;
}

.headingwithphoto .bioleft,
.bioitem .bioleft{
	display: block;
}

.headingwithphoto .bioleft img,
.bioitem .bioleft img{
	width: 100px;
	height: 100px;
	border-radius: 100px;
}

.headingwithphoto .bioright,
.bioitem .bioright{
	display: block;
}

.headingwithphoto .bioright h1{
	display: block;
	border-bottom: none !important;
	margin: 0 !important;
}

.bioitem .bioright h6{
	font-size: 20px;
	font-weight: bold;	
	text-align: center;
	display: block;
}

.headingwithphoto .bioright p,
.bioitem .bioright p{
	font-size: 15px;	
	color: #444;
	text-align: center;
	margin: 0;
	line-height: 18px;
}

.headingwithphoto .authorsocial,
.bioitem .authorsocial{
	width: 30px;
	height: 30px;
	border-radius: 30px;
	border: 1px solid #ccc;
	font-size: 14px;
	line-height: 30px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: 5px;
}

.headingwithphoto .authorsocial:hover,
.bioitem .authorsocial:hover{
	background: #eee;
}

.sharelinks{
	position: fixed;
	right: 0;
	bottom: 180px;
	width: 40px;
	z-index: 10000;
	border: 2px solid var(--main-color);
	border-right: none;
}

.sharelinks span,
.sharelinks .sharesocial span{
	font-size: 16px;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--main-color);
	cursor: pointer;	
}

.sharelinks .sharesocial span{
	border-bottom:1px solid var(--main-color);
}

.sharelinks .sharesocial span:hover{
	background: #121212;
	color: #fff !important;
}

.sharelinks .copytoclipboard.active{
	background: var(--main-color);
	color: #fff !important;
}

.sharelinks span.enabled{
	background: var(--main-color);
	color: #fff;
}

.sharelinks .sharesocial{
	display: none;
}

/************************Filter********************/

.filterlist{
	text-align: left;
	margin-bottom: 20px;
}

.filterlist .item{
	display: inline-block;
	vertical-align: top;
	margin: 20px 4%;
	text-align: center;
	width: 17%;
}

.filterlist .item img{
	width: 100%;
}

.filterlist .item h4{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 20px;
	margin-top: 10px;
}

/************************Donate********************/

.donatebanner{
	background: var(--main-color);
	padding: 20px;
	text-align: center;
}

.donatebanner i{
	font-size: 130px;
	color: #fff;
}

.donatebanner h6{
	font-size: 20px;
	color: #fff;
}

.donatebanner button{
	text-transform: uppercase;
	background: #fff;
	color:var(--main-color);
	box-shadow:3px 3px 0 #121212;
	margin-top: 16px;
}

.donatebanner button:hover{
	background: #ccc;
}

/************************Post Bottom********************/

.postbottomrow{
	margin: 10px 0;
}

.postbottomrow h2{
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	text-align: left;
	margin-top: 20px;
}

.postbottomrow .colleft{
	display: inline-block;
	vertical-align: top;
	width: 50%;
	margin: 0 3% 0 0; 
}

.postbottomrow .colright{
	display: inline-block;
	vertical-align: top;
	width: 47%;
}

/************************Comment Area********************/

#commentarea{
	margin: 15px 0 30px;
}

#commentarea p{
	font-size: 14px;
	text-align: left;
}

#commentarea p font{
	color: var(--main-color);
}

#commentarea textarea{
	width: 100%;
	height: 54px;
}

#commentarea .btn2{
	height: 30px;
	padding: 5px 10px;
}

#newcommentdiv,
.newreplydiv{
	text-align: left;
}

.newreplydiv{
	display: none;
}

.cancelreply{
	margin-left: 10px;
	background: #D43939;
}

#newcommentdiv .errnotify,
.newreplydiv .errnotify{
	margin-left: 10px;
}

#commentlistdiv{
	margin: 15px 0;
}

.commentitem{
	margin: 15px 0;
	width: 100%;
	display: table;
	table-layout: fixed;
}

.commentitem .com_usericon{
	display:table-cell;
	vertical-align: top;
	width: 50px;
	text-align: left;
}

.commentitem .com_usericon i{
	display: inline-block;
	background: #eee;
	border-radius: 50px;
	width: 40px;
	height: 40px;
	text-align: center;
	color: var(--main-color);
	font-size: 15px;
	line-height: 38px;
}

.commentitem .com_content{
	display:table-cell;
	vertical-align: top;
	background: #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
}

.commentitem .com_content h4{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	line-height: 40px;
	margin: 0 10px;
}

.commentitem .com_content h4 span{
	display: inline-block;
	vertical-align: baseline;
	font-size: 12px;
	color: var(--main-color);
	font-weight: normal;
}

.commentitem .com_content p{
	margin: 0 10px 10px;
}

.replywrap{
	padding-left: 50px;
}

.commentitem .com_content h6{
	font-size: 12px;
	text-align: left;
	background: #eee;
	padding: 3px 10px;
}

.commentitem .com_content h6 span{
	margin-right: 30px;
	display: inline-block;
	vertical-align: baseline;
	cursor: pointer;
}

.commentitem .com_content h6 span font{
	font-size: 14px;
}

.commentitem .liked i,
.commentitem .disliked i{
	font-weight: 900;
}


/************************Like Post********************/

.likepostdiv{
	margin: 10px 0 40px;
}

.likepostdiv span{
	display: inline-block;
	vertical-align: top;
	margin: 10px 3px;
	cursor: pointer;
}

.likepostdiv span img{
	width: 40px;
	border: 2px solid #fff;
	border-radius: 40px;
	padding: 2px;
}

.likepostdiv span font{
	font-size: 15px;
}

.likepostdiv span.selected img{
	border: 2px solid var(--main-color);
}

.likepostdiv span.selected font{
	color: var(--main-color);
}

/************************Page Style********************/

.pageleft{
	display: inline-block;
	vertical-align: top;
	width: 53%;
	margin: 15px 0;
}

.pageright{
	display: inline-block;
	vertical-align: top;
	width: 47%;
	margin: 15px 0;
}

/************************Contribute Ad********************/

.contribute_ad_1{
	background: #f2ede7;
	margin: 50px 0 30px;
	width: 100%;
	padding: 20px;
}

.contribute_ad_1 i.fa-hands-helping{
	font-size: 50px;
	margin-top: -65px;
	background: var(--main-color);
	color: #fff;
	padding: 20px;
	border-radius: 50px;
}

.contribute_ad_1 h4{
	font-size: 17px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 10px;
}

.contribute_ad_1 p{
	text-align: center;
	margin: 15px 0;
}

.contribute_ad_1 h6{
	font-size: 18px;
	text-align: center;
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 20px;
}

.contribute_ad_1 h6 img{
	float: left;
	width: 50px;
	margin-right: 10px;
}


/************************Magazine********************/

.mag_list_img{
	display: block;
    height: auto;
    overflow: hidden;
    position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	background-image:url(..images/default_mag_image.jpg);
	margin:0 auto;
	width:100%;
	padding:133% 0 0;
}

.magazinelist{
	text-align: left;
	margin-bottom: 20px;
}

.magazinelist .item{
	display: inline-block;
	vertical-align: top;
	margin: 20px 4%;
	text-align: center;
	width: 25.33%;
}

.magazinelist .item img{
	width: 100%;
}

.magazinelist .item h4{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 20px;
	margin-top: 10px;
}

.magazinelist .item h5{
	font-size: 12px;
	text-align: center;
	line-height: 16px;
	margin-top: 3px;
}






.gpay-whatsapp{
	background: url(../images/gpay-whatsapp.png) no-repeat left center;
	padding-left: 80px;
	height: 50px;
	background-size: contain;
	font-weight: bold;
	font-size: 20px;
	text-align: left;
}

.whatsappchannel{
	font-size: 13px;
	color: #25d366;
	font-weight: bold;
}

.whatsappchannel button{
	background: #25d366;
	border: none;
	color: #fff;
	font-size: 15px;
	padding: 5px 10px;
	cursor: pointer;
}