.pd-search-wrapper {
    margin-bottom: 20px;
}

.pd-filter-wrapper {
    margin-bottom: 20px;
    width: 30%;
}

.pd-card {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.pd-data-wrapper {
    display: flex;
    width: 100%;
}
div#pd-results {
    width: 70%;
}
button#pd-search-btn {
    display: inline-block;
    width: 12.7%;
    background: #000;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    height: 60px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
div#pd-suggestions {
    width: 87%;
    background: #f2f2f2;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}
input#pd-search {
    width: 87%;
    display: inline-block;
    height: 60px;
}
select#pd-location {
    width: 80%;
    height: 40px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    padding: 0px 10px;
}
select#pd-tier {
    width: 80%;
    height: 40px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    padding: 0px 10px;
    margin-top: 15px;
}
button#pd-clear-filters {
    margin-top: 15px;
    padding: 4px 10px;
    display: block;
    font-size: 12px;
    background: #635bff;
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
}
.autocomplete-suggestions{
    display: none;
}