.checkout-payment-iframe-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1000;
  background-color: white;

  iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white;
  }

  .close-button {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }
}

.checkout-payment-redirection-iframe-wrapper {
  width: 100%;
  position: relative;

  iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white;
  }

  .close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }
}

.container-droppable {
  outline: 2px dashed #4482ff !important;
  outline-offset: -2px;
  background-color: rgba(96, 165, 250, 0.1) !important;
}

.container-dragover {
  background-color: rgba(59, 130, 246, 0.1);
}

.container-dragover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #4482ff;
  pointer-events: none;
}

.dragging * {
  cursor: default !important;
}

.dragging [data-component='true'] {
  cursor: grabbing !important;
}

.dragging .drop-target {
  cursor: grab !important;
  outline: 2px dashed #4482ff !important;
  outline-offset: -2px;
}

.dragging .no-drop-target {
  cursor: no-drop !important;
  outline: 2px dashed #e63946 !important;
  outline-offset: -2px;
}

[data-component='true'] {
  cursor: pointer;
}

.carousel-container {
  li[aria-hidden='false'] {
    div {
      display: block;
    }
  }
}

.posts-slider-carousel {
  width: 100%;

  .react-multi-carousel-track {
    align-items: stretch;
  }
}

.posts-slider-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.posts-slider-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.posts-slider-dots li.react-multi-carousel-dot--active button {
  background: rgba(0, 0, 0, 0.6);
}
