.qb-modal {
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding-top: 20px;
  position: relative;
}

.qb-modal-top-actions {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 12px 0 0;
}

.qb-modal-close {
  font-size: 1.6em;
  color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
  background: transparent;
}

.qb-modal-body {
  padding: 12px 20px;
}

.qb-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 98;
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
}