/* =========================
   PAGINATION
========================= */

.properties_pagination_section {
    width: 100%;

    padding: 60px 0 80px;

    background: #050505;

    display: flex;

    justify-content: center;
}

.properties_pagination {
    display: flex;

    align-items: center;

    gap: 14px;
}

.pagination_btn {
    width: 52px;
    height: 52px;

    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);

    background: #0f0f0f;
    color: white;

    font-size: 16px;
    cursor: pointer;

    transition: 0.3s;

    /* CENTRAR CONTENIDO */
    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    line-height: 1;
}

.pagination_btn:hover {
    border-color: #d4a64f;

    color: #d4a64f;
}

.pagination_btn.active {
    background: #d4a64f;

    color: black;

    border: none;
}

.pagination_dots {
    color: #888;

    font-size: 18px;
}