<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade {
  opacity: 0;
  transition: opacity 0.2s 0.1s ease-out;
}
.modal.fade .modal-dialog {
  transform: translate(0, 0%);
  transition: transform 0.2s ease-in;
}
.modal.in {
  opacity: 1;
}
.modal.in .modal-dialog {
  transform: translate(0, 80px);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.modal-backdrop.in {
  opacity: 0.85;
}

.modal-dialog {
  max-width: 30rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.modal-dialog .modal-content {
  position: relative;
  padding: 2.5rem 1rem 1rem;
  outline: 0;
  background-color: var(--bg-color);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  border-radius: 0.5rem;
}
.modal-dialog .modal-content .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.modal-dialog .modal-content .modal-header {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.modal-dialog .modal-content .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-dialog .modal-content .modal-header .modal-title img.profile-img {
  display: inline-block;
  width: 40px;
  margin-right: 0.5rem;
  border-radius: 50%;
}
.modal-dialog .modal-content .modal-body ul &gt; li {
  display: block;
}
.modal-dialog .modal-content .modal-body ul &gt; li + li {
  margin-top: 0.5rem;
}
.modal-dialog .modal-content .modal-body ul &gt; li &gt; a,
.modal-dialog .modal-content .modal-body ul &gt; li &gt; button {
  display: block;
  cursor: pointer;
  color: var(--text-strong-color);
  padding: 0;
  border: 0;
  background: none;
}
.modal-dialog .modal-content .modal-body ul &gt; li:hover a, .modal-dialog .modal-content .modal-body ul &gt; li:hover button {
  text-decoration: underline;
}
.modal-dialog .modal-content .modal-footer {
  padding: 1rem 0;
}
.modal-dialog .modal-content .modal-footer a {
  color: var(--text-base-color);
}
.modal-dialog .modal-content .modal-footer a:hover {
  text-decoration: underline;
}

body.color_scheme_dark .modal-dialog .modal-content {
  background-color: var(--dark-bg-color);
}
body.color_scheme_dark .modal-dialog .modal-content .modal-header {
  border-color: var(--dark-border-color);
}
body.color_scheme_dark .modal-dialog .modal-content .modal-body ul &gt; li &gt; a,
body.color_scheme_dark .modal-dialog .modal-content .modal-body ul &gt; li &gt; button {
  color: var(--dark-text-strong-color);
}
body.color_scheme_dark .modal-dialog .modal-content .modal-footer a {
  color: var(--dark-text-base-color);
}

@media (min-width: 1024px) {
  .modal.in .modal-dialog {
    transform: translate(0, 25%);
  }

  .modal-dialog .modal-content {
    padding: 2.5rem 2rem 2rem;
  }
}</pre></body></html>