/* Swiper Defaults */
.swiper .swiper-pagination-bullet {
	background-color: var(--gray-900);
	opacity: .4;
}
.swiper .swiper-pagination-bullet-active {
	background-color: var(--gold);
	opacity: 1;
}
.swiper-button-next, 
.swiper-button-prev {
	color: var(--white);
	border-radius: 100%;
	background-color: var(--yellow);
	display: flex;
	text-align: center;
	align-items: center;
	height: 2rem;
	width: 2rem;
	transition: all .1s ease-in;
	opacity: .85;
	z-index: 2;
}
.swiper-button-prev {
	left: 1rem;
	top: calc(50% - 1rem);
}
.swiper-button-next {
	right: 1rem;
	top: calc(50% - 1rem);
}
.swiper-button-next::before, 
.swiper-button-prev::before {
	content: '';
	background-color: var(--primary);
	width: 2rem;
	height: 2rem;
	position: absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	z-index: -1;
	border-radius: 100%;
	transition: all .1s ease-in;
}
.swiper-button-next::after, 
.swiper-button-prev::after {
	font-size: 1rem;
	z-index: 3;
	position: relative;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
	opacity: 1;
	width: 2.25rem;
	height: 2.25rem;
}
.swiper-button-prev:hover {
	left: 0.825rem;
	top: calc(50% - 1.125rem);
}
.swiper-button-next:hover {
	right: 0.825rem;
	top: calc(50% - 1.125rem);
}
.swiper-button-next:hover::before, 
.swiper-button-prev:hover::before {
	left: 0.125rem;
	right: 0.125rem;
	bottom: 0.125rem;
	top: 0.125rem;
}

.swiper-horizontal>.swiper-scrollbar, 
.swiper-scrollbar.swiper-scrollbar-horizontal {
	margin-top: 2rem;
	position: relative;
	height: .5rem;
	background-color: var(--faded-red);
}
.swiper-scrollbar-drag {
	background-color: var(--primary);
}
.hartnell-image-slider-component .swiper-slide-content figure {
	min-height: 250px;
}
.hartnell-image-slider-component .swiper-slide-content figure img {
	position: relative;
	z-index: 1;
}
.hartnell-image-slider-component .swiper-slide-content figure:after {
	content: '';
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	top: calc(50% - 20px);
	z-index: 0;
}

/* Accordion */
.accordion .accordion-item {
	border: 1px solid var(--secondary);
	border-bottom-width: 0;
}
.accordion .accordion-item:last-of-type {
	border-bottom-width: 1px;
}
.accordion .accordion-item:first-of-type,
.accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
	border-top-left-radius: 1.875rem;
    border-top-right-radius: 1.875rem;
}
.accordion .accordion-item:last-of-type,
.accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
	border-bottom-left-radius: 1.875rem;
	border-bottom-right-radius: 1.875rem;
}
.accordion button.accordion-button {
	padding: 1.5rem;
	background-color: var(--gray-200);
	color: var(--black);
	font-size: 1.125rem;
}
.accordion .accordion-button:not(.collapsed) {
	color: var(--primary);
	background-color: var(--white);
	box-shadow: none;
}
.accordion .accordion-button:focus {
	box-shadow: 0px 0px 7px 0px rgba(255,204,33,0.25);
}
.accordion .accordion-button::after {
	content: '\f055';
	font: var(--fa-font-sharp-light);
	background: transparent;
	font-size: 1.5rem;
	transition: all .2s ease-in-out;
	height: auto;
	width: auto;
	color: var(--primary);
	opacity: 0;
}
body.font-awesome-loaded .accordion .accordion-button::after {
	opacity: 1;
}
.accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(-45deg);
	color: var(-secondary);
}


/* Hartnell Social Media Asset */
.hartnell-social-media-icons a {
	font-size: 1.75rem;
	transition: all .2s ease-in-out;
	margin-right: .25rem;
}
.hartnell-social-media-icons a:hover {
	color: var(--secondary);
}
.hartnell-social-media-icons a:after {
	display: none;
}

/* News Ticker Component */
.hartnell-news-ticker-component.text-white a {
	color: var(--white);
}
.hartnell-news-ticker-component.text-white a:after {
	color: var(--primary);
}
.hartnell-news-ticker-component.text-white a:hover {
	color: var(--faded-red);
}
.hartnell-news-ticker-component.swiper {
	margin-left:0;
	position: unset;
}
.hartnell-news-ticker-component .swiper-slide {
	height: auto !important;
}
.hartnell-news-ticker-component.swiper .swiper-pagination {
	left:0;
	right: auto;
}

/* Image Slider Component */
.hartnell-image-slider-component .swiper-slide-content {
	border-radius: var(--bs-border-radius-sm);
	overflow: hidden;
}
.hartnell-image-slider-component .swiper-slide-content figcaption {
	bottom: 1rem;
	left: 1rem;
	max-width: calc(100% - 2rem);
}

/* Quote */
.hartnell-quote-component img {
	max-width: 75px;
	max-height: 75px;
}
.hartnell-quote-component .quote {
	position: relative;
	padding-left: 2rem;
}
.hartnell-quote-component .quote:before {
	content: '\201C';
	color: var(--yellow);
	font-size: 3rem;
	position: absolute;
	left:0;
	top:-1rem;
}
.swiper-slide img {
	visibility: hidden;
	opacity: 0;
	transition: all .5s ease-out;
}
.swiper-slide img.loaded {
	visibility: visible;
	opacity: 1;
}
@media only screen and (min-width: 992px) {
	.hartnell-quote-component img {
		max-width: 125px;
		max-height: 125px;
	}	
}

/* Card */
a.hartnell-card-component.card {
	transition: all .2s ease-in-out;
}
a.hartnell-card-component.card:not(.bg-transparent):hover {
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
a.hartnell-card-component.card:hover {
	text-decoration: none;
}
a.hartnell-card-component.bg-transparent.border-primary:hover,
a.hartnell-card-component.bg-transparent.border-primary:hover h2 {
	color: var(--primary);
}
a.hartnell-card-component.bg-transparent.border-warning:hover,
a.hartnell-card-component.bg-transparent.border-warning:hover h2 {
	color: var(--faded-red);
}
.hartnell-card-component.card {
	overflow: hidden;
}
.hartnell-card-component .card-body.p-default {
	padding: 1.75rem;
}
.hartnell-card-component.bg-transparent.border-primary,
.hartnell-card-component.bg-transparent.border-warning {
	border-top-width: 3px !important;
}

.hartnell-card-component.bg-transparent.border-warning,
.hartnell-card-component.bg-transparent.border-warning h2,
.hartnell-card-component.bg-primary,
.hartnell-card-component.bg-primary h2,
.hartnell-card-component.bg-secondary,
.hartnell-card-component.bg-secondary h2{
	color: var(--white);
}
.hartnell-card-component.card .hartnell-card-image-inline {
	display: flex;
	justify-content: start;
	align-items: start;
}
.hartnell-card-component.card .hartnell-card-image-inline .card-body,
.hartnell-card-component.card .hartnell-card-image-inline .card-body.p-default {
	padding: 1.25rem !important;
}
.hartnell-card-component.card .hartnell-card-image-inline img {
	margin: 1.25rem 0 1.25rem 1.25rem;
	max-width: 7rem;
	border-radius: 2rem;
}

/* Event and News Listing -- Homepage */
.hartnell-event-simple-list img {
	max-width: 4rem;
}