.cars__bg {
  background: -o-linear-gradient(100deg, #f6fbfa, #f9fdfc, #e3f0ff 58%, #f2f9f7 75%, #f5fafb);
  background: linear-gradient(-10deg, #f6fbfa, #f9fdfc, #e3f0ff 58%, #f2f9f7 75%, #f5fafb);
}

.cars__group-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 80px;
  gap: 10px;
}

.cars__form {
  padding: 40px 0 0;
}

.discharge {
  width: 124px;
  height: 34px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.65%, #474FA0), to(#B289F5));
  background: -o-linear-gradient(top, #474FA0 3.65%, #B289F5 100%);
  background: linear-gradient(180deg, #474FA0 3.65%, #B289F5 100%);
  border: 1px solid rgba(67, 37, 115, 0.13);
  border-radius: 18px 18px 0px 0px;
  font-size: 16px;
  line-height: 18px;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
}

.discharge.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.cars__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cars__form-top .form__select {
  color: var(--blue-color);
}

.cars__bg .services {
  background: none;
}

.used__form-block {
  margin: 0;
}

.used__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.used__form-top .cars__form-top {
  width: 50%;
}

/* --------------------- @media ------------------------- */

@media screen and (max-width: 1023px) {
  .used__form-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .used__form-top .cars__form-top {
    width: 100%;
  }

  .used__form-top .cars__form-top .label {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .cars__form {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 616px) {
  .cars__group-buttons {
    padding-left: 0;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 600px) {
  .used__form-top {
    gap: 0;
  }

  .used__form-block {
    margin-bottom: 10px;
  }

  .used__form-top .cars__form-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cars__form-top {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 520px) {
  .cars__form-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .cars__form-top .label {
    max-width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .cars__group-buttons {
    padding-left: 0;
    padding-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}