/* Inputs - START */

/* Range Slider */
.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 30px 0;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #1abc9c;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-moz-range-thumb {
  background: #1abc9c;
}
.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}
::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}
input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}
#salary-from,
#salary-to {
  width: 48%;
  margin: 0;
  padding-inline: 5px;
  border: 1px solid rgba(228, 228, 228, 1);
  min-height: 40px;
  display: inline;
  box-sizing: border-box;
  font-family: "Inter";
}

/* Checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 10px;
  margin: 0;
  position: relative;
}

input[type="checkbox"]:checked {
  background-color: rgba(0, 72, 76, 1);
}

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

div.checkbox {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}

input[type="text"] {
  margin: 0;
  padding-inline: 5px;
  border: 1px solid rgba(228, 228, 228, 1);
  min-height: 40px;
  display: inline;
  box-sizing: border-box;
  font-family: "Inter";
  width: 100%;
  margin-bottom: 20px;
  padding-left: 35px;
}

.country input {
  margin-bottom: 0;
}

.country img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin-block: auto;
}
