.popup-box {
  display: none;
}

.popup-box-control {
  cursor: pointer;
}

.popup-box-control:focus-visible {
  outline: 2px solid #b27301;
  outline-offset: 2px;
}

.popup-box.popup-box-floating {
  display: none;
  position: fixed;
  right: auto;
  bottom: auto;
  width: 220px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  margin: 0;
  padding: 10px;
  overflow: auto;
  box-sizing: border-box;
  transform: none;
  border: 1px solid #b27301;
  border-radius: 2px;
  background: orange;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: left;
  z-index: 10000;
}

.popup-box.popup-box-floating.popup-box-visible {
  display: block;
}

@media (pointer: coarse) {
  .popup-box.popup-box-floating {
    width: 280px;
    padding: 14px;
    font-size: 16px;
    line-height: 1.4;
  }
}
