.pf_tab_wrap {
    display: flex;
    padding: 5px;
    border-radius: 50px;
    background-color: #F0F2F3;
    gap: 8px;
    margin-bottom: 50px;
}

.pf_tab_wrap .pf_tab_item {
    display: block;
    width: calc((100% - 8px) / 2);
    padding: 11px 0;
    font-size: 18px;
    font-weight: 500;
    color: #9E9E9E;
    text-align: center;
    border-radius: 50px;
}

.pf_tab_wrap .pf_tab_item.active {
    background-color: #fff;
    font-weight: 700;
    color: #222;
}

.pf_detail_tab_wrap {
    margin-bottom: 24px;
    display: flex;
    overflow-x: auto;
    flex-wrap: wrap;
}

.pf_detail_tab_wrap .pf_detail_tab_item {
    display: block;
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    color: #5E5E5E;
    padding: 14px 20px;
}

.pf_detail_tab_wrap .pf_detail_tab_item.active {
    background-color: #222;
    font-weight: 700;
    color: #fff;
}

.edk_input {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.edk_input::placeholder {
    color: #9E9E9E;
}

.edk_input.input_border {
    border-radius: 50px;
    border: 1px solid var(--main-color);
}

.edk_input.search {
    background: url(/static/app_www/base/img/icon_search_g.png) no-repeat right 24px center/24px;
    padding-right: 48px;
}

.form_wrap {
    margin-bottom: 50px;
}

.pf_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pf_list .empty_wrap {
    width: 100%;
}

.pf_list .list_item {
    width: calc((100% - 40px) / 3);
}

.pf_list .pf_item {
    display: flex;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.pf_list .pf_item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.empty_wrap .btn_default.in_arrow {
    background-color: #414141;
    color: #fff;
    margin-top: 24px;
}

@media screen and (max-width:1023px) {
    .pf_detail_tab_wrap {
        flex-wrap: nowrap;
    }

    .pf_tab_wrap .pf_tab_item {
        padding: 10px 0;
        font-size: 16px;
    }

    .pf_tab_wrap {
        margin-bottom: 24px;
    }

    .pf_detail_tab_wrap {
        margin-bottom: 16px;
    }

    .pf_detail_tab_wrap .pf_detail_tab_item {
        font-size: 16px;
        padding: 10px 16px;
    }

    .form_wrap {
        margin-bottom: 32px;
    }

    .edk_input {
        padding: 12px 20px;
    }

}

@media screen and (max-width:767px) {
    .pf_list {
        gap: 16px;
    }

    .pf_list .list_item {
        width: calc((100% - 16px) / 2);
    }

}