.open-button {
  border: none;
  cursor: pointer;
  bottom: 90px;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--gradient-7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  position: fixed;
  z-index: 9;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 50%;
}

.open-button:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    background-color: var(--dark-1);
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b0a0acc;
  z-index: 999;
}

/* Add styles to the form container */
.form-container {
  max-width: 350px;
  padding: 10px;
  background-color: white;
  position: fixed;
  font-size: 16px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  background-color: var(--primary);
  box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.5);
  z-index: 10000;
  border-radius:5px;
  color: var(--white)
}
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 10px 0;
  border: none;
  background: #fff;
}

.popform_title {
  font-family: var(--font-family);
  font-size:25px;
  line-height: 25px;
  text-align: center;
  font-weight: 600;
  margin: 15px;
}

.popform-email, .popform-name, .popform-phone, .popform-company, .popform-message  {
  width: 100%;
  padding: 15px;
  margin: 5px 0 10px 0;
  border: none;
  background: #fff;
  border-radius: 2px;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #fff;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #fcba28;
  color: black;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 1;
  font-weight: 400;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
  color: var(--white);
  font-weight: 400;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 0.8;
}