:root {
	--slick-opacity-default: 1;
	--slick-opacity-on-hover: 1;
	--slick-opacity-not-active: 0.5;
	--slick-prev-character: '\2190';
	--slick-next-character: '\2192';
}

.quote-cards-wrapper {
	padding: 20px;
}

.quote-card {
	padding: 0 10px;
	display: none;
	background-color: white;

	.slick-slide & {
		display: block;
	}
}
.slick-slide img {
	width: 100%;
	max-width: none;
}

.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 47px;
	width: 47px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	transform: translate(0, -50%);
	padding: 0;
	border: 1px solid var(--color-theme-primary);
	border-radius: 50%;
	transition: all 0.3s ease;

	&:hover,
	&:focus,
	&:focus-within {
		background: var(--color-theme-primary) !important;
		color: #fff;

		&:before {
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47' height='47' fill='none'%3E%3Cpath fill='%23fff' d='m23.5 33.223 1.713-1.714-6.782-6.795h14.793v-2.431H18.43l6.795-6.783-1.726-1.726-9.725 9.725 9.725 9.724Z'/%3E%3C/svg%3E") !important;
		}
	}
	&.slick-disabled:before {
		opacity: var(--slick-opacity-not-active);
	}
	&:before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47' height='47' fill='none'%3E%3Cpath fill='%2313294b' d='m23.5 33.223 1.713-1.714-6.782-6.795h14.793v-2.431H18.43l6.795-6.783-1.726-1.726-9.725 9.725 9.725 9.724Z'/%3E%3C/svg%3E");
	}
}

.slick-prev {
	left: -50px;
	[dir='rtl'] & {
		left: auto;
		right: -50px;
	}
}

.slick-next {
	right: -50px;
	[dir='rtl'] & {
		left: -50px;
		right: auto;
	}
	&:before {
		transform: rotate(180deg);
	}
}
