.bbsl-location-distance-select {
    border: 1px solid black;
    padding: 10px;
    gap: 10px;
    position: relative;
    cursor: pointer;
    height: var(--inputs-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Adding in px distance for icon */
.bbsl-distance-select-arrow-icon {
    max-width: var(--icon-max-size);
    width: 12px;
}

.bbsl-location-select-dropdown {
    position: absolute;
    max-height: 25rem;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    margin: auto;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid black;
    display: none;
}

.bbsl-location-select-dropdown-show {
    display: block;
}

.bbsl-location-select-dropdown-option {
    padding: 1rem;
    cursor: pointer;
    font-size: 14px;
}

.bbsl-location-select-dropdown-option:hover {
    background-color: var(--background-grey);;
}
