.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  max-height: 46vw;
}

.embla__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.embla {
  overflow: hidden;
  position: relative;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --slide-height: 19rem;
}
.embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
  position: relative;
}
.embla__slide__img {
  display: block;
  height: var(--slide-height);
  width: 100%;
  object-fit: cover;
}
.embla__slide__number {
  width: 4.6rem;
  height: 4.6rem;
  z-index: 1;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.85);
  line-height: 4.6rem;
  font-weight: 900;
  text-align: center;
  pointer-events: none;
}
.embla__slide__number > span {
  color: #333;
  background-image: linear-gradient(45deg, #333, #f1bb34);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.embla__button {
  -webkit-appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: url(puntero-click.png) 19 11, auto;
  border: 0;
  padding: 0;
  margin: 0;
}
.embla__buttons {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.embla__buttons.left {
  left: 0;
  @media only screen and (min-width: 750px){
    left: 1.6rem;
  }
}

.embla__buttons.right {
  right: 0;
  @media only screen and (min-width: 750px){
    right: 1.6rem;
  }
}

.embla__button {
  > svg{
    width: 40px;
    height: 40px;

    @media only screen and (min-width: 750px){
      width: 60px;
      height: 60px;
    }
  }
}

.embla__button {
  z-index: 1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url(puntero-click.png) 19 11, auto;
  width: 4rem;
  height: 4rem;
}
.embla__button:disabled {
  opacity: 0.3;
  cursor: url(puntero.png) 19 11, auto;
}
.embla__button__svg {
  width: 65%;
  height: 65%;
}
.embla__dot {
  -webkit-appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: url(puntero-click.png) 19 11, auto;
  border: 0;
  padding: 0;
  margin: 0;
}
.embla__dots {
  z-index: 1;
  bottom: 1.6rem;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.embla__dot {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
.embla__dot:after {
  background: #000;
  border-radius: 0.2rem;
  width: 100%;
  height: 0.3rem;
  content: '';
}
.embla__dot--selected:after {
  background: linear-gradient(45deg, #333, #444);
}
