#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  height: 100%;
  width: 100%;
}
.modalPopup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50%;
  padding: 0;
  -webkit-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
.modalContent {
  padding: 0 0 62px 0;
  position: relative;
}
.modalContent a>img {
  width: 100%;
  height: auto;
}
.btn-area-popup {
  bottom: 0;
  right: 0;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 15px 13px 14px;
}
.btn-area-popup >div {
  font-weight:bold;
  font-size: 15px;
  line-height: 0;
}
.buttonStyle {
  border: transparent;
  border-radius: 0;
  background: #1e306e;
  color: #eee !important;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  padding: 7px 20px;
  text-decoration: none;
  margin-left: 30px;
  border-radius: 3px;
  line-height: 1.5;
}

@media only screen and (max-width: 480px) {
  .modalPopup {
    width: calc(100% - 30px);
  }
}