/*! Flickity v2.0.3
http://flickity.metafizzy.co
---------------------------------------------- */
/* start pin
https://codepen.io/_nK/pen/XYrjMY
*/

/*
.container {
  max-width: 700px;
  margin: 0 auto;
}
*/
.flickity-button{
  display:none;
}
/* Main Carousel */
.highlight-main .carousel-cell,
.highlight-main .carousel-cell img {
  display: block;
  width: 100%;
}
.highlight-main .carousel-cell + .carousel-cell {
  margin-left: 10px;
}

/* Thumbs */
.highlight-thumbs .carousel-cell {
  margin-top: 10px;
  margin-bottom: 10px;
}
.highlight-thumbs .carousel-cell + .carousel-cell {
 /* margin-left: 10px;*/
}

.highlight-thumbs .carousel-cell img {
  display: block;
  opacity: 0.5;
}
.highlight-thumbs .carousel-cell.is-nav-selected img {
  opacity: 1;
}

/* Thumbs Scrollbar */
.highlight-thumbs .carousel-scrollbar {
  position: absolute;
  background-color: #f5f5f5;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
		display:none;
}
.highlight-thumbs .carousel-scrollbar.is-hidden {
  display: none;
}
.highlight-thumbs .carousel-scrollbar-inner {
  position: absolute;
  background-color: #ccc;
  width: 50%;
  min-width: 10%;
  max-width: 100%;
  height: 8px;
  border-radius: 4px;
  cursor: e-resize;
  will-change: left;
}

/* end pen */
.flickity-enabled {
  position: relative;
}

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

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

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* 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 {
		display:none;
  position: absolute;
  top: 69%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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 { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* 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.2;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- 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;
}





/* external css: flickity.css */

.carosel-wrapper{
	width: 100%;
	display: block;
	background: rgba(0,0,0, 0.2);
	padding: 3em 5%;
  margin: auto;
}
.carousel {
  background: none;
}

.carousel-cell {
  width: 25%;
  margin-right: 10px;
  border-radius: 5px;
}

@media screen and ( min-width: 48em ) {
  /* half-width cells for larger devices */
  .carousel-cell {
    width: 25%;
    margin: 0 1.666%;
  }

  /* over riding width from flickity css*/
  .flickity-prev-next-button.previous {
    left: -5%;
  }

  .flickity-prev-next-button.next {
    right: -5%;
  }

  .flickity-prev-next-button {
    top: 50%;

  }

}



.highlight-thumbs {height: 117px !important;}
.highlight-thumbs .flickity-viewport { height: 117px !important; }
.highlight-thumbs .carousel-cell {}

