*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  font-size: 16px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  display: flex;
}

html,
body {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

ul {
  list-style: none;
}

label {
  display: block;
  margin-bottom: 6px;
}

label span {
  font-size: 12px;
  color: #9e9e9e;
}

:focus {
  outline: 1px solid #cccccc;
}

input,
select,
button {
  height: 46px;
}

input,
select,
button,
textarea {
  width: 100%;
  border: none;
  padding-inline: 12px;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag
{
  background: transparent !important;
}
textarea {
  height: 120px;
  padding-block: 12px;
  resize: none;
}

select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center right 15px;
  padding-right: 30px;
}

::placeholder {
  color: #9e9e9e;
}

.w-100 {
  width: 100%;
}

button {
  cursor: pointer;
}

.submit {
  color: #ffffff;
  font-size: 18px;
  background: #f0624e;
}
.submit:hover {
  background: #d64d3a;
}

/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */

.main {
  max-width: 673px;
  margin: auto;
}

.main > img {
  display: flex;
  margin: 0 auto 30px auto;
}

.wrapper {
  width: 100%;
  padding: 35px;
  background: #f5f5f7;
  border-radius: 30px;
}

.form_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 12px;
}
.form_list li:not(.w-100) {
  width: 49%;
}

.price-range-slider {
  margin-top: 10px;
}
.price-range-slider .range-value {
  margin: 10px 0 0 0;
}
.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  height: auto;
  padding: 0;
}
.price-range-slider .range-bar {
  border: none;
  background: #9e9e9e;
  height: 4px;
  width: 96%;
  margin-left: 8px;
  border-radius: 5px;
}
.price-range-slider .range-bar .ui-slider-range {
  background: #06b9c0;
}
.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #333;
  height: 17px;
  width: 17px;
  top: -6px;
  cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
  background: #06b9c0;
}

/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */

@media (max-width: 1100px) {
  body {
    font-size: 14px;
  }
  .main {
    max-width: 94%;
    padding-block: 20px;
  }
  .wrapper {
    padding: 20px;
    border-radius: 15px;
  }
  .main > img {
    margin: 0 auto 15px auto;
  }
}

@media (max-width: 767px) {
  .form_list li:not(.w-100) {
    width: 100%;
  }
  .form_list {
    row-gap: 8px;
  }
  textarea {
    height: 90px;
  }
  input,
  select,
  button {
    height: 42px;
  }
  .submit{
    font-size:16px;
  }
}
