form.loading {
  filter: blur(5px);
  pointer-events: none;
}

.quote_top {
  max-width: 700px;
  text-align: center;
  margin: 50px auto;
}

.quote_top h1 {
  justify-content: center;
}

.quote_top p {
  margin: 10px 0;
}

.quote_top ol,
.quote_top ul {
  list-style: unset;
  padding-left: 20px;
}

.quote_top li {
  list-style: unset;
}

.quote_top ol {
  list-style: decimal;
}

div input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-green);
  border-radius: 50%;
  position: relative;
  margin-top: 0;
  padding: 0;
}

div input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

form {
  box-shadow: 0 0 20px -7px rgba(128, 119, 119, 0.5);
  padding: 30px;
}

.form_vehicle-radio {
  display: flex;
  gap: 1.5%;
  /* justify-content: space-between; */
}

.form_vehicle-radio input {
  position: absolute;
  opacity: 0;
}

.form_vehicle-radio label {
  width: 25%;
  text-align: center;
  padding: 20px 30px;
  border: 2px solid var(--color-green);
  cursor: pointer;
  border-radius: 6px;
}

.form_vehicle-radio label h5 {
  margin: 15px 0 5px 0;
  font-size: clamp(1rem, 0.9545rem + 0.2273vw, 1.125rem);
  color: var(--color-green);
}

.form_vehicle-radio label.active {
  background-color: var(--color-green);
}

.form_vehicle-radio label.active img {
  filter: invert(100%) sepia(0%) saturate(24%) hue-rotate(114deg) brightness(108%) contrast(108%);
}

.form_vehicle-radio label.active p,
.form_vehicle-radio label.active h5 {
  color: #fff;
}

.quote_content input {
  border: 1px solid #dbdbdb;
  padding: 0.5rem 1rem;
  font-family: inherit;
  margin-top: 12px;
}

.quote_content input::placeholder {
  font-family: inherit;
}

.quote_content .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote_content .line.information p,
.quote_content .line.address p {
  font-size: clamp(0.875rem, 0.7841rem + 0.4545vw, 1.125rem);
  font-weight: bold;
}

.quote_content .line {
  margin: 25px 0;
}

.quote_content .line.address {
  margin: 25px 0;
  gap: 20px;
}

.quote_content .line.address label {
  width: 100%;
}

.quote_content .line.button input,
.quote_content .line.name input,
.quote_content .line.address label input {
  height: 46px;
  width: 100%;
}

.quote_content .line .error {
  display: none;
  font-size: 12px;
  color: red;
  position: absolute;
}

.quote_content .line.information {
  gap: 20px;
}

.quote_content .line.information label {
  width: 100%;
}

.quote_content .line.information textarea {
  width: 100%;
  border: 1px solid #dbdbdb;
  padding: 0.5rem 1rem;
  font-family: inherit;
  min-height: 150px;
  margin-top: 12px;
  resize: none;
}

.quote_content .line.rating,
.quote_content .line.time {
  flex-direction: column;
  align-items: flex-start;
}

.line_block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.line_block label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.line_block label input {
  margin: 0;
  max-width: 20px;
  padding: 0;
}

.line.button label:last-child {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.terms_button {
  font-size: 12px;
  color: grey;
}

.terms_button a {
  color: var(--color-green);
}

.line.button label:last-child button {
  max-width: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.quote_content .line.hear {
  flex-direction: column;
  align-items: flex-start;
}

.quote_content .line.name {
  gap: 20px;
}

.quote_content .line.line.button label,
.quote_content .line.name label {
  width: 100%;
}

.quote_content .line.button {
  align-items: flex-end;
  gap: 20px;
}

.quote_content .line.button button {
  border-radius: 6px;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: clamp(1rem, 0.9545rem + 0.2273vw, 1.125rem);
  padding: 12px 0;
}

.vahicle_info span {
  font-weight: bold;
}

.vahicle_info div+div {
  margin-top: 10px;
}

.time_block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.time_block label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

/* TICK */
.wrapper_tick {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 999;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.wrapper_tick.active {
  opacity: 1;
  pointer-events: all;
}

.animation-ctn {
  text-align: center;
  display: none;
}

.wrapper_tick.active .animation-ctn {
  display: block;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 100px;
  }

  100% {
    stroke-dashoffset: 200px;
  }
}

@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 100px;
  }

  100% {
    stroke-dashoffset: 200px;
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: 100px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 480px;
  }

  100% {
    stroke-dashoffset: 960px;
  }
}

@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }

  100% {
    stroke-dashoffset: 480px;
  }
}

@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 480px;
  }

  100% {
    stroke-dashoffset: 960px;
  }
}

@keyframes colored-circle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100;
  }
}

.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg polyline {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

.icon--order-success svg circle#colored {
  -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
  animation: colored-circle 0.6s ease-in-out 0.7s backwards;
}

/* TICK END */

.quote_content .file {
  flex-direction: column;
  align-items: flex-start;
}

.quote_content .file>label {
  margin-top: 10px;
}

.quote_content .file>label,
.quote_content .file .filepond {
  width: 100%;
}

.filepond--credits {
  display: none !important;
}

/* fixed price */

.fixed_price .quote_content-block {
  margin: 25px 0;
}

.fixed_price .quote_content-block h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.125rem, 0.9886rem + 0.6818vw, 1.5rem);
}

.fixed_price .quote_content-block h4 {
  cursor: pointer;
  display: inline;
  font-size: clamp(0.875rem, 0.7507rem + 0.4678vw, 1.125rem);
  margin-right: 5px;
}

.fixed_price .quote_content-block .line {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fixed_price .quote_content-block input {
  margin-top: 0;
}

.fixed_price .quote_content-block input[type="number"] {
  width: 200px;
}

.fixed_price .inputs_line label,
.fixed_price .inputs_line,
.fixed_price .label_flex {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* .inputs_line {
  margin-top: 15px;
} */
.fixed_price .line_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.fixed_price .line .wrapper_block {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid var(--color-green);
}

.fixed_price .line .wrapper_block:last-child {
  border-bottom: 1px solid var(--color-green);
  padding-bottom: 15px;
}

.fixed_price #stairs_content .inputs_line {
  margin-top: 0;
}

.fixed_price .line_content {
  display: none;
}

.fixed_price .line_content.active {
  display: flex;
}

.fixed_price input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fixed_price input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-green);
  position: relative;
  margin-top: 0;
  padding: 0;
  transform: translateY(3px);
  border-radius: 4px;
}

.form_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.form_bottom button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.continue {
  display: none;
}

.form_bottom-res span:first-child {
  font-weight: bold;
}

.rating_block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating_block label {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 5px;
}