/*
Theme Name: Sweetness Child Theme
Description: ABTL custom child theme based on Sweetness v2 by BNE Creative.
Author: Kerry Kline and Karl Cleveland
Author URI: http://www.bnecreative.com
Version: 2.0
Template: sweetness
*/

/*
 * 	IMPORTANT! There is no need to @import the parent's
 *	main style.css file. It's already enqueued!!
*/


/* ====================================
 *	General
 * ================================= */
 
body {
    background-color: #000;
    color: #393c43;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .0125rem;
}

#wrapper {
	margin: 0 auto;
	max-width: 1920px;
}
#header-wrapper, 
#header-above, 
#featured-wrapper, 
#main-content-wrapper, 
#footer-above, 
#footer-widgets-wrapper, 
#footer-wrapper {
	padding: 10px 30px;
}


/* ====================================
 *	Header
 * ================================= */
#header-wrapper {
	position: fixed;
	top: 0;
	margin: 0;
	padding: 0;
	height: 44px;
	width: 100%;
	max-width: 1920px;
	z-index: 999;	
}

#header-wrapper .header-content {
	padding: 0;
}

/* WP Admin bar adjustment */
@media(min-width: 800px) {
	body.admin-bar #header-wrapper {
		top: 32px;
	}
}


/* ====================================
 *	Main
 * ================================= */
#main-content-wrapper {
	padding-top: 0;
	padding-bottom: 0;
    background-color: #f2f4f5;
}

@media (min-width: 1024px) {
	/* line up sidebar width with site name in header */
	.fixed-sidebar {
		-ms-flex: 0 0 390px;
		flex: 0 0 390px;
		max-width: 390px;
	}
	/* Adjust content area width while using a sidebar */
	.sidebar-layout-left-sidebar #content,
	.sidebar-layout-right-sidebar #content {
		-ms-flex: 0 0 calc(100% - 390px);
		flex: 0 0 calc(100% - 390px);
		max-width: calc(100% - 390px);
/* 		height: 100vh; */
	}
	/* Adjust content area width while using left & right sidebars */
	.sidebar-layout-double-sidebar #content {
		-ms-flex: 0 0 calc(100% - 780px);
		flex: 0 0 calc(100% - 780px);
		max-width: calc(100% - 780px);
	}
}

#sidebar_layout #content {
	padding: 60px !important;
}

#sidebar_layout .fixed-sidebar {
	padding-top: 60px;
	background-color: #fff;
	/* KARL  - So pages won't be shorter than screen height*/
	min-height: calc(100vh - 310px);
}

@media (max-width:768px) {
	#sidebar_layout .fixed-sidebar {
	/* KARL  - So pages won't be shorter than screen height*/
	min-height: auto;
}
	
}
@media (max-width:600px) {
	#sidebar_layout #content {
		/* padding-left: 30px !important;
		padding-right: 30px !important;*/
		/* KARL */
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}



/* ====================================
 *	Footer
 * ================================= */

#footer-wrapper {
	background: #393C43;
	color: white;
}

#footer-wrapper a {
	color: white;
}

#footer_sub_content {
  color: #f2f4f5;
  line-height: 1rem;
}

#footer-menu a {
/*   color: #5180C8; */
   text-decoration: underline;
	font-size: 1rem;
	
	/* KARL */
	color: #9DBBEB;
}

	/* KARL */
#footer-menu a:hover, #footer-menu a:focus  {
	color: #FFF;
}

.footer-layout-stacked .copyright {
  margin-bottom: 4px;
}


/* ====================================
 *	Sidebar
 * ================================= */

.fixed-sidebar > .alert {
	display: none;
}


/* ====================================
 *	Typography / Media
 * ================================= */

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

a {
	color: var(--theme-primary-color);
}

a:hover {
	color: #333;
	text-decoration: underline;
}

strong {
	font-weight: 700;
}

p {
/*   font-size: 1.25rem; */
		/* KARL */
	font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: .0125rem;
}
@media (max-width: 600px) {
	p {
		font-size: 1.1rem;
				/* KARL */
		font-weight: 400;
	}
}

ul {
	list-style: square;
					/* KARL */
	font-size: 1.25rem;
}

span.dropcap {
	font-size: 2em;
	color: var(--theme-secondary-color);
	font-style: italic;
	float: left;
	line-height: 25px;
	height: 25px;
	width: 50px;
	display: block;
}


/* == Headings = */
h1 {
	position: relative;
	margin-bottom: 52px;
	font-family: mr-eaves-xl-modern-narrow, sans-serif;
	font-size: 3.75em;
	font-weight: 700;
	letter-spacing: .025rem;
	line-height: 4rem;
	text-transform: uppercase;
	
	/* KARL */
	font-size: 3em;
	line-height: 3.5rem;
	
	/* border-bottom: 8px solid var(--theme-tertiary-color); */
	display: inline-block;
	/*padding-bottom: 8px;*/
}

/* KARL  */
#content h1:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
   /* background-color: var(--theme-tertiary-color);*/
	background-color: var(--theme-primary-color);
	/*background-color: #dee1e6;*/
   /* width: 100%;*/
   /*  height: 10px;*/
	width: 120px;
    height: 6px;
}
 /*END KARL */

@media (max-width: 375px) {
	h1 {
		/* font-size: 3em; */
		/* KARL */
		font-size: 2em;
		margin-top: -30px;
		margin-bottom: 1rem;
		line-height: 2.5rem;
	}
	
		h1.event-title {
		/* KARL */
		margin-top: 0;
		margin-bottom: 52px;
	}
	
	#content h1:after {
		bottom: -4px;
		height: 4px;
		width: 90px;
	}
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;	
	/* KARL */
	margin-bottom: .75em;
}

.event-content h2 {
	margin-bottom: .5rem;
}

@media (max-width: 375px) {
	h2 {
		font-size: 1.3em;
	}
}

h3 {
  font-size: 1.5rem;
}
/* KARL */
.heading-main h3 {
	margin: 1.5em 0 0 0 !important;
}
/* END KARL */

@media (max-width: 375px) {
	h2 {
		font-size: 1.1em;
	}
}

h3.widget-title {
	font-size: 1.25em;
}

h4 {
	color: var(--theme-secondary-color);
	font-weight: bold;
	letter-spacing: .025rem;
	display: block;
	font-size: 80%;
}

p + h4 {
	margin-top: 40px;
}

/* Custom Typography */
.heading-purple-underline {
  color: var(--theme-secondary-color);
  font-style: italic;
  border-bottom: solid 2px var(--theme-secondary-color);
  padding: 2px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: -30px;
}

/* Event Page Typography */
.event-content h3 {
  color: #f2f4f5;
  background: var(--theme-secondary-color);
  padding: 2px 8px;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: .025em;
  margin-bottom: 1.25rem;	
}

/* People Typography */
.fixed-sidebar #bne-people-wrapper .single-profile .profile-name { font-size: 18px; }
.fixed-sidebar #bne-people-wrapper .single-profile .profile-details * { font-size: 1rem; }


/* == Bootstrap Overrides == */
.rounded-lg {
	border-radius: 30px !important;
}

/* == Buttons == */
.wp-block-button__link,
.btn-default {
	display: inline-block;
	/*padding: 12px;*/
	/*KARL*/
	padding: 8px 16px;
	color: white;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 8px;
}
@media (max-width: 375px) {
	.wp-block-button__link,
	.btn-default {
		margin-bottom: 5px;
		font-size: 12px;
		padding: 7px;
	}
}

.wp-block-button__link.has-primary-background-color,
.btn-default {
	background-image: -webkit-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
}

.wp-block-button__link.has-primary-background-color:hover,
.wp-block-button__link.has-primary-background-color:focus,
.btn-default:hover, 
.btn-default:focus {
	color: white !important;
	background-image: -webkit-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: -moz-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: linear-gradient(0deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
}

.bne-pagination .page-link {
	color: rgba(82,129,202,1.00);
}

.bne-pagination .page-item.active .page-link {
	background-color: rgba(82,129,202,1.00);
	border-color: rgba(82,129,202,1.00);
}

.btn + .btn {
	margin-left: 10px;
}

/* WP Block Elements */
.wp-block-separator.is-style-wide {
	border-color: var(--theme-secondary-color);
	border-width: 2px;
}

.wp-block-separator.is-style-wide.thick {
	border-width: 4px;
}
.wp-block-separator.is-style-wide.hr {
	border-color: #8f98a1;
	border-width: 1px;
}

/* == Other == */
#comments .comment-body { 
	font-size: 16px; 
}


/* == BLOCKS == */
.cards-eq-height .wp-block-bne-card {
	height: 100%;
}


/* ====================================
 *	Fixed Header
 * ================================= */
 
#mainheader {
	display: flex;		
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;

	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	line-height: 44px;
	letter-spacing: .05em;
	text-transform: uppercase;

	background: #393C43;
}

/* == Site Name == */
#mainheader .site-name,
#mainheader h1.site-name {
	margin: 0;
	height: 44px;
	width: 390px;
	
	font-size: 1em;
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
	
	background-image: -webkit-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
}
#mainheader .site-name a {
	color: inherit;
}

/* == Chapter Menu == */
#mainheader nav#chaptermenu {
	flex: 1;
}

#mainheader nav#chaptermenu ul {
	margin: 0;
	padding: 0;
	
	display: flex;
	justify-content: space-around;
	align-content: stretch;
	align-items: center;	

	list-style: none;
}

#mainheader nav#chaptermenu ul li {
	display: block;
}

#mainheader nav#chaptermenu ul a {
	display: block;
	padding: 2px 6px;

	color: #ddd;
	line-height: 18px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;

	border: solid 4px transparent;
}

#mainheader nav#chaptermenu ul a:hover {
	color: white;
	border-bottom: solid 4px rgba(81,128,200,1.00);
}

@media (max-width: 1060px) {
	#mainheader nav#chaptermenu ul a {
		font-size: 12px;
		line-height: 16px;
	}
} 
@media (max-width: 940px) {	
	#mainheader {
		background-image: -webkit-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
		background-image: -moz-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
		background-image: linear-gradient(180deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	}
	
	#mainheader nav#chaptermenu {
		display: none;
	}
} 

#mainheader #menubutton {
	padding: 0;
	margin: 0;
	height: 44px;
	width: 120px;
	
	color: #FFF;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .05em;
	text-indent: 21px;
	text-transform: uppercase;
	
	background-image: -webkit-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: url("assets/images/hamburger.png"), linear-gradient(180deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-repeat: no-repeat, repeat;
	background-position: 27px center, center center;
	border: none;
	border-radius: 0;
}

#mainheader #menubutton:active {
	top: 0;
}

#mainheader #menubutton:hover,
#mainheader #menubutton:focus  {
	background-image: -webkit-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: -moz-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	background-image: url("assets/images/hamburger.png"), linear-gradient(0deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
	box-shadow: none;
}

#mainheader #menubutton.active {
	background-image: url("assets/images/close.png"), linear-gradient(0deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
}

@media (max-width: 500px) {	
	#mainheader .site-name,
	#mainheader h1.site-name {
		width: auto;
		padding: 0 2px 0 8px;
		font-size: .8em;
		letter-spacing: 0;
	}
	
	#mainheader #menubutton {
		width: 70px;
		font-size: .8em;
		letter-spacing: .025em;
		/*text-indent: 12px; */
		/* KARL */
		text-indent: 16px;
		background-position: 6px center, center center;
	}
	
}

/* == Global Site Menu (dropdown) == */
nav#global-main-menu {
    display: block;
    position: fixed;
	padding: 32px;
    top: 0;
    height: 100vh;
	max-width: 1920px;
    width: 100%;
    z-index: 998;

	background-image: -webkit-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);

    pointer-events: none;
	opacity: 0;			
    transition: all 0.5s ease-in-out;
}

nav#global-main-menu .menu-inner {
	height: 100%;
}

nav#global-main-menu.open {
    display: block;
    top: 44px;
    pointer-events: auto;
    opacity: 1;
}

nav#global-main-menu ul {
	display: none;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	list-style: none;
	opacity: .5;
}

nav#global-main-menu.open .menu-inner > ul {
	display: block;
	opacity: 1;
}

nav#global-main-menu ul a {
	display: block;
/* 	padding: 2.75vh 32px 2vh 32px; */
	
	color: #FFF;
/* 	font-size: 6vh; */
	font-weight: 400;
	letter-spacing: .05em;
/* 	line-height: 4.75vh; */
	text-align: left;
	text-decoration: none;
	text-transform: none;
	
	border-bottom: solid 1px rgba(255,255,255,0.5);
	
	/* KARL */
	padding: 2.5vh 32px 2vh 32px;
	font-size: 4.5vh;
	line-height: 4vh;
	
}

nav#global-main-menu ul a:hover, 
nav#global-main-menu ul a:focus  {
	text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
	background: rgba(255,255,255,0.25);
}

nav#global-main-menu ul a span.menudetails {
	display: block;
	color: rgba(255,255,255,0.75);
	font-style: italic;
	font-size: 2.5vh;
	letter-spacing: .05em;
	text-transform: none;
}

/* == Submenu == */
nav#global-main-menu ul.submenu {
    display: block;
    position: fixed;
	padding: 0;
    top: 0;
    height: 100vh;
	max-width: 1920px;
    width: calc( 100% - 64px );
    z-index: 998;

	background-image: -webkit-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(82,129,202,1.00) 0%,rgba(12,44,110,1.00) 100%);

    pointer-events: none;
	opacity: 0;			
    transition: all 0.5s ease-in-out;
}
nav#global-main-menu .has-submenu.active > ul.submenu {
    display: block;
    top: 44px;
    pointer-events: auto;
    opacity: 1;
}

nav#global-main-menu .chapter-menu-wrapper.active {
	height: 100%;
}

/* chapter menu scroll adjustment */
nav#global-main-menu ul.submenu {
	height: calc(100% - 32px); /* top padding adjustment */
/* 	overflow-y: scroll; */
		/*KARL*/
		overflow-y: auto;
	padding: 32px;
	margin-left: -32px;
	width: 100%;
}

@media (max-width: 720px) {
	nav#global-main-menu ul a {
		padding: 4vh 8px;
/* 		font-size: 5vh; */
/* 		line-height: 4.75vh; */
		/*KARL*/
		font-size: 4vh;
		line-height: 4.5vh;
		text-align: center;
	}
	
	nav#global-main-menu ul a span.menudetails {
		display: none;
	}
	nav#global-main-menu ul.submenu.chapter-submenu a {
		padding: 3vh 8px;
		font-size: 4vh;
		line-height: 3.75vh;		
	}
} 

nav#global-main-menu ul li:last-child a {
	border-bottom: none;
}

nav#global-main-menu .close-submenu .bne-fa {
/* 	width: 25px; */
/* 	margin-right: 10px; */
	/*KARL*/
	width: 24px;
	margin-right: 12px;
	padding-top: 0.5vh;
}

nav#global-main-menu .menu-icon {
/* 	width: 25px; */
/* 	margin-right: 10px !important; */
	/*KARL*/
	width: 24px;
	margin-right: 12px !important;
	padding-top: 0.5vh;
}



/* ====================================
 *	Primary Site Banner
 * ================================= */

#primary-banner {
	position: relative;
	background: white;
		/*KARL*/
	margin-top: 44px;
}
#primary-banner .col-overview {
	font-weight: 300;
	font-size: 24px;
	line-height: 1.333;
	letter-spacing: 0;
	color: #393c43;
	margin: 1em 0 1.5em 0;
	/*padding: 20px 30px;*/
	/*KARL*/
	padding: 0px 30px 0px 30px;
}

	/*KARL*/
#primary-banner .col-overview p {
	font-size: 1.5rem;
	margin: 1rem 0 2rem 0;
}

@media (max-width: 375px) {
	#primary-banner .col-overview p {
		font-size: 1.25rem;
	}
}
	/* END KARL*/

@media (min-width: 1024px) {
	#primary-banner .col-overview {
		-ms-flex: 0 0 390px;
		flex: 0 0 390px;
		max-width: 390px;
	}
	#primary-banner .col-slider {
		-ms-flex: 0 0 calc(100% - 390px);
		flex: 0 0 calc(100% - 390px);
		max-width: calc(100% - 390px);
	}
}

/* == Slider == */
.main-event-slider, 
.main-event-slider .slides-inner, 
.main-event-slider .bne-flexslider,
.main-event-slider .flex-viewport,
.main-event-slider .slides,
.main-event-slider .slides > li {
    height: 100%;
}
.main-event-slider .slides > li {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	overflow: hidden;
}

@keyframes animateEventCaption {
	0% {right:-520px; opacity: 0.5;}
	100% {right: 30px; opacity: 1;}
}

#primary-banner .slide-caption {
	background: white;
	max-width: 520px;
	padding: 32px;
	text-align: right;
	transform: translateX(100%);
	opacity: 0;
	right: 30px;
	transition: transform 1s ease .5s, opacity .5s ease;
}

#primary-banner .flex-active-slide .slide-caption {
	opacity: 1;
	transform: translateX(-30px);
	transition: transform 1s ease .5s, opacity .5s ease;
}

@media (max-width: 1024px) {
	#primary-banner .slide-caption,
	#primary-banner .flex-active-slide .slide-caption {
		position: relative;
		max-width: 80%;
		bottom: auto;
		transform: translateX(0px);
		margin: 30px auto;
		right: auto;
	}
}

#primary-banner .slide-caption .chapter {
	position: absolute;
	top: -16px;
	height: 32px;
	padding: 0 16px;
	line-height: 32px;
	background: #393c43;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 1em;
	font-weight: bold;
}

#primary-banner .slide-caption .title {
	font-size: 30px;
	line-height: 32px;
	color: #113275;
	font-style: italic;
	margin: 0 0 1em 0;
}

#primary-banner .slide-caption .date {
	font-size: 16px;
	line-height: 32px;
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
	#primary-banner .slide-caption .title {
		font-size: 20px;
		line-height: 23px;
	}
	#primary-banner .slide-caption .btn {
		font-size: 16px;
	}
}

/*KARL*/
@media (max-width: 480px) {
	#primary-banner .slide-caption .date {
		font-size: 15px;
		letter-spacing: 0.025em;
	}
	
	#primary-banner .slide-caption, #primary-banner .flex-active-slide .slide-caption {
		max-width: 88%;
	}
	
	#primary-banner .slide-caption .chapter {
		padding: 0 14px;
}
	
}

/* ====================================
 *	Chapter Banner
 * ================================= */

#chapter-banner {
	position: relative;
	/*padding: 60px 0 30px 0;*/
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
			/*KARL*/
	margin-top: 44px;
	padding: 30px 0;
}

.chapter-logo {
	margin-left: 100px;
	max-height: 120px;
}
@media (max-width: 768px) {
	#chapter-banner {
		/*padding: 60px 0 20px 0; */
		/* KARL */
		padding: 20px 0 20px 0;
	}
	.chapter-logo {
		/*margin-left: 50px;*/
	   /* KARL */
		margin-left: 72px;
		max-width: 220px;

	}
}

@media (max-width: 415px) {
	#chapter-banner {
		/* KARL */
		padding: 10px 0 20px 0;
		background-size: auto;
	}
	.chapter-logo {
	   /* KARL */
		margin-left: 20%;
		max-width: 200px;

	}
}


/* ====================================
 *	Chapter Menu
 * ================================= */

#access {
	padding: 0;
	border: none;
	background: transparent;
	display: block;
	margin-bottom: 30px;
}
#primary-menu > li {
	float: none;
	border-bottom: 1px solid #eee;
}
#primary-menu > li > a {
	line-height: 50px;
	color: var(--theme-primary-color);
	font-size: 20px;
}

#primary-menu .menu-icon {
	width: 25px;
	margin-right: 10px !important;
}

#primary-menu > li > a:hover, 
#primary-menu > li > a:hover, 
#primary-menu > li.active > a, 
#primary-menu > li.sfHover > a {
	background: #f2f4f5;
	color: #393c43;
}

#primary-menu > li > a:hover svg {
  color: var(--theme-secondary-color);
}


#primary-menu ul {
	position: relative;
	background: none;
	box-shadow: none;
	width: 100%;
}
#primary-menu ul.sub-menu a {
	padding: 10px 15px 10px 50px;
}

@media (max-width: 768px) {
	#access.chapter-menu {
		display: none !important;
	}
}


/* ====================================
 *	People
 * ================================= */
 
#bne-people-wrapper .single-profile .profile-image img {
	width: 90px;
	border-radius: 8px;
	border: solid 1px #a1a1a1;
    padding: 4px;
}

#bne-people-wrapper .single-profile .profile-meta {
	overflow: hidden;
}
#bne-people-wrapper .modal-single-profile .profile-name,
#bne-people-wrapper .single-profile .profile-name {
	font-weight: 700;
	color: #333;
	margin: -5px 0;
}

#bne-people-wrapper .profile-position {
	color: var(--theme-secondary-color);
	font-weight: bold;
	text-transform: uppercase;
	font-style: italic;
}

#bne-people-wrapper .profile-details {
	margin: 0;
}
#bne-people-wrapper .profile-details a,
#bne-people-wrapper .profile-details a:hover {
	color: var(--theme-primary-color);
}

#bne-people-wrapper .single-profile .profile-details .detail-address span {
	display: none;
}

#bne-people-wrapper .profile-details span + p {
	display: inline-block;
	margin: 0;
}
#bne-people-wrapper .single-profile .profile-details li {
	border: 0;
	padding: 0;
}


@media (min-width: 480px) and (max-width: 1024px) {
	#bne-people-wrapper.layout-list .bne-row .col-6 {
	  width: 100%;
	}
}


/* ====================================
 *	Events
 * ================================= */

.event-template .event-date {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--theme-secondary-color);
	letter-spacing: .025em;
	/*margin-bottom: 2em;  */
	/* KARL */
	margin-bottom: 1em;
}
/* KARL */
.event-date {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--theme-secondary-color);
	letter-spacing: .025em;
	margin-bottom: 1em;
}
/* END KARL */

@media (max-width: 768px) {
	.event-template .event-title {
		font-size: 1.6em;
		line-height: 1.4em;
	}
}

/* .event-template event-title:after {*/
#content h1.event-title:after {
	content: "";
	position: absolute;
/* 	bottom: -32px; */
	left: 0;
/* 	background-color: var(--theme-tertiary-color);
	width: 20%;
	height: 10px; */
/* 	KARL    */
    bottom: -28px;
    background-color: var(--theme-primary-color);
    width: 120px;
    height: 6px;
}


.event-template .event-details {
	background: #E1E4E7;
	border-radius: 8px;
	padding: 1.3rem;
	font-size: .95rem;
}

.event-template .event-details label {
  	color: var(--theme-secondary-color);
	font-style: italic;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0;
	font-size: 1rem;
}

.event-template .event-detail:not(:last-of-type) {
	border-bottom: 1px solid #CED5DE;
	padding-bottom: 10px;
}

.event-template .event-detail + .event-detail {
	padding-top: 10px;
}
.event-template .event-detail p {
	margin: 0;
	font-size: 1rem;
}

.event-template .event-detail ul {
	list-style: none;
	padding: 0;
	margin: 0 0 10px 0;
	font-size: 1rem;
}

.event-template .event-registration .btn + .btn { margin-left: 0;}

/* KARL */

.customcontainer {
	padding: 30px 30px; 
	background-color: #e4e8ee; 
	border-radius: 30px;
	margin: 1rem 0;
}
@media (max-width: 768px) {
	.customcontainer {
		padding: 20px 20px; 
		background-color: #e4e8ee; 
		border-radius: 30px;
		margin: 1rem 0;
	}
	
  .customcontainer ul {
		padding-left: 1em;
	}
}

.whitecontainer {
	padding: 30px 30px; 
	background-color: #fff; 
	border-radius: 4px;
	margin: 1rem 0;
}

.subhead-border {
	border-bottom: solid 2px #8b5276; 
	font-size: 1.25rem; 
	font-style: italic; 
	padding: 8px 0px; 
	margin-bottom: 1rem;
	color: #8b5276;
}

.allcaps {
	text-transform: uppercase;
}

.intro {
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 1em;
	font-weight: 400;
	margin-bottom: 0;
	color: var(--theme-secondary-color);
}

#registration_form::before {
  content: "PROGRAM REGISTRATION";
  font-size: 1.25rem;
  color: #86486f;
  font-weight: 700;
  border-bottom: solid #86486f 2px;
  display: block;
  width: calc(50% - 16px);
}

@media (max-width: 768px) {
	#registration_form::before {
	  width: 100%;
	}
}
		.inside {
			display: none;
			font-size: 12px;
			margin-left: -16px;
/* 			border-bottom: solid 1px #EDBF1A; */
			border-bottom: solid 1px #86486f ;
			padding-bottom: 10px;
			margin-bottom: 10px;
		}
		
		.inside p {
			color: #20242B;
			line-height: 18px;
			font-size: 1rem;
			margin-top: 0.5rem;
		}
		
		ul .inside ul {
/* 			list-style-image: url(images/bullet.png); */
			padding-bottom: 0px;
			font-size: 1rem;
		}
		
		a.panel:after {
			 content: "\25BE";
		}

		.titleingray {
			color: var(--theme-secondary-color);
			font-style: italic;
			text-transform: uppercase;
			font-weight: 700;
			margin: 1.5em 0 0 0;
			font-size: 1rem;
			padding: 0;
		}

.max1280 {
	max-width: 1280px;
}

.annualseminarside {
	max-width: 208px;
	margin: 0 auto;
}

.annualseminarside img {
	border: solid 1px #333;
	padding: 4px;
}

	.bne-heading h3 {
		line-height: 1.25em;
	}

.bne-list ul {
    list-style: square;
}

.bne-events-list-wrapper .event-details {
	margin-bottom: 2rem;
}

.alert-success {
color: #393c43;
background-color: #fff;
border-color: #86486f;
}


.page-id-25 #chapter-banner, .page-id-392 #chapter-banner, .page-id-714 #chapter-banner, .page-id-887 #chapter-banner {
/* 	background-image: url(https://abtl.org/wp-content/uploads/2022/02/as22_banner_color.jpg) !important; */
	background-image: url(https://abtl.org/wp-content/uploads/2022/12/as23_banner_color.jpg) !important;	
}

.page-id-150 #chapter-banner {
/* 	background-image: url(https://abtl.org/wp-content/uploads/2019/12/jbr_banner_color.jpg) !important; */
	background-image: url(https://abtl.org/wp-content/uploads/2022/08/jbr_banner_allegretto.jpg) !important;
}

/* Karl Updated NC ABTL Report/Blog listings */
article.category-abtlreport .entry-meta .entry-date {
	display: none;
}

article.category-abtlreport .entry-meta .entry-date + span {
	display: none;
}


article.category-abtlreport .entry-meta .author {
	display: none;
}

article.category-abtlreport .entry-meta .author + span {
	display: none;
}

.has-drop-cap:not(:focus)::first-letter {
  font-size: 6.0em;
  font-weight: 200;
  margin: .075em .1em 0 0;
}


.has-drop-cap:not(:focus)::after {
  display: inline;
  clear: none;
  padding-top: 0px;
}

article.category-abtlreport .entry-content {
    max-width: 1040px;
}

article.category-abtlreport .wp-block-image {
	margin-bottom: 0;
}
/* outdent image on widescreen */
@media (min-width: 1600px) {
	article.category-abtlreport .wp-block-image .alignright {
/* 	  margin-left: -4em;
	  position: relative;
	  left: 5em; */
	}
}
@media (max-width: 768px) {
	article.category-abtlreport .wp-block-image .alignright {
	    margin-left: 0;
		position: static;
		width: 100%;
		float: none;
		text-align: center;
	}
}

/* improve spacing, add bullets for latest posts list */
.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: square;
}

.wp-block-latest-posts__post-excerpt {
  margin-top: 0px;
}

.wp-block-latest-posts li > a {
/*   font-weight: 400; */
}


/* CSS Revsions for Annual Seminar Page */

.page-id-25 h4, .page-id-392 h4 {
  font-size: 100%;
  text-transform: uppercase;
}

.page-id-25 h2, .page-id-392 h2 {
  font-weight: 700;
}

.page-id-25 p + h4, .page-id-392 p + h4 {
  margin-top: 30px;
}

.cancelpolicy {
	margin-top: 40px;
}

.cancelpolicy + p {
	font-size: 100%;
}

/* adjust size of dots for logo slider on AS as they overflow, changed from 20 to 16px width */

.page-id-25 .slick-dots li, .page-id-392 .slick-dots li, .page-id-714 .slick-dots li {
  width: 11px;
}
.page-id-25 .slick-dots li button, .page-id-392 .slick-dots li button, .page-id-714 .slick-dots li button   {
  width: 11px;
}

/* Remove titles of Board of Govenors for SD Chapter - Later disabled*/

.page-id-16 .entry-content div:nth-child(8) .profile-position {
  /*display: none;*/
}
