/* ========== c-sde-posb2b ========== */
.c-sde-posb2b {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin: 1rem auto;
  max-width: 1200px;
}

.c-sde-posb2b.slick-initialized {
    display: block;
}

/* ========== c-posplan ========== */
.c-posplan {
  position: relative;
  display: block !important;
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  margin: 2rem 12px .5rem;
}

.c-sde-posb2b.slick-initialized .c-posplan {
    display: block !important;
    margin: 2rem auto .5rem;
}

/* ========== destaca ========== */
.c-posplan__destaca {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-99%);
  padding: 6px 4px;
  color: var(--white);
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 12px;
}

/* ========== header ========== */
.c-posplan__head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 132px;
  border-radius: 8px 8px 0 0;
  gap: 2px;
}

.c-posplan__head--condestaca {
  border-radius: 0;
}

/* título */
.c-posplan__title {
  font-size: 44px;
  line-height: 35px;
  color: var(--blue);
  padding: 6px 0;
  font-style: oblique;
}

.c-posplan__title--large {
  font-size: 2.1rem;
}

.c-posplan__postitle {
  display: block;
  font-size: clamp(.7rem,3vw,.8rem);
  line-height: 1.3;
  color: var(--white);
  padding: 0 1rem;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

/* ========== precios ========== */
.c-posplan-price__container {
  position: relative;
  color: var(--darkBlue) !important;
  padding: .5rem;
  z-index: 1000;
}

.c-posplan__prices {
  font-size: 1.2rem;
  text-align: center;
}

.c-posplan__prices span {
  font-weight: 700;
  font-size: 150%;
}

/* ========== botones ========== */
.c-posplan__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.c-posplan__boxbtns {
  padding: 0 16px;
  width: 100%;
}

.c-posplan__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 8px 4px;
  color: var(--white);
  border-radius: 30px;
}

/* ========== beneficios ========== */
.c-posplan__benef {
  display: block;
  padding: 16px 16px 4px;
}

.c-posplan__items {
  display: grid;
  grid-template-columns: 30px 1fr;
  place-items: center;
  gap: 6px;
  padding: 8px 6px;
  margin: 4px 0;
  font-size: .8rem;
  line-height: 1.2;
}

.c-posplan__items i {
  font-size: 20px;
}

.c-posplan__items p {
  justify-self: flex-start;
  text-wrap: pretty;
}

/* modifiers */
.--itemline {
  border-bottom: 1px solid #eeeeee;
}

.--itemline:last-child {
  border-bottom: 0;
}

/* ========== botón ver más ========== */
.c-posplan__btnmore {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 8px;
  text-align: center;
  font-size: 16px;
  color: var(--blue);
}

.c-posplan__btnmore .arrow {
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  transform: translate(-50%, -6%) rotate(135deg);
}

.c-posplan__btnmore.active .arrow {
  transform: translate(-50%, 40%) rotate(-45deg);
}


/* config dots */

.c-sde-posb2b .slick-slide {
    margin: 0 .5rem;
}

.c-sde-posb2b .slick-dots {
  bottom: -30px;
}

.c-sde-posb2b .slick-dots li {
  width: 12px;
  height: 12px;
  transition: .2s ease;
}

.c-sde-posb2b .slick-dots li.slick-active {
  width: 25px;
  height: 12px;
}

.c-sde-posb2b .slick-dots li button {
  width: 100%;
  height: 100%;
}

.c-sde-posb2b .slick-dots li button:before {
  content: ' ';
  background-color: #D3D4D3;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.c-sde-posb2b .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: var(--blue);
}

@media screen and (min-width: 1135px) {
  .c-posplan {
    max-width: 270px;
    min-width: 270px;
  }
}