.demo-form, .form-response {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
  /*display: flex;*/
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .52);
}

.form-content {
  width: 420px;
  height: 420px;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.response {
  font-family: Roboto;
  height: 160px;
  padding: 0 45px;
  font-size: 17px;
}

.response > div {
  color: rgba(0, 0, 0, 0.87);
}

iframe {
  border: 0;
  width: 310px;
  height: 380px;
  overflow: hidden;
}

.fixed-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.request-demo2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-demo2 > button {
  font-size: 24px;
  width: 250px;
  border: 1px solid #ffcc33;
  background-color: #ffcc33;
  color: #fff;
  border-radius: 4px;
  padding: 6px 32px;
  transition: opacity 1s cubic-bezier(0.75, 0, 0.75, 0.9);
  cursor: pointer;
  outline: none;
}