     /* CSS */
     .dotoption_distance-containeris {
        position: relative;
        display: flex;
        align-items: center;
    }

    .dotoption_distance-icon {
        width: 30px;
        height: 30px;
        cursor: pointer;
        border-radius: 50px;
        padding: 7px;
        flex-direction: row;
    }

    .sorting_time {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        /* border: 1px solid #ccc; */
        padding: 10px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        width: 200px;
        border-radius: 4px;
    }

    .sorting_time.show {
        display: block;
    }

    .sorting_time label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    #sortSelect {
        width: 100%;
        border: none;
        background-color: #f0f0f0;
        /* padding: 8px; */
        /* font-size: 16px; */
        /* border-radius: 4px; */
        -webkit-appearance: none;
        overflow: hidden;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        border: none;
        outline: none;
    }

    #sortSelect option {
        background-color: #fff;
        color: #333;
        padding: 5px;
        /* font-size: 12px; */
        /* border-bottom: 1px solid #ddd; */
    }

    #sortSelect option:last-child {
        border-bottom: none;
    }

 