.acf-truck-search {
    width: 100%;
    background: #302f2f;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 76px;
    align-items: center;
    gap: 26px;
    box-sizing: border-box;
    font-family: inherit;
}

.acf-truck-field {
    border-right: 1px solid rgba(255,255,255,.25);
    padding-right: 26px;
    min-width: 0;
}

.acf-truck-field label {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.acf-truck-field select {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: #c7c7c7;
    font-size: 19px;
    line-height: 1.3;
    appearance: auto;
    cursor: pointer;
}

.acf-truck-field select option {
    color: #222;
    background: #fff;
}

.acf-truck-price-values {
    color: #c7c7c7;
    font-size: 18px;
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.acf-truck-range-wrap {
    position: relative;
    height: 24px;
    margin-top: 4px;
}

.acf-truck-range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    height: 5px;
    background: #bfbfbf;
    border-radius: 99px;
}

.acf-truck-range-wrap input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

.acf-truck-range-wrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #f80b42;
    cursor: pointer;
    pointer-events: auto;
}

.acf-truck-range-wrap input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #f80b42;
    cursor: pointer;
    pointer-events: auto;
}

.acf-truck-search-btn {
    width: 76px;
    height: 76px;
    border: 0;
    background: #f80b42;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, opacity .2s ease;
}

.acf-truck-search-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.acf-search-icon {
    width: 25px;
    height: 25px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    position: relative;
}

.acf-search-icon:after {
    content: "";
    width: 13px;
    height: 3px;
    background: #fff;
    position: absolute;
    right: -10px;
    bottom: -6px;
    transform: rotate(45deg);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .acf-truck-search {
        grid-template-columns: 1fr 1fr;
    }
    .acf-truck-search-btn {
        width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .acf-truck-search {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
    .acf-truck-field {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        padding-right: 0;
        padding-bottom: 18px;
    }
}
