/* Copyright Allied Pixel 2025 */
#alliedpixel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

#alliedpixel-overlay {
  display: none;
  position: fixed;
  z-index: 1000001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.75);
  box-sizing: border-box;
  pointer-events: auto;
}

#alliedpixel-modal {
  display: none;
  position: fixed;
  z-index: 1000002;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  pointer-events: auto;
  border: none;
}

#alliedpixel-modal-content {
  margin: 0 auto;
  width: 700px;
  height: 600px;
  max-height: 90vh;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  border: none;
}

@media screen and (width <=768px) {
  #alliedpixel-modal-content {
    width: 90vw;
    height: 75vh;
  }
}

#alliedpixel-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: black;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0px;
}

#alliedpixel-modal-close:hover,
#alliedpixel-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#alliedpixel-vertical-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #0a233f;
  color: white;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-family: Arial, sans-serif;
  z-index: 1000000;
}

#alliedpixel-iframe {
  border: none;
  width: 100%;
  height: 100%;
}
