.webist-asari-slides-container {
	max-width: 800px;
	position: relative;
	margin: auto;
}

.webist-asari-slides-next {
	right: 0;
}

.webist-asari-slides-previous,
.webist-asari-slides-next {
	cursor: pointer;
	position: absolute;
	top: 45%;
	padding: 10px;
	margin-top: -25px;
}

.webist-asari-slide-number {
	background-color: #5574C5;
	color: white;
	border-radius: 25px;
	top: 85%;
	left: 49%;
	opacity: .5;
	margin: 5px;
	width: 30px;
	height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	position: absolute;
}

.webist-asari-slide-img{
	width: 100%;
	height: 500px !important;
	object-fit: cover;
	border-radius: 12px !important;
	animation: showPropertyImgSlideAnimation .5s ease-in-out;
}

.webist-asari-fa {
	font-size: 32px;
}

.webist-asari-fa:hover {
	transform: rotate(360deg);
	transition: 1s;
	color: #C80283;
}

.webist-asari-dots-container {
	text-align: center;
}

.webist-asari-dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.5s ease;
}

.webist-asari-dot-active,
.webist-asari-dot:hover {
	background-color: #C80283;
}

@keyframes showPropertyImgSlideAnimation{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}