/* =========================================
   PRICE FILTER
========================================= */

.wp247-price-filter {
    width: 100%;
}

.wp247-price-form {
    display: flex;
    align-items: center;
    gap: 8px;

    width: 100%;
}


/* =========================================
   PRICE FIELD
========================================= */

.wp247-price-field {
    flex: 1;
    min-width: 0;
}


/* Input giá */
.wp247-price-field input {
    width: 100%;
    height: 48px;

    padding: 0 16px;

    box-sizing: border-box;

    border: 1px solid transparent;
    border-radius: 14px;

    background-color: #FFF7ED;

    color: #333;

    font-family: inherit;
    font-size: 15px;
    font-weight: 500;

    outline: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


/* Hover */
.wp247-price-field input:hover {
    background-color: #FFF3E0;
}


/* Focus */
.wp247-price-field input:focus {
    background-color: #FFF7ED;

    border-color: #fe9900;

    color: #fe9900;

    box-shadow: none;
}


/* Placeholder */
.wp247-price-field input::placeholder {
    color: #777;

    font-size: 14px;
    font-weight: 500;

    opacity: 1;
}


/* =========================================
   BỎ MŨI TÊN INPUT NUMBER
========================================= */

.wp247-price-field input::-webkit-outer-spin-button,
.wp247-price-field input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

.wp247-price-field input[type="number"] {
    -moz-appearance: textfield;
}


/* =========================================
   DẤU -
========================================= */

.wp247-price-separator {
    flex: 0 0 auto;

    color: #999;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wp247-price-form {
        gap: 6px;
    }

    .wp247-price-field input {
        height: 44px;

        padding: 0 12px;

        font-size: 14px;
    }

    .wp247-price-field input::placeholder {
        font-size: 13px;
    }

    .wp247-price-separator {
        font-size: 16px;
    }
}