@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: 20px;
  height: 20px;
  border: none;
  border-radius: 0;
  background: #A08C77;
  opacity: .6;
  /* transform: rotate(45deg); */
  transition: .2s;
}

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

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

    opacity: .9;
    -webkit-transition: all .28s linear;
    transition: all .28s linear;
}
.flickity-prev-next-button:hover {
  background: rgba(255,255,255, 0);
  opacity: 1;
}
.flickity-prev-next-button::before{
    content:"";
    position: absolute;
    overflow: hidden;
    display: block;
    left: 12px;
    top: 18px;
    width: 30px;
    height: 30px;
    border-top:2px solid #fff;
    border-right:2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.flickity-prev-next-button .flickity-button-icon{
  display: none;
}

.flickity-prev-next-button.previous::before{
  left: 22px;
    -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: 20px; 
}
.flickity-prev-next-button.next { 
    right: 20px; 
}
/* hide disabled button */
.flickity-prev-next-button:disabled {
  /* display: none; */
}