/*
	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-slider:not([data-width="full"]) { margin-bottom: var(--space-1);}
.contentRender_name_plugins_collections_template_custom_core_slider_3_across {
	position: relative;
	background: var(--gray-500) url("/includes/public/assets/bg-texture.png") bottom left repeat;
}
.contentRender_name_plugins_collections_template_custom_core_slider_3_across::after {
	content: '';
	background: url("/includes/public/assets/texture-logo.png") bottom left no-repeat;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 312px;
	height: 301px;
	z-index: 1;
}
.core-slider .widget-header { margin-bottom: 0;}
.core-slider .widget-header-inner {
	justify-content: center;
	flex-direction: column;
}
.core-slider .widget-title {
	color: var(--gray-rgb);
	font-size: 50px;
	font-weight: 900;
	line-height: var(--leading-none);
	margin-right: 0;
	margin-bottom: var(--space-2);
}
.core-slider .widget-title.subtitle {
	color: var(--gray-600);
	font-family: var(--font-contrast);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: var(--space-2);
}
.core-slider .slider-cont { z-index: 2;}
.core-slider .slide > .inner {
	background-color: var(--white);
	border-radius: var(--rounded-xl) var(--rounded-xl) 0 0;
	padding: var(--space-1);
	border-bottom: 4px solid var(--primary-color-900);
	margin-bottom: var(--space-40);
}

.core-slider .slide .inner img { border-radius: var(--rounded-xl) var(--rounded-xl) 0 0;}

.core-slider .arrow-cont .custom-arrow {
	width: 56px;
	height: 56px;
	font-size: var(--text-base);
	top: 83%;
	border:none;
	opacity: 100;
	box-shadow: none;
}

.core-slider .arrow-cont .custom-arrow.prev {
	left: 20%;
}

.core-slider .arrow-cont .custom-arrow.next {
	right: 20%;
}

.core-slider .slide .slide-title {
	color: var(--gray-900);
	font-size: var(--text-base);
	text-align: center;
}

.core-slider .widget-footer {
	position: absolute;
	left: 25%;
	top: 92%;
	z-index: 2;
}

.core-slider  a.widget-view-all {
	background-color: var(--white);
	color: var(--black);
	padding: var(--space-2) var(--space-10);
	position: relative;
	transition: all ease .3s;
	transform: translateX(10px);
}
.core-slider a.widget-view-all::before {
	content: "\f101";
	font-family: "Font Awesome 5 Free";
	background-color: #1a92ba;
	border-radius: var(--rounded-circle);
	color: var(--white);
	height: var(--space-12);
	width: var(--space-12);
	position: absolute;
	top: -2px;
	left: -10%;
    text-align: center;
	font-size: 20px;
    line-height: 2.3;
	transition: all ease .3s;
}
.core-slider a.widget-view-all:hover::after {
	content: '';
	height: 58px;
	width: 58px;
	position: absolute;
	top: -7px;
    left: -12.5%;
	border: 2px solid #1a92ba;
	border-radius: var(--rounded-circle);
}
.core-slider .blog-feed-header,
.core-slider .slide .details { margin: 0 auto;}
.core-slider .mini-date-section {
	top: var(--space-1);
	left: var(--space-1);
	border-radius: var(--rounded-xl) 0 0 0;
}
@media (min-width: 40em) {
	.core-slider .arrow-cont .custom-arrow {
		top: 40%;
	}

	.core-slider .arrow-cont .custom-arrow.prev {
		left: -5%;
	}

	.core-slider .arrow-cont .custom-arrow.next {
		right: -5%;
	}

	.core-slider .slide .slide-title {
		font-size: var(--text-lg);
	}

	.core-slider .slide .content-section {
		padding: var(--space-6) 0;
	}
	.core-slider .widget-footer {
		left: 45%;
		top: 85%;
	}
	.core-slider a.widget-view-all {
		padding: var(--space-2) var(--space-10) var(--space-2) var(--space-14)
	}
	.core-slider a.widget-view-all::before {
		height: var(--space-14);
		width: var(--space-14);
		font-size: var(--text-2xl);
		line-height: 2.205;
		top: -7px;
	}
	.core-slider a.widget-view-all:hover::after {
		height: 66px;
		width: 66px;
		top: -12px;
	}
	.core-slider .blog-feed-header { display: inline-flex;}
	.core-slider:not([data-width="full"])
}