.c_carousel{
  position: absolute;
  top: 18px;
  left: 0;
  width: calc(100% + 1px);
}
.has-dots{
  margin-bottom: 0;
}
.carousel .carousel__slide {
  width: 100%;
  padding: 0;
}
.carousel .carousel__slide::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  bottom: 0;
  background-color:#ffffff;
}
.carousel .carousel__slide img{
  max-width: 100%;
  opacity: 0.96;
}
.carousel__dots {
  top: calc(100% - 50px);
}
.carousel__dots .carousel__dot{
  width: 20px;
  height: 20px;
}
.carousel__dots .carousel__dot::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  opacity: 0.3;
}
.carousel__dots .carousel__dot:first-child::before{
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.carousel__dots .carousel__dot:last-child::before{
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.carousel__dots .carousel__dot:after{
  background-color: #ffffff;
  width: 4px;
  height: 4px;
  opacity: 1;
}
.carousel__dots .carousel__dot.is-selected:after {
  background-color: #71a40b;
}
.carousel__button svg {
  color: #000000;
  width: 12px;
  height: 12px;
}
.carousel__button.is-prev {
  left: 0;
}
.carousel__button.is-next {
  right: 0;
}
.carousel__button{
  background-color: none;
  border-radius: 0;
  width: 24px;
  height: 35px;
  opacity: 0.9;
  background-color: #ffffff;
}