.open-button {
  background-color: #dfdfdf;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  opacity: 1;
  position: fixed;
  bottom: 23px;
  right: 28px;
  z-index: 100;
  border-radius: 100px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 1px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 350px;
  padding: 12px;
  background-color: white;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=email] , .form-container textarea {
  width: 325px;
  padding: 15px;
  margin: 5px 0 15px 0;
  border: 1px solid #0000004d;
  background: #fff;
  border-radius: 7px;
}

.form-container input[type=text], .form-container input[type=email]{
    height: 20px;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=email]:focus, .form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #9b723e;
  color: white;
  padding: 10px 20px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
  border-radius: 7px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #fff;
 color: #000;
 text-align: right;
 width: auto;
 padding: 2px;
 width: 30px;
 height: 30px;
 border: 1px solid #000;
 border-radius: 15px;
 top: 20px;
 right: 10px;
 position: absolute;
}

.cancel:hover{
     background: #9b723e;
     color: #fff;
}

.cancel .uk-margin-small-right{
     margin-right: 2px !important;
margin-bottom: 2px !important;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.labeller{
    position: relative !important;
    top: 0px !important;
}