/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Slider family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/
.core-hero-image {
	margin-bottom: var(--space-2);
}

.core-hero-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(farthest-corner at bottom left,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0));
	pointer-events: none;
}

.core-hero-image .slide p {
	font-size: var(--text-base);
	font-weight: 500;
}

.core-hero-image .read-more {
	display: inline-block;
	font-weight: 600;
	color: var(--green-alt);
	text-decoration: none;
	text-transform: capitalize;
	font-size: var(--text-base);
	letter-spacing: var(--tracking-tight);
}

.core-hero-image .read-more::after {
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 4px;
}

.core-hero-image .slide .slide-title,
.core-hero-image .slide .slide-title a {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--white);
	font-size: var(--text-3xl-2);
	line-height: 1.053;
	letter-spacing: .03em;
}

.core-hero-image .shared-play-button {
	left: unset;
	right: 0;
	top: 50px;
}

@media (min-width: 64em) {
	.core-hero-image {
		margin-bottom: var(--space-4);
	}
	
	.core-hero-image .slide .slide-title,
	.core-hero-image .slide .slide-title a {
		font-size: var(--text-5xl);
		line-height: 1.053;
		letter-spacing: .03em;
	}

	.core-hero-image .slide p {
		font-size: 1.1875rem;
		width: 110%;
	}

	.core-hero-image .read-more {
		display: block;
		font-size: 1.1875rem;
		letter-spacing: var(--tracking-normal);
	}

	.core-hero-image .read-more::after {
		font-size: 22px;
	}

	.core-hero-image .shared-play-button {
		top: 160px;
	}
}

/* Content Page */
.core-hero-image.alternate p {
	display: none;
}

.core-hero-image.alternate .slide-title {
	font-weight: 700;
	line-height: var(--leading-none);
	font-size: var(--title-text-size);
}

.core-hero-image.alternate .content-section {
    padding: 0px 0px 4px 17px;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    display: grid;
    width: 100%;
}

.core-hero-image.alternate .slide .slide-title, .core-hero-image.alternate .slide .slide-title a {
    font-size: 1.4375rem;
    letter-spacing: .05em;
    font-weight: 500;
}

@media (min-width: 40em) {
	.core-hero-image.alternate .glide__arrow i, .sv-lightbox .arrow i {
		font-size: 2.5rem;
	}

	.core-hero-image.alternate .shared-play-button {
		width: 100px;
		height: 100px;
		font-size: var(--text-5xl);
	}

	.core-hero-image.alternate .slide .slide-title, .core-hero-image.alternate .slide .slide-title a {
		font-size: 1.75rem;
		margin-bottom: 10px;
	}

	.core-hero-image.alternate .content-section {
		padding: var(--space-5) 30px;
	}
}

/* BidBook Hero Image */
.core-hero-image.bidbook{
	margin-bottom: unset;
}
.core-hero-image.bidbook .content-section{
	padding: unset;
	display: flex;
	justify-content: flex-start;
}
.core-hero-image.bidbook .content-section .proposal-block p{
	display: block;
}
.core-hero-image.bidbook .content-section .credits-inner{
	backdrop-filter: blur(40px);
	min-height: 157px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.core-hero-image.bidbook .content-section .proposal-block{
    display: flex;
	min-height: 157px;
}
.core-hero-image.bidbook .content-section .proposal-block .left{
	background: #fa9e00;
    padding: 10px;
}
.core-hero-image.bidbook .content-section .proposal-block .left p{
	text-wrap: wrap;
    color: black;
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 700;
	line-height: 1;
    text-align: right;
    padding-right: 20px;
    padding-top: 8px;
}
.core-hero-image.bidbook .content-section .proposal-block .right{
	background: black;
    padding: 10px 20px;
}
.core-hero-image.bidbook .content-section .proposal-block .right p{
	color: #fff;
	font-family: var(--font-title);
	font-size:30px;
}