/* Texteingabeergebnisse */
.hhm-choose {
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
  border-radius: 3px;
  display:inline-block;
}

/* Selectbox */
select {
  /*-moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;*/
  width: 100%;
  height: 25px;
  background: #f6f6f6;
  color: black;
  border-radius: 3px;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  font-family: Oswald, sans-serif; 
  padding-left: 5px;
}
select::-ms-expand {
  display: none;
}
select option {
  color: black;
}
select:focus::-ms-value {
  background-color: #f6f6f6;
  color: black;
}
.select-wrapper:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
  font-weight: 900;
  position: relative;
  font-size: 10px;
  left: 80%;
  top: 22px;
}

.select-wrapper {
  margin-top: -20px;
}

/* RadioButton */
fieldset {
    border: none;
}

label::after {
    content: "";
    display: block;
}

/* einseitigier Rangeslider */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 0 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: rgb(144,144,144);
  border-radius: 1.3px;
}
input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 8px;
  border-radius: 3px;
  background: #cc0502;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgb(144,144,144);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: rgb(144,144,144);
  border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 8px;
  border-radius: 3px;
  background: #cc0502;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: rgb(144,144,144);
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
  background: rgb(144,144,144);
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  height: 20px;
  width: 8px;
  border-radius: 3px;
  background: #cc0502;
  cursor: pointer;
  height: 8.4px;
}
input[type=range]:focus::-ms-fill-lower {
  background: rgb(144,144,144);
}
input[type=range]:focus::-ms-fill-upper {
  background: rgb(144,144,144);
}


/* The RadioBox */
.radioBox {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radioBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radioBox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioBox input:checked ~ .checkmark {
    background-color: #cc0502;
}

/* Show the indicator (dot/circle) when checked */
.radioBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radioBox .checkmark:after {
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioBox input:checked ~ .checkmark:after {
    display: block;
}


/* The Checkbox */
.checkboxes {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxes input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmarkCheck {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}
}

/* On mouse-over, add a grey background color */
.checkboxes:hover input ~ .checkmarkCheck {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxes input:checked ~ .checkmarkCheck {
    background-color: #cc0502;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkCheck:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxes input:checked ~ .checkmarkCheck:after {
    display: block;
}
/* Style the checkmark/indicator */
.checkboxes .checkmarkCheck:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.boxShadow {
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.hhm-paddingFilter {
  border-top: 1px solid #F6F6F6;
}