/* JR Memory Creation – Floating Help Box */
.jr-mhfb-box{
  position: fixed;
  right: 30px;
  bottom: 110px;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  z-index: 99999;
  overflow: hidden;
}

.jr-mhfb-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.jr-mhfb-title{ font-weight: 800; }

.jr-mhfb-close{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  line-height: 1;
  font-weight: 800;
}

.jr-mhfb-content{
  padding: 14px;
  font-size: 14px;
  line-height: 1.35;
}

.jr-mhfb-content p{ margin: 0 0 10px; }
.jr-mhfb-content p:last-child{ margin-bottom: 0; }
.jr-mhfb-content ul{ margin: 0 0 10px 18px; }
