
.wn_hr_selectors_wrapper {
	display: grid;
	grid-template-rows: repeat(auto-fit, 1fr);
	/* grid-row-gap: 50px;
    /* grid-auto-flow: row; */
	width: 100%;
	max-width: 600px;
}
.wn_hr_selectors_wrapper_col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-column-gap: 50px;
    grid-column: auto;
	width: 100%;
	max-width: 650px;
}

/*the container must be positioned relative:*/
.wn_custom-select {
    margin: 10px 0px 10px 0px;
    position: relative;
    font-family: Arial;
    width: 100%;				
}

.wn_custom-select select {
    display: none; /*hide original SELECT element:*/
}

@media only screen and (max-width: 600px) {
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        /*top: calc( 50% + 5px);*/
        top: calc( 50% + 5px);
        right: 15px;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-color: rgb(0, 0, 0) transparent transparent transparent;
        transform: translateY(-50%);
    }

    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent rgb(0, 0, 0) transparent;
        top: calc( 50% - 5px);
    }

    /*style items (options):*/
    .select-items {
        position: absolute;
        background-color: #F9F9F9;
        top: calc( 100% - 0px);
        left: 0;
        right: 0;
        z-index: 2;
    }
    .slidecontainer {
        margin-bottom: 2em;
      }    
}

@media only screen and (min-width: 600px) {
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        /*top: calc( 50% + 5px);*/
        top: calc( 50% - 0px);
        right: 15px;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-color: rgb(0, 0, 0) transparent transparent transparent;
        transform: translateY(-50%);
    }

    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent rgb(0, 0, 0) transparent;
        top: calc( 50% - 10px);
    }

    /*style items (options):*/
    .select-items {
        position: absolute;
        background-color: #F9F9F9;
        top: calc( 100% - 7px);
        left: 0;
        right: 0;
        z-index: 2;
    }
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #000000;
    padding: 6px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.select-selected {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #F9F9F9;
    height: 38px;
    border: 1px solid #000000;
    color: #000000;
    width: 100%;
    
}

.wn_hr_rides_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(263px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: center;
}

.wn_hr_ride_card {
    width: 100%;
    /* max-width: 263px; */
    position: relative;
}

.wn_hr_card_image {
    width: 100%;
    /* height: 263px !important; */
    object-fit: cover;
    display: block;
}

.wn_hr_card_title {
	position: absolute;
    /* background-image: linear-gradient(#FF00B8, #ff00b773);; */
	display: flex;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 38px;
	justify-content: center;
	align-items: center;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    line-height: 18px;
}

.wn_hr_spacer {
    width: 100%;
}

.wn_hr_select_text {
    display: flex;
    align-items: center;
}

.wn_hr_headline {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.wn_hr_cards_number_rides {
    color: #FF00B8;
    font-weight: 700;
}

.slidecontainer {
	width: 100%; /* Width of the outside container */
    padding-top:15px;
  }
  
  .slider {
	-webkit-appearance: none;
	width: 100%;
	height: 15px;
	border-radius: 5px;  
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
  }
  
  /* Mouse-over effects */
  .slider:hover {
	opacity: 1; /* Fully shown on mouse-over */
  }
  
  .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 50%; 
	background: #FF00B8;
	cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #FF00B8;
	cursor: pointer;
  }
