
/*====Bootbox====*/
.bootbox-body h2 {
  padding:10px 5px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 15px;
}
.bootbox-body label {
  width: 100%;
  display: block;
  font-weight: bold;
}
.bootbox-body input {
  width: 100%;
  border:1px solid #000;
  height: 30px;
  margin-bottom: 10px;
  padding-left: 5px;
}
.bootbox-body input:last-child {
  margin-bottom: 0;
}
.bootbox .btn {
  margin-top: 0;
}
.bootbox .btn-default:hover {
  color: white;
}
.modal-header .close {
  position: relative;
  z-index: 10000 !important;
}
.modal-open .modal:not(.bootbox-alert) {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.modal:not(.bootbox-alert) {
  z-index: -1 !important;
}
.modal.in:not(.bootbox-alert) {
  z-index: 1050 !important;
}
.modal:not(.bootbox-alert) .modal-content {
  margin-top: -10%;
}
.bootbox-alert .modal-dialog {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  -o-transform: translate(-50%,-50%) !important;
  -ms-transform: translate(-50%,-50%) !important;
  -webkit-transform: translate(-50%,-50%) !important;
  -moz-transform: translate(-50%,-50%) !important;
  transform: translate(-50%,-50%) !important;
}
.bootbox .error {
  color: red;
}
/*====/Bootbox====*