#playmerce-iframe {
  width: 98%;
  height: 99%;
  border: none;
  overflow: hidden;
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 5px);
  z-index: 9999;
  background: transparent;
  display: none;
  max-height: 80px;
  transition-property: height, max-height;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

#playmerce-iframe.active {
  display: block;
}

#playmerce-iframe.expanded {
  max-height: 100%;
}

#playmerce-dimmer {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0);
  opacity: 0;
  z-index: 9998;
  transition:
    visibility 0.5s,
    opacity 0.5s linear;
  pointer-events: auto;
  touch-action: none;
}

#playmerce-dimmer.active {
  visibility: visible;
  opacity: 0.6;
  transition:
    visibility 0.5s,
    opacity 0.5s linear;
}

@media screen and (min-width: 800px) {
  #playmerce-iframe {
    max-height: 80px;
    max-width: 450px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  #playmerce-iframe.expanded {
    max-height: 80%;
  }
}
