@charset "utf-8";
/* CSS Document */


/* GENERALES */

.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
  /*margin-left: 1rem;
  margin-right: 1rem;*/
}
.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
}
.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: '';
}
.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}

/* ------ SLIDER HOME ---------- */
/*.cid-uhwhQOXQ5V */.embla {
  max-width: 90vw;
  margin: auto;
  --slide-height: 20rem;
  --slide-spacing: 1rem;
  --slide-size: 48.5%;
}
./*cid-uhwhQOXQ5V*/ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  /*.cid-uhwhQOXQ5V */.embla__slide {
    min-width: 90vw;
    max-width: initial;
    /*margin-left: 1rem !important;
    margin-right: 1rem !important;*/
  }
}

/* botones */
/*.cid-uhwhQOXQ5V*/ .embla__button--next,
/*.cid-uhwhQOXQ5V*/ .embla__button--prev {
  display: flex;
}
/*.cid-uhwhQOXQ5V*/ .embla__button {
  top: 48%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: var(--ma-neutral-100);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.cid-uhwhQOXQ5V */.embla__button:disabled {
  cursor: default;
  display: none;
}
/*.cid-uhwhQOXQ5V*/ .embla__button:hover {
  background: var(--ma-neutral-100);
  border-color: var(--ma-orange-200);
}
/*.cid-uhwhQOXQ5V*/ .embla__button.embla__button--prev {
  left: 0;
  margin-left: -1.75rem;
/*  top: 30%;*/
}
/*.cid-uhwhQOXQ5V*/ .embla__button.embla__button--next {
  right: 0;
  margin-right: -1.75rem;
/*  top: 30%;*/
}
@media (max-width: 767px) {
  /*.cid-uhwhQOXQ5V*/ .embla__button {
    /*top: auto;*/
  }
    /*.cid-uhwhQOXQ5V */.embla__button.embla__button--next {
      right: 0;
      margin-right: 0;
    }
    /*.cid-uhwhQOXQ5V */.embla__button.embla__button--prev {
      left: 0;
      margin-left: 0;
    }
}

/*.cid-uhwhQOXQ5V*/ .embla {
  position: relative;
  width: 100%;
}
/*.cid-uhwhQOXQ5V*/ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
/*.cid-uhwhQOXQ5V */.embla__viewport.is-draggable {
  cursor: grab;
}
/*.cid-uhwhQOXQ5V*/ .embla__viewport.is-dragging {
  cursor: grabbing;
}
/*.cid-uhwhQOXQ5V */.embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/*.cid-uhwhQOXQ5V */.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}
/*.cid-uhwhQOXQ5V */.embla__button:disabled {
  color: var(--detail-high-contrast);
}
/*.cid-uhwhQOXQ5V*/ .embla__button__svg {
  width: 35%;
  height: 35%;
}
/*.cid-uhwhQOXQ5V */.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
}

.cid-uhwhQOXQ5V .embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  /*min-width: 30vw;*/
    max-width: 30vw;
  padding-left: var(--slide-spacing);
  /*margin-left: 1rem;
  margin-right: 1rem;*/
}