h3.precio {
    font-size: 30px !important;
}
body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: white;
    line-height: 1.5rem !important;
}
.Plan * {
    box-sizing: unset;
}

.Plan *,
::after,
::before {
    box-sizing: unset;
}

plan-toggle {
    display: flex;
    justify-content: center;
    margin: 20px;
    margin-bottom: 0;
}

.plan-toggle button {
    background-color: #ddd;
    border: none;
    padding: 0.7% 60px;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
}

    .plan-toggle button:first-child {
        border-radius: 30px;
        /* Borde redondeado solo en la izquierda */
        transform: translateX(15px);
    }

    .plan-toggle button:last-child {
        border-radius: 30px;
        /* Borde redondeado solo en la derecha */
        transform: translateX(-15px);
    }

    .plan-toggle button.active {
        background-color: #b1b1b1 !important;
        color: white;
    }

    .plan-toggle button:not(.active) {
        background-color: #eee;
        color: #666;
    }

        .plan-toggle button.active + button,
        /* Aplica un borde curvo entre el botón activo y el siguiente */
        .plan-toggle button:not(.active) + button.active {
            border-radius: 30px;
            background-color: #ddd;
        }
    .plan-toggle button.active,
    .type-toggle button.active {
        z-index: 2;
    }

.arrow-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid gray;
    /* Color de la flecha */
    padding: 0;
    margin: 10px;
    transition: border-left-color 0.3s ease;
}

    .arrow-btn:hover {
        border-left-color: black;
        /* Cambia el color cuando se hace hover */
    }

.compara {
    display: flex;
    justify-content: center;
    margin: 20px;
    margin-top: 0;
}

.compara-btn {
    padding-top: 1%;
    padding-bottom: 1%;
    font-size: 1rem;
    border: none;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
    margin: 2%;
    padding-left: 4%;
    padding-right: 4%;
    border-radius: 30px;
    font-weight: bold;
    background: #00c8b3 !important;
    color: white !important;
}

.arrow-planes {
    transform: rotate(90deg);
    margin-left: 4px;
    font-size: 0.9rem !important;
}

/* Estilos para la tabla */

.table-container table {
    margin-bottom: 1%;
}

.table-container table {
    border-collapse: collapse;
    width: 100%;
}

.table-container th,
.table-container td {
    padding: 10px;
    text-align: left;
    font-size: 1rem;
    min-width: 150px;
}

.table-container #tableBody tr {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* Ancho uniforme para todas las columnas en estado expandido, con la primera un poco más ancha */
th,
td {
    width: 100px;
    /* Ajusta según tus necesidades */
}

th {
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    color: #333;
}

/* Ocultar todas las columnas y filas de datos al inicio, excepto la primera columna "Ventas" */
.hidden th:not(:first-child),
.hidden td:not(:first-child),
.hidden tbody tr {
    display: none;
}

/* Estilo para la cabecera principal con flecha al lado de "Ventas" */
th:first-child {
    cursor: pointer;
    font-weight: bold;
    background-color: #f2f2f2;
    display: table-cell;
    align-items: center;
    justify-content: space-between;
    width: 35%;
    min-width: 140px;
}

/* Ocupa todo el ancho de la pantalla cuando la tabla está colapsada */
.hidden th:first-child {
    width: 100%;
}

/* Flecha para indicar el estado */
.arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
    float: inline-end;
}

/* Rotación de la flecha al expandir */
.expanded .arrow {
    float: none;
    /* Eliminar float */
    display: inline-block;
    /* o block, según el caso */
    transform: rotate(90deg);
    margin-left: 20px;
}

.first-row {
    height: 20px;
    border: none !important;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Para desplazamiento suave en dispositivos móviles */
}

.page-wrapper {
    max-width: 1320px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.table-absolute {
    position: absolute;
    top: 1280px;
}

.icon-cross img,
.icon-check img {
    width: 30px;
}

.table-container td.img-check {
    padding: 0;
    text-align: center;
}

.table-container .th-center {
    text-align: center;
}
.planes {
    background: whitesmoke;
}

    .planes .container-md .row .col-md-3 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .planes .card {
        /*border: none;

border-radius: .6rem;*/
        border: 1px solid whitesmoke;
        margin-right: 5px;
        z-index: 0;
        /*text-align: center;*/

        padding: 1.0rem;
        /*margin-top: 3rem;*/

        border-radius: inherit;
    }

        .planes .card .plan-item-left {
            padding: 10px 0;
            border-bottom: 1px solid var(--my-gris);
            width: 80%;
            float: left
        }

        .planes .card .plan-item-right {
            padding: 10px 0;
            border-bottom: 1px solid var(--my-gris);
            width: 20%;
            float: right;
            text-align: center;
        }

        .planes .card a {
            /*width: 100%;*/
            /*padding: .7rem 1rem;*/
            /*font-family: 'WorkSans-Light';*/

            font-size: .9rem;
        }

@media (min-width: 1200px) {

    .planes .card .card-body {
        height: 450px; /*390px;*/
    }
}