<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.bg-modal {
  background: #000;
  opacity: .5;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.margin-t-b {
  margin: 10px 0;
}

.dialog-modal {
  background: #fff;
  color: #000;
  padding: 5px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 300px;
}

button[close-btn] {
  position: absolute;
  top: 5px;
  right: 5px;

}

.dialog-modal-title {
  padding: 5px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-modal-title-h4 {
  margin: 0;
}

.dialog-modal-body {
  padding: 10px 5px 0;
}

.dialog-modal-body-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.input-group {
  margin: 5px 0;
  border: 1px solid #ccc;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  border-radius: 5px;
  padding: 3px;
}

.red-text {
  color: #c9302c;
  font-weight: bold;
  border: none;
}

.center-text {
  text-align: center;
  padding: 8px 0;
}

.input-group__name {
  padding: 8px;
  width: 30%;
  text-align: right;
}

.input-group__input {
  padding: 8px;
  width: 70%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.dialog-modal-footer {
  padding: 5px;
}

.container {
  text-align: center;
  padding-top: 30px;
  height: 100%;
}

.btn-dft {
  padding: 10px;
  outline: none;
  border: none;
  background: #d9534f;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.btn-dft:hover {
  background: #c9302c;
}

.btn-width {
  width: 100%;
}

.btn-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.btn-rounded {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #f167ac;
}

.btn-rounded:hover {
  background: #d71373;
}

.btn-puls {
  animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}</pre></body></html>