/* photo-book.css?file=../ui/components/Loader/FetchingHorizontalLoader/FetchingHorizontalLoader.styl */
.photo_book_loader {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 8px;
  padding: 0;
  text-align: center;
}
.photo_book_loader:before,
.photo_book_loader:after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color_main);
  transform: scale(.75);
  opacity: .5;
  content: "";
}
.photo_book_loader.photo_book___light3:before,
.photo_book_loader.photo_book___light3:after {
  background: var(--color_white);
}
.photo_book_loader.photo_book___small {
  width: 16px;
  height: 4px;
}
.photo_book_loader.photo_book___small:before,
.photo_book_loader.photo_book___small:after {
  width: 4px;
  height: 4px;
  background: var(--color_secondary);
}
.photo_book_loader.photo_book___small:before {
  margin: -4px 0 0 -10px;
}
.photo_book_loader.photo_book___small:after {
  margin: -4px -6px 0 0;
}
.photo_book_loader:before {
  left: 50%;
  margin: -4px 0 0 -15px;
  animation: photo_book_show .9s 0s infinite linear;
}
.photo_book_loader:after {
  right: 50%;
  margin: -4px -15px 0 0;
  animation: photo_book_show .9s .3s infinite linear;
}
.photo_book_loader .photo_book_item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--color_main);
  transform: scale(.75);
  opacity: .5;
  animation: photo_book_show .9s .15s infinite linear;
}
.photo_book_loader .photo_book_item.photo_book___small {
  width: 4px;
  height: 4px;
  background: var(--color_secondary);
}
.photo_book_loader .photo_book_item.photo_book___light3 {
  background: var(--color_white);
}
@keyframes photo_book_show {
  0% {
    transform: scale(.75);
    opacity: .5;
  }
  25% {
    transform: scale(.75);
    opacity: .5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(.75);
    opacity: .5;
  }
}

/* photo-book.css?file=../ui/components/Spin/Spin.styl */
.photo_book_spin {
  display: inline-block;
}
.photo_book_spin.photo_book___center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.photo_book_spin.photo_book___absolute {
  position: absolute;
}
.photo_book_spin.photo_book___fixed2 {
  position: fixed;
}
.photo_book_spin.photo_book___absolute,
.photo_book_spin.photo_book___fixed2 {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.photo_book_spin-container.photo_book___with-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.photo_book_spin-icon-wrapper {
  line-height: 0;
}
.photo_book_spin-icon-wrapper.photo_book___default {
  width: 32px;
  height: 32px;
}
.photo_book_spin-icon-wrapper.photo_book___small2 {
  width: 16px;
  height: 16px;
}
.photo_book_spin-label {
  margin-top: 16px;
  font-size: var(--fs-l);
  line-height: 21px;
  color: var(--color_secondary);
}
.photo_book_spin-icon svg {
  animation: photo_book_rotate 3.5s linear infinite;
}
.photo_book_spin-icon svg circle {
  stroke: var(--color_orange);
  animation: photo_book_arcs 3.9s cubic-bezier(.82, .1, .48, 1) infinite;
}
@media (prefers-color-scheme: dark) {
  :root.__ui-theme_enabled:not(.__ui-theme_light) .photo_book_spin-icon svg circle {
    stroke: var(--color_white);
  }
}
:root.__ui-theme_enabled.__ui-theme_dark .photo_book_spin-icon svg circle,
:root.ds-colors.dark-theme .photo_book_spin-icon svg circle {
  stroke: var(--color_white);
}
@keyframes photo_book_rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes photo_book_arcs {
  0% {
    stroke-dashoffset: 87.9646;
  }
  12.5% {
    stroke-dashoffset: 65.97345;
  }
  25% {
    stroke-dashoffset: 43.9823;
  }
  37.5% {
    stroke-dashoffset: 21.99115;
  }
  50% {
    stroke-dashoffset: 0;
  }
  62.5% {
    stroke-dashoffset: -21.99115;
  }
  75% {
    stroke-dashoffset: -43.9823;
  }
  87.5% {
    stroke-dashoffset: -65.97345;
  }
  to {
    stroke-dashoffset: -87.9646;
  }
}

/* photo-book.css?file=../ui/components/Spinner/Spinner.styl */
.photo_book_spinner {
  position: relative;
  display: inline-block;
  color: var(--color_white);
  vertical-align: middle;
}
.photo_book_spinner.photo_book___size-16 {
  width: 16px;
  height: 16px;
}
.photo_book_spinner.photo_book___size-20 {
  width: 20px;
  height: 20px;
}
.photo_book_spinner.photo_book___size-40 {
  width: 40px;
  height: 40px;
}
.photo_book_spinner.photo_book___size-48 {
  width: 48px;
  height: 48px;
}
.photo_book_spinner.photo_book___view-secondary2 {
  color: var(--color_secondary);
}
.photo_book_spinner.photo_book___light4 {
  color: var(--color_orange);
}
.photo_book_spinner.photo_book___outline2,
.photo_book_spinner.photo_book___clean2 {
  color: var(--color_secondary);
}
.photo_book_spinner:before,
.photo_book_spinner:after,
.photo_book_el:before,
.photo_book_el:after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: photo_book_spinner 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
  content: "";
}
.photo_book_spinner.photo_book___size-48:before,
.photo_book_spinner.photo_book___size-48:after,
.photo_book_spinner.photo_book___size-48 .photo_book_el:before,
.photo_book_spinner.photo_book___size-48 .photo_book_el:after {
  border-width: 4px;
}
.photo_book_spinner:after {
  animation-delay: -.45s;
}
.photo_book_el:before {
  animation-delay: -.3s;
}
.photo_book_el:after {
  animation-delay: -.15s;
}
@keyframes photo_book_spinner {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* photo-book.css?file=../ui/components/Button/ButtonCore.styl */
.photo_book_button-core {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  overflow: visible;
  color: var(--color_white);
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-color: var(--color_orange_new);
  outline: none;
  transition: box-shadow .1s ease-in, background-color .1s ease-in;
  user-select: none;
}
.photo_book_button-core.photo_book___size-l {
  height: 40px;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: var(--fs-l);
  line-height: var(--lh-n);
}
.photo_book_button-core.photo_book___size-m {
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: var(--fs-n);
  line-height: 32px;
}
.photo_book_button-core.photo_book___size-s {
  height: 24px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: var(--fs-s);
  line-height: 24px;
}
.photo_book_button-core.photo_book___wide {
  width: 100%;
}
.photo_book_button-core.photo_book___circle {
  min-width: 0;
  padding: 0;
}
.photo_book_button-core.photo_book___circle.photo_book___size-m {
  width: 32px;
}
.photo_book_button-core.photo_book___circle.photo_book___size-s {
  width: 24px;
}
.photo_book_button-core.photo_book___view-secondary {
  color: var(--color_secondary);
  background-color: var(--color_main-008);
}
.photo_book_button-core.photo_book___view-secondary.photo_book___high_contrast {
  color: var(--color_main);
}
.photo_book_button-core.photo_book___light {
  color: var(--color_orange_new);
  background-color: var(--color_orange-light);
}
.photo_book_button-core.photo_book___white {
  color: #333;
  background-color: var(--color_white);
}
.photo_book_button-core.photo_book___white-secondary {
  color: var(--color_white);
  background-color: var(--color_white-008);
}
.photo_book_button-core.photo_book___eye-catching {
  background-color: #87189d;
}
.photo_book_button-core.photo_book___view_accent {
  color: var(--color_white);
  background-color: #1abaff;
}
.photo_book_button-core.photo_book___dark {
  color: var(--color_white);
  background-color: #0009;
}
.photo_book_button-core.photo_book___outline {
  color: var(--color_secondary);
  background-color: var(--color_surface);
  box-shadow: inset 0 0 0 1px var(--color_gray-stub);
}
.photo_book_button-core.photo_book___clean {
  color: var(--color_secondary);
  background-color: transparent;
}
.photo_book_button-core.photo_book___no-radius {
  border-radius: 0;
}
.photo_book_button-core.photo_book___radius-8 {
  border-radius: 8px;
}
.photo_book_button-core.photo_book___radius-16 {
  border-radius: 16px;
}
.photo_book_button-core.photo_book___radius-40 {
  border-radius: 40px;
}
.photo_book_button-core.photo_book___center-align {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.photo_book_content2 {
  display: block;
}
.photo_book_content2.photo_book___center-align {
  display: flex;
  align-items: center;
}
.photo_book_spinner2 {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.photo_book_button-core.photo_book___loading .photo_book_content2 {
  z-index: -1;
  opacity: 0;
}
.photo_book_button-core.photo_book___loading .photo_book_spinner2 {
  display: flex;
}
.photo_book_button-core-container:hover.photo_book_button-core,
.photo_book_button-core-container:focus.photo_book_button-core,
.photo_book_button-core-container:active.photo_book_button-core,
.photo_book_button-core-container.photo_book___active.photo_book_button-core,
.photo_book_button-core-container:hover .photo_book_button-core,
.photo_book_button-core-container:focus .photo_book_button-core,
.photo_book_button-core-container:active .photo_book_button-core,
.photo_book_button-core-container.photo_book___active .photo_book_button-core {
  color: var(--color_white);
  text-decoration: none;
  background-color: var(--color_orange_hover);
  box-shadow: 0 0 0 1px var(--color_orange_hover);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___view-secondary,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___view-secondary,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___view-secondary,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___view-secondary {
  color: var(--dynamic-text-and-icons-base-primary);
  background-color: var(--color_main-012);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_main-012);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___view-secondary.photo_book___high_contrast,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___view-secondary.photo_book___high_contrast,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___view-secondary.photo_book___high_contrast,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___view-secondary.photo_book___high_contrast {
  color: var(--color_main);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___light,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___light,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___light,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___light {
  color: var(--color_orange_new);
  background-color: var(--color_orange-light_hover);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_orange-light_hover);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___white,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___white,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___white,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___white {
  color: #333;
  background-color: var(--color_white);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_main-012);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___white-secondary,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___white-secondary,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___white-secondary,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___white-secondary {
  color: var(--color_white);
  background-color: var(--color_white-012);
  outline: none;
  box-shadow: 0 0 0 1px var(--color_white-012);
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___outline,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___outline,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___outline,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___outline {
  color: var(--color_secondary);
  background-color: var(--color_on-surface);
  outline: none;
  box-shadow: 0 0 0 1px #0000001f;
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___clean,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___clean,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___clean,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___clean {
  color: var(--color_secondary);
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___eye-catching,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___eye-catching,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___eye-catching,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___eye-catching {
  background-color: #6b0380;
  box-shadow: 0 0 0 1px #6b0380;
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___view_accent,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___view_accent,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___view_accent,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___view_accent {
  background-color: #1abaff;
  box-shadow: 0 0 0 1px #1abaff;
}
.photo_book_button-core-container:hover .photo_book_button-core.photo_book___dark,
.photo_book_button-core-container:focus .photo_book_button-core.photo_book___dark,
.photo_book_button-core-container:active .photo_book_button-core.photo_book___dark,
.photo_book_button-core-container.photo_book___active .photo_book_button-core.photo_book___dark {
  background-color: #000c;
  box-shadow: 0 0 0 1px #000c;
}
.photo_book_button-core-container:disabled.photo_book_button-core,
.photo_book_button-core-container:disabled .photo_book_button-core {
  background-color: var(--color_orange_new);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___view-secondary {
  background-color: var(--color_main-008);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___light {
  background-color: var(--color_orange-light);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___white {
  background-color: var(--color_white);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___white-secondary {
  background-color: var(--color_white-008);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___outline {
  background-color: var(--color_surface);
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___clean {
  background-color: transparent;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___eye-catching {
  background-color: #87189d;
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___view_accent {
  background-color: #1abaff;
  box-shadow: none;
}
.photo_book_button-core-container:disabled .photo_book_button-core.photo_book___dark {
  background-color: #0009;
  box-shadow: none;
}
.photo_book_button-core-container:hover .photo_book_button-core,
.photo_book_button-core-container:active .photo_book_button-core {
  outline: none;
}

/* photo-book.css?file=../ui/components/Button/Button.styl */
.photo_book_button {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  text-decoration: none;
  text-align: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.photo_book_button:focus-visible {
  outline: var(--focus-outline);
}
.photo_book_button:hover,
.photo_book_button:active {
  outline: none;
}
.photo_book_button.photo_book___wide2 {
  width: 100%;
}
.photo_book_button.photo_book___disabled {
  cursor: default;
  opacity: .5;
}
.photo_book_button.photo_book___no-animation {
  transition: none;
}

/* photo-book.css?file=../ui/components/Button/MenuButton.styl */
.photo_book_menu-button {
  position: relative;
  display: inline-block;
  font-size: 0;
}
.photo_book_menu-box {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 8px 0 0;
  transform: translate(-50%);
}
.photo_book_menu-box.photo_book___hidden {
  display: none;
}

/* photo-book.css?file=../ui/components/Button/ButtonClean.styl */
.photo_book_button-clean {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  text-decoration: none;
  text-align: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.photo_book_button-clean:focus-visible {
  outline: var(--focus-outline);
}

/* photo-book.css?file=../ui/components/Icon/Icon.styl */
.photo_book_icon {
  display: inline-block;
}
.photo_book_icon > svg {
  display: block;
}
.photo_book_icon.photo_book___is-flipped {
  transform: scaleX(-1);
}
.photo_book_icon.photo_book___margin-right {
  margin-right: 4px;
}
.photo_book_icon.photo_book___margin-left {
  margin-left: 4px;
}
.photo_book_icon.photo_book___size-8 {
  width: 8px;
  height: 8px;
}
.photo_book_icon.photo_book___size-10 {
  width: 10px;
  height: 10px;
}
.photo_book_icon.photo_book___size-12 {
  width: 12px;
  height: 12px;
}
.photo_book_icon.photo_book___size-162 {
  width: 16px;
  height: 16px;
}
.photo_book_icon.photo_book___size-18 {
  width: 18px;
  height: 18px;
}
.photo_book_icon.photo_book___size-202 {
  width: 20px;
  height: 20px;
}
.photo_book_icon.photo_book___size-24 {
  width: 24px;
  height: 24px;
}
.photo_book_icon.photo_book___size-26 {
  width: 26px;
  height: 26px;
}
.photo_book_icon.photo_book___size-28 {
  width: 28px;
  height: 28px;
}
.photo_book_icon.photo_book___size-32 {
  width: 32px;
  height: 32px;
}
.photo_book_icon.photo_book___size-36 {
  width: 36px;
  height: 36px;
}
.photo_book_icon.photo_book___size-402 {
  width: 40px;
  height: 40px;
}
.photo_book_icon.photo_book___size-44 {
  width: 44px;
  height: 44px;
}
.photo_book_icon.photo_book___size-482 {
  width: 48px;
  height: 48px;
}
.photo_book_icon.photo_book___size-54 {
  width: 54px;
  height: 54px;
}
.photo_book_icon.photo_book___size-56 {
  width: 56px;
  height: 56px;
}
.photo_book_icon.photo_book___size-60 {
  width: 60px;
  height: 60px;
}
.photo_book_icon.photo_book___size-64 {
  width: 64px;
  height: 64px;
}
.photo_book_icon.photo_book___size-80 {
  width: 80px;
  height: 80px;
}
.photo_book_icon.photo_book___size-96 {
  width: 96px;
  height: 96px;
}
.photo_book_icon.photo_book___size-100 {
  width: 100px;
  height: 100px;
}
.photo_book_icon.photo_book___size-120 {
  width: 120px;
  height: 120px;
}
.photo_book_icon.photo_book___size-128 {
  width: 128px;
  height: 128px;
}
.photo_book_icon.photo_book___size-132 {
  width: 132px;
  height: 132px;
}
.photo_book_icon.photo_book___size-144 {
  width: 144px;
  height: 144px;
}
.photo_book_icon.photo_book___size-152 {
  width: 152px;
  height: 152px;
}
.photo_book_icon.photo_book___size-160 {
  width: 160px;
  height: 160px;
}
.photo_book_icon.photo_book___size-176 {
  width: 176px;
  height: 176px;
}
.photo_book_icon.photo_book___size-208 {
  width: 208px;
  height: 208px;
}
.photo_book_icon.photo_book___size-240 {
  width: 240px;
  height: 240px;
}
.photo_book_icon.photo_book___size-288 {
  width: 288px;
  height: 288px;
}
.photo_book_icon.photo_book___size-full {
  width: 100%;
  height: 100%;
}
.svg-fill {
  fill: currentColor;
}
.svg-stroke {
  stroke: currentColor;
}

/* photo-book.css?file=../ui/components/Link/Link.styl */
.photo_book_link {
  text-decoration: none;
}
.photo_book_link:hover {
  text-decoration: underline;
}
.photo_book_link.photo_book___primary {
  color: var(--color_main);
}
.photo_book_link.photo_book___secondary {
  color: var(--color_secondary);
}
.photo_book_link.photo_book___active3 {
  color: var(--color_orange);
}
.photo_book_link.photo_book___black {
  color: var(--color_main);
}
.photo_book_link.photo_book___white2 {
  color: var(--color_white);
}
.photo_book_link.photo_book___orange {
  color: var(--color_orange);
  text-decoration: none;
}
.photo_book_link.photo_book___orange:hover {
  color: var(--color_action_active_new);
}
.photo_book_link.photo_book___none {
  text-decoration: none;
  cursor: auto;
}
.photo_book_link.photo_book___none:hover {
  color: inherit;
  text-decoration: none;
}
.photo_book_link.photo_book___no-text-decor,
.photo_book_link.photo_book___no-text-decor:hover {
  text-decoration: none;
}

/* photo-book.css?file=../ui/components/Popover/Popover.styl */
.photo_book_popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3200;
  display: none;
}
.photo_book_popover.photo_book_fixed {
  position: fixed;
}
.photo_book_shadow {
  border-radius: 16px;
  background-color: var(--color_surface);
  box-shadow: var(--box-shadow_sc-menu);
}
.photo_book_border {
  border: 1px solid var(--color_main-008);
}
.photo_book_visible {
  visibility: visible;
}
.photo_book_visible.photo_book_animated {
  opacity: 1;
}
.photo_book_animated {
  opacity: 0;
  transition: opacity .15s;
}
.photo_book_display {
  display: block;
}

/* photo-book.css?file=../ui/components/HoverableContent/HoverableContent.styl */
.photo_book_content3 {
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
}
.photo_book_row.photo_book_row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px;
  border-radius: 12px;
  color: var(--color_secondary);
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: background-color .2s ease;
}
.photo_book_row.photo_book_row:focus-visible {
  outline: 0;
  background-color: var(--color_on-surface);
}
@media (hover: hover) and (pointer: fine), (any-hover: hover) and (any-pointer: fine) {
  .photo_book_row.photo_book_row:hover {
    background-color: var(--color_on-surface);
  }
}
.photo_book_row-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.photo_book_row-label {
  flex: 1 1 0;
}
.photo_book_arrow2 {
  margin-left: 12px;
  color: var(--color_secondary);
}
.photo_book_content3.photo_book___double-bottom-boundary .photo_book_row:last-child {
  padding-bottom: 16px;
}
.photo_book_disabled {
  cursor: default;
  opacity: .5;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine), (any-hover: hover) and (any-pointer: fine) {
  .photo_book_disabled:hover {
    background-color: transparent;
  }
}

/* photo-book.css?file=../ui/components/ImageUpload/ImageUploadInput.styl */
.photo_book_image-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.photo_book_image-upload-input::file-selector-button {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

/* photo-book.css?file=../ui/components/ImageUpload/ImageUploadBox.styl */
.photo_book_image-upload-box {
  position: relative;
}

/* photo-book.css?file=../ui/components/Loader/LineShimmer/LineShimmer.styl */
.photo_book_line-shimmer {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--color_on-surface);
}
.photo_book_line-shimmer.photo_book___border {
  border: 10px solid var(--color_white);
}
.photo_book_line-shimmer.photo_book___relative-pos {
  position: relative;
  width: 100%;
  height: 100%;
}
.photo_book_line-shimmer.photo_book___shadow {
  box-shadow: var(--box-shadow_line-shimmer);
}
.photo_book_line {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--color_white-00) 0%,
      var(--color_white) 50.59%,
      var(--color_white-00) 100%);
  animation: photo_book_move 2s infinite ease-out;
}
@keyframes photo_book_move {
  0% {
    left: -30%;
  }
  40% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

/* photo-book.css?file=../ui/components/Image/Image.styl */
.photo_book_image2 {
  display: inline-block;
}

/* photo-book.css?file=../ui/components/ModalOutScroll/ModalOutScroll.styl */
.photo_book_modal-out-scroll-wrapper {
  position: fixed;
  inset: 0;
  z-index: 3200;
  overflow-x: auto;
}
.photo_book_modal-out-scroll-wrapper.photo_book___showScroll {
  overflow-y: auto;
  background: var(--color_black-08);
}
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-overlay,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-overlay {
  background: #0000008f;
}
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-body,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-body,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_bottom-control-box,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_bottom-control-box {
  width: 100%;
  max-width: 640px;
  box-sizing: border-box;
}
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-body,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-body {
  padding: 32px;
  border-radius: 20px;
}
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-over-body,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-over-body {
  min-height: 44px;
}
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_close-control,
.photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_close-control {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-wrapper-body,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-wrapper-body {
    flex-direction: column-reverse;
    align-items: end;
    margin-top: auto;
    max-width: 640px;
  }
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-body,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-body {
    min-width: 0;
    padding: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-over-body,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-over-body {
    min-height: 68px;
  }
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_close-control,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_close-control {
    margin-top: -56px;
    margin-left: -56px;
  }
}
@media (max-width: 640px) {
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_modal-out-scroll-wrapper-body,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_modal-out-scroll-wrapper-body {
    position: relative;
    flex-direction: row;
  }
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-dynamic-type .photo_book_close-control,
  .photo_book_modal-out-scroll-wrapper.photo_book___is-adaptive-two-static-type .photo_book_close-control {
    position: absolute;
    top: 0;
  }
}
.photo_book_modal-out-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.photo_book_modal-out-scroll-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color_black-08);
}
.photo_book_modal-out-scroll-overlay.photo_book___opacity {
  opacity: 0;
}
.photo_book_modal-out-scroll-over-body {
  min-width: 100%;
  min-height: 20px;
}
.photo_book_modal-out-scroll-wrapper-body {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}
.photo_book_modal-out-scroll-body {
  position: relative;
  width: 700px;
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--color_surface);
}
.photo_book_close-control {
  margin: 0;
  border: 0;
  text-decoration: none;
  background: 0 0;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.photo_book_close-control .photo_book_close-icon {
  padding: 4px;
  color: var(--color_white-06);
}
.photo_book_close-control .photo_book_close-icon:hover {
  color: var(--color_white);
}
.photo_book_close-control.photo_book___flying {
  position: fixed;
}
.photo_book_close-control:focus-visible {
  outline: var(--focus-outline);
  border-radius: var(--border-radius);
}
.photo_book_bottom-control-box {
  position: fixed;
  width: 700px;
}
.photo_book_bottom-control-box {
  bottom: 0;
}

/* photo-book.css?file=../ui/components/Button/ButtonWithIcon.styl */
.photo_book_left-icon.photo_book_s {
  margin-right: 4px;
}
.photo_book_left-icon.photo_book_m {
  margin-right: 8px;
}
.photo_book_left-icon.photo_book_l {
  margin-right: 12px;
}
.photo_book_right-icon.photo_book_s {
  margin-left: 4px;
}
.photo_book_right-icon.photo_book_m {
  margin-left: 8px;
}
.photo_book_right-icon.photo_book_l {
  margin-left: 12px;
}
.photo_book_left-icon.photo_book___no-margin,
.photo_book_right-icon.photo_book___no-margin {
  margin: 0;
}

/* photo-book.css?file=../ui/components/Book/Book.styl */
.photo_book_book {
  display: flex;
  width: 100%;
  height: 100%;
}
.photo_book_book.photo_book___open {
  transform: translate(50%);
}
.photo_book_box2 {
  display: flex;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}
.photo_book_sheet {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  transform: rotateY(0);
  transform-origin: 0 0;
  transform-style: preserve-3d;
}
.photo_book_sheet.photo_book___active2:not(.photo_book___back) {
  z-index: 3;
}
.photo_book_sheet.photo_book___active2 + .photo_book_sheet {
  z-index: 2;
}
.photo_book_sheet.photo_book___active2 + .photo_book_sheet + .photo_book_sheet {
  z-index: 1;
}
.photo_book_sheet.photo_book___active2:first-child {
  transform-style: flat;
}
.photo_book_sheet.photo_book___animated {
  transition: transform 1s cubic-bezier(.645, .045, .355, 1);
}
.ie .photo_book_sheet.photo_book___animated,
.photo_book_sheet.photo_book___fixed {
  transition: none;
}
.photo_book_sheet.photo_book___fixed {
  pointer-events: none;
}
.photo_book_sheet.photo_book___open {
  transform: rotateY(-180deg);
}
.photo_book_sheet.photo_book___fixed.photo_book___open {
  transform-style: flat;
}
.photo_book_page {
  position: absolute;
  inset: 0;
}
.photo_book_page.photo_book___back {
  transform: rotateY(180deg) translateZ(1px);
}
.photo_book_sheet.photo_book___active2 + .photo_book_sheet .photo_book_page.photo_book___back {
  z-index: -1;
}
.ie .photo_book_page.photo_book___back {
  display: none;
}
.ie .photo_book_sheet.photo_book___open .photo_book_page.photo_book___back {
  display: block;
}
.photo_book_right-side {
  position: absolute;
  top: 0;
  left: 100%;
}

/* photo-book.css?file=../ui/components/Book/BookWithButtons.styl */
.photo_book_book-with-buttons {
  position: relative;
}
.photo_book_button-box {
  position: absolute;
  top: 50%;
  left: -50%;
  display: none;
  justify-content: space-between;
  width: 200%;
  transform: translateY(-50%);
  pointer-events: none;
}
.photo_book_button-box.photo_book___show,
.photo_book_book-with-buttons:hover .photo_book_button-box {
  display: flex;
}
.photo_book_button2 {
  pointer-events: auto;
}
.photo_book_button2.photo_book___hidden2 {
  visibility: hidden;
  pointer-events: none;
}

/* photo-book.css?file=../ui/components/PhotoBook/PhotoPage/PhotoPage.styl */
.photo_book_photo-page {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  height: 100%;
}
.photo_book_photo-page-row {
  display: flex;
  flex: 1 1 0px;
  box-sizing: border-box;
  width: 100%;
  height: 0;
}
.photo_book_photo-page-cell {
  position: relative;
  display: flex;
  flex: 1 1 0px;
  align-items: center;
  justify-content: center;
  width: 0;
  padding: 10px 0 10px 20px;
  font-size: 0;
}
.photo_book_photo-page-cell:last-child {
  padding: 10px 20px;
}

/* photo-book.css?file=../ui/components/PhotoBook/PhotoPage/PhotoPageImage/PhotoPageImage.styl */
.photo_book_photo-page-image {
  max-width: 100%;
  max-height: 100%;
}
.photo_book_photo-page-image.photo_book___click {
  cursor: pointer;
}
.photo_book_box {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  font-size: 0;
  transform: translate(0);
}
.photo_book_box.photo_book___hidden3 {
  opacity: 0;
}

/* photo-book.css?file=../ui/components/PhotoBook/PhotoBook.styl */
.photo_book_photo-book2 {
  width: 40%;
  height: 100%;
}
.photo_book_page2 {
  background: #fff;
}
.photo_book_photo-book2 .photo_book_button4 {
  margin: 0 12px;
}
.photo_book_load-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* photo-book.css?file=../ui/components/PhotoBook/DesignedPhotoBook/DesignedPhotoBook.styl */
.photo_book_designed-photo-book {
  max-width: 600px;
  max-height: 800px;
  transform: translateZ(0);
}
.photo_book_cover {
  position: absolute;
  top: 0;
  left: -50%;
  z-index: -1;
  width: 200%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  content: "";
}
.photo_book_cover.photo_book___0 {
  background: url("./back-PHGK3MD6.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___0 {
    background: url("./back@2x-YC6GPHWV.png") top left/159px;
  }
}
.photo_book_cover.photo_book___1 {
  background: url("./back-WCCYNR7Y.jpg") top left/cover;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___1 {
    background-image: url("./back@2x-FRBARS6T.jpg");
  }
}
.photo_book_cover.photo_book___2 {
  background: url("./back-EVOUUGPH.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___2 {
    background: url("./back@2x-FP25F3OF.png") top left/162px;
  }
}
.photo_book_cover.photo_book___3 {
  background: url("./back-WOHMLFC3.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___3 {
    background: url("./back@2x-Q2SWM3TJ.png") top left/162px;
  }
}
.photo_book_cover.photo_book___4 {
  background: url("./back-JU2K2XLP.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___4 {
    background: url("./back@2x-AZYVSNGS.png") top left/162px;
  }
}
.photo_book_cover.photo_book___5 {
  background: url("./back-LVWLW7X2.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_cover.photo_book___5 {
    background: url("./back@2x-QMTHGORB.png") top left/162px;
  }
}
.photo_book_book-shadow {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: calc(-50% + 8px);
  z-index: -1;
  width: calc(200% - 16px);
  border-radius: 4px;
  box-shadow: -12px 4px 12px #0000003d, 12px 0 12px #0000003d;
  content: "";
  pointer-events: none;
}
.photo_book_book-shadow.photo_book___page-layout-v2 {
  left: calc(-50% + 24px);
  width: calc(200% - 48px);
}
.photo_book_page_1,
.photo_book_page_2 {
  right: 8px;
  margin: 8px 0;
  border-radius: 4px 0 0 4px;
  background: #fff;
}
.photo_book_page_1.photo_book___page-layout-v2,
.photo_book_page_2.photo_book___page-layout-v2 {
  right: 24px;
}
.photo_book_page_2 {
  border-radius: 0 4px 4px 0;
}
.photo_book_page_1:after,
.photo_book_page_2:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  min-width: 15px;
  max-width: 40px;
  opacity: .6;
  content: "";
}
.photo_book_page_1:after {
  right: 0;
  background:
    linear-gradient(
      270deg,
      #00000059,
      #0000 68.23%);
}
.photo_book_page_2:after {
  left: 0;
  background:
    linear-gradient(
      90deg,
      #0000006e,
      #0000 40.63%);
}
.photo_book_page_1.photo_book___no-shadow:after,
.photo_book_page_2.photo_book___no-shadow:after {
  display: none;
}
.photo_book_page_1.photo_book___0 {
  background: url("./page_1_bg-KZKHFVPI.png") top right/cover;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_1.photo_book___0 {
    background-image: url("./page_1_bg@2x-2KXF2QU7.jpg");
  }
}
.photo_book_page_2.photo_book___0 {
  background: url("./page_2_bg-J45HJBV7.png") top left/cover;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_2.photo_book___0 {
    background-image: url("./page_2_bg@2x-WUJ5TOXF.jpg");
  }
}
.photo_book_page_1.photo_book___1,
.photo_book_page_2.photo_book___1 {
  background: #f0f0f0;
}
.photo_book_page_1.photo_book___2,
.photo_book_page_2.photo_book___2 {
  background: url("./page_bg-2SBILZIB.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_1.photo_book___2,
  .photo_book_page_2.photo_book___2 {
    background: url("./page_bg@2x-7TIX37TX.png") top left/160px;
  }
}
.photo_book_page_1.photo_book___3,
.photo_book_page_2.photo_book___3 {
  background: url("./page_bg-HB4FVQUW.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_1.photo_book___3,
  .photo_book_page_2.photo_book___3 {
    background: url("./page_bg@2x-3SHX4V4I.png") top left/160px;
  }
}
.photo_book_page_1.photo_book___4,
.photo_book_page_2.photo_book___4 {
  background: url("./page_bg-FVWZXOHK.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_1.photo_book___4,
  .photo_book_page_2.photo_book___4 {
    background: url("./page_bg@2x-GKRLPDLD.png") top left/160px;
  }
}
.photo_book_page_1.photo_book___5,
.photo_book_page_2.photo_book___5 {
  background: url("./page_bg-XMHYEAOM.png");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_page_1.photo_book___5,
  .photo_book_page_2.photo_book___5 {
    background: url("./page_bg@2x-CUYROWTY.png") top left/160px;
  }
}
.photo_book_page_1.photo_book___stretch-bg,
.photo_book_page_2.photo_book___stretch-bg {
  background-position: top left;
  background-size: 200% 100%;
}
.photo_book_page_2.photo_book___stretch-bg {
  background-position: top right;
}
.photo_book_row2.photo_book___duct-tape:first-child {
  padding-top: 20px;
}
.photo_book_row2.photo_book___duct-tape:last-child {
  padding-bottom: 20px;
}
.photo_book_cell.photo_book___align-bottom {
  align-items: flex-end;
}
.photo_book_cell.photo_book___align-top {
  align-items: flex-start;
}
.photo_book_cell.photo_book___align-left {
  justify-content: flex-start;
}
.photo_book_cell.photo_book___align-right {
  justify-content: flex-end;
}
.photo_book_image.photo_book___box-shadow {
  box-shadow: var(--box-shadow_photo-book-image);
}
.photo_book_image.photo_book___drop-shadow {
  filter: drop-shadow(var(--box-shadow_photo-book-image));
}
.photo_book_image.photo_book___stroke {
  box-sizing: border-box;
  border: 10px solid #fff;
}
.photo_book_image.photo_book___polaroid {
  box-sizing: border-box;
  border: 10px solid #fff;
  border-bottom-width: 56px;
}
.photo_book_image.photo_book___corner:after {
  position: absolute;
  inset: -2px;
  content: "";
  pointer-events: none;
}
.photo_book_image.photo_book___1:after {
  background:
    url("./corner_1-DJ46OFVD.png") no-repeat,
    url("./corner_2-IAML2OJI.png") top right no-repeat,
    url("./corner_3-CKQ7OVPL.png") bottom left no-repeat,
    url("./corner_4-5TMVYQ6W.png") bottom right no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_image.photo_book___1:after {
    background:
      url("./corner_1@2x-IDNE3IIF.png") top left/28px no-repeat,
      url("./corner_2@2x-GH5QIEA2.png") top right/28px no-repeat,
      url("./corner_3@2x-DB2IWRIV.png") bottom left/28px no-repeat,
      url("./corner_4@2x-QYXJU7EB.png") bottom right/28px no-repeat;
  }
}
.photo_book_image.photo_book___2:after {
  background:
    url("./corner_1-CBTLVIGR.png") no-repeat,
    url("./corner_2-J5WD2UUS.png") top right no-repeat,
    url("./corner_3-YTVPP4VM.png") bottom left no-repeat,
    url("./corner_4-BMX34TQX.png") bottom right no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_image.photo_book___2:after {
    background:
      url("./corner_1@2x-P2H53XIS.png") top left/24px no-repeat,
      url("./corner_2@2x-U477LLRL.png") top right/24px no-repeat,
      url("./corner_3@2x-627KTWGK.png") bottom left/24px no-repeat,
      url("./corner_4@2x-JEWSB2H6.png") bottom right/24px no-repeat;
  }
}
.photo_book_image.photo_book___3:after {
  background:
    url("./corner_1-ZSB6S6UZ.png") no-repeat,
    url("./corner_2-PI3J2YYG.png") top right no-repeat,
    url("./corner_3-JCCOORR2.png") bottom left no-repeat,
    url("./corner_4-NGWVPVAJ.png") bottom right no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_image.photo_book___3:after {
    background:
      url("./corner_1@2x-JK243YU4.png") top left/24px no-repeat,
      url("./corner_2@2x-NIF6OSGI.png") top right/24px no-repeat,
      url("./corner_3@2x-EHGIK757.png") bottom left/24px no-repeat,
      url("./corner_4@2x-33LVKMJ6.png") bottom right/24px no-repeat;
  }
}
.photo_book_image.photo_book___4:after {
  background:
    url("./corner_1-UHBYANDU.png") no-repeat,
    url("./corner_2-3AXLVOGK.png") top right no-repeat,
    url("./corner_3-F4OLRHNZ.png") bottom left no-repeat,
    url("./corner_4-H7KDDHPE.png") bottom right no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_image.photo_book___4:after {
    background:
      url("./corner_1@2x-5GBTIACE.png") top left/24px no-repeat,
      url("./corner_2@2x-JSVFQRVV.png") top right/24px no-repeat,
      url("./corner_3@2x-NWU5HYFX.png") bottom left/24px no-repeat,
      url("./corner_4@2x-I5OZ5GOI.png") bottom right/24px no-repeat;
  }
}
.photo_book_image.photo_book___5:after {
  background:
    url("./corner_1-CBTLVIGR.png") no-repeat,
    url("./corner_2-J5WD2UUS.png") top right no-repeat,
    url("./corner_3-YTVPP4VM.png") bottom left no-repeat,
    url("./corner_4-BMX34TQX.png") bottom right no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  .photo_book_image.photo_book___5:after {
    background:
      url("./corner_1@2x-P2H53XIS.png") top left/24px no-repeat,
      url("./corner_2@2x-U477LLRL.png") top right/24px no-repeat,
      url("./corner_3@2x-627KTWGK.png") bottom left/24px no-repeat,
      url("./corner_4@2x-JEWSB2H6.png") bottom right/24px no-repeat;
  }
}

/* photo-book.css?file=../ui/components/PhotoBookLayer/DecoratedPhotoBookLayer.styl */
.photo_book_layer-box .photo_book_layer-top {
  min-height: 0;
}
.photo_book_layer-box .photo_book_layer-body-box {
  height: 100%;
  overflow: hidden;
}
.photo_book_layer-box .photo_book_layer-body {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: unset;
  background: none;
}
.photo_book_book2 {
  width: 39%;
  min-width: 400px;
  max-width: 600px;
  height: 82%;
  min-height: 520px;
  max-height: 800px;
}
.photo_book_layer-box .photo_book_photo-row:first-child {
  padding-top: 50px;
}
.photo_book_layer-box .photo_book_photo-row:last-child {
  padding-bottom: 50px;
}
.photo_book_layer-box .photo_book_photo-cell {
  padding: 10px 0 10px 48px;
}
.photo_book_layer-box .photo_book_photo-cell:last-child {
  padding: 10px 48px;
}
.photo_book_layer-box .photo_book_photo-cell.photo_book___page-layout-v22 {
  padding: 10px;
}
.photo_book_layer-box .photo_book_photo-cell.photo_book___page-layout-v22:first-child {
  padding-left: 48px;
}
.photo_book_layer-box .photo_book_photo-cell.photo_book___page-layout-v22:last-child {
  padding-right: 48px;
}
.photo_book_close-box {
  margin: 6px 0 0 12px;
  color: var(--color_gray-4);
}

/* photo-book.css?file=../ui/components/Tooltip/Tooltip.styl */
.photo_book_main {
  position: relative;
}
.photo_book_main.photo_book___inner,
.photo_book_wrap.photo_book___inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.photo_book_tooltip {
  position: absolute;
  z-index: 3201;
  display: block;
  color: var(--color_black-08);
  font-size: 12px;
  line-height: 1.4;
  pointer-events: none;
}
.photo_book_tooltip.photo_book___top .photo_book_container2:not(.photo_book___free) {
  padding-bottom: 8px;
  transform: translate(-50%, -100%);
}
.photo_book_tooltip.photo_book___top .photo_book_arrow {
  bottom: 0;
}
.photo_book_tooltip.photo_book___top .photo_book_arrow:before {
  top: -1px;
  border-width: 5px 8px 0;
  border-top-color: currentColor;
}
.photo_book_tooltip.photo_book___top.photo_book___inner {
  left: 50%;
}
.photo_book_tooltip.photo_book___bottom .photo_book_container2:not(.photo_book___free) {
  padding-top: 8px;
  transform: translate(-50%, -50%);
}
.photo_book_tooltip.photo_book___bottom .photo_book_arrow {
  top: 0;
}
.photo_book_tooltip.photo_book___bottom .photo_book_arrow:before {
  bottom: -1px;
  border-width: 0 8px 5px;
  border-bottom-color: currentColor;
}
.photo_book_tooltip.photo_book___bottom.photo_book___inner {
  top: 100%;
  left: 50%;
}
.photo_book_tooltip.photo_book___bottom.photo_book___inner .photo_book_container2:not(.photo_book___free) {
  transform: translate(-50%);
}
.photo_book_tooltip.photo_book___right .photo_book_container2:not(.photo_book___free) {
  padding-left: 10px;
  transform: translateY(-100%);
}
.photo_book_tooltip.photo_book___right .photo_book_arrow {
  top: 25%;
  left: 0;
  width: 10px;
  height: 25px;
  margin-left: 0;
}
.photo_book_tooltip.photo_book___right .photo_book_arrow:before {
  right: 0;
  left: 0;
  border-width: 8px 5px 5px 0;
  border-right-color: currentColor;
}
.photo_book_tooltip.photo_book___right.photo_book___inner {
  top: 50%;
  left: 100%;
}
.photo_book_tooltip.photo_book___right.photo_book___inner .photo_book_container2:not(.photo_book___free) {
  transform: translateY(-50%);
}
.photo_book_tooltip.photo_book___left .photo_book_container2:not(.photo_book___free) {
  padding-right: 10px;
  transform: translate(-100%, -100%);
}
.photo_book_tooltip.photo_book___left .photo_book_arrow {
  top: 25%;
  right: 0;
  left: auto;
  width: 10px;
  height: 25px;
  margin-left: 0;
}
.photo_book_tooltip.photo_book___left .photo_book_arrow:before {
  left: 0;
  border-width: 5px 0 8px 5px;
  border-left-color: currentColor;
}
.photo_book_tooltip.photo_book___left.photo_book___inner {
  top: 50%;
}
.photo_book_tooltip.photo_book___left.photo_book___inner .photo_book_container2:not(.photo_book___free) {
  transform: translate(-100%, -50%);
}
.photo_book_tooltip .photo_book_content {
  box-sizing: border-box;
  padding: 12px;
  border-radius: 8px;
  color: var(--color_white);
  box-shadow: var(--box-shadow_global);
  background-color: var(--color_black-08);
}
.photo_book_tooltip.photo_book___top:not(.photo_book___light2) .photo_book_arrow:before {
  top: 0;
}
.photo_book_tooltip.photo_book___bottom:not(.photo_book___light2) .photo_book_arrow:before {
  bottom: 0;
}
.photo_book_tooltip.photo_book___right .photo_book_arrow,
.photo_book_tooltip.photo_book___left .photo_book_arrow {
  position: absolute;
  top: 50%;
  height: 12px;
  transform: translateY(-50%);
}
.photo_book_tooltip.photo_book___right .photo_book_arrow:before {
  border-width: 6px 6px 6px 0;
}
.photo_book_tooltip.photo_book___left .photo_book_arrow:before {
  border-width: 6px 0 6px 6px;
}
.photo_book_tooltip.photo_book___dark3 {
  color: var(--color_black-08);
}
.photo_book_tooltip.photo_book___dark3 .photo_book_content {
  background-color: var(--color_black-08);
}
.photo_book_tooltip.photo_book___light2 {
  color: var(--color_surface);
}
.photo_book_tooltip.photo_book___light2 .photo_book_content {
  border: 1px solid var(--color_main-008);
  color: var(--color_main);
  background-color: var(--color_surface);
  box-shadow: 0 12px 24px var(--color_main-008);
}
.photo_book_container2 {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  pointer-events: auto;
}
.photo_book_tooltip.photo_book___inner .photo_book_container2 {
  position: relative;
}
.photo_book_tooltip.photo_book_exit-done .photo_book_container2,
.photo_book_tooltip.photo_book___hide .photo_book_container2 {
  visibility: hidden;
  opacity: 0;
}
.photo_book_content {
  display: inline-block;
  padding: 4px 8px 6px;
  border-radius: 4px;
  color: #f0f0f0;
  background-color: #333c;
}
.photo_book_content.photo_book___text-ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
}
.photo_book_content.photo_book___text-center {
  text-align: center;
}
.photo_book_arrow {
  position: absolute;
  left: 50%;
  height: 8px;
  margin-left: -8px;
}
.photo_book_arrow:before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  content: "";
}

/* photo-book.css?file=../ui/components/ImageCover/ImageCover.styl */
.photo_book_image-cover {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color_white);
}
.photo_book_image-cover.photo_book___block {
  background: var(--color_white-06);
}
.photo_book_image-cover.photo_book___blur {
  background: var(--color_main-012);
  cursor: pointer;
}
.photo_book_icon-block {
  border: 8px solid var(--color_white);
  border-radius: 50%;
  color: var(--color_red);
  background-color: var(--color_surface);
}
.photo_book_pointer {
  cursor: pointer;
}
.photo_book_tooltip-block {
  position: fixed;
  margin-top: 8px;
}
.photo_book_tooltip-block-box {
  width: 150px;
  max-width: 150px;
  min-height: 50px;
  margin-left: 12px;
  padding-top: 8px;
  transform: translate(-50%);
  text-align: center;
  word-break: break-all;
}
.photo_book_tooltip-block-box.photo_book___icon {
  margin-left: 16px;
}
.photo_book_button-block-box {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.photo_book_button-block .photo_book_button-block-core.photo_book___dark2 {
  background: var(--color_black-032);
}
.photo_book_button-block-box:focus .photo_book_button-block-core.photo_book___dark2,
.photo_book_button-block-box:hover .photo_book_button-block-core.photo_book___dark2 {
  background: var(--color_black-06);
}

/* photo-book.css?file=../ui/components/PhotoBook/PhotoBookImage/BoxedImage/BoxedImage.styl */
.photo_book_boxed-image {
  overflow: hidden;
}

/* photo-book.css?file=../ui/components/PhotoBook/PhotoBookImage/BlurredImage/BlurredImage.styl */
.photo_book_blurred-image {
  transform: scale(1.2);
  filter: blur(25px);
}

/* photo-book.css?file=../ui/components/ModalLayer/items/ModalLayerItems.styl */
.photo_book_container {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  font-size: 14px;
  background-color: var(--color_surface);
  box-shadow: 0 0 12px #00000029;
}
.photo_book_container.photo_book___hide_overflow {
  overflow: hidden;
}
.photo_book_container.photo_book___is-adaptive-one-type,
.photo_book_container.photo_book___is-adaptive-two-dynamic-type2,
.photo_book_container.photo_book___is-adaptive-two-static-type2 {
  width: 100% !important;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .photo_book_container.photo_book___is-adaptive-one-type,
  .photo_book_container.photo_book___is-adaptive-two-dynamic-type2,
  .photo_book_container.photo_book___is-adaptive-two-static-type2 {
    margin-top: auto;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.photo_book_container.photo_book___is-adaptive-one-type {
  max-width: 440px;
}
.photo_book_container.photo_book___is-adaptive-two-dynamic-type2,
.photo_book_container.photo_book___is-adaptive-two-static-type2 {
  max-width: 640px;
  box-sizing: border-box;
}
.photo_book_container.photo_book___is-adaptive-two-static-type2 {
  max-height: 95vh;
  margin-top: auto;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 767px) {
  .photo_book_container.photo_book___is-adaptive-two-static-type2 {
    max-height: calc(100vh - 68px);
  }
}
@media (max-width: 767px) {
  .photo_book_container.photo_book___in-app {
    height: 100vh;
    border-radius: 0;
  }
}
.photo_book_header {
  display: flex;
  flex-direction: column;
  margin: 24px;
}
.photo_book_header.photo_book___left2 {
  align-items: start;
}
.photo_book_header.photo_book___left2 .photo_book_description {
  text-align: left;
}
.photo_book_header.photo_book___middle {
  align-items: center;
}
.photo_book_header.photo_book___right2 {
  align-items: end;
}
.photo_book_title-wrapper {
  display: flex;
  align-items: center;
}
.photo_book_title {
  flex: 1;
  margin: 0;
  color: var(--color_main);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.photo_book_button-wrapper {
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid var(--color_main-008);
}
.photo_book_button-back {
  padding: 0;
  border: 0;
  color: var(--color_secondary);
  background: none;
  cursor: pointer;
}
.photo_book_description {
  width: 300px;
  margin-top: 8px;
  color: var(--color_secondary);
  text-align: center;
}
.photo_book_content4 {
  margin: 24px;
  color: var(--color_main);
  font-size: 14px;
}
.photo_book_footer {
  display: flex;
  justify-content: center;
  margin: 24px;
}
.photo_book_footer-item:not(:last-child) {
  margin-right: 8px;
}

/* photo-book.css?file=../ui/components/ModalLayer/ModalLayer.styl */
.photo_book_modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color_black-08);
}
.photo_book_modal-layer.photo_book___is-adaptive-one-type2,
.photo_book_modal-layer.photo_book___is-adaptive-two-dynamic-type3,
.photo_book_modal-layer.photo_book___is-adaptive-two-static-type3 {
  background: #0000008f;
}
.photo_book_close-area {
  position: absolute;
  inset: 0;
}
.photo_book_close-icon-control {
  position: absolute;
  top: 10px;
  right: -40px;
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.photo_book_close-icon-control.photo_book___is-adaptive-one-type2,
.photo_book_close-icon-control.photo_book___is-adaptive-two-dynamic-type3,
.photo_book_close-icon-control.photo_book___is-adaptive-two-static-type3 {
  top: 0;
  right: -60px;
}
@media (max-width: 580px) {
  .photo_book_close-icon-control.photo_book___is-adaptive-one-type2 {
    top: -56px;
    right: 12px;
  }
}
@media (max-width: 767px) {
  .photo_book_close-icon-control.photo_book___is-adaptive-two-dynamic-type3,
  .photo_book_close-icon-control.photo_book___is-adaptive-two-static-type3 {
    top: -56px;
    right: 12px;
  }
}
.photo_book_close-icon2 {
  display: block;
  color: var(--color_white-06);
}
.photo_book_close-icon2:hover {
  color: var(--color_white);
}
.photo_book_size-small {
  width: 400px;
}
.photo_book_size-medium {
  width: 596px;
}
.photo_book_size-big {
  width: 704px;
}

/* photo-book.css?file=ui/photo-book/components/ImageControls/ColorizeButton/ColorizeButton.styl */
.photo_book_button3 {
  opacity: .8;
}
.photo_book_button3:hover,
.photo_book_button-loading {
  opacity: 1;
}
.photo_book_button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.photo_book_icon2 {
  display: flex;
  align-items: center;
}
.photo_book_icon2 svg {
  width: 100%;
}

/* photo-book.css?file=ui/photo-book/components/ImageControls/ConfirmCancelButton/ConfirmCancelButton.styl */
.photo_book_button-margin {
  margin-right: 8px;
}

/* photo-book.css?file=ui/photo-book/components/ImageControls/ImageControls.styl */
.photo_book_buttons-container-right {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.photo_book_buttons-container-center {
  position: absolute;
  bottom: 10px;
  left: 50%;
}
.photo_book_buttons-container-center .photo_book_margin {
  margin-left: -50%;
  white-space: nowrap;
}

/* photo-book.css?file=ui/photo-book/components/BookImage/BookImage.styl */
.photo_book_image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* photo-book.css?file=ui/photo-book/components/PhotoBook/PhotoBook.styl */
.photo_book_photo-book {
  z-index: 1;
}
.photo_book_right-side2 {
  display: flex;
  flex-flow: column;
}
.photo_book_close-box2 {
  color: #ccc;
  margin: 0 16px;
}
.photo_book_photo-book .photo_book_book-menu-button {
  margin: 16px 0 0;
}
.photo_book_photo-book .photo_book_book-menu-button-core,
.photo_book_photo-book .photo_book_book-menu-button:active .photo_book_book-menu-button-core,
.photo_book_photo-book .photo_book_book-menu-button:focus .photo_book_book-menu-button-core,
.photo_book_photo-book .photo_book_book-menu-button:hover .photo_book_book-menu-button-core {
  height: 24px;
  color: var(--color_white);
}
.photo_book_book-menu {
  position: relative;
  min-width: 195px;
  padding: 4px 0;
  border-radius: 4px;
  background-color: var(--color_surface);
  box-shadow: 0 4px 8px #00000040;
}
.photo_book_end-node {
  position: relative;
  display: flex;
  justify-content: center;
  width: 78%;
  min-width: 800px;
  max-width: 1200px;
  margin: 16px 0 0;
}
.photo_book_start-node {
  box-sizing: border-box;
  width: 78%;
  min-width: 800px;
  max-width: 1200px;
  margin: 0 0 16px;
  padding: 0 24px;
  overflow: hidden;
  color: var(--color_white-06);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
}
.photo_book_upload-photo {
  position: absolute;
  right: 24px;
}
up-app.photo_book_upload-widget {
  position: absolute;
  z-index: 3300;
}
.photo_book_empty-last-page {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 40px;
  color: #505050;
}
.photo_book_no-photo-message {
  font-weight: 600;
  font-size: 16px;
  font-family:
    Onest,
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  text-align: center;
}
.photo_book_add-photo-message {
  max-width: 330px;
  margin: 10px 0 16px;
  font-size: 14px;
  font-family:
    Onest,
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  line-height: 1.3;
  text-align: center;
}
/*# sourceMappingURL=photo-book-latest-MJBDGBSP.css.map */
