#PPButtonsContainer,
#pp_main_btn_sec {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.pp__button__skeleton {
  height: 40px;
  border-radius: 4px;
  background-color: #e2e8f0;
  animation: opacity-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pp__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp__divider__line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cbd5e1;
}

.pp__divider__text {
  background: #f9f9f9;
  color: var(--bs-primary);
  padding: 4px 12px;
  z-index: 10;
  font-weight: 600;
  font-size: 14px;
}

#pp_main_btn_sec .button {
  margin: 0 !important;
}

.pp__preview {
  display: flex;
  flex-direction: column;
  column-gap: 8px;
  width: 100%;
}

.pp__preview .pp__preview__carousel {
  display: flex;
  width: 100%;
  align-items: center;
  background: #f1f0ef;
  border-radius: 8px;
  padding: 24px;
  gap: 24px;
  overflow-x: auto;
}

.pp__preview__carousel img {
  object-fit: contain;
  width: auto;
  height: 300px !important;
}

.pp__preview__carousel img:first-child {
  margin-left: auto;
}

.pp__preview__carousel img:last-child {
  margin-right: auto;
}

@keyframes opacity-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* WCK Product Form */
form.cart {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
}

form.cart table.variations {
  order: -1;
}

form.cart>:empty {
  display: none !important;
}