/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

 
 /* .owl-carousel {
	position: relative;
  }
  
  .owl-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
  }
  
  .owl-prev {
	position: absolute;
	left: 0;
  }
  
  .owl-next {
	position: absolute;
	right: 0;
  } */
  

  .owl-carousel {
	position: relative;
  }
  
  .owl-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
  }
  
  .owl-buttons {
	display: flex;
	justify-content: center; /* center the buttons horizontally */
	align-items: center; /* center the buttons vertically */
  }
  
  .owl-prev {
	position: absolute;
	left: 0;
	margin-top: 30%;
    margin-left: 2%;
  }
  
  .owl-next {
	position: absolute;
	right: 0;
	margin-top: 30%;
    margin-right: 2%;
  }
  
  .owl-front-custom .owl-controls .owl-buttons div{
	background: #fff;
    padding: 0px;
    height: 35px !important;
    width: 35px !important;
    font-size: 20px !important;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #65609c !important;
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
	opacity: 0.8;
  }

  .owl-front-custom .owl-controls .owl-buttons div:hover{
	background: #f38fa3;
    color: #fff !important;
    border: 1px solid #f38fa3;
	transform: scale(1.1) translateZ(0);
	opacity: 1;
  }

  .owl-front-custom .owl-controls .owl-buttons div.owl-next{
    padding-left: 3px;
    padding-top: 2px;
  }

  .owl-front-custom .owl-controls .owl-buttons div.owl-prev{
    padding-top: 1px;
    padding-right: 3px;
  }