#kickflip-customize-button {
  cursor: pointer;
}

.kickflip-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  container-type: size;
  --innerHeight: 1vh;
}

.kickflip-modal-exit {
  background: none;
  border: none;
  display: flex;
  border-radius: 4px;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
  padding: 12px;
  cursor: pointer;
  fill: white;
  width: auto;
}

.kickflip-modal-exit > svg {
  width: 16px !important;
  height: 16px !important;
}

#iframe-container {
  container-type: size;
}

kickflip-customizer-iframe {
  height: 100%;
  position: relative;
  display: block;
}

@media only screen and (orientation: landscape) {
  kickflip-customizer-iframe[height] {
    min-height: 496px !important;
  }
}

@container (height > 90vh) {
  kickflip-customizer-iframe {
    padding-top: 38px;
  }
}

.kickflip-overflow-hidden {
  overflow: hidden;
}

.kickflip-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 2147483647;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.kickflip-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.kickflip-editor-focus {
  outline: #ffb543 4px solid !important;
  outline-offset: -2px;
}

@media (max-width: 770px) {
  .kickflip-modal-exit {
    right: 16px;
    top: 16px;
    fill: black;
  }
}

@media (max-width: 999px) {
  .kickflip-modal {
    animation: drawer-open-mobile 0.4s ease-in-out !important;
    height: calc(100 * var(--innerHeight)) !important;
  }

  .kickflip-modal #iframe-container {
    width: 100% !important;
    height: 100% !important;
  }

  .kickflip-modal-exit {
    top: 0;
  }

  .kickflip-modal-exit > svg {
    width: 12px !important;
    height: 12px !important;
  }

  .kickflip-overflow-hidden {
    position: fixed;
  }
}

.kickflip-modal-exit:hover {
  background: rgb(0, 0, 0, 0.15);
}

.beacon {
  position: absolute;
  display: block !important;
  background-color: #ffb543;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  z-index: 99999999999;
  -webkit-animation: grow 0.4s 1 linear;
  animation: grow 0.4s 1 linear;
}

.beacon:hover {
  cursor: pointer;
}

.tooltip {
  background: white;
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999999;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.beacon:before {
  position: absolute;
  content: '';
  height: 12px;
  width: 12px;
  left: 0;
  top: 0;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #ffb543;
  -webkit-animation: active 2s infinite linear;
  animation: active 2s infinite linear;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(0.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes grow {
  0% {
    transform: scale(0.1);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes active {
  0% {
    -webkit-transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes active {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

