.fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 13px;
}
.register-links {
    width: 100%;
    padding: 13px;
    text-align: center;
    background-color: red;
    border: 1px solid red;
    border-radius: 10px;
}
.location-links h2, .category-links h2 {
    margin: 0px;
    padding: 8px;
    font-size: 26px;
}
.location-links hr, .category-links hr {
    margin: 0px;
}
.location-links, .category-links {
    width: 100%;
    background-color: white;
    border: 1px solid #ced4da;
}


/* All users */
.users-card {
    background: white;
    margin: 28px 0px;
    border: 1px solid #ced4da;
}
.users-card .nationality {
    width: 22px;
    margin: 0px 13px 7px 0px;
}
.users-card h3 {
    font-size: 22px;
    margin-bottom: 0px;
}
.users-card .address {
    position: absolute;
    min-width: 100px;
    bottom: 5px;
    left: 50%;
    /* top: 5px;
    left: 78%; */
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* fondo semi-transparente para mejor legibilidad */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}
.users-card .phone-age {
    font-size: 20px;
    margin-bottom: 0px;
}
.users-card .description {
    padding: 5px 0px 0px 0px;
    font-size: 18px;
    margin: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* máximo 3 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; 
}
.users-card .telephone {
    padding: 3px;
    text-align: center;
    background-color: #40C063;
    margin: 0px;
    color: white;
}
.telephone img {
    height: 20px;
}
.users-card .form-photo {
    padding: 0px;
    position: relative;
    display: inline-block;
}
.users-card .form-text-users {
    padding: 13px;
}
.photo {
    width: 100%;
    height: 320px;
}
.price {
    width: 48px;
    position: absolute;
    background-color: #FABB03;
    border-radius: 3px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 4px 0px 0px 4px;
}


/* De 13 a 15 pulgadas */
@media (min-width: 560px) and (max-width: 1500px) {
    .location-links h2, .category-links h2 {
        font-size: 23px;
    }
    .users-card .form-text-users {
        padding: 10px 0px;
    }
}

/* Movil */
@media only screen and (max-width: 560px) {
    .users-location, .users-links {
        padding: 0px 20px !important;
    }
    /* All users */
    .users-card .nationality {
        width: 18px;
        margin: 0px 6px 0px 0px;
    }
    .users-card h3 {
        font-size: 15px;
    }
    .users-card .address {
        font-size: 15px;
    }
    .users-card .phone-age {
        font-size: 15px;
    }
    .users-card .description {
        font-size: 13px;
    }
    .photo {
        height: 180px;
    }
    .users-card .form-text-users {
        padding: 8px 6px;
    }
}