div.block-annotated-product {
  position: relative;
  overflow: hidden;
}
div.block-annotated-product * {
  box-sizing: border-box;
}
div.block-annotated-product img {
  width: 100%;
  height: 100%;
}
div.block-annotated-product .point {
  position: absolute;
  background-color: white;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  box-shadow: 0px 0px 4.389px 0px rgba(0, 0, 0, 0.08), 0px 4.389px 6.583px -4.389px rgba(9, 9, 11, 0.04), 0px 10.972px 16.458px -3.292px rgba(9, 9, 11, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  div.block-annotated-product .point {
    transform: scale(0.6);
  }
}
div.block-annotated-product .point.active {
  background-color: var(--wp--preset--color--dark);
}
div.block-annotated-product .point.active:after {
  filter: invert(0);
  transform: rotate(45deg);
}
div.block-annotated-product .popins {
  position: fixed;
  background-color: rgba(0, 0, 0, 0);
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  padding: var(--wp--preset--spacing--xl);
  pointer-events: none;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  div.block-annotated-product .popins {
    padding-bottom: var(--wp--preset--spacing--s);
  }
}
div.block-annotated-product .popins .close {
  position: absolute;
  right: 460px;
  cursor: pointer;
  opacity: 0;
  background-color: var(--wp--preset--color--dark);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  div.block-annotated-product .popins .close {
    right: 5vw;
    top: 7vh;
    transform: scale(1) translate(10px, -10px);
    z-index: 10;
  }
}
div.block-annotated-product .popins .close:after {
  filter: invert(0);
  transform: rotate(45deg);
}
div.block-annotated-product .popins:has(.popin.active) {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.4);
}
div.block-annotated-product .popins:has(.popin.active) .close {
  opacity: 1;
}
div.block-annotated-product .popins .popin {
  background-color: white;
  border-radius: 20px;
  padding: 28px;
  height: 90%;
  width: 420px;
  max-width: 100%;
  position: absolute;
  pointer-events: all;
  top: var(--wp--preset--spacing--xl);
  right: var(--wp--preset--spacing--xl);
  transition: right 0.3s;
}
@media screen and (max-width: 768px) {
  div.block-annotated-product .popins .popin {
    right: 5vw;
    width: 90vw;
    bottom: 0px;
    top: 7vh;
  }
}
div.block-annotated-product .popins .popin:not(.active) {
  right: -500vw;
}
div.block-annotated-product .popins .popin img {
  border-radius: 8px;
}
div.block-annotated-product .popins .popin .title {
  font-family: var(--wp--preset--font-family--title);
  font-size: 36px;
  font-weight: 300;
  line-height: 32px;
  margin-top: 29px;
  color: var(--wp--preset--color--dark);
}
div.block-annotated-product .popins .popin .controls {
  display: flex;
  box-sizing: border-box;
  right: var(--wp--preset--spacing--xl);
  bottom: var(--wp--preset--spacing--xl);
  gap: 10px;
  position: absolute;
}
div.block-annotated-product .popins .popin .controls .control {
  width: 54px;
  height: 54px;
  background-color: var(--wp--preset--color--dark);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
div.block-annotated-product .popins .popin .controls .control.prev {
  transform: rotate(180deg);
}
div.block-annotated-product .popins .popin .controls .control.disabled {
  background-color: #CCCFD3;
  pointer-events: none;
}