@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: 50px;
  height: 10px;
  border-radius: 5px;
  border: 2px solid #fff;
  background: transparent;
  opacity: .6;
}

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

/* buttons, no circle */
.flickity-prev-next-button {
  /*width: 60px;
  height: 60px;*/
    width: 50px;
    height: 70px;
    background: #fff;
    border-radius: 0;

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

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