/*
	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,
.core-slider:not([data-width="full"]) {
	--font-heading: var(--font-display);
	--text-color: var(--dark-gray);
	--color-display: var(--text-color);
	--color-body: #4c4c4c;
	--horizontal-margin: var(--space-4);

	position: relative;
	padding: 18px 0 var(--space-12) 0;
	margin: 30px 0 52px 0;
	max-width: none;
}

.core-slider .bg-block {
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.core-slider .slider-cont {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--width-base);
	margin: 0 auto;
}

.core-slider .slick-list{
	padding: var(--space-5) 0;
}

.core-slider .slick-track {
	display: flex;
}

.core-slider .slider-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--horizontal-margin);
}

.core-slider .slider-heading-row header {
	flex-grow: 1;
	margin-right: var(--space-8);
}

.core-slider .widget-title {
	margin-right: 0;
	line-height: var(--leading-none);
	font-weight: normal;
	font-size: 2.1875rem;
	letter-spacing: .06rem;
	text-transform: uppercase;
}

.core-slider .arrow-cont {
	display: flex;
    position: static;
    width: auto;
    height: auto;
    pointer-events: auto;
}

.core-slider .arrow-cont .custom-arrow {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	flex-shrink: 0;
	width:34px;
	height: 40px;
	margin-right: var(--space-5);
	border-radius: 0;
	border: 1px solid var(--gray);
	box-shadow: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: auto 16px;
	color: var(--gold);
	transition: background-position var(--transition-speed-and-ease);
}

.core-slider .arrow-cont .custom-arrow::before,
.core-slider .arrow-cont .custom-arrow::after {
	position: absolute;
	display: block;
	content: '';
	width: 1px;
	height: 33%;
	background: var(--gray);
	transition: height var(--transition-speed-and-ease);
	pointer-events: none;
}

.core-slider .arrow-cont .custom-arrow::before {
	top: 0;
}

.core-slider .arrow-cont .custom-arrow::after {
	bottom: 0;
}

.core-slider .arrow-cont .custom-arrow:last-child {
	margin-right: 0;
}

.core-slider .arrow-cont .custom-arrow.prev,
.core-slider .arrow-cont .custom-arrow.next {
    transform: none;
}

.core-slider .arrow-cont .custom-arrow.prev {
	border-right: none;
	background-image: url('/includes/public/assets/shared/btn-arrow-left.svg');
	background-position: 100% center;
}
.core-slider .arrow-cont .custom-arrow.prev.navy {
	background-image: url('/includes/public/assets/shared/btn-arrow-left-navy.svg');
}
.core-slider .arrow-cont .custom-arrow.prev.teal {
	background-image: url('/includes/public/assets/shared/btn-arrow-left-teal.svg');
}

.core-slider .arrow-cont .custom-arrow.prev::before,
.core-slider .arrow-cont .custom-arrow.prev::after {
	right: 0;
}

.core-slider .arrow-cont .custom-arrow.next {
	border-left: none;
	background-image: url('/includes/public/assets/shared/btn-arrow.svg');
	background-position: 0 center;
}
.core-slider .arrow-cont .custom-arrow.next.navy {
	border-left: none;
	background-image: url('/includes/public/assets/shared/btn-arrow-navy.svg');
	background-position: 0 center;
}
.core-slider .arrow-cont .custom-arrow.next.teal {
	border-left: none;
	background-image: url('/includes/public/assets/shared/btn-arrow-teal.svg');
	background-position: 0 center;
}

.core-slider .arrow-cont .custom-arrow.next::before,
.core-slider .arrow-cont .custom-arrow.next::after {
	left: 0;
}

.core-slider .slider-footer {
	padding-top: 0;
	padding-left: var(--horizontal-margin);
	padding-right: var(--horizontal-margin);
}

.core-slider .slide,
.core-slider .slick-slide {
	background: var(--white);
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(35, 31, 32, .1);
	margin: 0 var(--horizontal-margin);
	float: none;
	height: auto;
}

.core-slider .slide .slide-top {
	position: relative;
}

.core-slider .slide .content-section {
	padding: var(--space-4) var(--space-4) var(--space-6) var(--space-4);
}

.core-slider .slide .content-section > .inner {
	gap: var(--space-5);
}

.core-slider .slide .slide-title {
	text-transform: uppercase;
	line-height: var(--leading-none);
	letter-spacing: .04rem;
	font-weight: normal;
}

.core-slider .slide .description {
	line-height: 1.333;
	letter-spacing: .02rem;
	font-weight: normal;
}

.core-slider .slide .slide-footer,
.core-slider .slide .blog-feed-header {
	display: none;
}


@media (hover: hover) {
	.core-slider .arrow-cont .custom-arrow:hover::before,
	.core-slider .arrow-cont .custom-arrow:hover::after {
		height: 50%;
	}

	.core-slider .arrow-cont .custom-arrow.prev:hover {
		background-position: calc(100% - 4px) center;
	}
	
	.core-slider .arrow-cont .custom-arrow.next:hover {
		background-position: 4px center;
	}

	.core-slider .slide .slide-title > a:hover {
		color: var(--color-display);
	}
}

@media screen and (min-width: 40em) {
	.core-slider[data-multi-slides="true"] .slide {
		padding: 0;
	}
}

@media screen and (min-width: 64em) {
	.core-slider .widget-title {
		font-size: 4.6875rem;
		line-height: 0.88;
		letter-spacing: .06rem;
	}

	.core-slider .slide .content-section {
		padding: var(--space-3) var(--space-6) var(--space-6) var(--space-6);
	}

	.core-slider .slide .content-section > .inner {
		gap: var(--space-3);
	}

	.core-slider .slide .slide-title {
		font-size: 1.6875rem;
		line-height: 1.15;
	}

	.core-slider .slide .description {
		font-size: 1.0625rem;
		line-height: 1.35;
		letter-spacing: 0;
	}
}

@media screen and (min-width: 90em) { 
	.core-slider,
	.core-slider:not([data-width="full"]) {
		padding: 18px 0 var(--space-4) 0;
		margin: var(--space-20) 0;
	}

	.core-slider .slick-list {
		padding-bottom: var(--space-8);
	}

	.core-slider .slider-heading-row {
		padding-bottom: var(--space-6);
	}
}


.core-slider .tripbuilder {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	cursor: pointer;
}

.core-slider .tripbuilder a {
	font-size: 1.5rem;
	position: relative;
	font-family: 'Font Awesome 5 Free';
	text-decoration: none;
}

.core-slider .tripbuilder .addTrip:before{
	content: "\f004";
	font-weight: 900;
	color: rgba(0, 0, 0, 0.5);
}

.core-slider .tripbuilder .addTrip:after{
	content: "\f004";
	font-weight: normal;
	color: #fff;
	position: absolute;
	right: 0;
}

.core-slider .tripbuilder .removeTrip:before{
	content: "\f004";
	font-weight: 900;
	color: rgb(212, 39, 39) !important;
}