.popup-overlay {
  z-index: 3;
  display: none;
  height: 0;
  overflow: scroll;
  text-align: center;
  background-color: rgba(255,255,255,0.8);
}

.popup-overlay.show-popup {
  display: block;
  position: fixed;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.simple-popup {
  z-index: 3;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  padding: 40px 35px 35px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 600px;
  margin-top: 5vw;
}

#message-modal .simple-popup {
  background: #f65125;
}

#feedback-modal .simple-popup {
  background: #62af75;
}

#message-modal .popup-message {
  position: relative;
  max-width: 450px;
  text-align: left;
  font-size: 38px;
  letter-spacing: 4px;
  line-height: 1;
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .simple-popup {
    padding: 50px 45px 45px;
  }

  #message-modal .popup-message {
    max-width: 695px;
    font-size: 68px;
    letter-spacing: 6px;

  }
}

.popup-buttons {
  min-width: 117px;
}

@media only screen and (min-width: 768px) {
  .popup-buttons {
    margin-top: 30px;
    min-width: 217px;
    width: auto;
  }
}

.popup-buttons .btn {
  width: 200px;
  background: #62af75;
  color: #fff;
}

.popup-buttons .btn:hover {
  background: #558259;
}
