.popupMessageFixedContainer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.popupHiddenImg {
  display: none;
}

.popupMessageDiv {
  width: 80%;
  max-width: 835px;
  height: auto;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.popupMessageDivContainer {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
}

.popupColumn1 {
  position: relative;
  height: -webkit-fill-available;
  float: inherit;
  width: 50%;
  left: 0;
  overflow: hidden;
}

.popupColumn2 {
  width: 45%;
  margin: 0 auto;
  position: relative;
  float: right;
  height: 100%;
  color: #000;
  text-align: center;
  right: 0;
}

.popupImage {
  height: -webkit-fill-available;
  width: 100%;
  object-fit: cover;
  display: block;
}

.popupSubtitle {
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  text-align: center;
  color: #000;
  display: none;
}

.popupTitle {
  padding-bottom: 20px;
  font-style: inherit;
  font-weight: 100;
  font-size: 39px;
  line-height: 43px;
  color: #555;
  width: 85%;
  text-align: left;
  -webkit-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
}

.popupText {
  line-height: 20px;
  width: 75%;
  text-align: left;
  font-size: 16px;
  color: #555;
}

.popupButton {
  width: 40%;
  margin: auto;
  margin-top: 25px;
  height: 50px;
  float: left;
  line-height: 50px;
  letter-spacing: 1px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #505050;
  cursor: pointer;
  position: relative;
  color: #fff;
  background-color: #505050;
  box-sizing: border-box;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

.popupButton:hover {
  background: #fff;
  color: #505050;
}

.newsletterPopupColumn {
  position: relative;
  width: 75%;
  margin-top: 40px;
  float: left;
}

.emailFooterInput {
  height: 40px;
  position: relative;
  width: 100%;
  border-radius: 0;
  color: #000;
  text-align: left;
  font-size: 14px;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border-bottom: 1px solid #505050;
}

.emailFooterInput::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.emailFooterInput:-moz-placeholder {
  color: #000;
  opacity: 1;
}

.emailFooterInput::-moz-placeholder {
  color: #000;
  opacity: 1;
}

.emailFooterInput:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.emailFooterInput::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.popupClose {
  position: absolute;
  cursor: pointer;
  text-align: center;
  color: #000;
  padding-top: 1px;
  font-size: 26px;
  width: 22px;
  height: 22px;
  top: 5px;
  right: 10px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .popupMessageDiv {
    width: 94%;
    flex-direction: column;
    height: 84vh;
  }

  .popupColumn1 {
    float: left;
    width: 100%;
    height: 65vh;
  }

  .popupColumn2 {
    width: 85%;
  }

  .popupTitle {
    padding-bottom: 20px;
    padding-top: 25px;
    font-size: 25px;
    line-height: 29px;
    margin: auto;
    width: 90%;
    float: left;
  }

  .popupText {
    font-size: 13px;
    line-height: 16px;
    width: 95%;
  }

  .popupSubtitle {
    font-size: 15px;
    line-height: 20px;
    width: 80%;
    margin: auto;
    max-width: 265px;
  }

  .newsletterPopupColumn {
    width: 100%;
    margin-top: 10px;
  }

  .emailFooterInput {
    height: 40px;
    letter-spacing: 1px;
    text-indent: 0;
    font-size: 12px;
  }

  .popupButton {
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    width: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .popupImage {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
