/* Google Font - Nunito Sans */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


p{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #666666;
}

h1{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 24px;
	line-height: 26px;
}

h2{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 21px;
	line-height: 19px;
}

h3{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
}

body, ul li{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	color: #666666;
}

body{
	-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; left: -100%; }
    to   { opacity: 1; left: 0;}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fineprint{
	font-size: 14px;
}

@media (max-width: 767px){
	
	p, body, ul li{
		font-size: 14px;
	}

	h1, h2{
		font-size: 19px;
	}

	h3{
		font-size: 16px;
	}
	
	.fineprint{
		font-size: 12px;
	}
	
}

.page-wrapper{
	position: relative;
	left:0;
}

a:link{
	color: #666666;
	text-decoration: underline;
}

a:visited{
	color: #666666;
	text-decoration: underline;
}

a:hover{
	color: #E84E1D;
	text-decoration: none;
}

img{
	max-width: 100%;
}

/*Lazyload Image*/
img.lazy{
	opacity: 0;
	will-change: opacity;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

img.lazy.loaded{
	opacity: 1;
}

/*Text Color*/
.whitetext{
	color: #ffffff 
}

.orangetext{
	color: #E84E1D !important;
}

.greytext{
	color: #666666 !important;
}

/*Container*/
.contentcontainer, .titlecontainer, .productcontainer, .speakercontainer{
	max-width: 1240px;
	padding: 0 16px;
}

.eventcontainer{
	max-width: 1240px;
	padding: 0;
}

.carouselcontainer{
	max-width: 1240px;
	padding: 0 35px;
}

@media (max-width:1239px){
	.titlecontainer, .speakercontainer{
		padding: 0;
	}
}

@media (max-width:767px){
	.carouselcontainer{
		padding: 0;
	}
	
	.productcontainer{
		padding: 0;
	}
}

/*Header*/
#header{
	background: #ffffff;
}

/*logo*/
.logo{
	width: 100%;
	height: auto;
}

@media (max-width: 767px){
	.logo{
		margin-bottom: 10px;
	}
}

/*Top Nav*/
.topnav{
	list-style: none;
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin: 0;
}

.topnav_link a{
	text-decoration: none;
	font-size: 16px;
}

.topnav_link a:hover{
	color: #666666;
}

.topnav_link a span:hover{
	color: #E84E1D;
}

.topnav li:after{
	content: "";
	margin: 0 5px;
}

.topnav li:nth-child(-n+2):after{
	content: "|";
	margin: 0 10px;
}

.topnav li:last-child:after{
	margin: 0;
}

@media (max-width:767px){
	.topnav_link a{
		font-size: 14px;
	}
}

@media (max-width:480px){
	.topnav_link a{
		font-size: 12px;
	}
	
	.topnav li:nth-child(-n+2):after{
		margin: 0 5px;
	}
}

.topnav_icon a{
	font-size: 25px;
	color: #999999 !important;
	cursor: pointer;
}

.topnav_icon a:hover{
	color: #000000 !important;
}

#search.clicked a{
	color: #E84E1D !important;
}

@media (max-width:480px){
	.topnav_icon{
		font-size: 20px;
	}
}

/*Main Navigation*/
.mainnav{
	display: flex;
	justify-content: center;
	background: #FFF9C9;
	margin: 0;
}

.mainnav ul{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	width: 100%;
	max-width: 1240px;
	padding: 0;
	margin: 0;
}

.mainnav ul a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex:1;
	height: 100%;
	padding: 13px 20px 10px;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border-bottom: 3px solid #FFF9C9;
	transition: border .3s ease-in-out;
	-webkit-transition: border .3s ease-in-out;
	-ms-transition: border .3s ease-in-out;
	-moz-transition: border .3s ease-in-out;
}

#books-button.clicked, .mainnav a.active{
	color: #666666;
	border-bottom: 3px solid #E84E1D;
}

.mainnav ul a:hover{
	color: #666666;
	border-bottom: 3px solid #E84E1D;
}

/*Home Slider*/
#HomeSlider{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}

#HomeSlider img{
	width: 100%;
	height: auto;
}

/*Content*/
#content{
	padding: 0;
	margin: 50px 0;
}

@media (max-width: 767px){
	#content{
		margin: 30px 0;
	}
}


/*Title*/
.title-style{
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	margin: 0;
	color: #E84E1D;
}

.title-style:before{
    content: "";
    position: relative;
    display: flex;
    margin: auto;
	min-width: 50px;
    height: 1px;
    flex-grow: 0.5;
    margin-right: 1em;
    background: #E84E1D;
}

.title-style:after{
    content: "";
    position: relative;
    display: flex;
    margin: auto;
	min-width: 50px;
    height: 1px;
    flex-grow: 0.5;
    margin-left: 1em;
    background: #E84E1D;
}

.viewall{
	position: absolute;
	right: calc(((100vw - 1240px) / 2) + 8px);
	text-decoration: none !important;
	background: #ffffff;
	padding: 5px 0 5px 1em;
}

.viewall p:hover{
	color: #E84E1D;
}

@media (max-width:1240px){
	.viewall{
		right: 0;
		padding: 5px 1em 5px 1em;
	}
}

@media (max-width:767px){
	.viewall{
		position: relative;
		width: 100%;
		text-align: center;
		margin-top: 5px;
		padding: 0;
		
	}
}

/*Category List*/
.catlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.catlist a{
	text-decoration: none;
}

.catlist a li{
	padding: 5px 10px;
	text-decoration: none;
	border-radius: 5px;
	margin-right: 5px;
}

.catlist a:last-child{
	margin-right: 0;
}

.catlist a:hover li{
	background: #E84E1D !important;
	color: #ffffff !important;
}

@media (max-width: 767px){
	.catlist li{
		font-size: 14px;
	}
}

/*Subscribe Now*/
.subscribenow{
	background: #FFF9C9;
	padding: 50px 0;
}

/*Form*/
.form-label-group input[type="text"], .form-label-group input[type="email"], .form-label-group input[type="number"]{
	width: 100%;
	height: 50px;
	padding: 15px 30px !important;
	border: none;
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
}

.form-label-group input[type="search"]{
	width: calc(100% - 50px);
	height: 50px;
	padding: 15px 30px !important;
	border: 1px solid #999999 !important;
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
}

.input-group input, .input-group label{
	width: calc(100% - 50px) !important;
}

.form-label-group textarea{
	width: 100%;
	height: 150px;
	padding: 35px 30px 15px 30px  !important;
	border: none;
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-label-group {
  position: relative;
  margin-bottom: 10px;
}

.form-label-group > input, .form-label-group > label{
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > label {
	position: absolute !important;
	text-align: left!important;
	font-size: 14px;
	padding: 15px 30px;
	top: 0 !important;
	left: 0 !important;
	display: block !important;
	width: 100%;
	margin-bottom: 0 !important; /* Override default `<label>` margin */
	line-height: 1.5 !important;
	color: #666666 !important;
	font-weight: bold;
	border: none !important;
	border-radius: 0!important;
	transition: all .1s ease-in-out !important;
	-webkit-transition: all .1s ease-in-out !important;
	-ms-transition: all .1s ease-in-out !important;
	-moz-transition: all .1s ease-in-out !important;
	z-index: 50;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: 23px !important;
  padding-bottom: 7px !important;
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 7px; 
  font-size: 14px;
}

.input-group-append .btn, .sbutton{
	background: #E84E1D;
	color: #fff;
	width: 50px;
	border-radius: 0;
	border:none !important
}

.input-group-append .btn:hover, .sbutton:hover{
	background: #666666;
}

/*Footer*/
.bot-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 0;
}

.bot-right img{
	max-width: 220px;
}

.bot-left ul{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.botnav:before{
	content: "|";
	margin: 0 5px;
}

@media (max-width: 767px){
	.copyright-text{
		width: 100%;
	}
	
	.bot-left ul, .bot-right{
		justify-content: center;
		text-align: center;
	}
	
	.bot-left ul{
		padding-bottom: 20px;
	}
	
	.bot-left{
		order: 1;
	}
	
	.bot-right{
		order: 0;
		padding-top: 30px;
	}
	
	.botnav:before, .botnav:last-child:after{
		content: "";
		margin: 0;
	}
	
	.botnav:after{
		content: "|";
		margin: 0 5px;
	}
}

/*Owl Carousel*/
.item-video video{
	width: 100%;
	max-height: 450px;
	background: #ececec;
}

@media (max-width:767px){
	.item-video video{
		width: 100%;
		height: auto;
	}
}

.playpause {
    background-image:url("owl.video.play.png");
    background-repeat:no-repeat;
    width:50%;
    height:50%;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    background-size:contain;
    background-position: center;
	opacity: 0.5;
	cursor: pointer;
}

.owl-theme .owl-dots{
	position: absolute;
	bottom: 10px;
	width: 100%;
}

.owl-theme .owl-dots .owl-dot span{
	background: #ffffff;
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
	background: #666666;
}

.owl-theme .owl-nav{
	position: absolute;
	margin: 0;
	width: 100%;
	color: #ffffff;
}

#HomeSlider.owl-carousel .owl-nav button.owl-prev{
	position: absolute;
	margin: 0;
	left: calc(((100% - 1240px) / 2) + 16px);
}

#HomeSlider.owl-carousel .owl-nav button.owl-next{
	position: absolute;
	margin: 0;
	right: calc(((100% - 1240px) / 2) + 16px);
}

#HomeSlider.owl-carousel .owl-nav button.owl-prev i, #HomeSlider.owl-carousel .owl-nav button.owl-next i{
	text-shadow: 0 3px 3px rgba(0,0,0,0.2);
}

#HomeSlider.owl-carousel .owl-nav button.owl-prev:hover, #HomeSlider.owl-carousel .owl-nav button.owl-next:hover{
	background-color: transparent !important;
	color: #666 !important;
}

@media (max-width:1240px){
	#HomeSlider.owl-carousel .owl-nav button.owl-prev{
		left: 16px;
	}
	
	#HomeSlider.owl-carousel .owl-nav button.owl-next{
		right: 16px;
	}
}

.bookscarousel .owl-nav, .eventscarousel .owl-nav, .topicscarousel .owl-nav{
	position: absolute;
	margin: 0;
	width: 100%;
	color: #666;
	top: calc((100% - 24px) / 2);
}

.bookscarousel .owl-nav button:hover, .eventscarousel .owl-nav button:hover, .topicscarousel .owl-nav button:hover{
	background-color: transparent !important;
	color: #E84E1D !important;
}

.bookscarousel .owl-nav button.owl-prev, .eventscarousel .owl-nav button.owl-prev, .topicscarousel .owl-nav button.owl-prev{
	position: absolute !important;
	margin: 0 !important;
	left: -20px !important;
}

.bookscarousel .owl-nav button.owl-next, .eventscarousel .owl-nav button.owl-next, .topicscarousel .owl-nav button.owl-next{
	position: absolute !important;
	margin: 0 !important;
	right: -20px !important;
}

.bookscarousel .owl-nav button.owl-prev.disabled, .bookscarousel .owl-nav button.owl-next.disabled, .eventscarousel .owl-nav button.owl-prev.disabled, .eventscarousel .owl-nav button.owl-next.disabled, .topicscarousel .owl-nav button.owl-prev.disabled, .topicscarousel .owl-nav button.owl-next.disabled{
	display: none !important;
}

.bookscarousel .owl-nav button.owl-prev i, .bookscarousel .owl-nav button.owl-next i, .eventscarousel .owl-nav button.owl-prev i, .eventscarousel .owl-nav button.owl-next i, .topicscarousel .owl-nav button.owl-prev i, .topicscarousel .owl-nav button.owl-next i{
	text-shadow: none;
}

.newscarousel .owl-stage{
    padding-left: 0 !important;
}

.custompubcarousel .owl-stage{
	display: flex;
}


/*Search Bar*/
.search-bar{
	position: absolute;
	top:50px;
	right: 0;
	width: 100%;
	padding: 20px;
	background: #ffffff;
	box-shadow: 0 5px 10px rgba(68, 68, 68, 0.2);
	z-index: 9999;
}

@media (min-width:768px){
	#search-bkgd{
		display: none;
	}
	
	#closesearch{
		position: absolute;
		display: none;
		top: -30px;
		right: 10px;
		color: #ffffff;
	}
}

@media (max-width:767px){
	#search-bkgd{
		display: block;
	}
	
	#closesearch{
		position: absolute;
		display: block;
		top: -30px;
		right: 10px;
		color: #ffffff;
	}
}

.black-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.8;
	z-index: 9998;
}

@media (max-width: 767px){
	.search-bar{
		position: fixed;
		top: 110px;
	}
}

/*Megamenu*/
.bookmega{
	display: flex;
	position: absolute;
	width: 100%;
	max-width: 1240px;
	left: calc((100% - 1240px)/2);
	top: 115px;
	padding: 20px;
	background: #ffffff;
	box-shadow: 0 5px 5px rgba(68, 68, 68, 0.2);
	
}

.megalist{
	display: flex;
	align-content: flex-start;
	flex-flow: column wrap;
	max-height: 240px;
}

.megalist a{
	display: flex;
	align-items: center;
	width: calc(100% / 3) !important;
	height: 34px !important;
	padding: 10px;
	text-decoration: none;
}

.megalist a:hover{
	color: #666;
	background: #ececec;
}

.featured a{
	text-decoration: none !important;
}

.featured p{
	color: #E84E1D !important;
}

.featured:hover p{
	text-decoration: none !important;
	color: #666 !important;
}

@media (max-width:1239px){
	.bookmega{
		left:0;
	}
}

@media (max-width:954px){
	.bookmega{
		top:135px;
	}
}

/*Mobile Menu*/
.mobilemenu{
	position: fixed;
	top: 0;
	left: -90%;
	width: 90%;
	height: 100%;
	background: #ffffff;
	z-index: 9999;
	padding: 30px 15px;
}

.mbot{
	position: absolute;
	bottom: 30px;
}

.mtop{
	position: absolute;
	top: 30px;
}

.mclose{
	position: absolute;
	top: 30px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
}

.mmainnav{
	position: absolute;
	top: 100px;
	width: calc(90% + 15px);
}

.mmainnav ul{
	list-style: none;
}

.mmainnav a{
	text-decoration: none;
}

.mnavlist li{
	padding: 10px 0;
	border-bottom: 1px solid #ececec;
}

.last li{
	border-bottom: none;
}

/*Pop Up + Map*/
.subcontainer, .location-map{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

.subpopup{
	width: 500px;
	height: 500px;
	background: #ffffff;
	z-index: 9999;
}

.location-map iframe{
	width: 400px;
	height: 400px;
}

.subimg, .subcontent{
	width: 100%;
	height: calc(100% / 2);
}

.subimg{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.subcontent{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.closepopup{
	position: absolute;
	top: calc(((100% - 500px) / 2) + 20px);
	right: calc(((100% - 500px) / 2) + 20px);
	cursor: pointer;
}

.closemap{
	position: absolute;
	top: calc(((100% - 500px) / 2) + 20px);
	right: calc((100% - 400px) / 2);
	cursor: pointer;
}

.cmap{
	cursor: pointer;
}

@media (max-width: 550px){
	.subpopup, .location-map iframe{
		width: 90%;
	}
	.subcontent{
		padding: 15px;
	}
	
	.closepopup{
		top: calc(50% - 230px);
		right: calc(5% + 20px);
	}
	
	.closemap{
		top: calc(50% - 230px);
		right: 5%;
	}

}

/*Books*/
.cp-book-cover{
	/*height:250px;*/
	height:100% !important;
}

.book-cover, .news-item{
    height:250px;
}

.book-cover img, .cp-book-cover img{
    height: 100% !important;
    width: 100% !important;
	object-fit: contain !important;
	object-position: bottom;
	filter: drop-shadow(0 3px 3px rgba(68, 68, 68, 0.3));
	padding-bottom: 8px;
}

.book-details{
	text-align: center;
	margin-top: 1em;
}

.book-details .author{
	justify-content: center;
}

.author{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 16px;
	margin-top: 5px;
	text-transform: capitalize;
}

.catauthor{
	font-size: 16px;
	margin-top: 5px;
	text-transform: capitalize;
}

.catauthor span:after{
	content: "/";
	margin: 0 5px;
}

.catauthor span:last-child:after{
	content: "";
	margin: 0;
}

.title a, .author a, .catauthor a{
	text-decoration: none !important;
}

/*News*/
.news-item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
	filter: drop-shadow(0 3px 3px rgba(68, 68, 68, 0.3));
	padding-bottom: 8px;
}

/*@media (max-width: 1280px){
	.cp-book-cover{
		height:200px;
	}	
}*/

@media (max-width: 767px){
	.book-cover, .news-item{
		height:180px;
	}
	
	/*.book-cover, .news-item, .cp-book-cover{
		height:180px;
	}*/
	
}

/*@media (max-width: 480px){
	.cp-book-cover{
		height:150px;
	}
}*/

/*Breadcrumb*/
.breadcrumb{
	background-color: transparent !important;
}

.breadcrumb-item.active{
	color: #E84E1D;
}

.breadcrumb a{
	text-decoration: none;
}

/*Page Banner*/
.page-banner{
	width: 100%;
	min-height: 250px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*Category*/
.catcon{
	width: calc((100% / 4) - 8px);
	text-align: center;
	margin-left: 10px;
	margin-bottom: 20px;
}

.catcon:nth-last-child(-n + 4):nth-child(4n + 1), .catcon:nth-last-child(-n + 4):nth-child(4n + 1) ~ .catcon{
	margin-bottom: 0;
}

.catcon:nth-child(4n+1){
	margin-left: 0;
}

.catimgcon{
	width: 100%;
	height: calc((1240px / 4) - 16px);
	overflow: hidden;
	border-radius: 20px;
}

.catimg{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all .3s ease-in-out !important;
	-webkit-transition: all .3s ease-in-out !important;
	-ms-transition: all .3s ease-in-out !important;
	-moz-transition: all .3s ease-in-out !important;
}

.catcon:hover .catimg{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);	
}

.catcon:hover .cattitle a{
	color: #E84E1D;
}

.cattitle{
	margin: 10px 0 0;
}

.cattitle a{
	font-size: 19px;
	text-decoration: none;
}

@media (max-width: 1240px){
	.catimgcon{
		height: calc((100vw / 4) - 19px);
	}
}

@media (max-width: 767px){
	.catcon{
		width: calc((100% / 2) - 5px);
	}
	
	.catimgcon{
		height: calc((100vw / 2) - 29px);
	}
	
	.catcon:nth-child(4n+1){
		margin-left: 10px;
	}
	
	.catcon:nth-child(2n+1){
		margin-left: 0;
	}
	
	.catcon:nth-last-child(-n + 4):nth-child(4n + 1), .catcon:nth-last-child(-n + 4):nth-child(4n + 1) ~ .catcon{
		margin-bottom: 20px;
	}
	
	.catcon:nth-last-child(-n + 2):nth-child(2n + 1), .catcon:nth-last-child(-n + 2):nth-child(2n + 1) ~ .catcon{
		margin-bottom: 0;
	}
	
	.cattitle a{
		font-size: 18px;
	}
}

.cat-desc{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	padding: 50px;
	box-shadow: 0 5px 10px #ececec;
}

@media (max-width:767px){
	.cat-desc{
		padding: 20px 16px;
	}
}

/*HR*/
hr{
	width: 100%;
	border-top: 1px solid #E84E1D;
	margin: 0 0 30px;
}

/*dropdown*/
.sortby, .event-type{
	margin-top:-3px;
	text-align: center;
	border-bottom: 1px solid #666666;
	white-space: nowrap;
}

.dropdown-toggle{
	text-decoration: none !important;
	padding: 0 30px;
}

.dropdown-toggle::after{
	display: none;
}

.dropdown-item{
	color: #666666 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer;
}

.dropdown-item:hover{
	background-color: #ececec !important;
}

/*Pagination*/
#prevpage.disabled, #nextpage.disabled{
	/*display: none;*/
	visibility: hidden;
}

#prevpage a, #nextpage a{
	text-decoration: none;
}

.page-link{
	border: none !important;
	text-decoration: none !important;
}

.page-link:hover{
	background-color: transparent !important;
	color: #E84E1D !important;
}

.page-item.active .page-link{
	color: #E84E1D !important;
}

/*Book Details*/
.bookimg, .bookmedia{
	width: 100%;
}

.bookimg{
	display: flex;
}

.bookdetails{
	width: calc(100% - 1em);
	margin-left: 1em;
}

.bookimg img{
	width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 3px 3px rgba(68, 68, 68, 0.3));
	
}

.downloadlist a{
	text-decoration: none;
}

.title{
	font-size: 24px !important;
	text-transform: capitalize;
}

.title a{
	font-size: 19px !important;
	font-weight: 300 !important;
	color: #E84E1D !important;
}

.isbn{
	color: #999999;
	font-size: 16px;
	margin: 0;
}

.reviews{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 16px;
}

.reviews a{
	color:  #E84E1D;
	text-decoration: none;
}

.catlist-title{
	padding: 8px 0;
	margin: 0;
}

.bcatlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bcatlist a{
	text-decoration: none;
	margin-right: 5px;
}

.bcatlist li{
	padding: 5px 10px;
	border-radius: 5px;
}

.bcatlist a:last-child{
	margin-right: 0;
}

.bcatlist li:hover{
	background: #E84E1D;
	color: #ffffff;
}

.lcat{
	width: 90px;
}

.rcat{
	width: calc(100% - 90px);
}

.reviews button{
	margin-left: 5px;
}

@media (max-width:767px){
	.sortby, .event-type{
		font-size: 14px;
	}
	
	.sortleft, .sortright{
		justify-content: center !important;
	}
	
	.bookdetails{
		width: 100%;
		margin-left: 0;
	}
	
	.title{
		font-size: 19px !important;
	}
	
	.bcatlist{
		justify-content: center;
		font-size: 14px;
	}
	
	.catlist-title, .reviews, .author, .isbn, .title, .shortdesc{
		text-align: center;
	}
	
	.catlist-title, .downloadtitle{
		font-size: 18px;
	}
	
	.lcat, .rcat{
		width: 100%;
	}
	
	.author,.reviews,.isbn,.downloadlist a{
		font-size: 14px;
	}
	
	.downloadtitle, .downloadlist{
		text-align: center;
	}
	
	.author{
		flex-wrap: wrap;
		justify-content: center
	}
	
	.author a{
		width: 100%;
	}
	
	.bookimg{
		max-height: 300px;
	}
	
	.author button, .reviews button{
		margin-left: 0;
	}
	
	.reviews span{
		width: 100%;
		text-align: center;
	}
	
	.reviews a{
		width: 100%;
	}
	
	.bookmedia{
		margin-bottom: 30px;
	}
}

/*Button*/
.btnstyle{
	background-color: #E84E1D !important;
	color: #ffffff !important;
	border: none !important;
	cursor: pointer !important;
	border-radius: 50px;
	padding: 5px 20px;
	font-size: 12px;
}

.btnstyle:hover{
	background-color: #ececec !important;
	color: #666666 !important;
}

.longbtnstyle{
	width: 50%;
	background-color: #E84E1D !important;
	color: #ffffff !important;
	border: none !important;
	cursor: pointer !important;
	border-radius: 50px;
	padding: 5px 40px;
}

.longbtnstyle:hover{
	background-color: #ececec !important;
	color: #666666 !important;
}

/*Tooltips*/
.btype{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.btype img{
	cursor: pointer;
	margin-left: 5px;
}

.btype img:first-child{
	margin-left: 0;
}

.tooltip-inner {
    padding: 3px 8px;
    color: #666;
    text-align: center;
    background-color: #FFD8B0;
    border-radius: 5px;
}

.tooltip.bs-tooltip-bottom .arrow:before, .tooltip.bs-tooltip-top .arrow:before, .tooltip.bs-tooltip-right .arrow:before, .tooltip-danger .tooltip.bs-tooltip-left .arrow:before {
   border-bottom-color: #FFD8B0;
}

@media (max-width:767px){
	
	.longbtnstyle{
		width: 80%;
	}
	
	.binfo{
		order: 1;
	}
	
	.btype{
		order: 0;
		justify-content: center;
		margin-bottom: 10px;
	}
}

/*tags*/
.tags{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tags a{
	text-decoration: none;
	margin-right: 5px;
	margin-bottom: 5px;
}

.tags li{
	padding: 5px 10px;
	border-radius: 5px;
	background: #FFD8B0;
	color: #666666 !important;
	font-size: 14px;
}

.tags li:hover{
	color: #ffffff !important;
	background: #E84E1D;
}

.tags a:last-child{
	margin-right: 0;
}

@media(max-width:767px){
	.tags{
		justify-content: center;
		margin-bottom: 10px;
	}
}

/*Book tab*/
.booktab{
	background: #ececec;
	color: #666666;
	border-radius: 20px 20px 0 0;
	padding: 10px 20px;
	text-align: center;
	cursor: pointer;
}

.booktab.active{
	background: #E84E1D !important;
	color: #ffffff !important;
	cursor: auto;
}

.syn-content, .spec-content{
	padding: 20px;
}

.syn-content p:last-child{
	margin: 0;
}

.spec-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

#author-review{
	display: flex;
}

#author-review img{
	max-width: 400px;
	max-height: 300px;
	margin-left: 16px;
}

.ARcon{
	margin-bottom: 30px;
}

.author-review{
	display: flex;
	align-items: center;
	padding: 20px;
}

.author-review p{
	margin: 0;
}

.rname{
	text-align: right;
}

@media (max-width:767px){
	.syn-content, .spec-content{
		padding: 20px 16px;
	}
	.syn-content{
		text-align: center;
	}
	.author-review{
		padding: 20px 16px;
		text-align: center;
	}
	.ARcon{
		margin-bottom: 10px;
	}
	
	.rrating, .rreview, .rname{
		text-align: center;
	}
	
	#author-review img{
		max-width: 100%;
		margin: 0;
	}
	
	#author-review{
		justify-content: center;
	}
}

/*Event*/
.edate, .etype{
	font-size: 16px;
	margin: 0;
}

.elist{
	order: 0;
}

.edateselect{
	order: 1;
}

.etypeselect{
	order: 2;
}



input.dateinput{
	padding: 0 15px !important;
	font-size: 14px !important;
	margin-left: 10px;
	border: none !important;
	color: #666666;
	background: #ececec;
}

.ui-datepicker-trigger{
	background: #ececec;
	padding: 5px 15px;
	
}

.mediacon{
	position: relative;
	width: calc((100% / 3) - 7px);
	text-align: center;
	margin-left: 10px;
	margin-bottom: 20px;
}

.mediacon:nth-last-child(-n + 3):nth-child(3n + 1), .mediacon:nth-last-child(-n + 3):nth-child(3n + 1) ~ .mediacon{
	margin-bottom: 0;
}

.mediacon:nth-child(3n+1){
	margin-left: 0;
}

.mediacon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mediacon iframe{
	width: 100%;
}

.mediatitle{
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	padding: 5px 0;
	background: rgba(255,255,255, 0.7);
}

.mediacon:hover .mediatitle{
	color:#E84E1D;
}

.ui-widget-header{
	border: none !important;
	background: #FFD8B0 !important;
	color: #666666 !important;
}

.ui-widget-content{
	color: #666666;
}

.ui-state-default{
	border: none !important;
	background: #FFD8B0 !important;
	color: #666666 !important;
	text-align: center;
}

.ui-state-highlight{
	border: none !important;
	background: #FFF9C9 !important;
	color: #666666 !important;
}

.ui-state-default:hover, .ui-state-active{
	border: none !important;
	background: #E84E1D !important;
	color: #ffffff !important;
}

.ui-datepicker-month, .ui-datepicker-year{
	border: 1px solid #FFD8B0 !important;
	background: #ffffff !important;
	color: #666666 !important;
}

.socialshare, .socialbutton{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.bot-zero{
	bottom: 0 !important;
}

@media (max-width:991px){
	.elist{
		order: 0;
	}

	.edateselect{
		order: 2;
	}

	.etypeselect{
		order: 1;
	}
	
	.etypeselect, .elist{
		margin-bottom: 16px;
	}
}

@media (max-width:767px){
	
	.socialshare, .socialbutton{
		justify-content: center;
	}
	
	.edate, .etype{
		font-size: 14px;
		text-align: center;
	}
	
	.etypeselect, .elist{
		justify-content: center !important;
	}
	
	.datelabel{
		width: 60px;
	}
	
	input.dateinput{
		width: calc(100% - 60px);
		margin-left: 0;
	}
	
	.mediacon{
		width: 100%;
		margin: 0 0 20px 0 !important;
	}
	
	.mediacon:last-child{
		margin-bottom: 0 !important;
	}
	
}

/*Static Page Template*/
.left-content-image, .right-content-text, .left-content-text, .right-content-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}

.left-content-image img, .right-content-image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top;
}

.right-content-text{
	padding: 0 0 0 20px;
}

.left-content-text{
	padding: 0 20px 0 0;
	text-align: right;
	justify-content: flex-end;
}

.right-content-text p, .left-content-text p{
	margin: 0;
}

@media(max-width:767px){
	.right-content-text{
		padding: 20px 0;
		justify-content: center;
	}
	
	.right-content-image{
		order: 0;
	}
	
	.left-content-text{
		padding: 20px 0;
		order: 1;
		justify-content: center;
	}
	
	.right-content-text p, .left-content-text p{
		text-align: center;
	}
}

/*Contact Form*/
.cform{
	border-left: 1px solid #666666;
}

.cform input, .cform textarea, .eform input, .eform textarea{
	background: #ececec;
	color: #666;
}

.cform label, .eform label{
	font-size: 16px;
}

.custom-file{
	margin-bottom: 5px;
	height: auto !important;
}

.custom-file-input{
	padding: 15px 30px !important;
	height: auto !important;
	cursor: pointer;
}

.custom-file-label{
	padding: 15px 30px !important;
	height: auto !important;
	color: #666 !important;
	background-color: #ececec !important;
	border: none !important;
	border-radius: 0 !important;
	cursor: pointer;
	font-weight: bold;
}

.custom-file-label::after{
	padding: 15px !important;
	height: auto !important;
	color: #fff !important;
	background-color: #666 !important;
	border: none !important;
	border-radius: 0 !important;
}

.cformtextbot{
	margin-bottom: 5px !important;
}

@media (max-width:767px){

	.custom-file{
		margin-bottom: 0;
	}
	
	.cform{
		border-left: none;
	}
	
	.cform label{
		font-size: 14px;
		line-height: 16px
	}
}

/*FAQ*/
.faq-header{
	display: flex;
	background: #E84E1D;
	color: #ffffff;
	padding: 15px 30px;
	margin-top: 10px;
}

.faq-content{
	background: #ececec;
	color: #666666;
	padding: 15px 30px;
}

.faq-content p{
	margin: 0;
}

.qncon{
	width: calc(100% - 10px);
}

/*Custom Publishing*/
.cpcard{
	width: calc((1240px / 3) - 18px);
	text-align: center;
	margin-left: 10px;
	margin-bottom: 20px;
	box-shadow: 0 4px 4px rgba(68, 68, 68, 0.2);
	transform-origin: bottom;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.cpcon{
	width: calc((1240px / 3) - 18px);
	text-align: center;
	margin-left: 10px;
	margin-bottom: 20px;
}

.cpcard:hover{
	transform: translateY(-10px);
}

.cpcard:nth-last-child(-n + 3):nth-child(3n + 1), .cpcard:nth-last-child(-n + 3):nth-child(3n + 1) ~ .cpcard, .cpcon:nth-last-child(-n + 3):nth-child(3n + 1), .cpcon:nth-last-child(-n + 3):nth-child(3n + 1) ~ .cpcon{
	margin-bottom: 0;
}

.cpcard:nth-child(3n+1), .cpcon:nth-child(3n+1){
	margin-left: 0;
}

.cpimg{
	display: flex;
	width: 100%;
	height: calc((1240px / 3) - 18px);
}

.cpimg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cpdetail{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	width: 100%;
	padding: 30px;
	color: #666666 !important; /*NEW*/
}

.cpcard{
	text-decoration: none !important;
}

.cpcon img{
	width: 100%;
	height: auto;
}

.cp-photo{
	max-height: 180px;
	margin-bottom: 10px;
	border-radius: 50%;
}

@media (max-width: 1239px){
	.cpcard, .cpcon{
		width: calc((100% / 3) - 7px);
	}
	
	.cpcon{
		width: calc((100% / 3) - 7px);
	}
	
	.cpimg{
		height: calc((100vw / 3) - 23px);
	}
}

@media (max-width: 991px){
	.cpcard,.cpcon{
		width: calc((100% / 2) - 5px);
		text-align: center;
		margin-left: 10px;
		margin-bottom: 20px;
	}

	.cpcard:nth-last-child(-n + 3):nth-child(3n + 1), .cpcard:nth-last-child(-n + 3):nth-child(3n + 1) ~ .cpcard, .cpcon:nth-last-child(-n + 3):nth-child(3n + 1), .cpcon:nth-last-child(-n + 3):nth-child(3n + 1) ~ .cpcon{
		margin-bottom: 20px;
	}

	.cpcard:nth-child(3n+1), .cpcon:nth-child(3n+1){
		margin-left:10px;
	}
	
	.cpcard:nth-last-child(-n + 2):nth-child(2n + 1), .cpcard:nth-last-child(-n + 2):nth-child(2n + 1) ~ .cpcard, .cpcon:nth-last-child(-n + 2):nth-child(2n + 1), .cpcon:nth-last-child(-n + 2):nth-child(2n + 1) ~ .cpcon{
		margin-bottom: 0;
	}

	.cpcard:nth-child(2n+1), .cpcon:nth-child(2n+1){
		margin-left:0 !important;
	}
    .catacon {
        order: 2;
    }
}

@media (max-width: 767px){
		.cpcard, .cpcon{
			width: 100%;
			margin-left: 0 !important;
			margin-bottom: 20px !important;
		}
	
		.cpcard:last-child, .cpcon:last-child{
			margin-bottom: 0 !important;
		}
	
		.cpimg{
			height: calc(100vw - 32px);
		}
	
		.cpdetail{
			padding: 30px 16px;
		}
	
		.cpcon .cpdetail{
			padding: 30px 0;
		}
	
}

/*Case Study*/
.casestudy-img{
	display: flex;
	width: 25%;
	margin-bottom: 30px !important;
}

.casestudy-detail{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 75%;
	padding-left: 20px;
}

.left-casestudy{
	padding: 0 16px 0 0;
}

.right-casestudy{
	border-left: 1px solid #E84E1D;
	padding: 0 0 0 16px;
}

@media (max-width: 991px){
	.right-casestudy{
		border-top: 1px solid #E84E1D;
		border-left: none;
		text-align: center;
		padding: 30px 0 0;
	}
	
	.right-casestudy img{
		max-height: 350px;
	}
	
	.left-casestudy{
		padding: 0;
	}
	
	.casestudy-con{
		padding: 0;
	}
}

@media (max-width: 767px){
	.casestudy-img{
		width: 100%;
		height: 250px;
	}
	
	.casestudy-img img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	
	.casestudy-detail{
		width: 100%;
		padding-left: 0;
		align-items: center;
		text-align: center;
	}
	
	.full-text{
		text-align: center;
	}
}

/*Search Result*/
.searchnav{
	width: calc((100% / 3) - 7px);
	margin-right: 10px;
	margin-bottom: 1em;
	margin-top: 1em;
}

.searchnav:last-child{
	margin-right: 0;
}

.searchresult-btn{
	width: 50%;
	background-color: #E84E1D !important;
	color: #ffffff !important;
	border: 1px solid #E84E1D !important;
	cursor: pointer !important;
	border-radius: 10px;
	padding: 5px 40px;
}

.searchresult-btn:hover{
	background-color: transparent !important;
	color: #E84E1D !important;
}

@media (max-width: 767px){
	.searchnav{
		width: 100%;
		margin-right: 0;
		margin-top: 0;
	}
}

/*Author Banner*/
.author-banner{
	display: flex;
	width: 100%;
	height: 250px;
	background-color: rgba(0,0,0,0.7);
	background-blend-mode: multiply;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-decoration: none !important;
}

.Lauthor-banner{
	justify-content: flex-end;
}

.author-banner .title{
	margin-bottom: 15px;
}

.author-banner.active{
	background-color: rgba(0,0,0,0);
	pointer-events: none;
}

.Lauthor-banner-con{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	max-width: 620px;
}

.Rauthor-banner-con{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	max-width: 620px;
}

@media (max-width: 450px){
	.author-banner h4{
		font-size: 16px !important;
	}
}

@media (max-width: 350px){
	.author-banner h4{
		font-size: 12px !important;
	}
}

/*Author Filter*/
.author-filter{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.author-filter a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	margin: 5px 10px;
	border-radius: 5px;
	background: transparent;
	color: #ececec !important;
	text-decoration: none;
	pointer-events: none;
}

.author-filter a.active{
	color: #E84E1D !important;
	cursor: pointer;
	pointer-events: auto;
}

.author-filter a.selected{
	color: #ffffff !important;
	background: #E84E1D;
	cursor: auto !important;
	pointer-events: none;
}

@media (max-width: 767px){
	.author-filter a{
		width: 30px;
		height: 30px;
		margin: 5px;
	}
}

.authorcon{
	width: calc((1240px / 3) - 18px);
	text-align: center;
	margin-left: 10px;
	margin-bottom: 20px;
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(68, 68, 68, 0.2);
}

.authorcon:nth-last-child(-n + 3):nth-child(3n + 1), .authorcon:nth-last-child(-n + 3):nth-child(3n + 1) ~ .authorcon{
	margin-bottom: 0;
}

.authorcon:nth-child(3n+1){
	margin-left: 0;
}

.author-img{
	display: flex;
	width: 100%;
	height: calc(((1240px / 3) - 18px) / 1.5);
	overflow: hidden;
	border-radius: 20px 20px 0 0 ;
}

.author-detail{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	text-align: center;
	width: 100%;
	height: 140px;
	padding: 30px 30px 0;
}

.author-info{
	margin: 0;
	width: 100%;
}

.author-social{
	font-size: 25px;
	margin-bottom: 30px;
}

.author-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.authorcon:hover .author-img img{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);	
}

@media (max-width: 1239px){
	.authorcon{
		width: calc((100% / 3) - 7px);
	}
	
	.author-img{
		height: calc(((100vw / 3) - 23px) / 1.5);
	}
	
	.author-detail{
		height: 150px;
	}
}

@media (max-width: 991px){
	.authorcon{
		width: calc((100% / 2) - 5px);
		text-align: center;
		margin-left: 10px;
		margin-bottom: 20px;
	}

	.authorcon:nth-last-child(-n + 3):nth-child(3n + 1), .authorcon:nth-last-child(-n + 3):nth-child(3n + 1) ~ .authorcon{
		margin-bottom: 20px;
	}

	.authorcon:nth-child(3n+1){
		margin-left:10px;
	}
	
	.authorcon:nth-last-child(-n + 2):nth-child(2n + 1), .authorcon:nth-last-child(-n + 2):nth-child(2n + 1) ~ .authorcon{
		margin-bottom: 0 !important;
	}

	.authorcon:nth-child(2n+1){
		margin-left:0 !important;
	}
	
	.author-img{
		height: calc(((100vw / 2) - 21px) / 1.5);
	}
	
	.author-detail{
		height: 135px;
	}
}

@media (max-width: 767px){
	
		.author-detail{
			height: auto;
			padding: 15px 15px 0;
		}
	
		.author-detail .title{
			line-height: 16px;
			margin: 0;
		}
	
		.author-detail .title a{
			font-size: 16px !important;
		}
	
		.author-social{
			margin-bottom: 15px;
		}
	
}

/*Topics carousel*/
.topic-con{
	width: 100%;
	padding: 50px;
	margin: 10px 0;
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(68, 68, 68, 0.2);
	transform-origin: bottom;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.topic-con:hover{
	transform: translateY(-10px);
}

.topicscarousel a{
	text-decoration: none !important;
}

.topic-detail{
	min-height: 108px;
}

@media (max-width: 767px){
	.topic-con{
		padding: 50px 15px;
	}
	.topic-detail{
		text-align: center;
	}
}

@media (max-width: 350px){
	.topic-con{
		padding: 30px 15px 15px;
	}
}

.topic-info{
	padding: 30px 16px;
	border-bottom: 1px solid #E84E1D;
}

.topic-info:last-child{
	border-bottom: none;
}

.topic-photo{
	width: calc((100% / 3) - 8px);
	margin-right: 10px;
	overflow: hidden;
}

.topic-photo img{
	transition: all .3s ease-in-out !important;
	-webkit-transition: all .3s ease-in-out !important;
	-ms-transition: all .3s ease-in-out !important;
	-moz-transition: all .3s ease-in-out !important;
}

.topic-photo:hover img{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);	
}

.topic-photo:last-child{
	margin-right: 0;
}

.topic-more{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.topic-more a{
	text-decoration: none;
}

.greyborder{
	border-left: 1px solid #999999 !important;
}

.topic-list a{
	margin-bottom: 5px;
	text-decoration: none;
}

.topicmenu{
	position: fixed;
	top: 0;
	right: -50%;
	width: 50%;
	height: 100%;
	background: #ffffff;
	z-index: 9999;
	padding: 50px;
	overflow-y: scroll;
}

.topic-close{
	position: fixed;
	top: 30px;
	right: 50px;
	font-size: 20px;
	cursor: pointer;
}

.author-page-detail{
	padding-left: 1em;
}

.author-page-social{
	font-size: 25px;
	text-align: right;
}

@media (max-width: 1239px){
	.topic-padding{
		padding-right: 16px;
	}
}

@media (max-width: 991px){
	.author-page-detail{
		padding-left: 0;
		text-align: center;
	}
	
	.author-page-social{
		text-align: center;
		margin-bottom: 10px
	}
}

@media (max-width: 767px){
	.topic-more{
		margin-top: 10px;
	}
	
	.topic-info{
		text-align: center;
	}
	
	.topicmenu{
		right: -90%;
		width: 90%;
		padding: 30px 15px;
	}
	
	.topic-close{
		right: 15px;
	}
	
	.authorimg{
		padding: 0 16px;
	}	
}

.topicscarousel .owl-stage, .bookscarousel .owl-stage{
	display: flex;
}

.topic-con{
	height: calc(100% - 20px);
}

.dauthor{
	padding:5px 0;
}

.dauthor:after{
	content: "/";
	margin: 0 5px;
}

.dauthor:last-of-type:after{
	content: "";
	margin: 0 5px;
}

.eventimg img{
	width: 100%;
}

.eventdetail{
	padding-left: 0;
	padding-right: 16px;
}

.rsvpform{
	margin: 0 0 30px;
}

@media (max-width: 1239px){
	.eventdetail{
		padding-right: 0;
	}
}

@media (max-width: 991px){
	.rsvpcon{
		text-align: center;
	}
}

@media (max-width: 767px){
	.rsvpform p{
		text-align: center;
	}
}
#tiktok {
    opacity: 0.45;
}



#tiktok:hover {
    opacity: 1;
}



#tiktok img {
    width: 21px;
    height: 20px;
    margin-top: -4px;
}
