/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./assets/src/css/godam-for-woo-player.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * GoDAM for Woo — WooCommerce player frontend styles.
 *
 * Mini-cart, product hotspots, fullscreen return message, and notifications.
 */
/* Mini cart - Woo Layer */
.godam-mini-cart-hidden {
  display: none;
}
.godam-video--cart-basket {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: var(--wp--preset--color--base, var(--wp--preset--color--secondary, #fff));
  right: 100%;
  top: 3%;
  margin-left: 10px;
}
.godam-video--cart-basket .wc-block-mini-cart.wp-block-woocommerce-mini-cart {
  background: var(--wp--preset--color--primary, #000);
  border-radius: 50%;
}
.godam-video--cart-basket .wc-block-mini-cart__button {
  font-size: clamp(16px, 1rem + (1vw - 3.2px) * 0.227, 18px);
}
@media (max-width: 640px) {
  .godam-video--cart-basket {
    transform: translateX(6px);
    transform-origin: center;
  }
}
@media (max-width: 500px) {
  .godam-video--cart-basket {
    transform: scale(0.9) translateX(-10px);
    transform-origin: center;
  }
}
/* Fullscreen -- Mini Cart */
.video-js.vjs-fullscreen .godam-video--cart-basket .wc-block-mini-cart__button {
  height: 60px;
  font-size: inherit;
}
.video-js.vjs-fullscreen .godam-video--cart-basket .wc-block-mini-cart__icon {
  height: 40px;
  width: 50px;
}
.video-js.vjs-fullscreen .godam-video--cart-basket .wc-block-mini-cart__badge {
  font-size: 16px;
}
/* Full screen Message */
.godam-fs-return-msg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 999999999;
  text-align: center;
}
.godam-fs-return-msg .godam-return-fs-btn {
  margin-top: 8px;
  padding: 6px 12px;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
}
/* Product Hotspot Loading Spinner */
.godam-product-hotspot-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.godam-product-hotspot-spinner .spinner-svg {
  width: 26px;
  height: 30px;
  margin: 8px 0;
  animation: spinner-rotate 1s linear infinite;
}
.godam-product-hotspot-spinner .spinner-svg .spinner-circle {
  stroke: #7b7979;
  stroke-linecap: round;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  animation: spinner-dash 1.5s ease-in-out infinite;
}
/* Rotation */
@keyframes spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Dash animation (this makes it look like a loader, not a circle) */
@keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/* Product Hotspot */
.product-hotspot-box {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  background-color: rgb(255, 255, 255);
  color: #000;
  text-align: center;
  border-radius: 12px;
  z-index: 200;
  pointer-events: auto;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  word-wrap: break-word;
  min-width: 20em;
}
.product-hotspot-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgb(255, 255, 255) transparent transparent transparent;
}
@media (max-width: 768px) {
  .product-hotspot-box {
    width: 11em;
    font-size: 13px;
  }
}
.product-hotspot-woo-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 93%;
  max-width: 600px;
  border-radius: 12px;
  padding: 10px;
}
.product-hotspot-woo-display .product-hotspot-woo-name {
  color: #111;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-hotspot-woo-display .woocommerce-Price-amount {
  color: #8c8c8c;
}
.product-hotspot-woo-display {
  /* Remove 50% width split */
}
.product-hotspot-woo-display .product-hotspot-woo-image-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.product-hotspot-woo-display .product-hotspot-woo-image-wrapper .product-hotspot-woo-image {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.product-hotspot-woo-display .product-hotspot-woo-image-wrapper .product-hotspot-woo-image.product-hotspot-image-clickable:hover {
  transform: scale(1.05);
}
.product-hotspot-woo-display .product-hotspot-woo-details {
  flex: 1;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-width: 80px;
}
.product-hotspot-woo-display .product-hotspot-action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  line-height: 0.8;
  border: none;
  cursor: pointer;
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link:disabled {
  cursor: not-allowed;
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link {
  /* Loading state */
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link.loading {
  pointer-events: none;
  opacity: 0.7;
  /* Hide icon/text while loading */
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link.loading > * {
  visibility: hidden;
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: hotspot-spin 0.6s linear infinite;
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link .rotate-me-editor {
  transform: translateX(0px) translateY(0px) rotate(135deg);
}
.product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link .rotate-me {
  transform: translateX(-1px) translateY(1px) rotate(70deg);
  line-height: 1.5;
}
@keyframes hotspot-spin {
  to {
    transform: rotate(360deg);
  }
}
.product-hotspot-warning {
  font-size: 10px;
  color: #d63638;
  padding: 2px 6px;
  margin-bottom: 8px;
  text-align: center;
}
/* =========================
   Mobile Optimisation for Product Hotspot
========================= */
@media (max-width: 640px) {
  .product-hotspot-box {
    min-width: unset;
    width: max-content;
    max-width: 85vw;
    font-size: 12px;
    border-radius: 10px;
  }
  .product-hotspot-woo-display {
    padding: 6px 8px;
    gap: 6px;
  }
  .product-hotspot-woo-display .product-hotspot-woo-image-wrapper .product-hotspot-woo-image {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
  }
  .product-hotspot-woo-display .product-hotspot-woo-details {
    padding: 0 0.4rem;
    min-width: 60px;
  }
  .product-hotspot-woo-display .product-hotspot-woo-name {
    font-size: 12px;
    margin-bottom: 2px !important;
  }
  .product-hotspot-woo-display .woocommerce-Price-amount {
    font-size: 11px;
  }
  .product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .product-hotspot-woo-display .product-hotspot-action .product-hotspot-woo-link.loading::after {
    width: 12px;
    height: 12px;
  }
}
.godam-notification-area {
  pointer-events: none;
}
.mini-cart-product-message {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  opacity: 0; /* initial */
  pointer-events: auto;
}
.mini-cart-product-message.success {
  background-color: #28a745; /* green */
}
.mini-cart-product-message.error {
  background-color: #dc3545; /* red */
}
.fullscreen-layer .product-hotspot-box {
  font-size: 16px;
}
.product-hotspot-box:hover,
.hotspot:hover .product-hotspot-box {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: auto;
}
.product-hotspot-box a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgb(255, 255, 255) transparent;
}

/*# sourceMappingURL=godam-for-woo-player.css.map*/