/* Popup container */
.popup-content-brochure {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  width: 550px;
  z-index: 1000;
}

@media only screen and (max-width: 600px) {
  .popup-content-brochure {
    width: 300px !important;
  }
  input[type=submit], .popup-content-brochure select {
    margin-left: 10% !important;
  }
}

/* Text inside popup */
.popup-content-brochure .popup-text {
  color: black;
  font-size: 14px;
}

/* Form inputs */
input[type=text], input[type="email"], select {
  width: 100%;
  font-size: 14px !important;
  font-family: 'Chronicle Roman' !important;
  color: #7e7e7e !important;
  letter-spacing: 0.3px;
}

/* Submit button */
.popup-content-brochure input[type=submit], 
.popup-content-brochure select {
  width: 200px !important;
  font-family: "Helvetica", Sans-serif !important;
  cursor: pointer;
  display: inherit !important;
  border: none !important;
  text-transform: uppercase;
  border-radius: 1px !important;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.01px;
  fill: #FFFFFF;
  color: #FFFFFF;
  padding: 15px 50px;
  margin: 0 auto;
}

/* Close button */
.popup-close-button-brochure {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: transparent;
}
.popup-close-button-brochure::before {
  content: 'X';
  color: black;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* Download button */
.popup-button-brochure {
    background-color: #FFFFFF;
    font-family: "Mulish", Sans-serif;
    font-size: 20px;
    font-weight: normal;
    fill: #FFFFFF;
    color: #000000;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 10px 32px 10px 32px;
    text-transform: capitalize;
    cursor: pointer;
}
.popup-button-brochure:hover {
	color: #FFFFFF;
	background: #000000;
}
.popup-button-brochure i {
  padding-left: 10px;
}

/* Brochure name inside popup */
.brochure-name {
  color: #000000;
  font-weight: bold;
}

.popup-content-brochure input[type=submit] { background-color: #000000; }