<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css!
 */

body.modal-open, 
.modal-open .navbar-fixed-top, 
.modal-open .navbar-fixed-bottom {
  margin-right: 0;
}

.modal {
  left: 50% !important;
  bottom: auto;
  right: auto;
  z-index: 1050;
  padding: 0;
  width: 500px;
  margin-left: -250px;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  /*border-radius: 6px;*/
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal.container {
  max-width: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
/*hack quando tiver bootstrap modal e bootbox juntos */
@media screen and (min-width: 768px){
	.bootbox .modal-dialog {
	  width: 100% !important;
	  margin: 0px auto !important;
	  border: 0px solid transparent !important;
	}
}

@media (min-width: 768px){
	.bootbox .modal-dialog {
	  width: 100% !important;
	  margin: 0px auto !important;	  
	  border: 0px solid transparent !important;	  
	}
}
/*hack quando tiver bootstrap modal e bootbox juntos */
</pre></body></html>