/**
 * hk_popup v2.1
 */

#hk_modal {
  width: 100%; height: 100%;
  position: fixed;
  overflow-y: auto;
  left: 0; top: 0;
  z-index: 99998;
  text-align: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
}
#hk_modal * {
  box-sizing: border-box;
}

#hk_popup {
  display: none;
  width: auto; height: auto;
  border: 1px solid #fff;
  border-radius: 5px;
  position: relative;
  margin: 0px auto 20px auto;
  background: #fff;
  box-shadow: 0 0 20px #000;
}

#hk_bar {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding-right: 40px;
  overflow: hidden;
  text-align: left;
  background: #fff;
}
#hk_popup_title {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  color: #555;
}
#hk_popup_close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 5px;
  top: 5px;
  background: #fff url("../img/close.png") 0 0 no-repeat;
  cursor: pointer;
  transition: background-position 0.2s;
}
#hk_popup_close:hover {
  background-position: 0 -32px;
}


#hk_popup_content {
  padding: 10px;
}


#hk_buttons {
  background: #fff;
}