/* =========================
   RESULTS SECTION
========================= */

.properties_results_section {
    width: 100%;

    padding: 20px 8%;

    background: #050505;
}

/* =========================
   TOP
========================= */

.properties_results_top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;
}

.properties_results_count {
    color: #cfcfcf;

    font-size: 16px;
}

.properties_results_actions {
    display: flex;

    align-items: center;

    gap: 18px;
}

/* =========================
   SORT
========================= */

.properties_sort_box {
    display: flex;

    align-items: center;

    gap: 12px;

    background: #111;

    border: 1px solid rgba(255,255,255,0.08);

    padding: 14px 18px;

    border-radius: 14px;
}

.properties_sort_box span {
    color: #a9a9a9;

    font-size: 14px;
}

.properties_sort_select {
    background: transparent;

    border: none;
    outline: none;

    color: white;

    font-size: 14px;

    cursor: pointer;
}

/* =========================
   VIEW BUTTONS
========================= */

.properties_view_buttons {
    display: flex;

    gap: 10px;
}

.properties_view_btn {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.08);

    background: #111;

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.properties_view_btn.active {
    background: #d4a64f;

    color: black;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:700px){

    .properties_results_section{
        padding: 20px 5%;
    }

    .properties_results_top{
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}