/* The container must be positioned relative: */
.cf-select {
    position: relative;
    width: 100%;
    border: 1px solid var(--strides_black);
    border-radius: 60px;
    min-height: 46px;
}

.cf-select select {
    display: none; /*hide original SELECT element: */
}

.cf-select .select-selected {
    background-color: transparent;
}

/* Style the arrow inside the select element: */
.cf-select .select-selected:after {
    content: '';
    border: solid var(--strides_purple);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: 20px;
    background-color: #fff;
    position: absolute;
    top: 12px;
    width: 15px;
    height: 15px;
}

/* Point the arrow upwards when the select box is open (active): */
.cf-select .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.cf-select .select-selected {
    color: var(--strides_black);
      padding: 10px 20px;
    cursor: pointer;
    min-height: 46px;
}

.cf-select .select-items div {
    color: #fff;
    padding: 5px 20px;
}

/* Style items (options): */
.cf-select .select-items {
    position: absolute;
    margin-top: 10px;
    background-color: var(--strides_purple);
    padding: 15px 0;
    border-radius: 20px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.cf-select .select-hide {
    display: none;
}

.cf-select .select-items div:hover, .cf-select .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}