<style>
body {font-family: Arial, Helvetica, sans-serif;position: fixed;font-size:10px}
* {box-sizing: border-box;}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 30px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {

  display: none;
   max-width:500px;
  max-height:450px;
  bottom: 0;
  border-style: solid;
  height:70%;
  border-width:0.5px;
  margin-top: 50px;
   padding: 25px;
    background: white;
    position: fixed;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) }
  
  z-index: 1000;

}

/* Add styles to the form container */

@media screen and (max-width: 500px) {
  .form-container {
    width: 40vw;
    display: block;
    margin-bottom: 20px;
  }
  .form-popup{

    
  }
}

.form-container{
	margin-top:-70px;
}

/* Full-width input fields */
	


/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 4px 20px;
  border: none;
  cursor: pointer;
  width: 50%;
  margin-bottom:5px;
  opacity: 0.8;
}

.checkboxe{
	position:relative;
	bottom:20px;
	
}
.checkboxe2{
	position:relative;
	bottom:88.5px;
	
}
.checkboxe3{
	position:relative;
	bottom:66px;
	
}

.chk {
  margin-right: 15px;
  
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #ffcf01;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
</style>
