#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  max-width: 1386px;
  width: 95%;
  transform: translateX(-50%) translateY(100%);
  border-radius: 15px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

#cookie-banner.show {
  transform: translateX(-50%) translateY(-150px);
}

#cookie-banner button {
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
  color: #000 !important;
}

#cookie-banner button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

.lovol-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: #009746;
  text-align: center;
  white-space: nowrap;
  height: 44px;
  line-height: 44px;
}

.lovol-button:visited {
  color: #fff;
}

.lovol-button:hover {
  opacity: 0.8;
}

.dealer-page-form {
  position: relative;
  max-width: 800px;
  padding-top: 20px;
}

.dealer-page-form__cols {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.dealer-page-form__col {
  box-sizing: border-box;
  padding: 15px;
}

.dealer-page-form__col--1-3 {
  width: 33.3333%;
}

.dealer-page-form__col--2-3 {
  width: 66.6666%;
}

.dealer-page-form__input {
  position: relative;
}

.dealer-page-form__input input[type='text'],
.dealer-page-form__input input[type='tel'],
.dealer-page-form__input textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 36px;
  background-color: #fff;
  border: 1px #8c8c8c solid;
  padding-right: 36px;
  padding-left: 10px;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
  text-transform: uppercase;
}

.dealer-page-form__input input[type='text']::placeholder,
.dealer-page-form__input textarea::placeholder {
  color: #8c8c8c;
}

.dealer-page-form__input textarea {
  resize: none;
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}

.dealer-page-form__note {
  margin-top: 10px;
}

.dealer-page-form__note p {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  color: #8c8c8c;
  margin: 0;
}

.dealer-page-form__agreement:not(:last-child) {
  margin-bottom: 30px;
}

.dealer-page-form__agreement p {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 500;
  color: #8c8c8c;
}

/* .dealer-page-form__agreement p a,
  .dealer-page-form__agreement p a:visited {
    color: #d91314;
    text-decoration: none;
  } */

.dealer-page-form__agreement p a:hover,
.dealer-page-form__agreement p a:visited:hover {
  text-decoration: underline;
}

.dealer-page-form__submit {
  position: relative;
}

.dealer-page-form__submit .lovol-button {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .dealer-page-form__cols {
    margin: 0;
    flex-direction: column;
  }

  .dealer-page-form__col {
    padding: 5px 0;
    width: 100% !important;
  }

  .dealer-page-form__agreement {
    margin-top: 15px;
  }

  .dealer-page-form__agreement:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* a:hover {
  color: #d91314 !important;
} */

.lovol-button:hover {
  color: #fff !important;
}

.dealer-page-form__cols {
  flex-direction: column;
  margin: 0;
  padding-right: 0;
  /* убираем лишний отступ */
}

.dealer-page-form__col {
  width: 100% !important;
  /* универсально — в столбик */
  padding: 0;
  margin-bottom: 20px;
}

.dealer-page-form__submit {
  margin-top: 10px;
}

.dealer-page-form__col-block {
  flex-direction: column;
}

.dealer-page-form__col-left {
  padding: 0 0 20px 0;
  text-align: left;
}

.dealer-page-form__col-block {
  display: flex;
  margin-bottom: 20px;
}

.dealer-page-form__col-left {
  padding: 0 30px;
}

.dealer-page-form__col-left__title {
  padding-top: 6px;
}

.dealer-page-form__col-left__text {
  margin-top: 38px;
  color: #8c8c8c;
}

.dealer-page-form__agreement:not(:last-child) {
  margin-bottom: 10px;
}

.dealer-page-form__cols {
  justify-content: right;
  padding-right: 32px;
}

.form-agree {
  display: flex;
  align-items: start;
}

.form-agree label {
  padding-left: 10px;
}

@media (max-width: 900px) {
  .dealer-page-form__col-block {
    flex-direction: column;
  }

  .dealer-page-form__col-left {
    padding-left: 0;
  }

  .dealer-page-form__col--1-3 {
    width: 50%;
  }

  .dealer-page-form__col--2-3 {
    width: 100%;
  }
}
