/* =========================
   CONTENEDOR GENERAL
========================= */
.sder-plans {
    display: flex;
    justify-content: center;
    gap: .5rem;
    max-width: 1200px;
    margin: 1rem auto;
}

.sder-plans.slick-initialized {
    display: block;
}

/* =========================
   CARD PLAN
========================= */
.c-cardmt {
    position: relative;
    width: 100%;
    margin: 2rem 12px .5rem;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.20);
}

.sder-plans.slick-initialized .c-cardmt {
    display: block !important;
    margin: 2rem auto .5rem;
}

.c-cardmt--destaca {
    border-radius: 0 0 10px 10px;
}

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

/* =========================
   HEADER
========================= */
.c-cardmt__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    padding: 1.3rem 1rem;
    min-height: 107px;
}

.c-cardmt_items_no-soy {
    align-self: center;
}

.c-cardmt_items_title {
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 4px;
}

.c-cardmt__text-pre-megas {
    text-align: center;
    color: var(--blue);
    font-size: 13px;
}

.c-cardmt__text-blue {
    text-align: center;
    font-size: 19px;
    line-height: 1.1;
    color: var(--blue);
}

.c-cardmt__text-blue.plus {
    font-size: 30px;
    align-self: center;
}

/* =========================
   BODY
========================= */
.c-cardmt__body {
    position: relative;
}

/* descuento */
.c-cardmt__discount {
    margin: 10px auto;
    padding: 4px 12px;
    font-size: 13px;
    text-align: center;
    color: var(--white);
    border-radius: 10px;
    width: max-content;
}

/* precios */
.c-cardmt__boxprices {
    padding: 0 16px;
    margin: 8px 0 12px;
    text-align: center;
}

.c-cardmt__prices {
    font-size: 16px;
    line-height: 1.2;
}

.c-cardmt__prices span {
    font-size: 34px;
}

.c-cardmt__pricetext {
    font-size: 12px;
}

/* botón */
.c-cardmt__boxbtns {
    padding: 0 16px;
    margin: 12px 0;
}

.c-cardmt__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 30px;
    color: var(--white);
}

/* =========================
   BENEFICIOS
========================= */
.c-cardmt__benef {
    padding: 0 24px 1rem;
    margin: 12px 0;
}

.c-cardmt__txbenef {
    font-size: 1.1rem;
    line-height: 1;
    margin: .5rem 0 .5rem -8px;
    padding-top: .9rem;
}

.c-cardmt__itemBenef {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: .5rem;
    padding: 10px 0;
}

.c-cardmt__itemBenef.oculto {
    display: none;
}

.c-cardmt__iconBenef {
    align-self: center;
    font-size: 1.4rem;
    margin-top: 2px;
}

.c-cardmt__itemBenef p {
    justify-self: flex-start;
    font-size: .85rem;
    line-height: 1.2;
    text-wrap: pretty;
    color: var(--textgray);
}

/* =========================
   BOTÓN VER MÁS
========================= */
.c-cardmt__btnmore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 90%;
    padding: 8px 4px 18px;
    margin: 0 auto;
    color: var(--blue);
}

.c-cardmt__btnmore::after {
    content: ' ';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateX(-50%) rotate(135deg);
    transition: all .3s ease-in-out;
}

.c-cardmt__btnmore.active::after {
    transform: translateX(-50%) rotate(-45deg);
}

/* config dots */

.sder-plans .slick-slide {
    margin: 0 .5rem;
}

.sder-plans .slick-dots {
  bottom: -30px;
}

.sder-plans .slick-dots li {
  width: 12px;
  height: 12px;
  transition: .2s ease;
}

.sder-plans .slick-dots li.slick-active {
  width: 25px;
  height: 12px;
}

.sder-plans .slick-dots li button {
  width: 100%;
  height: 100%;
}

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

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

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