/*
	Featured Section Slider 
 */
.featured-section-slider {
	
	background: #f0f0f0;
	background: linear-gradient(to right, #454545 0%, #565755 100%);
	font-size: .85em;

	@media only screen and (min-width: 1275px) {
		font-size: .90em;
	}

	@media only screen and (min-width: 1400px) {
		font-size: 1em;
	}

	.owl-carousel {
		// position: relative;
	}
    .carousel-content {
    	position: relative;
	}

	white-space: unset;
	
	.owl-nav {
		display: none;
		color: red;
		position: absolute;
		width: 100%;
		height: 60px;
		top: 50%;
		margin-top: -30px;

		font-size: 3em;
		color: black;

		.owl-prev {
			left: 0;
		}

		.owl-next {
			right: 40px;
			-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
		}
	}

	.owl-dots {
		display: flex;
		// display: none;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		position: absolute;
		bottom: 20px;
		left: 50%;

		.owl-dot {
			padding: 0 3px;

			span {
				display: block;
				width: 12px;
				height: 12px;
				border-radius: 50%;
				background: rgba(248, 248, 248, 0.49);
			}

			&.active {
				span {
					background: $base-accent-color;
				}
			}
		}
	}
}
