.sf-carousel .btn {
	border-radius: 2px;
	padding: 8px 12px;
	color: #0056a3;
	font-size: 26px;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
  }
  
.sf-carousel .card {
	background: #FFFFFF;
	box-sizing: border-box;
	padding: 20px;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
  }
  
.sf-carousel .slides {
	position: relative;
	overflow: hidden;
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
  }
  
.sf-carousel .slide {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
  }
  
.sf-carousel .slide.active {
	opacity: 1;
	visibility: visible;
  }
  
.sf-carousel .footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 10px 10px;
}
.sf-carousel [ripple] {
   z-index: 1;
   position: relative;
   overflow: hidden;
  }
  
.sf-carousel [ripple] .ripple {
	position: absolute;
	background: #FFFFFF;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: ripple 2s;
	animation: ripple 2s;
  }
   @-webkit-keyframes
  ripple {  0% {
   -webkit-transform: scale(0);
   transform: scale(0);
   opacity: 0.2;
  }
   100% {
   -webkit-transform: scale(20);
   transform: scale(20);
   opacity: 0;
  }
  }
   @keyframes
  ripple {  0% {
   -webkit-transform: scale(0);
   transform: scale(0);
   opacity: 0.2;
  }
   100% {
   -webkit-transform: scale(20);
   transform: scale(20);
   opacity: 0;
  }
  }

@media only screen and (max-width: 767px) {
	.sf-carousel .elementor-container {
		display: none;
	}
}

@media only screen and (min-width: 768px) {
	.card {
		display: none;
	}
}

.sf-carousel .elementor-widget-sf-products-card {
	margin-bottom:10px !important;
}

.footer.carousel-footer .dot {
	margin: 0 6px;
	display: inline-block;
	cursor: pointer;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	opacity: 0.2;
	background-color: #000;
  }
  .footer.carousel-footer .dot.active {
	opacity: 1;
  }