/*! Flickity v2.0.8
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-left:-10%; margin-left:0%;
}



/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button { position:absolute; top:0px; 
  /*position: absolute; top: 70%; left: -32.0%; margin: 0 3%;*/
  
  
  /*width: 85px; height: 40px; border:1px solid #666; border-radius:0 50px 50px 0px / 0 50px 50px 0px;
  background: white; background: hsla(0, 0%, 100%, 0.75); cursor: pointer; vertically center */
   
   background:none;
   background-image:url(../../../img/common/btn_next_black.png);
   background-repeat:no-repeat;
   background-position:top left;
   background-size:;
   width:83px;
   height:41px;
   border: none;
   cursor:pointer;
   
  /*-webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          transform: rotate(-45deg);*/
}

	@media only screen and (max-width:767px) {
		
		.flickity-prev-next-button { /*top:10px;*/ }
		
	}

.flickity-prev-next-button:hover { /*background: white;*/ }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {/* transform: rotate(-180deg);*/ background-image:url(../../../img/common/btn_prev_black.png); }
.flickity-prev-next-button.next { left:83px; background-position:top right; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; 
}


.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg { display:none;
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%; width:20px;
  /*height: 60%; height:20px;*/
  /*transform: rotate(45deg);*/
}


.flickity-prev-next-button .arrow { 
  fill: #333;
}
/*
#brand .flickity-prev-next-button svg { position:relative; top:1px; left:0; display:none; }
#brand .flickity-prev-next-button.previous svg { transform: rotate(-180deg); position:relative; top:1px; display:none; }
#brand .flickity-prev-next-button:after { content:"→"; font-family: "Font Awesome 5 Brands"; font-size:24px; font-weight:900; position:relative; width:24px; height:24px;  }
#brand .flickity-prev-next-button.next:after { top:2px; }
#brand .flickity-prev-next-button.previous:after { top:0px; }*/

.bg_cosmetic .flickity-prev-next-button.previous,
.bg_liquor .flickity-prev-next-button.previous,
.bg_other .flickity-prev-next-button.previous { background-image:url(../../../img/common/btn_prev_white.png); }
.bg_cosmetic .flickity-prev-next-button.next,
.bg_liquor .flickity-prev-next-button.next,
.bg_other .flickity-prev-next-button.next { background-image:url(../../../img/common/btn_next_white.png); }


	@media only screen and (max-width:1024px) {
		
		.flickity-prev-next-button { left:-27.5%; }
		.flickity-prev-next-button.next { left:-20%; }
		
		#brand .flickity-prev-next-button { left:0px; }
		#brand .flickity-prev-next-button.next { left:83px; }
		
	}
	
	@media only screen and (max-width:767px) {
		.flickity-prev-next-button { width:55px; height:30px; }
		
		#brand .flickity-prev-next-button { left:0px; /*width:20%; height:41px;*/ background-size: 100% auto; }
		#brand .flickity-prev-next-button.next { left:54px; }
		
		/*#brand .flickity-prev-next-button svg { width:15px; height:15px; }*/
	}




/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

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