.fixed {
  position: fixed;
  z-index: 2;
}
.contact-popup {
  background-color: #fff;
  color: #000;
  width: 330px;
  bottom: 0;
  right: 20px;
  border-radius: 6px 6px 0px 0px;
}
.contact-popup h3 {
  border-radius: 6px 6px 0px 0px;
  text-align: left;
  color: #000;
  text-shadow: none;
  font-size: 16px;
  font-weight: 600;
  background-color: #9c27b0;
  margin: 0;
  padding: 15px;
  cursor: pointer;
}

.contact-popup h3 span {
  font-style: oblique;
}
.contact-popup p {
  text-align: center;
  padding: 10px 15px;
}
.contact-popup i {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  font-weight: 500;
  font-size: 29px;
  padding: 15px;
  cursor: pointer;
  /* background: #f18e92; */
}
.contact-popup form {
  padding: 0px 15px;
  /* background-color: #fff; */
}
.contact-popup input {
  font-family: "Verdana", sans-serif;
  font-size: 0.875em;
  width: 100%;
  height: 50px;
  padding: 0px 15px 0px 15px;
  background: transparent;
  outline: none;
  color: #000;
  border: solid 1px #9c27b0;
  border-bottom: none;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.contact-popup input:hover {
  background: #eb6166;
}

.contact-popup textarea {
  font-family: "Verdana", sans-serif;
  font-size: 0.875em;
  width: 100%;
  max-width: 100%;
  height: 90px;
  max-height: 110px;
  padding: 15px;
  background: transparent;
  outline: none;
  color: #000;
  border: solid 1px #eb6166;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.contact-popup textarea:hover {
  background: #eb6166;
}

.contact-popup button {
  font-family: "Verdana", sans-serif;
  font-size: 0.875em;
  padding: 10px;
  background: transparent;
  width: 100%;
  color: #000;
  outline: none;
  cursor: pointer;
  border: solid 1px #eb6166;
  margin-top: 10px;
}

.contact-popup button:hover {
  background: #eb6166;
}
