@charset "utf-8";
/* CSS Document */


* {box-sizing:border-box;}

/* Button used to open the buyer contact form - fixed at the bottom left of the page */
.open-button {
  background-color: #b50102;
  color: white;
  padding: 8px;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  position: fixed;
  bottom: 0;
  left: 0;
  width:300px;
  max-width: 47%;
  font-weight:bold;
  font-size:120%;
  text-align:center;
  border-radius:8px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width:300px;
  border: 2px solid #f1f1f1;
  border-radius:8px;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  position: fixed;
  bottom: 0;
  width: 300px;
  padding: 10px;
  background-color: white;
  z-index:1;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width:100%;
  padding: 12px;
  margin: 5px 0 5px 0;
  border: 1px solid #ddd;
  background: #f1f1f1;
  border-radius:8px;
}

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

/* Set a style for the submit/login button */
.form-container .btnfrm {
  background-color: #b50102;
  color: white;
  font-size:120%;
  font-weight:bold;
  padding: 12px;
  border: none;
  cursor: pointer;
  width:100%;
  margin-bottom:10px;
  margin-top:10px;
  opacity: 0.7;
  border-radius:8px;
}

/* Add a dark gray background color to the cancel button */
.form-container .cancel {
  background-color: #333;
}

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



/* Button used to open the seller contact form - fixed at the bottom RIGHT of the page */
.open-button1 {
  background-color: #b50102;
  color: white;
  padding: 8px;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  position: fixed;
  bottom: 0;
  right: 0;
  width:300px;
  max-width:47%;  
  font-weight:bold;
  font-size:120%;
  text-align:center;
  border-radius:8px;
}

/* The popup form - hidden by default */
.form-popup1 {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  border: 2px solid #f1f1f1;
  z-index: 9;
  border-radius:8px;
}

/* Add styles to the form container */
.form-container1 {
  width:300px;  
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container1 input[type=text], .form-container1 input[type=password] {
  width:100%;
  padding: 12px;
  margin: 5px 0 5px 0;
  border: none;
  background: #f1f1f1;
  border-radius:8px;
}

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

/* Set a style for the submit/login button */
.form-container1 .btnfrm1 {
  background-color: #b50102;
  color: white;
  font-size:120%;
  font-weight:bold;
  padding: 12px;
  border: none;
  cursor: pointer;
  width:100%;
  margin-bottom:10px;
  margin-top:10px;  
  opacity: 0.7;
  border-radius:8px;
}

/* Add a dk gray background color to the cancel button */
.form-container1 .cancel {
  background-color: #333;
}

/* Add some hover effects to buttons */
.form-container1 .btnfrm1:hover, .open-button1:hover {
  opacity: 1;
}
