
.embla {
  position: relative;
  padding: 0px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.embla__viewport {
  width: 100%;
  overflow: hidden;
  margin: auto;
}

.embla__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.embla__viewport.is-dragging {
  cursor: grabbing;
}

.embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  margin-left: -10px;
}

.embla__slide {
    flex: 0 0 33.3333%;
    position: relative;
  }

.embla__slide__inner {
  position: relative;
  overflow: hidden;
  width: 325px;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
}

.embla__slide__img {
  position: absolute;
  display: block;
  border: none;
  border-radius: 10px;
  object-fit: contain !important;
  top: 50%;
  left: 50%;
  width: auto;
  min-height: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  transform: translate(-50%, -50%);
}

.embla__button {
  display: none;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
  touch-action: manipulation;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  fill: #1bcacd;
  padding: 0;
}

.embla__button:disabled {
  cursor: default;
  opacity: 0.3;
}

.embla__button__svg {
  width: 100%;
  height: 100%;
}

.embla__button--prev {
  left: 27px;
}

.embla__button--next {
  right: 27px;
}

/**** DOTS ****/
.embla__dots {
    display: flex;
    list-style: none;
    justify-content: center;
    padding-top: 10px;
  }

  .embla__dot {
    background-color: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: 0;
    border: 0;
    width: 30px;
    height: 30px;
    margin-right: 7.5px;
    margin-left: 7.5px;
    display: flex;
    align-items: center;
  }

  .embla__dot:focus {
    outline: 0;
    border: 0;
  }

  .embla__dot:after {
    background-color: #efefef;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    content: "";
  }

  .embla__dot.is-selected:after {
    background-color: #ff8239;
    opacity: 1;
  }


@media only screen and (max-width: 872px) {
  .embla__slide {
    flex: 0 0 100%;
  }
}

@media only screen and (max-width: 480px) {
  .embla {
    position: relative;
    padding: 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
