.custom-sort-select {
    position: relative;
    width: 200px;
    cursor: pointer;
}

.select-options li:hover {
    background: #f5f5f5;
}

/* .reset-button:hover {
    color: #007bff;
    text-decoration: underline;
}

.reset-icon {
    margin-right: 3px;
} */

.shop-control {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 40px;
    font-size: 14px !important;
}

.product-sorting-widget select{
    background-position: 90% 50% !important;
}

.sorting-select {
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 0 !important;
}

.sorting-select:focus {
    outline: none;
    border-color: #666;
}

.filter-sort-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.custom-color-filter {
    flex: 0 0 70%;
}
.custom-sort-select ul {
    list-style-type: none;
}

.select-options li{
    padding: 8px 16px;
    list-style-type: none;
}

.select-options li::marker{
    content: none;
}

@media (max-width: 767px) {

    .filter-sort-container {
        flex-direction: column;
    }
    
    .custom-color-filter,
    .product-sorting-widget {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .shop-control{
        justify-content: flex-end;
        flex-direction: column;
    }

    .custom-sort-select, .product-sorting-widget {
        width: 100%;
    }
    /* .select-styled{
        background-position: 95% 50%
    } */

    .custom-sort-select {
        z-index: 888;
    }
}