/* Form Popup */

.pd-info-form {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  justify-content: center;
  align-content: center;
  overflow: auto;
  z-index: 3;
}
.pd-form-wrapper-popup {
  margin: 5%;
  position: relative;
  width: 100%;
  max-width: 550px;
  background: #fff;
}
.pd-form-wrapper-popup form {
  padding: 40px 35px;
  background: #fff;
}
.pd-form-close-container {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 100%;
  max-width: 550px;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}

/* Form */
.pd-form-inputs .pd-form-input {
  position: relative;
}
.pd-form-inputs .pd-name input {
  height: 45px;
  width: 100%;
  max-width: 500px;
  padding: 0 20px 0 40px;
  margin-bottom: 20px;
  border-width: 1px;
  border-color: rgb(204, 204, 204);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  outline: none;
}
.pd-form-inputs .pd-email input {
  height: 45px;
  width: 100%;
  max-width: 500px;
  padding: 0 20px 0 40px;
  border-width: 1px;
  border-color: rgb(204, 204, 204);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  outline: none;
}
.pd-form-inputs .pd-form-input input::-webkit-input-placeholder {
  color: #2f2f2f;
}
.pd-form-inputs .pd-form-input:before {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.pd-form-inputs .pd-form-input.pd-name:before {
  background-image: url("images/user.png");
}
.pd-form-inputs .pd-form-input.pd-email:before {
  background-image: url("images/envelope.png");
}
.pd-form-inputs .pd-checkbox {
  display: flex;
  align-items: flex-start;
  margin: 6px 0;
  width: 100%;
  max-width: 500px;
}
.pd-form-inputs .pd-checkbox p {
  margin: 0;
  padding-left: 5px;
  font-size: 11px;
  font-family: "Playfair Display";
  color: rgba(47, 47, 47, 0.502);
  font-weight: bold;
  line-height: 1.182;
}
.pd-button-container {
  margin: auto;
  padding: 35px 0 0 0;
  display: flex;
}
.pd-pdf-line {
  padding: 25px 0;
  width: 100%;
}
.pdf-btn {
  border: 0;
  padding: 16px 18px;
  font-size: 20px;
  font-family: "Playfair Display";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgb(197, 166, 154);
  cursor: pointer;
}

@media screen and (max-width: 325px) {
  .pdf-btn {
    font-size: 15px;
  }
}

button.pd-form-submit,
input.pd-form-submit {
  border: 0;
  padding: 16px 18px;
  font-size: 20px;
  font-family: "Playfair Display";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
  text-align: center;
  text-transform: uppercase;
  background-color: rgb(197, 166, 154);
  cursor: pointer;
}

/* Form Open + Close */

.is-active {
  display: flex;
}

.is-none {
  display: none;
}

/* Popup 1 / 2 */

.pd-popup-1 {
  position: fixed;
  min-width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.pd-popup-wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd-popup-textbox {
  margin: auto;
  padding: 23px 23px 100px 23px;
  position: relative;
  width: 80%;
  max-width: 600px;
  height: 70vh;
  max-height: 650px;
  background: #fff;
  overflow: auto;
}
.pd-popup-textbox h2 {
  font-size: 16px;
  font-family: "Playfair Display";
  color: rgb(0, 0, 0);
  font-weight: bold;
  line-height: 1.563;
}
.pd-popup-textbox p {
  font-size: 14px;
  font-family: "Playfair Display";
  color: rgb(0, 0, 0);
  line-height: 1.563;
}
.pd-popup-1-btn {
  margin: auto;
  padding: 20px 0;
  position: fixed;
  width: 80%;
  max-width: 600px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  background: #fff;
}
.pd-popup-1-btn button {
  padding: 13px 19px;
  font-size: 20px;
  font-family: "Montserrat";
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  border: 0;
  background-color: rgb(197, 166, 154);
}
.pd-popup-1-btn button:hover {
  cursor: pointer;
  border: 0;
  background-color: rgba(197, 166, 154, 0.9);
}
.pd-popup-1-btn button:focus {
  outline: 0;
}
/* Popup 2 */
.pd-popup-2 {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #eee;
  padding: 13px;
  text-align: center;
  font-size: 14px;
  font-family: "Playfair Display";
  z-index: 9;
}
.pd-popup-2 p {
  margin-bottom: 0;
}
.pd-popup-2 p {
  text-decoration: none;
}
.pd-popup-2-btn {
  padding: 8px 10px;
  border-radius: 2px;
  border: 0;
  color: rgb(255, 255, 255);
  background-color: rgb(197, 166, 154);
}
.pd-popup-2-btn:hover {
  background-color: rgba(197, 166, 154, 0.9);
  cursor: pointer;
}
.pd-popup-2-btn:focus {
  outline: 0;
}
/* Animation */
.pd-popup-1 {
  display: none;
}
.pd-popup-1-active {
  display: block;
}
.pd-popup-2 {
  display: none;
}
.pd-popup-2-active {
  display: block;
}
/* Close */
.close-box {
  margin: auto;
  padding: 20px 0;
  position: fixed;
  width: 600px;
  left: 0;
  right: 0;
  top: 0;
  text-align: right;
}
.close-btn {
  font-size: 20px;
  font-family: "Playfair Display";
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  border: 0;
  background-color: rgb(197, 166, 154);
}
.close-btn:hover {
  background-color: rgba(197, 166, 154, 0.9);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .pd-popup-2 p {
    font-size: 10px;
    padding: 0 10%;
  }
}
@media screen and (max-width: 600px) {
}
