body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #F4F4F4;
    color: #003865;
    
} 


@media screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    .grid-container {
        width: 100%;
        max-width: 90%;  /* limita el ancho máximo al 90% de la pantalla */
        margin: 0 auto;  /* centra el contenido horizontalmente */
    }
}

.grid-container {
    text-align: center;
}
.grid-x {
    align-items: center;
}

#cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}
#cards > div {
    padding: 20px;
    margin: 10px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card{
    border: none;
    background: transparent;
}

.card-selected {
    background-color: #ffff;
    border-color: #ffff;
    transform: scale(1.01);
    box-shadow: 0 0 20px #ffff;
    border-radius: 10px;
    opacity: 1;
}

#cards .card {
    width: 200px;
    margin: auto; 
}

#cards .card img {
    width: 100%;
    height: auto;
}

.card-image{
    width: 100%;
    max-width: 300px;
    height: auto;
}

.my-input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.my-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    background-color: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) !important;
}

.slick-dots li button:before {
    color: #000 !important;
    content: "\f111" !important; 
    font-family: FontAwesome !important; 
}

.slick-dots li.slick-active button:before {
    color: #000 !important;
}

.button{
    margin:initial !important;
    border-radius:40px !important ;
}

.mb-3 {
    margin-bottom: 5rem;
}


.title-bi__puntos{
    color: #003865!important;
    display: block;
    text-align: left;
    font-weight: bold;
}

.label-alignment{
    display: block;
}

.btn-color{
    background-color: #053865;
}

#packagesResult, #milesResult {
    font-weight: bold;
}