.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 9999;
}
.cookie-popup__inner {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.cookie-popup__text {
  font-size: 14px;
  line-height: 1.2;
}
.cookie-popup__close {
  flex-shrink: 0;
  width: 118px;
  height: 22px;
  margin-left: 15px;
  border: none;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
  background: #ED8E21 url(../img/but.gif) no-repeat 0 0;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 767px) {
  .cookie-popup__inner {
    flex-direction: column;
  }
  .cookie-popup__close {
    margin-top: 15px;
    margin-left: 0;
  }
  .cookie-popup__text {
    font-size: 12px;
  }
}



form .form-agree {
  display: block;
  margin-top: 15px;
  padding: 0 10px;
}
form .form-agree span {
  line-height: normal;
  color: #131313;
}
form .form-agree--white span {
  color: #fff;
}
form .form-error {
  margin-top: 15px;
  padding: 5px;
  border: 1px solid red;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  color: red;
}


.phone-form form .form-agree {
  margin-top: 10px;
}
.phone-form form .form-agree--white span {
  font-size: 12px;
}
.phone-form form .form-agree--white span a {
  color: #fff;
}
.phone-form form .form-error {
  font-size: 12px;
}