.pgw-ui-container {
  width: 100%;
  height: 100%;
}

.pgw-ui-container-dropin {
  width: 100%;
  height: 100%;
}
.pgw-ui-container-dropin iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: auto;
}

.pgw-ui-container-dialog {
  width: 100%;
  height: 100%;
  display: table;
}
.pgw-ui-container-dialog iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: auto;
  display: table-row;
}

.pgw-ui-container-dialog-header {
  height: 50px;
  display: table-row;
  background-color: white;
}

.pgw-ui-container-dialog-header-close-button {
  width: 48px;
  height: 48px;
  float: right;
  content: url("../assets/images/icon_close.png");
}

.pgw-ui-container-dialog-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}

.pgw-ui-container-dialog-overlay-content {
  width: 85vw;
  height: 85vh;
  top: 50%;
  left: 50%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  transform: translate(-50%, -50%);
  background-color: transparent;
}

.pgw-ui-container-dialog-close-confirmation {
  width: 415px;
  height: 215px;
  border-radius: 20px;
  padding: 10px;
  background-color: white;
}

.pgw-ui-container-dialog-close-confirmation-close-button {
  width: 35px;
  height: 35px;
  float: right;
  content: url("../assets/images/icon_close.png");
}

.pgw-ui-container-dialog-close-confirmation-title {
  color: black;
  font-size: 22px;
  font-style: normal;
  font-weight: bold;
  font-family: "GT Walsheim Pro", sans-serif;
  text-align: center;
  padding-top: 25px;
  padding-left: 30px;
  padding-right: 30px;
}
.pgw-ui-container-dialog-close-confirmation-title:after {
  content: "Are you sure, you want to cancel payment?";
}

.pgw-ui-container-dialog-close-confirmation-message {
  color: black;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-family: "GT Walsheim Pro", sans-serif;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-left: 5px;
  padding-right: 5px;
}
.pgw-ui-container-dialog-close-confirmation-message:after {
  content: "If you cancel payment, you'll have to complete payment in Order History to finalise order.";
}

.pgw-ui-container-dialog-close-confirmation-yes-button {
  height: 50px;
  color: black;
  font-size: 17px;
  font-style: normal;
  font-weight: bold;
  font-family: "GT Walsheim Pro", sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
  border: none;
  float: left;
  margin-left: 40px;
  margin-right: 10px;
  background-color: transparent;
}
.pgw-ui-container-dialog-close-confirmation-yes-button:after {
  content: "Yes, cancel";
}

.pgw-ui-container-dialog-close-confirmation-no-button {
  height: 50px;
  color: white;
  font-size: 17px;
  font-style: normal;
  font-weight: bold;
  font-family: "GT Walsheim Pro", sans-serif;
  border: none;
  border-radius: 35px;
  float: right;
  margin-left: 10px;
  margin-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 35px;
  padding-right: 35px;
  background-color: black;
}
.pgw-ui-container-dialog-close-confirmation-no-button:after {
  content: "No, stay on page";
}

.pgw-ui-container-dialog-close-confirmation-button-content {
  height: 50px;
  text-align: center;
}

.pgw-ui-container-dialog-close-confirmation-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-color: grey;
}

.pgw-ui-container-dialog-close-confirmation-overlay-content {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  transform: translate(-50%, -50%);
  background-color: transparent;
}