.simulator .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    -moz-appearance: none;
         appearance: none;
    width: 100%; /* Full-width */
    height: 8px; /* Specified height */
    background: #484848; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 1; /* Set transparency (for mouse-over effects on hover) */ /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

.simulator .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

.simulator .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    background: #484848; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%;
    border: none;
}

.simulator .slider::-moz-range-thumb {
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    background: #484848; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%;
    border: none;
}

.swiper {
    padding-bottom: 80px;
}

.swiper .swiper-pagination {
    width: auto;
}


.intro .swiper {
    padding-bottom: 0;
}

.intro .swiper .swiper-pagination {
    left: 50px;
    bottom: 30px;
}

.custom-select {
    position: relative;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: rgb(103, 168, 221);
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: white;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: rgb(103, 168, 221);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* 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);
}

