<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1010;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  background-color: #FAFAFA;
  border-radius: 4px;
  margin-top: 30px;
  z-index: 1050;
}
@media (min-width: 768px) {
  .modal {
    width: 85%;
  }
}
@media (max-width: 400px) {
  .modal {
  
  position: absolute!important;
  
}
}
@media (min-width: 992px) {
  .modal {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .modal {
    width: 75%;
    max-width: 1000px;
  }
}
.modal .modal-header:after,
.modal .modal-content:after,
.modal .modal-footer:after {
  display: table;
  content: " ";
  clear: both;
}
.modal .modal-header:before,
.modal .modal-content:before,
.modal .modal-footer:before {
  display: table;
  content: " ";
}
.modal .modal-header,
.modal .modal-content,
.modal .modal-footer {
  /*padding: 15px;*/
}
.modal :last-child {
  margin-bottom: 0;
}
.modal .modal-header {
  border-bottom: 1px solid #DDD;
  border-radius: 4px 4px 0 0;
}
.modal .modal-footer {
  border-top: 1px solid #DDD;
  border-radius: 0 0 4px 4px;
}</pre></body></html>