/* Popup Wrapper */
.floori-popup,
.floori-additional-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}

/* Popup Content */
.floori-popup-content,
.floori-additional-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px 0 0 0;
  width: 90%;
  height: 90%;
}

/* Popup Close Button */
.floori-popup-close,
.floori-additional-popup-close {
  position: absolute;
  top: 0;
  right: 4px;
  cursor: pointer;
  font-size: 32px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup Iframe */
.floori-popup-inner,
.floori-additional-popup-inner {
  width: 100%;
  height: 100%;
}
