/*
	README

	Do NOT modify this file directly; a number of widgets depend on this file being as is.
	Use the CSS file that is associated with your widget
	(ie. template: widget_template_custom_my_widget.html, CSS: widget_template_custom_my_widget.css)
	to make any theme-ing or overwrites you need.

	If you need to make significant changes such that overwriting would be complicated
	consider not using a different component from the Core Collection Library or
	not using the Core Component Library altogether.

	If you still feel the need to edit this file, copy/paste this CSS into a different file
	and use that instead.
*/

.core-slider {
	margin-bottom: 48px;
	padding-top: 32px;
}
.core-slider:not(.full-width) {
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
	max-width: 1190px;
}

.core-slider .slider-cont {
	position: relative;
}

.core-slider .slick-slider:not(.slick-initialized) {
	max-height: 400px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
}

.core-slider .arrow-cont {
	position: absolute;
	z-index: 10;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.core-slider .arrow-cont > .inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.core-slider .arrow-cont .custom-arrow {
	position: absolute;
	top: 50%;
	margin: 0;
	padding: 0;
    width: 42px;
    height: 42px;
	font-size: 20px;
	color: #1563af;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #fff;
	pointer-events: all;
}

.core-slider .arrow-cont .custom-arrow.prev {
	left: 0;
	transform: translate(50%, -50%);
}

.core-slider.content-overlaps .arrow-cont .custom-arrow.prev {
	transform: translateY(-100%);
}

.core-slider .arrow-cont .custom-arrow.next {
	right: 0;
	transform: translate(-50%, -50%);
}

.core-slider.content-overlaps .arrow-cont .custom-arrow.next {
	transform: translateY(-100%);
}

@media (min-width: 1024px) {
	.core-slider.content-overlaps .arrow-cont .custom-arrow.prev {
		left: 19px;
	}
	
	.core-slider.content-overlaps .arrow-cont .custom-arrow.next {
		right: 19px;
	}
}

.core-slider .arrow-cont .custom-arrow .arrow-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

@media (min-width: 640px) {
	.core-slider.multi-slides .slide {
		padding: 0 10px;
	}
}
.core-slider .slide > .inner {
	position: relative;
}

.core-slider .slide .content-section {
	padding: 18px 0;
	color: #1563af;
}

.core-slider.full-width .slide .content-section {
	padding: 18px 15px;
}

@media (min-width: 1024px) {
	.core-slider .slide.overlap-image .content-section {
		position: absolute;
		z-index: 2;
		left: 0;
		bottom: 0;
		padding: 14px 34px;
		width: 100%;
		max-width: calc(344px + 2 * 34px);
		color: #fff;
	}
}

.core-slider .slide .title {
	margin: 0;
    margin-bottom: 4px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
}

.core-slider .slide .description {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: inherit;
}

.core-slider .slide .read-more {
	color: #1563af;
}

.core-slider .slide.overlap-image .img-cont {
	position: relative;
	overflow: hidden;
}

.core-slider .slide.overlap-image .img-cont::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.core-slider .slide img {
	display: block;
	width: 100%;
}