
.PopupWindow {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.PopupWindow .PopupWindowContent {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  resize: none;
}
.PopupWindow .PopupWindowContent.ReadOnlyLongTextPopupTextArea {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  padding: 5px;
  border: 1px solid rgba(186, 186, 186, 0.6);
  border-radius: 2px;
}
.PopupWindow textarea {
  border: 1px solid rgba(186, 186, 186, 0.6);
  border-radius: 2px;
  background-color: white;
}
.PopupWindow .Buttons {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.PopupWindow .Buttons button {
  background-color: #0b335c;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  line-height: 1.6em;
  font-family: "SofiaPro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 2px;
  width: max-content;
}
.PopupWindow .Buttons button:hover {
  background-color: #d1b2d6;
  color: #0b335c;
}
.PopupWindow .Buttons button:disabled {
  cursor: default;
  background-color: #bababa;
  color: white;
}
.PopupWindow .Buttons button.Revert::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.PopupWindow .Buttons button.Revert::after {
  content: "\ee0b";
}
