/* Target elements */
.target-click {
  cursor: pointer;
  /*user-select: none;
  text-decoration: underline; */
  width: max-content;
  font-size: 90%;
}
.target-click:hover {
  color: var(--v-red);
/*  text-decoration: underline; */
}
/* ---------------------------------------------------------------------------------------------- */
.jBox-Modal {
  border: 1px solid #999;
  border-radius: 6px;
  background-color: #f7f7f7;

  position: absolute;
  top: 100px;
  left: 10px;
  box-shadow: 3px 3px 3px var(--box-border);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4), 0 0 3px rgba(0, 0, 0, 0.4);
}
.jBox-content {
  padding: 8px 12px;
  overflow-x: hidden;
  overflow-y: auto;
}
.jBox-Modal .jBox-container, .jBox-Modal.jBox-closeButton-box:before {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.4);
}
.jBox-Modal .jBox-content {
  padding: 10px 1rem;
  font-size: 1rem;
  border-radius: 5px ;
}
.jBox-Modal .jBox-title {   /* popup title */
  padding: 15px 1rem;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  border-radius: 5px 5px 0 0;

  background-color: var(--v-blue);
  color: #f7f7f7;
  text-align: center;

  position: relative;
  word-break: break-word;
  box-sizing: border-box;
  line-height: 0.5rem;
  font-size: .9rem;
}
.jBox-closeButton {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
}
.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}
.jBox-closeButton path {
  fill: black;
  transition: fill .2s;
}
.jBox-closeButton:hover path {
  fill: black;
}
.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}
.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
}
.jBox-closeButton-title svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}
.jBox-closeButton-box {
  box-sizing: border-box;
}
.jBox-closeButton-box .jBox-closeButton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #f7f7f7;
  border-radius: 50%;
}
.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}
.jBox-closeButton-box:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.jBox-draggable {
  cursor: move;
}
