/**
 * styles/ijcal-modern.css
 *
 * IJCAL Modern theme for OJS 3.4 — main stylesheet.
 * Loaded after Bootstrap 3 and Font Awesome 4.7.
 *
 * Palette
 *   --ijcal-primary       #fe0000  (red)        links, buttons, active menu, accents (theme option)
 *   --ijcal-primary-dark  #c40000              link hover
 *   --ijcal-slate         #34495e              banner mask, footer, page-top gradient
 *   --ijcal-slate-dark    #192a3a              footer top border
 *   --ijcal-sidebar-title #c397a0              sidebar block title background
 *   --ijcal-sidebar-bg    #f4f4f4
 */

/* ---------------------------------------------------------------------------
 * Fonts (Raleway variable font, bundled)
 * ------------------------------------------------------------------------- */
@font-face {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/raleway/Raleway-VF.woff') format('woff-variations'),
	     url('../fonts/raleway/Raleway-VF.woff') format('woff');
}
@font-face {
	font-family: 'Raleway';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/raleway/Raleway-Italic-VF.woff') format('woff-variations'),
	     url('../fonts/raleway/Raleway-Italic-VF.woff') format('woff');
}

:root {
	--ijcal-primary: #fe0000;
	--ijcal-primary-rgb: 254, 0, 0;
	--ijcal-primary-dark: #c40000;
	--ijcal-slate: #34495e;
	--ijcal-slate-dark: #192a3a;
	--ijcal-sidebar-title: #f07a7a;
	--ijcal-sidebar-bg: #f4f4f4;
	--ijcal-text: #222;
	--ijcal-border: #ececec;
}

/* ---------------------------------------------------------------------------
 * Base
 * ------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ijcal-text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a { color: var(--ijcal-primary); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--ijcal-primary-dark); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: var(--ijcal-primary);
	font-weight: 300;
}
h5, h6 { font-weight: 600; }

.container { width: 90% !important; margin: 0 auto; }

.btn, .btn-default, .btn-primary, .block_make_submission_link, .btn.activeNow:hover {
	background: var(--ijcal-primary);
	color: #fff;
	border-color: var(--ijcal-primary);
	font-weight: 500;
	border-radius: 3px;
	transition: all .2s;
}
.btn:hover, .btn:focus, .btn-default:hover, .btn-primary:hover, .btn-primary:focus,
.btn.activeNow, .block_make_submission_link:hover {
	background: #fff;
	color: var(--ijcal-primary);
	border-color: var(--ijcal-primary) !important;
}
.btn-primary.read-more { float: right; margin-top: 10px; }

.pkp_screen_reader { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.plain { padding-left: 0; }
.plain li { line-height: 28px; }
.showOnMobile { display: none !important; }

/* ---------------------------------------------------------------------------
 * Mobile menu toggle (checkbox hack, activated below 960px)
 * ------------------------------------------------------------------------- */
#menuOnTop { display: none; }
label[for="menuOnTop"] {
	display: none;
	font-size: 24px;
	padding: 10px;
	color: #fff;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 5px;
	cursor: pointer;
	margin: 0;
}

/* ---------------------------------------------------------------------------
 * Fixed transparent header
 * ------------------------------------------------------------------------- */
header#headerNavigationContainer {
	border: 0;
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	min-height: 0;
}
header#headerNavigationContainer:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.84) 22%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.61) 63%, rgba(0,0,0,0) 100%);
	pointer-events: none;
}
header a { color: #fff; }

.innerHeaderWrp {
	width: 90%;
	display: table;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.navbar { z-index: inherit; border: 0; }

/* ---- top utility bar ---- */
.topHeader {
	float: right;
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.29);
	background: transparent;
	transition: .2s;
}
.scrollNow .topHeader { height: 0; padding: 0; overflow: hidden; border-bottom: 0; }
.scrollNow header#headerNavigationContainer:before { background: rgba(18, 25, 35, 0.96); box-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.scrollNow #primaryMenuWrp { margin-top: 12px; margin-bottom: 8px; }

.topSocial { float: left; }
.topSocial ul { list-style: none; padding: 0; margin: 0; }
.topSocial li { display: inline-block; }
.topSocial li a {
	color: #fff;
	display: inline-block;
	padding: 2px;
	border-radius: 3px;
	text-align: center;
	width: 25px;
	transition: all .5s;
}
.topSocial li a:hover { text-decoration: none; color: #fff; }
.topSocial li a.fa-facebook:hover { background: #507CBE; }
.topSocial li a.fa-twitter:hover { background: #63CDF1; }
.topSocial li a.fa-instagram:hover { background: #E4405F; }
.topSocial li a.fa-linkedin:hover { background: #90CADD; }
.topSocial li a.fa-youtube-play:hover { background: #E62117; }

.callQuestion { font-size: 12px; color: rgba(255,255,255,0.45); padding: 0 8px; line-height: 25px; }
.callQuestion strong { color: #fff; }

#topMenuRight { padding: 0; text-align: right; }
#topMenuRight ul.menu { list-style: none; margin: 0; padding: 0; float: left; }
#topMenuRight .menu > li { float: left; position: relative; }
#topMenuRight .menu > li > a {
	display: block;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	margin: 0;
	line-height: 21px;
}
#topMenuRight .menu > li > a:hover { color: rgba(255,255,255,0.75); }
#topMenuRight .fa { vertical-align: middle; padding-right: 4px; }

/* search in the top bar */
#searchWrpNav { padding: 0 10px; }
.searchCntNav { display: flex; align-items: center; }
.searchCntNav .show-search { margin: 0 6px 0 0; cursor: pointer; font-weight: normal; }
.searchCntNav .fa.fa-search { color: #fff; padding: 0; }
.searchCntNav form { float: left; padding-right: 10px; margin: 0; }
.searchCntNav input.form-control {
	height: 25px;
	width: 0;
	padding: 0;
	border: 0;
	border-radius: 3px;
	font-size: 12px;
	opacity: 0;
	box-shadow: none;
	transition: width .3s, padding .3s, opacity .3s;
}
.searchCntNav.open input.form-control,
.searchCntNav input.form-control:focus,
.searchCntNav:hover input.form-control {
	width: 180px;
	padding: 2px 8px;
	opacity: 1;
}

/* hover drop-downs in the top bar (language, logged-in user) */
.newDropDown { position: relative; }
.newDropDown > ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 90%;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 150px;
	text-align: left;
	border-radius: 3px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.18);
	transition: .2s;
	z-index: 20;
}
.newDropDown > ul:before {
	content: '';
	position: absolute;
	top: -13px;
	right: 14px;
	border-width: 6px;
	border-style: solid;
	border-color: transparent;
	border-bottom: 8px solid #fff;
}
.newDropDown > ul li { display: block; width: 100%; padding: 0; float: none; }
.newDropDown > ul li:first-child { margin-top: 5px; }
.newDropDown > ul li:last-child { margin-bottom: 5px; }
.newDropDown > ul li a {
	display: block;
	border-bottom: 1px solid var(--ijcal-border);
	padding: 5px 10px;
	font-size: 13px;
	color: #333;
	text-shadow: none;
	white-space: nowrap;
}
.newDropDown > ul li:last-child a { border-bottom: 0; }
.newDropDown > ul li a:hover { background: var(--ijcal-border); color: #333; }
.newDropDown:hover > ul, .newDropDown:focus-within > ul { visibility: visible; opacity: 1; top: 100%; }
.newDropDown .fa-angle-down { padding-left: 4px; font-size: 11px; }

/* ---- logo ---- */
.mainNavigation {
	float: left;
	padding: 0 0 3px 0;
	margin-right: 50px;
	background: transparent;
	position: relative;
	z-index: 2;
}
.mainNavigation .navbar-header { float: none; }
.mainNavigation a { display: inline-block; padding: 0; float: left; }
.mainNavigation img { max-height: 55px; width: auto; margin: 10px 0; }
.mainNavigation a.site-name { color: #fff; font-size: 24px; font-weight: 300; line-height: 75px; }
.mainNavigation a.site-name:hover { color: #fff; }

/* ---- primary navigation ---- */
#primaryMenuWrp {
	position: relative;
	display: table;
	float: left;
	margin-top: 24px;
}
#main-navigation { float: left; padding-right: 116px; }
#main-navigation > li > a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 5px 15px;
	margin-right: 10px;
	position: relative;
	z-index: 1;
	background: transparent !important;
}
#main-navigation > li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 100%;
	height: 0;
	border-radius: 3px;
	background: var(--ijcal-primary);
	transition: .2s;
	z-index: -1;
}
#main-navigation > li > a:hover:before,
#main-navigation > li > a:focus:before,
#main-navigation .dropdown:hover > a:before,
#main-navigation > li > a.active:before,
#main-navigation > li.active > a:before { top: 0; height: 100%; }
#main-navigation > li > a .fa-angle-down { padding-left: 4px; }

#main-navigation .dropdown .dropdown-menu {
	display: block;
	visibility: hidden;
	opacity: 0;
	margin-top: 20px;
	min-width: 230px;
	border: 0;
	border-radius: 3px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.18);
	background: #fff;
	padding: 0;
	transition: .2s;
}
#main-navigation .dropdown .dropdown-menu:after {
	content: '';
	position: absolute;
	top: -17px;
	left: 14px;
	border-width: 7px;
	border-style: solid;
	border-color: transparent;
	border-bottom: 10px solid #fff;
}
#main-navigation .dropdown .dropdown-menu li { border-bottom: 1px solid var(--ijcal-border); }
#main-navigation .dropdown .dropdown-menu li:last-child { border-bottom: 0; }
#main-navigation .dropdown .dropdown-menu a {
	color: #999;
	font-weight: 500;
	font-size: 13px;
	line-height: 25px;
	padding: 5px 15px;
	transition: .2s;
	white-space: normal;
}
#main-navigation .dropdown .dropdown-menu a:hover { background: var(--ijcal-border); color: var(--ijcal-primary); }
#main-navigation .dropdown:hover .dropdown-menu,
#main-navigation .dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; margin-top: 10px; }

/* ---------------------------------------------------------------------------
 * Banner (.journalInfoCol)
 * ------------------------------------------------------------------------- */
.journalInfoCol {
	padding: 180px 5% 30px 5%;
	height: 60vh;
	min-height: 380px;
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	background-color: var(--ijcal-slate);
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}
.journalInfoCol:before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20, 28, 38, 0.35);
	pointer-events: none;
}
.journalInfoCol > * { position: relative; }
.indexJournalPage.journalInfoCol { height: 100vh; min-height: 720px; overflow: hidden; }

.journalInfoCol h1, .journalInfoCol .bannerTitle {
	color: #fff;
	padding: 5px 20px;
	margin: 0;
	font-weight: 100;
	text-align: center;
	font-size: 43px;
	line-height: 1.2;
}
.journalInfoCol:not(.indexJournalPage) h1,
.journalInfoCol:not(.indexJournalPage) .bannerTitle {
	padding: 20px 0;
	background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(var(--ijcal-primary-rgb),0.85) 31%, rgba(var(--ijcal-primary-rgb),0.85) 61%, rgba(0,0,0,0) 100%);
}
.journalInfoCol h1 span { font-weight: 300; }
.journalInfoCol h1 small { color: #fff; font-size: 22px; font-weight: 300; display: inline-block; margin-top: 8px; }

/* logo in the banner (homepage) */
.journalInfoCol h1.bannerLogo { padding: 0 20px; background: none; }
.journalInfoCol h1.bannerLogo a { display: block; width: 60%; max-width: 720px; min-width: 280px; margin: 0 auto; }
.journalInfoCol h1.bannerLogo img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 14px 24px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.journalInfoCol .bannerTagline {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	text-align: center;
	margin: 22px auto 0;
	max-width: 900px;
	line-height: 1.4;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
/* homepage with the logo in the banner: no small logo, primary menu centred */
.mainNavigation.logoHidden { display: none; }
.mainNavigation.logoHidden ~ #primaryMenuWrp { float: none; margin-left: auto; margin-right: auto; }
.mainNavigation.logoHidden ~ #primaryMenuWrp #main-navigation { padding-right: 0; float: none; }
.mainNavigation.logoHidden ~ #primaryMenuWrp #main-navigation > li > a { margin-right: 4px; margin-left: 4px; }

/* issue-cover slider (anchored to the bottom of the banner so the covers tuck behind the mask) */
.sliderWrp { position: relative; }
.indexJournalPage .sliderWrp { position: absolute; left: 0; right: 0; bottom: 40px; z-index: 1; }
#sliderInner { margin-top: 50px; }
#sliderInner .item { text-align: center; }
#sliderInner .item a { display: inline-block; }
#sliderInner img {
	display: inline-block;
	max-height: var(--ijcal-cover-h, 300px);
	width: auto;
	box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
#sliderInner .item a:not(:nth-child(2)) img { transform: translateY(40px); max-height: calc(var(--ijcal-cover-h, 300px) * 0.87); }
#sliderInner .item a:nth-child(2) { margin-left: 20px; margin-right: 20px; }
#sliderInner .carousel-control { background: transparent; width: 40px; text-shadow: none; opacity: .7; }
#sliderInner .carousel-control:hover { opacity: 1; }
#sliderInner .carousel-control .glyphicon { top: 50%; margin-top: -15px; font-size: 30px; }

/* angled mask at the bottom of the banner */
.maskHd { position: absolute; bottom: -1px; left: 0; right: 0; height: 108px; overflow: hidden; z-index: 2; }
.maskHd svg { position: absolute; bottom: 0; left: 50%; transform: translateX(-60%); width: 2700px; height: 64px; }
.maskHd svg .bmask-bgfill { fill: #ffffff; }
.maskHd svg .bmask-customfill { fill: var(--ijcal-primary); }
.indexJournalPage.journalInfoCol .maskHd svg .bmask-bgfill { fill: var(--ijcal-slate); }

/* ---------------------------------------------------------------------------
 * Content wrapper
 * ------------------------------------------------------------------------- */
#mainContainer {
	padding: 0;
	clear: both;
	background: #fff;
	width: 100% !important;
	display: flex;
	position: relative;
}
.bgTop { background-color: var(--ijcal-slate); width: 100%; height: 200px; position: absolute; left: 0; top: 0; }
.bgTop div { height: 100%; background: linear-gradient(to bottom, rgba(52,73,94,0.1) 0%, rgba(255,255,255,1) 100%); }
body:not(.pkp_page_index) .bgTop { display: none; }

#sidebar, .pkp_structure_main { padding-top: 20px; padding-bottom: 20px; position: relative; }
.pkp_structure_main { min-width: 0; }
.pkp_structure_main.col-md-12 { padding: 30px 5%; padding-top: 0; }
.pkp_page_index main { padding: 0; }
.journalContentWr { padding: 30px; }
#main-content { padding: 20px 15px; }
.pkp_page_index #main-content { padding: 0; }

/* breadcrumbs */
.breadcrumb {
	background: transparent;
	font-size: 16px;
	padding: 10px 0;
	margin-bottom: 20px;
	border-bottom: 1px dotted #003f7c;
	border-radius: 0;
}
.breadcrumb a { font-weight: 600; }
.breadcrumb > li + li:before { content: '/'; color: #333; }
.breadcrumb > .active { color: #333; }

.page-header { margin-top: 0; border-bottom: 1px solid #eee; }
.page-header h1, .page-header h2 { border: 0; margin-top: 0; }
.page_contact h1, .page-header h1 { margin-top: 0; }

/* ---------------------------------------------------------------------------
 * Homepage
 * ------------------------------------------------------------------------- */
.boxWrpJournal { --ijcal-about-bg: #392020; margin-top: 40px; margin-bottom: 40px; color: #fff; border-radius: 5px; position: relative; }
.boxWrpJournal:after {
	content: '';
	position: absolute;
	top: -16px;
	left: 0;
	width: 100%;
	height: 30%;
	background: var(--ijcal-about-bg);
	border-radius: 8px;
	transform: skewY(2deg);
	z-index: 2;
}
.boxWrpJournal:before {
	content: '';
	position: absolute;
	top: -16px;
	right: 22px;
	width: 50%;
	height: 30%;
	background: rgba(0,0,0,0.2);
	border-radius: 8px;
	z-index: 2;
}
.boxWrpJournal > div { background: var(--ijcal-about-bg); padding: 20px; border-radius: 5px; }
.boxWrpJournal * { position: relative; z-index: 3; }
.boxWrpJournal h2 { color: #fff; margin-top: 0; font-size: 26px; line-height: 40px; font-weight: 400; }
.boxWrpJournal p, .boxWrpJournal .journal-description { font-weight: 300; color: #fff; }
.boxWrpJournal .journal-description { max-height: 14em; overflow: hidden; margin-bottom: 10px; }
.boxWrpJournal .journal-description a { color: #fff; text-decoration: underline; }
.boxWrpJournal .btn.moreBtn.activeNow { background: transparent; color: #fff; border: 1px solid #fff !important; }
.boxWrpJournal .btn.moreBtn.activeNow:hover, .boxWrpJournal .btn.moreBtn.activeNow:focus { background: #fff; color: var(--ijcal-about-bg); }
.boxWrpJournal .journal-description table { color: #fff; }
.boxWrpJournal .journal-description td, .boxWrpJournal .journal-description th { border-color: rgba(255,255,255,0.15); padding: 2px 6px 2px 0; }

.page_index_journal .page-header h2 { margin: 0; }
.page_index_journal .page-header { margin-top: 30px; }
.current_issue .page-header { margin-bottom: 0; }
.current_issue_identification { display: block; font-size: 16px; color: #777; margin-top: 4px; }

/* announcements */
.cmp_announcements.media { margin-top: 20px; }
.announcement-summary { margin-bottom: 30px; }
.themeEditIcon {
	background: #7e7e7f;
	color: #fff;
	padding: 10px 15px;
	float: left;
	font-size: 18px;
	display: inline-block;
	border-radius: 3px;
	width: 48px;
	text-align: center;
}
.titleWithThemeEditIcon { margin-left: 63px; line-height: 32px; }
.titleWithThemeEditIcon .date {
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	margin: 10px 0;
	line-height: 16px;
	color: #999;
}
.announcement-summary .media-heading { margin-bottom: 15px; font-size: 22px; }
.announcementContent, .announcement-full .description { padding-left: 63px; }
.announcementContent .btn { margin-top: 10px; }
.announcement-full .page-header { border-bottom: 0; margin-bottom: 10px; }
.announcement-full h1 { margin-bottom: 0; }

/* issue heading */
.page_index_journal .heading, .page_issue .heading { clear: both; margin-bottom: 10px; padding: 30px 0; display: table-cell; }
.page_issue .heading { padding-top: 0; }
.page_index_journal .issue-toc .thumbnail, .page_issue .thumbnail {
	float: left;
	width: 200px;
	margin-bottom: 0;
	padding: 4px;
	border: 1px solid #ddd;
	border-radius: 3px;
}
.page_index_journal .issue-toc .thumbnail + .description, .page_issue .thumbnail + .description { margin-left: 220px; }
.issue-toc .heading .description .published, .issue-toc .heading .description .pub_id { margin-top: 10px; }

/* section titles + article list */
.issueTocPublishArticles { margin-top: 5px; }
.current_issue_title {
	background: var(--ijcal-border);
	padding: 5px 10px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	margin: 20px 0 0;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.galleys .current_issue_title { margin-bottom: 10px; }
.article-summary { border-bottom: 1px solid #eee; padding: 15px 0 10px; margin-top: 0; }
.article-summary .media-heading { font-size: 14px; font-weight: 600; margin: 0 0 6px; line-height: 1.5; }
.article-summary .media-heading a { color: #333; }
.article-summary .media-heading a:hover { color: var(--ijcal-primary); }
.article-summary .media-heading .subtitle { display: block; font-weight: 400; color: #666; }
.article-summary .media-left a { float: left; }
.article-summary .media-left img { max-width: 100px; margin-right: 15px; }
.article-summary .meta { font-size: 13px; color: #666; }
.article-summary .meta .authors { font-weight: 500; }
.article-summary .meta .pages { display: inline-block; margin-top: 2px; }
.WrpMediaCnt { float: left; width: 80%; }
.WrpMediaCnt + .galleryLinksWrp { float: right; text-align: right; width: 20%; }
.galleryLinksWrp p { margin: 0; }
.galleryLinksWrp .btn { margin-bottom: 4px; font-size: 12px; padding: 5px 10px; }
.galleryLinksWrp a[data-type="pdf"]:before { content: '\f1c1'; font-family: 'FontAwesome'; margin-right: 5px; }
.galleryLinksWrp a[data-type="file"]:before { content: '\f15b'; font-family: 'FontAwesome'; margin-right: 5px; }

/* archive */
.issue-summary { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-top: 20px; }
.issue-summary .media-left a.cover img { max-width: 200px; border: 1px solid #ddd; padding: 3px; }
.issue-summary .media-heading { font-size: 22px; }
.issue-summary .series.lead { font-size: 16px; color: #666; margin: 5px 0 0; }
.issue-summary .published { color: #999; font-size: 13px; }

/* ---------------------------------------------------------------------------
 * Sidebar
 * ------------------------------------------------------------------------- */
#sidebar { background: var(--ijcal-sidebar-bg); }
#sidebar ul { padding-left: 10px; }
#sidebar li { list-style: none; }
#sidebar li a { padding: 5px; transition: all .2s; display: block; }
#sidebar li a:before { content: '\00BB'; margin-right: 6px; }
#sidebar li a:hover { text-decoration: underline; }
#sidebar > div { margin-bottom: 10px; background: #fff; border: 1px solid #e6e6e6; }
#sidebar > div .content { padding: 8px 10px; }
#sidebar > div .content .content { padding: 0; }
#sidebar > div .title, #sidebar > div h2.title {
	display: block;
	cursor: pointer;
	background: var(--ijcal-sidebar-title);
	color: #fff;
	position: relative;
	font-size: 17px;
	font-weight: 500;
	padding: 5px 40px 5px 10px;
	margin: 0;
	line-height: 1.5;
}
#sidebar > div .title:after {
	content: '\f068';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 0 10px;
	line-height: 35px;
	font-size: 14px;
	background: var(--ijcal-primary);
	color: #fff;
}
#sidebar > div.showHide .title:after { content: '\f067'; }
#sidebar > div .title.pkp_screen_reader, #sidebar > div h2.pkp_screen_reader { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
#sidebar > div .title.pkp_screen_reader:after { display: none; }
#sidebar > div.showHide .title ~ .content { display: none; }
#sidebar > div.showHide { border: 1px solid var(--ijcal-primary); }
#sidebar > div.showHide .title { background: #fff; color: var(--ijcal-primary); }
#sidebar > div.block_make_submission { border: 0; background: transparent; }
#sidebar > div.block_make_submission .content { padding: 0; }
.block_make_submission_link {
	display: inline-block;
	text-align: center;
	border: 1px solid var(--ijcal-primary);
	border-radius: 3px;
	transition: all .5s;
	font-size: 18px;
	cursor: pointer;
	color: #fff;
	width: 100%;
	padding: 10px;
}
#sidebar .block_custom img { max-width: 100%; height: auto; }
#sidebar .pkp_block.block_language .locale_current a,
#sidebar .pkp_block.block_language li.current a { font-weight: 700; }
#carousel-example-generic { margin-bottom: 20px; }

/* ---------------------------------------------------------------------------
 * Article page
 * ------------------------------------------------------------------------- */
.article-details h1.page-header { font-size: 28px; font-weight: 400; line-height: 1.3; }
.article-details .article-sidebar .download { padding: 10px 0; }
.article-details .article-sidebar .list-group-item { border-color: #eee; }
.article-details .article-sidebar .list-group-item .label {
	display: block;
	text-align: left;
	color: #999;
	font-size: 12px;
	padding: 0 0 4px;
	font-weight: 600;
	text-transform: uppercase;
	background: none;
	white-space: normal;
}
.article-details .authors .author { margin-bottom: 10px; }
.article-details .authors .author strong { color: #333; }
.article-details .article-author-affiliation { color: #666; font-size: 13px; }
.article-details .orcid a { font-size: 13px; }
.article-details .article-abstract { text-align: justify; }
.article-details .panel { border-radius: 3px; box-shadow: none; }
.article-details .panel-heading { background: var(--ijcal-border); }
.article-details .panel-title { font-size: 14px; font-weight: 600; color: #333; text-transform: uppercase; }
.article-details .article-references h2,
.article-details .article-main h2:not(.sr-only) { font-size: 20px; font-weight: 600; color: #333; margin-top: 30px; }
.article-details .article-references-content { font-size: 14px; }
.article-details .article-references-content p { margin-bottom: 8px; }
.article-details .item.downloads_chart .label { display: block; text-align: left; color: #333; background: none; font-size: 16px; padding: 0 0 8px; }

/* ---------------------------------------------------------------------------
 * Misc pages / forms / tables
 * ------------------------------------------------------------------------- */
.page_submissions .alert-info { border: 0; border-left: 5px solid #8e9193; border-radius: 0; background: #ddd; color: #000; }
.page_submissions .alert-info a {
	background-color: #8e9193;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	color: #fff !important;
	border-radius: .375rem;
	line-height: 2.1875rem;
	padding: 1rem 6rem;
}
.page_submissions .alert-info a:hover { text-decoration: underline; }
.submission_checklist .fa-check { color: #838383; float: left; font-size: 16px; }
.submission_checklist .item-content { margin-left: 27px; display: block; }
.submission_checklist .description { font-size: 16px; }
.contact_section ul { list-style: none; padding: 0; line-height: 28px; }
.contact.support { margin-top: 20px; }
#contact-form .form-control { width: 100%; }
.team-member img { max-width: 100%; height: auto; }
.table-responsive .action { white-space: nowrap; }
.inline-form-field input, .inline-form-field select { margin: 5px; }
.cmp_pagination { display: inline-block; width: 100%; }
.form-control:focus { border-color: var(--ijcal-primary); box-shadow: 0 0 0 2px rgba(var(--ijcal-primary-rgb),0.15); }
.pagination > .active > a, .pagination > .active > a:hover { background: var(--ijcal-primary); border-color: var(--ijcal-primary); }
.pagination > li > a { color: var(--ijcal-primary); }
.label-default { background: #777; }
.download { padding-top: 10px; padding-bottom: 10px; }

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------- */
#footer {
	position: relative;
	clear: both;
	background-color: var(--ijcal-slate);
	border-top: 15px solid var(--ijcal-slate-dark);
	padding-top: 50px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}
#footer p, #footer a { color: #fff; }
#footer a:hover { color: #ccc; text-decoration: underline; }
#footer ul { list-style: none; padding-left: 0; }
#footer ul li { padding: 5px 0; }
.footer-widget { margin-bottom: 30px; }
.footer-widget h4 {
	color: #eee;
	text-transform: uppercase;
	padding-bottom: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 700;
	position: relative;
}
.footer-widget h4 .head-line { position: absolute; bottom: 0; left: 0; display: block; width: 50px; height: 3px; background-color: #ccc; margin: 0; }
.about-widget h4 { line-height: 1.5; padding-right: 10px; }
.about-widget h4 a { color: #eee; text-decoration: none; }
.about-widget h4 a:hover { color: #fff; text-decoration: none; }
.about-widget p { font-weight: 300; text-align: left; margin-bottom: 15px; }
.about-widget ul li { padding: 7px 0; border-bottom: 1px solid rgba(204,204,204,0.25); }
.about-widget .fa { width: 18px; text-align: center; }
.social-widget ul:not(.social-icons) li { line-height: 1.5; }
.social-widget ul:not(.social-icons) li a { word-break: break-all; }
.social-widget ul:not(.social-icons) li { border-bottom: 1px solid rgba(204,204,204,0.25); padding: 7px 0; }
.social-widget .fa { width: 18px; text-align: center; }
.social-icons { margin: 15px 0 0; padding: 0; }
.social-widget ul.social-icons li { display: inline-block; margin-right: 4px; margin-bottom: 4px; padding: 0; }
.social-widget ul.social-icons li a span {
	font-size: 1.4em;
	width: 30px;
	height: 30px;
	color: #fff;
	line-height: 30px;
	text-align: center;
	display: block;
	border-radius: 2px;
	transition: all .2s ease-in-out;
	background: rgba(255,255,255,0.08);
}
.social-widget ul.social-icons li a:hover { text-decoration: none; }
.social-widget ul.social-icons li a.facebook:hover span { background-color: #507CBE; }
.social-widget ul.social-icons li a.twitter:hover span { background-color: #63CDF1; }
.social-widget ul.social-icons li a.instgram:hover span { background-color: #E4405F; }
.social-widget ul.social-icons li a.linkdin:hover span { background-color: #90CADD; }
.social-widget ul.social-icons li a.youtube:hover span { background-color: #E62117; }
.links-widget ul.footerLinks li .fa { margin-right: 4px; font-size: 11px; opacity: .7; }
.links-widget ul.footerLinks ul { display: none; }
.custom-widget img { max-width: 100%; height: auto; margin: 4px 0; }
.custom-widget .row img { display: inline-block; }

.copyright-section { padding: 15px 0; font-size: 11px; letter-spacing: .5px; border-top: 1px solid rgba(255,255,255,0.06); }
.copyright-section p { font-size: 11px; text-transform: uppercase; margin-top: 4px; }
.footer .bottom-bar { padding: 5px 0; }
.bottom-bar .pageFooter { font-size: 12px; text-transform: none; letter-spacing: 0; line-height: 1.7; margin: 10px 0 12px; }
.bottom-bar .pageFooter a { text-decoration: underline; }
.bottom-bar .pageFooter p { text-transform: none; font-size: 12px; }
.bottom-bar .pageFooter img { max-height: 36px; width: auto; margin: 5px; display: inline-block; }
.bottom-bar .small { color: rgba(255,255,255,0.7); }

.back-to-top {
	display: none;
	position: fixed;
	bottom: 18px;
	right: 15px;
	z-index: 50;
}
.back-to-top i {
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	color: #fff;
	border-radius: 2px;
	text-align: center;
	background-color: var(--ijcal-primary);
	transition: all .2s ease-in-out;
}
.back-to-top:hover i { background-color: var(--ijcal-primary-dark); }

/* ---------------------------------------------------------------------------
 * PDF viewer (pdfJsViewer plugin) header bar
 * ------------------------------------------------------------------------- */
.header_view_pdf, .header_view { position: fixed; width: 100%; background: var(--ijcal-primary); color: #fff; display: inline-block; z-index: 1; }
.header_view_pdf .pkp_screen_reader, .header_view .pkp_screen_reader { display: none; }
.header_view_pdf .title, .header_view .title { line-height: 30px; display: block; padding-left: 40px; max-width: 100%; overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; color: #fff; }
.header_view_pdf .return, .header_view_pdf .download, .header_view .return, .header_view .download { background: #fff; color: var(--ijcal-primary); display: block; position: absolute; top: 0; text-align: center; line-height: 30px; height: 30px; padding: 0 20px; }
.header_view_pdf .return, .header_view .return { left: 0; width: 30px; padding: 0; }
.header_view_pdf .download, .header_view .download { right: 0; }
.header_view_pdf .return:before, .header_view .return:before { content: "\f060"; font-family: 'FontAwesome'; }
.header_view_pdf .download:before, .header_view .download:before { content: "\f019"; font-family: 'FontAwesome'; margin-right: 6px; }
.header_view_pdf .return .label, .header_view_pdf .download .label, .header_view .return .label, .header_view .download .label { color: var(--ijcal-primary); }
#pdfCanvasContainer { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow-y: hidden; width: 100%; max-width: 100%; }
#pdfCanvasContainer iframe { margin-top: 30px; border: 0; }

/* short viewports (laptops): tighter spacing in the banner */
@media only screen and (max-height: 820px) and (min-width: 961px) {
	.indexJournalPage.journalInfoCol { padding-top: 150px; }
	#sliderInner { margin-top: 20px; }
	.indexJournalPage .sliderWrp { bottom: 28px; }
	.journalInfoCol h1.bannerLogo img { padding: 10px 16px; }
	.journalInfoCol .bannerTagline { font-size: 18px; margin-top: 14px; }
	.journalInfoCol h1 { font-size: 34px; }
}

/* ---------------------------------------------------------------------------
 * Editorial team cards
 * Markup pasted into Settings > Journal > Masthead > Editorial Team:
 *   <div class="ijcal-team">
 *     <h2 class="ijcal-team-heading">Editor-in-Chief</h2>
 *     <div class="ijcal-member">
 *       <img class="ijcal-member-photo" src="..." alt="Name">
 *       <div class="ijcal-member-body">
 *         <div class="ijcal-member-name">Name</div>
 *         <div class="ijcal-member-role">Editor-in-Chief</div>
 *         <div class="ijcal-member-affil">Affiliation, Country</div>
 *         <div class="ijcal-member-ids">
 *           <a class="scopus" href="...">57222654083</a>
 *           <a class="orcid" href="...">0000-0000-0000-0000</a>
 *           <a class="gscholar" href="...">Google Scholar</a>
 *           <a class="sinta" href="...">SINTA</a>
 *         </div>
 *       </div>
 *     </div>
 *   </div>
 * ------------------------------------------------------------------------- */
.ijcal-team { margin-top: 10px; }
.ijcal-team-heading, .ijcal-team h2 {
	font-size: 15px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
	letter-spacing: .4px;
	background: var(--ijcal-border);
	border-left: 4px solid var(--ijcal-primary);
	padding: 7px 12px;
	margin: 30px 0 5px;
}
.ijcal-team-heading:first-child, .ijcal-team h2:first-child { margin-top: 10px; }
.ijcal-member {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 22px 6px;
	border-bottom: 1px solid #e6e6e6;
	transition: background .2s;
}
.ijcal-member:hover { background: #fafafa; }
.ijcal-member-photo, .ijcal-member > img {
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: center top;
	border-radius: 6px;
	border: 1px solid #ddd;
	background: #eee;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.ijcal-member-body { flex: 1 1 auto; min-width: 0; }
.ijcal-member-name { font-size: 18px; font-weight: 600; color: #222; line-height: 1.3; }
.ijcal-member-name a { color: #222; }
.ijcal-member-name a:hover { color: var(--ijcal-primary); }
.ijcal-member-role { font-size: 13px; font-weight: 700; color: var(--ijcal-primary); text-transform: uppercase; letter-spacing: .5px; margin: 4px 0 8px; }
.ijcal-member-affil { font-size: 14px; color: #555; line-height: 1.5; }
.ijcal-member-email { font-size: 13px; color: #777; margin-top: 4px; }
.ijcal-member-ids { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.ijcal-member-ids a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 3px 12px 3px 4px;
	line-height: 20px;
	transition: all .2s;
}
.ijcal-member-ids a:hover { border-color: var(--ijcal-primary); color: var(--ijcal-primary); text-decoration: none; }
.ijcal-member-ids a:before {
	content: 'ID';
	display: inline-block;
	min-width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #777;
	padding: 0 5px;
}
.ijcal-member-ids a.scopus:before { content: 'Sc'; background: #e9711c; }
.ijcal-member-ids a.orcid:before { content: 'iD'; background: #a6ce39; }
.ijcal-member-ids a.gscholar:before { content: 'GS'; background: #4285f4; }
.ijcal-member-ids a.sinta:before { content: 'S'; background: #1e6292; }
.ijcal-member-ids a.wos:before { content: 'W'; background: #5e33bf; }
.ijcal-member-ids a.email:before { content: '@'; background: #555; }
.ijcal-member-ids a.web:before { content: 'www'; background: #34495e; font-size: 8px; }
.page_editorial_team .page-header h1 { font-size: 30px; }
@media only screen and (max-width: 600px) {
	.ijcal-member { flex-direction: column; align-items: center; text-align: center; }
	.ijcal-member-ids { justify-content: center; }
	.ijcal-member-photo, .ijcal-member > img { width: 140px; height: 140px; flex-basis: auto; }
}

/* ---------------------------------------------------------------------------
 * Announcement ticker (running text) — sits under the primary menu
 * ------------------------------------------------------------------------- */
.ijcalTicker {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	height: 36px;
	background: rgba(0, 0, 0, 0.55);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	overflow: hidden;
}
.ijcalTicker-label {
	flex: 0 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 18px 0 5%;
	background: var(--ijcal-primary);
	color: #fff !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
	font-size: 12px;
	white-space: nowrap;
	text-decoration: none !important;
	z-index: 2;
}
.ijcalTicker-label:after {
	content: '';
	position: absolute;
	top: 0;
	right: -16px;
	border-left: 16px solid var(--ijcal-primary);
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
}
.ijcalTicker-viewport {
	flex: 1 1 auto;
	position: relative;
	overflow: hidden;
	padding-left: 26px;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.ijcalTicker-track {
	display: inline-flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
	will-change: transform;
}
.ijcalTicker-track li { display: inline-flex; align-items: center; padding: 0; }
.ijcalTicker-track li:after {
	content: '\25C6';
	color: var(--ijcal-primary);
	font-size: 9px;
	margin: 0 26px;
}
.ijcalTicker-track a { color: #fff !important; text-decoration: none !important; }
.ijcalTicker-track a:hover, .ijcalTicker-track a:focus { color: #ffd2d2 !important; text-decoration: underline !important; }
.ijcalTicker-date {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.65);
	margin-right: 8px;
}
.ijcalTicker.is-running .ijcalTicker-track { animation: ijcalTickerScroll var(--ijcal-ticker-duration, 30s) linear infinite; }
.ijcalTicker.is-running:hover .ijcalTicker-track,
.ijcalTicker.is-running:focus-within .ijcalTicker-track { animation-play-state: paused; }
@keyframes ijcalTickerScroll {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-1 * var(--ijcal-ticker-distance, 50%))); }
}
@media (prefers-reduced-motion: reduce) {
	.ijcalTicker.is-running .ijcalTicker-track { animation: none; }
	.ijcalTicker-viewport { overflow-x: auto; }
}
.scrollNow .ijcalTicker { height: 32px; }
@media only screen and (max-width: 960px) {
	.ijcalTicker-label span { display: none; }
	.ijcalTicker-label { padding: 0 12px; }
}

/* ---------------------------------------------------------------------------
 * Help / contact pop-up
 * ------------------------------------------------------------------------- */
.ijcalHelp-fab {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px 11px 14px;
	border: 0;
	border-radius: 30px;
	background: var(--ijcal-primary);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 8px 22px rgba(0,0,0,0.28);
	cursor: pointer;
	transition: transform .2s, box-shadow .2s, background .2s;
}
.ijcalHelp-fab .fa { font-size: 18px; }
.ijcalHelp-fab:hover, .ijcalHelp-fab:focus { background: var(--ijcal-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.32); outline: none; }
.ijcalHelp-fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
/* keep the back-to-top button clear of the help button */
.back-to-top { bottom: 78px !important; right: 24px !important; }

.ijcalHelp-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 20, 28, 0.62);
	opacity: 0;
	transition: opacity .2s;
}
.ijcalHelp-backdrop[hidden] { display: none; }
.ijcalHelp-backdrop.is-open { opacity: 1; }
.ijcalHelp-dialog {
	position: relative;
	width: 100%;
	max-width: 680px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	border-top: 5px solid var(--ijcal-primary);
	box-shadow: 0 24px 60px rgba(0,0,0,0.35);
	padding: 26px 28px 22px;
	transform: translateY(12px);
	transition: transform .2s;
	text-align: left;
}
.ijcalHelp-backdrop.is-open .ijcalHelp-dialog { transform: none; }
.ijcalHelp-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #f1f1f1;
	color: #555;
	font-size: 22px;
	line-height: 34px;
	cursor: pointer;
}
.ijcalHelp-close:hover, .ijcalHelp-close:focus { background: #e2e2e2; color: #222; }
.ijcalHelp-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; padding-right: 30px; }
.ijcalHelp-head > .fa { font-size: 30px; color: var(--ijcal-primary); margin-top: 2px; }
.ijcalHelp-head h2 { margin: 0 0 4px; font-size: 22px; font-weight: 700; color: #222; }
.ijcalHelp-head p { margin: 0; color: #555; font-size: 14px; line-height: 1.5; }
.ijcalHelp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ijcalHelp-card { border: 1px solid #e6e6e6; border-radius: 8px; padding: 14px 16px; background: #fafafa; display: flex; flex-direction: column; }
.ijcalHelp-cardTitle { font-weight: 700; color: #222; font-size: 15px; margin-bottom: 6px; }
.ijcalHelp-cardTitle .fa { color: var(--ijcal-primary); width: 18px; }
.ijcalHelp-cardText { font-size: 13px; color: #555; line-height: 1.5; margin: 0 0 8px; flex: 1 1 auto; }
.ijcalHelp-person { font-size: 13px; font-weight: 600; color: #333; margin: 0 0 8px; }
.ijcalHelp-actions { display: flex; flex-direction: column; gap: 6px; }
.ijcalHelp-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	word-break: break-all;
	transition: filter .2s;
}
.ijcalHelp-btn.email { background: #fff; border: 1px solid var(--ijcal-primary); color: var(--ijcal-primary) !important; }
.ijcalHelp-btn.email:hover { background: var(--ijcal-primary); color: #fff !important; }
.ijcalHelp-btn.wa { background: #25d366; border: 1px solid #25d366; color: #fff !important; }
.ijcalHelp-btn.wa:hover { filter: brightness(.92); }
.ijcalHelp-btn .fa { font-size: 16px; width: 18px; text-align: center; flex: 0 0 auto; }
.ijcalHelp-self { margin-top: 16px; padding-top: 14px; border-top: 1px solid #eee; }
.ijcalHelp-selfTitle { font-size: 13px; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.ijcalHelp-self ul { list-style: none; margin: 0 0 10px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ijcalHelp-self li a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 13px;
	color: #333 !important;
	text-decoration: none !important;
}
.ijcalHelp-self li a:hover { border-color: var(--ijcal-primary); color: var(--ijcal-primary) !important; }
.ijcalHelp-tip { font-size: 12.5px; color: #666; margin: 0; line-height: 1.5; background: #fff8e1; border-radius: 6px; padding: 8px 10px; }
.ijcalHelp-tip .fa { color: #e0a800; margin-right: 4px; }
body.ijcalHelp-lock { overflow: hidden; }
@media only screen and (max-width: 600px) {
	.ijcalHelp-cards { grid-template-columns: 1fr; }
	.ijcalHelp-dialog { padding: 22px 18px 18px; }
	.ijcalHelp-fab span { display: none; }
	.ijcalHelp-fab { padding: 14px; }
	.back-to-top { bottom: 80px !important; }
}
@media (prefers-reduced-motion: reduce) {
	.ijcalHelp-backdrop, .ijcalHelp-dialog, .ijcalHelp-fab { transition: none; }
}
