.custom-form {
  display: grid;
  grid-row-gap: 10px;
}

.custom-form__phone {
  padding: 10px 20px;
  color: #000;
  border: 1px solid #cccccc;
  background-color: #fff;
  font-size: 16px;
  height: 58px;
  box-sizing: border-box;
}

.custom-form__text {
  padding: 10px 20px;
  color: #000;
  border: 1px solid #cccccc;
  background-color: #fff;
  font-size: 16px;
  height: 85px;
  resize: none;
  box-sizing: border-box;
}

.custom-form__button {
  border: 0;
  color: #000000;
  background-color: #fdce3e;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  /* width: 320px; */

  height: 70px;
  padding: 0 15px;
  display: block;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  box-shadow: 0px 3px 0px 0px rgb(204 161 22);
}

.custom-form__button:hover {
  background-color: #fcc729;
  color: #000000;
}

.custom-modal.activated {
  display: block!important;
}

.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
}


.custom-modal__block {
  position: absolute;
  height: 200px;
  width: 300px;
  background: #fff;
  padding: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: grid;
  align-items: center;
}

.custom-modal__text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
  text-align: center;
}

.custom-modal__background {
  background: #000;
  opacity: .5;
  position: absolute;
  width: 100%;
  height: 100vh;
}