/* Subscribe button */
.subscribe-btn {
  position: fixed;
  top: 3px;
  left: 3px;
	background-color:black;
  /*background: #cc0000;*/	
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  z-index: 1000;
}

.subscribe-btn:hover {
  background: #e60000;
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Modal box */
.modal-content {
  background: #fff;
  max-width: 400px;
  margin: 15% auto;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  font-size: 14px;
}

.submit-btn {
  background: #cc0000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 3px;
}

.submit-btn:hover {
  background: #e60000;
}