/* Custom Icons DEMO PRODUCT LANDING*/
.custom-icon-left-arrows,
.custom-icon-right-arrows {
		position: relative;
		width: 13px;
		height: 13px;
}

.custom-icon-left-arrows:before,
.custom-icon-right-arrows:before {
		content: '';
		position: absolute;
		left: -35%;
		top: 50%;
		width: 90%;
		height: 90%;
		border-top: 1px solid var(--dark);
		border-left: 1px solid var(--dark);
		opacity: 0.6;
		transform: translate3d(0, -50%, 0) rotate(-45deg);
}

.custom-icon-left-arrows:after,
.custom-icon-right-arrows:after {
		content: '';
		position: absolute;
		right: -35%;
		top: 50%;
		width: 100%;
		height: 100%;
		border-top: 1px solid var(--dark);
		border-left: 1px solid var(--dark);
		transform: translate3d(0, -50%, 0) rotate(-45deg);
}

.custom-icon-right-arrows {
		transform: rotateY(180deg);
}