<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#customAlert-overlay {
  display: none;
  opacity: 0.5;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background: #000;
}
#customConfirm-overlay {
  display: none;
  opacity: 0.5;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background: #000;
}
#customAlert {
  background-color: #fff;
}
#customAlert .footer button {
  background-color: #bababa;
  color: #5e5e5e;
}
#customAlert .footer button:hover {
  background-color: #666;
  color: #e6e6e6;
}
#customConfirm {
  background-color: #fff;
}
#customConfirm .footer button.confirm {
  margin-right: 10px;
  background-color: #68bb74;
  color: #edf7ef;
}
#customConfirm .footer button.confirm:hover {
  background-color: #3f8d4b;
  color: #dcefdf;
}
#customConfirm .footer button.cancel {
  background-color: #e2614b;
  color: #fbece9;
}
#customConfirm .footer button.cancel:hover {
  background-color: #b0321c;
  color: #f8d8d3;
}
#customAlert,
#customConfirm {
  font-family: arial, helvetica;
  border-radius: 5px;
  width: 550px;
  font-size: 1em;
  display: none;
  position: fixed;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 1000;
  top: 5%;
  left: 50%;
  padding: 10px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
  margin-left: -275px;
}
@media (min-width: 321px) {
  #customAlert,
  #customConfirm {
    top: 25%;
  }
}
@media (max-width: 550px) {
  #customAlert,
  #customConfirm {
    margin-left: -50vw;
  }
}
#customAlert .header,
#customConfirm .header {
  background: #fff;
  color: #232323;
  text-align: center;
  font-size: 0.75em;
}
#customAlert .body,
#customConfirm .body {
  padding: 10px;
  color: #232323;
  font-size: 1.2em;
  background: #fff;
  text-align: center;
}
#customAlert .footer,
#customConfirm .footer {
  background: #fff;
  text-align: center;
}
#customAlert .footer button,
#customConfirm .footer button {
  width: 100px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  word-wrap: break-word;
  font-family: arial, helvetica;
  border: none;
}
</pre></body></html>