/* 💗 baddie slider 💗 */
/* babie ~ 5av6705bk2 */

.baddie-slider {
  position: relative;
  width: 205px;
  margin: 10px auto 0 auto;
  overflow: hidden;
}

.baddie-slider-inner {
  position: relative;
  width: 100%;
  height: auto;
}

.baddie-slide {
  display: none;
  width: 100%;
}

.baddie-slide img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.baddie-slider.fade .baddie-slide img {
  border-radius: 6px;
}

.baddie-slide.active {
  display: block;
}

.baddie-slider.fade .baddie-slide {
  opacity: 0;
  transition: opacity .6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.baddie-slider.fade .baddie-slide.active {
  opacity: 1;
  position: relative;
}

.baddie-slider.slide .baddie-slider-inner {
  display: flex;
  transition: transform .6s ease;
}

.baddie-slider.slide .baddie-slide {
  display: block;
  min-width: 100%;
}

.baddie-prev,
.baddie-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  color: #fff;
  border: none;
  padding: 4px 8px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease;
  border-radius: 4px;
}

.baddie-prev {
  left: 6px;
}

.baddie-next {
  right: 6px;
}

.baddie-slider:hover .baddie-prev,
.baddie-slider:hover .baddie-next {
  opacity: 1;
}

.baddie-slider.thumbstrip {
  width: 100%;
  max-width: 1109px;
  margin: 0 auto;
  position: relative;
}

.baddie-slider.thumbstrip .baddie-slider-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.baddie-slider.thumbstrip .baddie-slider-inner {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .35s ease;
  padding-left: 0;
}

.baddie-slider.thumbstrip .baddie-slide {
  min-width: calc((100% - 160px) / 4);
  transform: skewX(-3deg);
  overflow: hidden;
  display: block !important;
  position: relative;
}

.baddie-slider.thumbstrip .baddie-slide + .baddie-slide {
  margin-left: -1px;
}

.baddie-slider.thumbstrip .baddie-slide:first-child {
  margin-left: 7px;
}

.baddie-slider.thumbstrip .baddie-slide img {
  width: 110%;
  height: auto;
  display: block;
  transform: skewX(5deg) translateX(-5%);
}

.baddie-slider.thumbstrip .baddie-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s ease;
  pointer-events: none;
}

.baddie-slider.thumbstrip .baddie-slide:hover::after {
  background: rgba(255,255,255,.09);
}

.baddie-slider.thumbstrip .baddie-prev,
.baddie-slider.thumbstrip .baddie-next {
  opacity: 0;
  transition: opacity .2s ease;
  background: rgba(0,0,0,.45);
  padding: 10px 14px;
  font-size: 26px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
}

.baddie-slider.thumbstrip:hover .baddie-prev,
.baddie-slider.thumbstrip:hover .baddie-next {
  opacity: 1;
  padding-top: 5px;
}

.baddie-slider.thumbstrip .baddie-prev {
  left: 10px;
}

.baddie-slider.thumbstrip .baddie-next {
  right: 10px;
}


