/*
 ======================================================================================================
 
    @VERSION			: 1.2.6
    @CREATED			: 20 AUG 2019
    @MODIFIED			: 10 DEC 2024
    @DESIGNER			: Daniel C. K. Tan (danielcktan[at]gmail.com)
	@DESIGNER URI		: <https://www.danielcktan.sg>
    
    @FILE				: ~/css/user.css
	@TYPE				: Style Sheet
	@DESCRIPTION		: Custom Stylesheet for CMS Template
	   
 ======================================================================================================
 
	CONTENT
	------------------------------------------------------------------------------------------------------
	#00 ROOT STYLES
	#01 BASE STYLES
	#02 LAYOUT STYLES
    #03 CUSTOM SITE/COMPONENT STYLES 
 
  ======================================================================================================
*/

/* ----------------------------------------------------------------------------------------------------
   #00 ROOT STYLES 
/* ---------------------------------------------------------------------------------------------------- */
:root {
	/* BRANDING COLOURS */
	--brand-col-primary				: var(--base-col-primary);
	--brand-col-primary-light		: var(--base-col-primary-light);
	--brand-col-primary-dark		: var(--base-col-primary-dark);
	--brand-col-primary-darker		: var(--base-col-primary-darker);
	--brand-col-secondary			: var(--base-col-secondary);
	--brand-doc-background-color	: var(--base-col-body-background);
	--brand-doc-link-color			: var(--base-col-link);
	--brand-doc-link-hover-color	: var(--base-col-link-hover);
	--brand-doc-select-background	: var(--base-col-primary-light);
	--brand-doc-select-text			: var(--base-col-body-text);
	--brand-doc-font-color			: var(--base-col-body-text);
	
	/* HEADER */
	--brand-header-bkg	: var(--base-col-secondary);
	--brand-header-text	: var(--base-col-white);
	
	/* BUTTONS */
	--brand-btn-primary				    : var(--base-col-primary);
	--brand-btn-primary-hover		    : var(--base-col-primary-light);
	--brand-btn-primary-disabled	    : var(--base-col-primary-dark);
	--brand-btn-primary-txt-col		    : var(--base-col-white);
	--brand-btn-primary-txt-col-hvr	    : var(--base-col-white);
	--brand-btn-primary-txt-col-dis	    : var(--base-col-gray-300);

	--brand-btn-secondary			    : var(--base-col-secondary);
	--brand-btn-secondary-hover		    : var(--base-col-secondary-light);
	--brand-btn-secondary-disabled	    : var(--base-col-secondary-dark);
	--brand-btn-secondary-txt-col		: var(--base-col-white);
	--brand-btn-secondary-txt-col-hvr	: var(--base-col-white);
	--brand-btn-secondary-txt-col-dis	: var(--base-col-gray-300);
}

[data-bs-theme=dark] { 
    --brand-doc-background-color	: var(--base-col-dark-400);
    --brand-doc-font-color			: var(--base-col-light-500);
    --brand-col-primary-light       : var(--base-col-light-900);
    --base-col-link	                : var(--base-col-light-500);
    --base-col-link-hover           : var(--base-col-light-500);
}


/* ----------------------------------------------------------------------------------------------------
   #01 BASE STYLES 
/* ---------------------------------------------------------------------------------------------------- */

/* Document Styles
/* ---------------------------------------------------------------------------------------------------- */
body {    
	background-color: var(--brand-doc-background-color);
	color: var(--brand-doc-font-color);
	font-family: var(--font-family-body);	
	font-size: var(--base-font-size-body);
	font-weight: var(--font-weight-regular);
}


/* Link Styles
/* ---------------------------------------------------------------------------------------------------- */
a { color: var(--brand-doc-link-color); transition: all .2s ease-in-out; }
a:hover, a:focus, a:active, a.active { color: var(--brand-doc-link-hover-color); outline: 0; text-decoration: none; }


/* Headings Styles
/* ---------------------------------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--font-family-heading); color: var(--brand-col-primary-light); letter-spacing: -0.3px; }

h1, h2, h3,
.h1, .h2, .h3 { text-transform: var(--base-text-transform-uppercase); }

h4, h5, h6,
.h4, .h5, .h6 { text-transform: var(--base-text-transform-capitalize); font-weight: var(--font-weight-light); }


/* Buttom Styles
/* ---------------------------------------------------------------------------------------------------- */
.btn { font-family: var(--font-family-heading); font-weight: var(--font-weight-medium); }



/* ----------------------------------------------------------------------------------------------------
   #02 LAYOUT STYLES 
/* ---------------------------------------------------------------------------------------------------- */

/* Main Navbar Styles
/* ---------------------------------------------------------------------------------------------------- */
#mainNav { background-color: var(--brand-col-primary); }

#mainNav.navbar-scrolled { background-color: var(--brand-col-primary); }

#mainNav .nav-item .nav-link  { font-family: var(--font-family-heading); font-weight: var(--font-weight-medium); }
#mainNav .dropdown-menu li .dropdown-item { font-family: var(--font-family-body); font-weight: var(--font-weight-regular); }


/* Tab Shadows */
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
    background: #fff;
	border-top: 3px solid orange;
    box-shadow: inset 0 0 0 0 rgba(0,0,0,.4),-2px -3px 5px -2px rgba(0,0,0,.4);
}

/* Section General Styles
/* ---------------------------------------------------------------------------------------------------- */
section { padding-top: calc(3rem + 5px); padding-bottom: calc(3rem + 5px); }
section .page-section-heading { color: #0079c4; }


/* Section: Map Styles
/* ---------------------------------------------------------------------------------------------------- */
section.map { width: 100%; position: relative; padding-top: 0; padding-bottom: 0; }
section.map .maps { height: 25rem; position: relative; }
section.map .maps iframe { height: 100%; width: 100%; }


/* Page Header Styles (Background Image: Article Image)
/* ---------------------------------------------------------------------------------------------------- */
.page-header {
	background-attachment: fixed;
    background-color: var(--brand-header-bkg);
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
	color: var(--brand-header-text);
    min-height: 350px;
}

.page-header::after {
    background: rgba(0,0,0,0.5);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.page-header > * { z-index: 99; }


/* Page Header Styles (Background Image: Specified Image)
/* ---------------------------------------------------------------------------------------------------- 
.page-header {
	background-color: #333;
    background-image: url('../images/xxx.png'), url('../images/bkg-page-header.jpg');
	background-position: top right, center center;
	background-repeat: no-repeat, no-repeat;
    background-size: 500px, auto;
	color: var(--brand-header-text);
}

@media (max-width: 992px) {
	.page-header {
        background-color: #333;
        background-image:  url('../images/bkg-page-header.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: auto;
    }
}
*/


/* Page Title Styles
/* ---------------------------------------------------------------------------------------------------- */
.page-header h1 { text-transform: var(--base-text-transform-uppercase); }


/* Footer Styles
/* ---------------------------------------------------------------------------------------------------- */
footer { color: #fff; text-align: center; }
footer .footer-brand { text-decoration: none; }
footer .footer-brand img { max-width: 150px; width: 150px; transition: all .2s ease-in-out; }
footer p { color: #fff; }

footer .nav.footer .nav-item .nav-link,
footer .nav.footer .nav-item .nav-link:link,
footer .nav.footer .nav-item .nav-link:active,
footer .nav.footer .nav-item .nav-link:visited,
footer .nav.footer .nav-item .nav-link:hover { color: #fff !important; }


/* Preloader Styles
/* ---------------------------------------------------------------------------------------------------- */
#preloader { background: var(--brand-col-primary) !important; }
#preloader:before { border: 6px solid var(--brand-col-primary) !important; }


/* Scroll Progress Bar Styles
/* ---------------------------------------------------------------------------------------------------- */
/* The progress bar (scroll indicator) */
.page-scroll-progress-bar { background: #ff6600; } 


/* Back to Top Styles
/* ---------------------------------------------------------------------------------------------------- */
#toTop { background: var(--brand-col-primary); }



/* ----------------------------------------------------------------------------------------------------
   #03 CUSTOM SITE/COMPONENT STYLES 
/* ---------------------------------------------------------------------------------------------------- */

/* Supporting Logos Styles
/* ---------------------------------------------------------------------------------------------------- */
section.logos {  padding-top: 2.5rem; padding-bottom: 1rem; }
.supporting-logos { margin-top: 15px; text-align: center; }

.supporting-logos p.support-logo { font-size: 0.8em; text-align: center; }
.supporting-logos ul { text-align: center !important; }

.supporting-logos ul.logo-list li img { width: auto; height: 90px; transition: all .2s ease-in-out;  }
.supporting-logos ul.logo-list li img.enabling-mark  { width: auto; height: 120px; transition: all .2s ease-in-out;  }
.supporting-logos ul.logo-list li img.cyber-essentials  { width: auto; height: 70px; margin-top: 60px; transition: all .2s ease-in-out;  }
.supporting-logos ul.logo-list li img.dsa  { width: auto; height: 110px; margin-top: 50px;  transition: all .2s ease-in-out;  }
[data-bs-theme=dark] .supporting-logos ul.logo-list li img,
[data-bs-theme=dark] .supporting-logos ul.logo-list li img.enabling-mark,
[data-bs-theme=dark] .supporting-logos ul.logo-list li img.cyber-essentials,
[data-bs-theme=dark] .supporting-logos ul.logo-list li img.dsa { background-blend-mode: multiply; -webkit-filter: grayscale(1) invert(1); filter: grayscale(1) invert(1); }

@media (max-width: 992px) {
    .supporting-logos,
    .supporting-logos ul,
    .supporting-logos p.support-logo  { text-align: center; }
}


/* Homepage Featured Links
/* ---------------------------------------------------------------------------------------------------- */
.card-parents-guardian .card-header {
    background-color: #73a839;
    background-image: linear-gradient(#88c149, #73a839 60%, #699934);
    background-repeat: no-repeat;
    color: #fff;
}

.card-individuals .card-header {
    background-color: #2FA4E7;
    background-image: linear-gradient(#54B4EB, #2FA4E7 60%, #1D9CE5);
    background-repeat: no-repeat;
    color: #FFF;
}

.card-employeers .card-header {
    background-color: #DD5600;
    background-image: linear-gradient(#FF6707, #DD5600 60%, #C94E00);
    background-repeat: no-repeat;
    color: #FFF;
}

.card-img-mid { border-top-left-radius: 0; border-top-right-radius: 0; }


/* Spotlight Section Styles
/* ---------------------------------------------------------------------------------------------------- */
section.spotlight { background-color: var(--base-col-light-100); border-top: 5px solid var(--brand-col-primary); }
[data-bs-theme=dark] .section.spotlight { background-color: var(--base-col-dark-600); border-top: 5px solid var(--base-col-dark-800); color: var(--base-col-light-500); }

[data-bs-theme=dark] .section.spotlight a:not(.btn) { color: var(--base-col-light-600); }

section.spotlight h5 { border-left: 5px solid #FF6600; text-transform: uppercase; padding-left: 10px; margin-bottom: 1.6rem; }
section.spotlight p,
section.spotlight a,
section.spotlight ul li,
section.spotlight ol li { font-size: 0.95rem; }

.spotlight .mod-custom { min-height: 510px;}
.mod-list.list-group .list-group-item { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.spotlight2 .card-section .card-body { min-height: 340px; }
.spotlight2 .card-section .card-body p.text { min-height: 148px; }
.spotlight2 .card-section .list-group .list-group-item { padding: 0.65rem 0.5rem; }
.spotlight2 .card-section .card-body-updates { min-height: 0 !important; }


/* Spotlight Title Styles
/* ---------------------------------------------------------------------------------------------------- */
.spotlightTitle {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 40px;
    height: 40px;
}

[data-bs-theme=dark] .spotlightTitle { color: var(--base-col-light-500); }


/* Parallax Styles
/* ---------------------------------------------------------------------------------------------------- */
#parallax { 
	background: url(../images/parallax.jpg) no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height: 350px;
	margin: 0;
}


/* Section: Living with Autism Cards Styles
/* ----------------------------------------------------------------------------------------------------*/
.card-teams .card-img-overlay { background-color: rgba(0,0,0,0.4); border-radius: .375rem .375rem 0px 0px; margin-bottom: 65px; }
@media (max-width: 992px) {
	.card-teams .card-img-overlay { margin-bottom: 58px; }
}
.card-teams .card-body { min-height: 120px; }
.card-teams .card-body .card-title,
.card-teams .card-img-overlay .card-title{ font-weight: var(--font-weight-bold) !important; font-size: 1.25rem; }
.card-teams .card-footer { padding: 0; }
.card-teams .card-footer .btn-card { border-radius: 0px 0px .375rem .375rem; padding: 1rem .5rem; }
.card-teams:hover { transform: scale(1.025); transition: all 1s ease; z-index: 999; }


/* Donation Styles
/* ---------------------------------------------------------------------------------------------------- */
.donation-tile-size { min-height: 530px; }
.donation-tile .iconic { display: block; width: 100%; min-height: 310px; }
.donation-tile .iconic i { font-size: 12em; opacity: 0.2; }
.donation-tile .card-footer { padding: 0; }
.donation-tile .card-footer .btn-card { border-radius: 0px 0px .375rem .375rem; padding: 1rem .5rem; }


/* Timeline
/* ----------------------------------------------------------------------------------------------------*/
.timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

.timeline-centered:before, .timeline-centered:after {
	content: " ";
	display: table;
}

.timeline-centered:after {
	clear: both;
}

.timeline-centered:before, .timeline-centered:after {
	content: " ";
	display: table;
}

.timeline-centered:after {
	clear: both;
}

.timeline-centered:before {
	content: '';
	position: absolute;
	display: block;
	width: 4px;
	background: #ddd;
	top: 20px;
	bottom: 20px;
	margin-left: 30px;
}

.timeline-centered .timeline-entry {
	position: relative;
	margin-top: 5px;
	margin-left: 30px;
	margin-bottom: 10px;
	clear: both;
}

.timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
	content: " ";
	display: table;
}

.timeline-centered .timeline-entry:after {
	clear: both;
}

.timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
	content: " ";
	display: table;
}

.timeline-centered .timeline-entry:after {
	clear: both;
}

.timeline-centered .timeline-entry.begin {
	margin-bottom: 0;
}

.timeline-centered .timeline-entry.left-aligned {
	float: left;
}

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
	margin-left: 0;
	margin-right: -18px;
}

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
	left: auto;
	right: -100px;
	text-align: left;
}

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
	float: right;
}

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
	margin-left: 0;
	margin-right: 70px;
}

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
	left: auto;
	right: 0;
	margin-left: 0;
	margin-right: -9px;
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.timeline-centered .timeline-entry .timeline-entry-inner {
	position: relative;
	margin-left: -20px;
}

.timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
	content: " ";
	display: table;
}

.timeline-centered .timeline-entry .timeline-entry-inner:after {
	clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
	content: " ";
	display: table;
}

.timeline-centered .timeline-entry .timeline-entry-inner:after {
	clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
	position: absolute;
	left: -100px;
	text-align: right;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span { display: block; }
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child { font-size: 15px; font-weight: bold; }
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child { font-size: 12px; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
	background: #fff;
	color: #737881;
	display: block;
	width: 40px;
	height: 40px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	text-align: center;
	-moz-box-shadow: 0 0 0 5px #ddd;
	-webkit-box-shadow: 0 0 0 5px #ddd;
	box-shadow: 0 0 0 5px #ddd;
	line-height: 40px;
	font-size: 15px;
	float: left;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
	background-color: #303641;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-secondary {
	background-color: #ee4749;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-tertiary {
    background-color: #A0F;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
	background-color: #00a651;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
	background-color: #21a9e1;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
	background-color: #fad839;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
	background-color: #cc2424;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-e2c {
    background-color: #609;
	color: #fff;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
	position: relative;
	background: #eee;
	border: #eee 1px solid;
	padding: 1em;
	margin-left: 60px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 9px 9px 0;
	border-color: transparent #eee transparent transparent;
	left: 0;
	top: 10px;
	margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2, .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label ul li,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label ol li {
	color: #737881;
	margin: 0;
	line-height: 1.428571429;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p { margin-top: 15px; }
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 { font-size: 22px; margin-bottom: 10px; }
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 a { color: #303641; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 span {
	-webkit-opacity: .6;
	-moz-opacity: .6;
	opacity: .6;
	-ms-filter: alpha(opacity=60);
	filter: alpha(opacity=60);
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h3.panel-title {
	font-size: 16px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
}


/* E2C Testimonials
/* ----------------------------------------------------------------------------------------------------*/
.testimonial-name {
    color: #E6400C;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 30px 0 0;
}

.testimonial-role {
    color: #656565;
    font-size: 0.8rem;
}


/* Accordion Link Out
/* ---------------------------------------------------------------------------------------------------- */
.accordion-linkout {
    font-size: 1rem;
    position: relative;
    background-color: var(--base-accordion-btn-bg);
    text-decoration: none !important;
    text-transform: none;
    padding: 1rem 1.25rem;
    box-shadow: 0px 0 5px rgba(0, 0, 0, 0.25);
	margin-bottom: 18px;
}

.accordion-linkout a { color: var(--base-accordion-btn-color); text-decoration: none; }


/* Autism Learning Tour Accordion
/* ---------------------------------------------------------------------------------------------------- */
.accordion-header-container { display: flex; flex-direction: column; align-items: stretch; align-content: stretch; }
.accordion-header-title { font-weight: 600; }
.accordion-header-desc { color: var(--base-col-gray-700); font-weight: 400; font-size: 0.95rem; margin-top: 5px; }


/* Mailing List Accordion Styles
/* ---------------------------------------------------------------------------------------------------- */
.accordion-header .accordion-button { font-weight: normal !important; }
.accordion-header .accordion-button.bg-info { background-color: #d9edf7 !important; color: #31708f !important; border-color: #bce8f1 !important; }
.accordion-header .accordion-button.bg-warning { background-color: #fcf8e3 !important; color: #8a6d3b !important; border-color: #faebcc !important; }
.accordion-header .accordion-button.bg-success { background-color: #dff0d8 !important; color: #3c763d !important; border-color: #d6e9c6 !important; }


/* Mailing List Form Styles
/* ---------------------------------------------------------------------------------------------------- */
#mc_embed_signup form {padding:10px 0 10px 0;}
.mc-field-group { display: inline-block; } /* positions input field horizontally */
#mc_embed_signup input.email {font-family:"Open Sans","Helvetica Neue",Arial,Helvetica,Verdana,sans-serif; font-size: 15px; border: 1px solid #ABB0B2;  -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; color: #343434; background-color: #fff; box-sizing:border-box; height:32px; padding: 0px 0.4em; display: inline-block; margin: 0; width:350px; vertical-align:top;}
#mc_embed_signup label {display:block; font-size:16px; padding-bottom:10px; font-weight:bold;}
#mc_embed_signup .clear {display: inline-block;} /* positions button horizontally in line with input */
#mc_embed_signup .button {font-size: 13px; border: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; letter-spacing: .03em; color: #fff; background-color: #aaa; box-sizing:border-box; height:32px; line-height:32px; padding:0 18px; display: inline-block; margin: 0; transition: all 0.23s ease-in-out 0s;}
#mc_embed_signup .button:hover {background-color:#777; cursor:pointer;}
#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%;margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}
@media (max-width: 768px) {
    #mc_embed_signup input.email {width:100%; margin-bottom:5px;}
    #mc_embed_signup .clear {display: block; width: 100% }
    #mc_embed_signup .button {width: 100%; margin:0; }
}


/* Custom Alert Styles
/* ---------------------------------------------------------------------------------------------------- */
.alert-info { border-left-color: #5BC0DE; border-width: 1px 1px 1px 5px; color: #666; }
.alert-info i.fa { color: #5BC0DE !important; }

.alert-warning { border-left-color: #F0AD4E; border-width: 1px 1px 1px 5px; color: #666; }
.alert-warning i.fa { color: #F0AD4E !important; }
.alert-warning h4 { color: #F0AD4E !important; margin: 5px 0 15px !important; line-height: 35px !important; }


/* News and Media
/* ----------------------------------------------------------------------------------------------------*/
.event-list {
	list-style: none;
	font-family: 'Open Sans', 'Microsoft YaHei', 微软雅黑, SimHei, 黑体, STHeiti, 华文黑体, sans-serif;
	margin: 0px;
	padding: 0px;
}

.event-list > li {
	background-color: #F5F5F5;
	padding: 0px;
	margin: 0px 0px 20px;
}

.event-list > li > .time {
	display: inline-block;
	width: 100%;
	color: #fff;
	background-color: #1BA1E2;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
}

.event-list > li > .time > span { display: none; }
.event-list > li > .time > .day {
	display: block;
	font-size: 20pt;
	font-weight: 300;
	line-height: 1;
}

.event-list > li .time > .month {
	display: block;
	font-size: 11pt;
	font-weight: 900;
	line-height: 1;
}

.event-list > li > img { width: 100%; }

.event-list > li > .info {
	padding: 10px;
	display: table-cell;
    vertical-align:middle;
	text-align: center;
}

.event-list > li > .info > .title,
.event-list > li > .info > .title a {
	font-size: 14pt;
	font-weight: 700;
	margin: 0px;
	cursor: pointer;
	text-transform: capitalize;
	text-decoration: none;
}

.event-list > li > .info > .desc {
	font-size: 12pt;
	font-weight: 300;
	margin: 0px;
}

.event-list > li > .info > ul {
	display: table;
	list-style: none;
	margin: 10px 0px 0px;
	padding: 0px;
	width: 100%;
	text-align: center;
}

.event-list > li > .info > ul > li {
	display: table-cell;
	cursor: pointer;
	color: rgb(30, 30, 30);
	font-size: 11pt;
	font-weight: 300;
	padding: 3px 0px;
}

.event-list > li > .info > ul > li > a {
	display: block;
	width: 100%;
	color: rgb(30, 30, 30);
	text-decoration: none;
} 

@media (min-width: 768px) {
	.event-list > li {
		position: relative;
		display: block;
		width: 100%;
		height: 60px;
		padding: 0px;
	}

	.event-list > li > .time,
	.event-list > li > img  {
		display: inline-block;
	}

	.event-list > li > .time,
	.event-list > li > img {
		width: 60px;
		float: left;
	}

	.event-list > li > .time > .day {
		margin-top: 8px;
	}

	.event-list > li > .info {
		background-color: #F5F5F5;
		overflow: hidden;
	}

	.event-list > li > .time,
	.event-list > li > img {
		width: 60px;
		height: 60px;
		padding: 0px;
		margin: 0px;
	}

	.event-list > li > .info {
		position: relative;
		height: 60px;
		text-align: left;
		padding-right: 40px;
	}

	.event-list > li > .info > .title, 
	.event-list > li > .info > .desc {
		padding: 0px 10px;
	}

	.event-list > li > .info > ul {
		position: absolute;
		left: 0px;
		bottom: 0px;
	}
}


/* News Listing Styles
/* ----------------------------------------------------------------------------------------------------*/
.news-listing .list-group .list-group-item { font-weight: var(--font-weight-semibold); padding-top: .9rem!important; padding-bottom: .9rem!important; position: relative; line-height: 1.5; display: flex; align-items: center; justify-content: flex-start; }
.news-listing .list-group .list-group-item::before { content: "\f1ea"; color: #999; font-family: "Font Awesome 6 Free"; font-size: 1.35rem; margin-right: 0.5rem; padding: 0 0.5rem 0 0; display: inline-block; width: 1.5rem;  }
.news-listing .list-group .list-group-item:focus::before, 
.news-listing .list-group .list-group-item:hover::before { color: #ff9900; }
.news-listing .list-group .list-group-item:focus::after, 
.news-listing .list-group .list-group-item:hover::after { content: "\f054"; color: #06c; font-family: "Font Awesome 6 Free"; font-size: 1.35rem; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.news-listing .list-group .list-group-item:focus, 
.news-listing .list-group .list-group-item:hover { background-color: #f8f8f8; color: #ff6600; text-decoration: none; }
.news-listing .list-group .list-group-item a,
.news-listing .list-group .list-group-item a:hover { text-decoration: none; display: inline-block; }