@charset "utf-8";
/* CSS Document */


/* external css: flickity.css */

.carousel {
  background: none;
}

.flickity-page-dots {
	bottom: 40px;
  z-index: 2;
}

.flickity-page-dots .dot {
  width: 18px;
  height: 18px;
	opacity: .75;
  background: white;
  margin: 0 8px;
  transition: .2s;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
  background: #B1257C;
}

/* buttons, no circle */
.flickity-prev-next-button {
  /*width: 60px;
  height: 60px;*/
    width: 60px;
    height: 60px;
    background: transparent;

  opacity: 1;
    -webkit-transition: all .28s linear;
    transition: all .28s linear;
}
.flickity-prev-next-button:hover {
  opacity: 1;
  background: transparent;
}
.flickity-prev-next-button::before{
    content:"";
    position: absolute;
    overflow: hidden;
    display: block;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-top:8px solid #fff;
    border-right:8px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.flickity-prev-next-button.previous::before{
  left: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
/* arrow color */
.flickity-prev-next-button .arrow {
  fill: white;
  display: none;
  
}
.flickity-prev-next-button.no-svg {
  color: white;
    display: none; /*dan*/
}
/* closer to edge */
.flickity-prev-next-button.previous { 
    left: 20px; 
}
.flickity-prev-next-button.next { 
    right: 20px; 
}
/* hide disabled button */
.flickity-prev-next-button:disabled {
  /* display: none; */
}