.comparador_tarjetas {
    max-width: 1200px;
    margin: 0px auto;
    position: relative;
    border: 1px solid var(--GrisMedio);
}
.comparador_tarjetas>div {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--GrisMedio);
    min-width: 600px;
}
.comparador_tarjetas>div>div {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.col-first {
    flex: 0 0 340px;
    justify-content: flex-start;
    border-right: 1px solid var(--GrisMedio);
}
.col-data {
    flex: 1;
    min-width: 120px;
    text-align: center;
}
.header-row {
    position: sticky;
    top: 156px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: white;
    font-weight: bold;
    font-size: 1.1rem;
}
.header-row>div {
    background-color: #2c3e50;
    color: white;
}
.header-row .col-first {
    background-color: #34495e;
    color: white;
}
.col-first {
    position: sticky;
    left: 0;
    z-index: 5;
    justify-content: start !important;
    background-color: var(--GrisClaro);
}
.header-row .col-first {
    z-index: 20;
}
.comparador_tarjetas>div:hover .comparador_tarjetas>div>div:not(.col-first) {
    background-color: #f0f8ff;
}
.check {
    color: green;
    font-weight: bold;
}
.cross {
    color: red;
    font-weight: bold;
}
.price {
    font-size: 1.2rem;
    color: #2980b9;
    font-weight: bold;
}
.img_tarjeta {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.img_tarjeta img {
    max-width: 100px;
}
.template_content {
    padding: 0px 0px !important;
    border-radius: 16px;
}
.col-data:not(:last-child) {
    border-right: 1px solid var(--GrisMedio);
}
.header-row .col-data {
    text-align: center;
}
.cta_emd h3 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 1.6rem;
}
.cta_emd p {
    text-align: center;
}
.cta_emd a {
    display: inline-block;
}
.cta_emd {
    padding: 40px;
}
.info_legal {
    color: var(--GrisOscuro);
}
.info_legal p {
    padding-bottom: 10px;
}
.info_legal ol li {
    padding-bottom: 10px;
    margin-left: 20px;
}

/* MOBILE */
@media (max-width: 600px) {
    .comparador_tarjetas {
        overflow: auto;
        max-height: 85vh;
    }
    .col-first {
        flex: 0 0 125px;
        font-size: 0.9rem;
    }
    .header-row {
        /*top: 73px;*/
        top: 0px;
        position: sticky;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        background-color: white;
        font-weight: bold;
        font-size: 0.9rem;
    }
    .comparador_tarjetas>div>div {
        padding: 10px;
    }
    .img_tarjeta img {
        max-width: 70px;
    }
    
}
/* /MOBILE */