/* =================== freelancers css ================= */
.freelancers-page .search-wrapper {
    border: 1px solid #FCE3CF;
    border-radius: 4px;
    padding: 7px 12px;
    max-width: 322px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.freelancers-page .search-wrapper input {
    width: 100%;
    height: auto;
    border: none;
}

.freelancers-listing {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.freelancers-card {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--secondary-bg);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fc-profile {
    gap: 15px;
}
.fc-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.fc-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}
.fc-content .star-icon {
    margin-right: 5px;
}
.fc-content .star-icon svg {
    margin-right: 2px;
}
.fc-dis {
    padding: 15px 0;
}
.fc-dis p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0;
}
.freelancers-card .divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
.fc-contact {
    padding: 15px 0 0 0;
    margin: 0;
    list-style: none;
}
.fc-contact .fc-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
}
.fc-contact .fc-text:last-child {
    margin-bottom: 0;
}
.freelancers-action {
    margin-top: 15px;
}
.loadmore {
    padding-top: 30px;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding:5px 35px 5px 12px;
    border: 1px solid #FCE3CF;
    border-radius: 4px;
    width: 100%;
}

.custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 18px;
    height: 9px;
    pointer-events: none;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml,<svg width="18" height="9" viewBox="0 0 18 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.99953 8.80062C8.29953 8.80062 7.59953 8.53063 7.06953 8.00063L0.549531 1.48062C0.259531 1.19062 0.259531 0.710625 0.549531 0.420625C0.839531 0.130625 1.31953 0.130625 1.60953 0.420625L8.12953 6.94062C8.60953 7.42062 9.38953 7.42062 9.86953 6.94062L16.3895 0.420625C16.6795 0.130625 17.1595 0.130625 17.4495 0.420625C17.7395 0.710625 17.7395 1.19062 17.4495 1.48062L10.9295 8.00063C10.3995 8.53063 9.69953 8.80062 8.99953 8.80062Z" fill="%230E9493"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

@media(max-width:1200px){
    .freelancers-listing {
        padding-top: 24px;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}
@media(max-width:991px){
    .freelancers-listing {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width:580px){
    .freelancers-listing {
        grid-template-columns: 1fr;
    }

    .freelancers-page .search-wrapper{
        max-width: 100%;
    }
}