/* history_css */
.history_modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  min-width: 400px;
  max-width: 600px;
  min-height: 300px;
  max-height: 300px;
  z-index: 10000;
  background: white;
  box-shadow: var(--box-shadow-default);
  border-radius: 13px;
  overflow: hidden;
}

.history_modal > .card-header {
  background-color: #d9d9d9;
  border-bottom: 1px solid #9d9d9d;
  padding: 0;
}
.history_modal .header_text {
  font-size: 23px;
  padding: 6px 0 4px 8px;
}
.history_modal .header_text .icon {
  padding: 0px 9px 0 0;
}
.history_modal .header_text .text {
}

.history_modal .card-body {
  overflow: auto;
}

.history_modal .content {
  max-height: calc(100% - 32px);
  padding: 0 6px;
}
