#hmTb {
  position: fixed;
  background: #ffffff;
  z-index: 102;
  color:#000000;
  display:none;
  top:50%;
  left:50%;
  line-height: 1;
  border-radius: 4px;
}

.hm-tb-overlay {
  position: fixed;
  z-index:100;
  top: 0;
  left: 0;
  height:100%;
  width:100%;
  background-color:#000;
  opacity: 0.75;
}

.hm-tb-body{
  display: flex;
  flex-direction: column;
}

.hm-tb-header{
  flex-shrink: 0;
  border-bottom:1px solid #c0c0c0;
  padding: 16px 48px 16px 16px;
  position: relative;
}

.hm-tb-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

a#hmTbClose.hm-tb-close {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

a#hmTbClose.hm-tb-close .hm-tb-close-icon {
  font-size: 20px;
  color:#aaa;
}

a#hmTbClose.hm-tb-close:hover {
  background-color: #f0f0f0;
  text-decoration: none;
  border-radius: 4px;
}

a#hmTbClose.hm-tb-close:hover .hm-tb-close-icon {
  color:#717171;
}

.hm-tb-content {
  line-height: 1.5;
  overflow-y: auto;
  flex-grow: 1;
  overflow-wrap: break-word;
}

.hm-tb-content + .hm-tb-footer {
  border-top: 1px solid #c0c0c0;
}

.hm-tb-footer {
  flex-shrink: 0;
  padding: 16.5px 24px;
}

.hm-tb-button-frame {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.hm-tb-button-frame .hm-tb-btn {
  font-size: 13px;
  text-align: center;
  width: 83px;
  padding: 0;
  line-height: 22px;
}


