/* Equal Heights for OwlCarousel 2 */
.owl-carousel {
	.owl-stage {
		display: flex;
	}
	.owl-item {
		display: flex;
		flex: 1 0 auto;
	}
	.thumbnail {
		display: flex;
		flex-direction: column;
		margin: 0 15px;
		.caption {
			display: flex;
			flex: 1 0 auto;
			flex-direction: column;
			.flex-text {
				flex-grow: 1;
			}
		}
	}
}


.slick-list{
    margin-bottom: 30px;
}

.slick-prev,
.slick-next {
    position: absolute;
    right: 1%;
    border: none;
    color: transparent;
    width: 30px;
    height: 30px;
}
/* .slick-prev:before,
.slick-next:before {
    content: ">";
    color: #000;
    font-size: 25px;
} */
.slick-prev {
    right: 4%;
}
  /* .slick-prev:before {
    content: "<";
    color: #000;
  } */
  .slick-dots {
    list-style: none;
    margin: 0 auto;
    text-align: center;
  }
  .slick-dots li {
    display: inline-block;
  }
  .slick-dots li button {
    transition: 0.2s background-color ease-in-out 0s;
    border: none;
    padding: 0;
    color: transparent;
    width: 13.5px;
    height: 13.5px;
    background-color: #77777785;
    margin-right: 10px;
    border-radius: 50%;
  }
  .slick-dots li.slick-active button {
    background-color: #d02027;
  }
