:root {
  --base-color-1: #436db5;
  --base-color-2: #fda21a;
  --base-color-3: #fff;
  --base-color-4: #345;
  --base-color-5: #789;
  --base-color-6: #3ed152;
  --base-color-7: #f10c0c;
  --base-font-size: 16px;
  --base-font-size-second: 24px;
  --base-font-weight: 500;
  --base-font-weight-semibold: 600;
  --base-font-weight-bold: 700;
  --base-form-item-width: 310px;
  --base-form-item-width-small: 200px;
  --base-offset: 16px;
  --base-active-btn-opacity: .8;
  --base-max-width: 832px;
}

*, :after, :before {
  box-sizing: border-box;
}

html {
  height: 100%;
}

.body {
  background-position: top;
  background-size: cover;
}

.body_background_primary {
  background-color: var(--base-color-3);
}

.body_background_second {
  background-color: var(--base-color-1);
  height: 100%;
}

.body_hold {
  overflow: hidden;
}

body, button {
  font-style: normal;
  font-weight: var(--base-font-weight);
  font-size: var(--base-font-size);
  font-family: Montserrat, sans-serif !important;
}

body {
  margin: 0;
}

.reg-logo {
  justify-content: center;
  display: flex;
}

.reg-logo_offset_reg-1 {
  padding-top: 150px;
  padding-bottom: 80px;
}

.reg-logo_offset_reg-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.reg-logo__img {
  max-width: 280px;
  max-height: 100px;
}

.reg-logo__img_hidden {
  display: none;
}

.reg-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.input {
  background-color: var(--base-color-3);
  font-weight: var(--base-font-weight);
  font-size: var(--base-font-size);
  color: var(--base-color-4);
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: Montserrat, sans-serif !important;
}

::placeholder {
  color: var(--base-color-5);
}

.checkbox {
  --checkbox-size: 18px;
  --checkbox-offset: 10px;
  align-items: flex-start;
  display: inline-flex;
}

.checkbox__icon {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  margin-right: var(--checkbox-offset);
  cursor: pointer;
}

.checkbox__icon-bg {
  fill: var(--base-color-3);
}

.checkbox .checkbox__icon-check-mark {
  fill: var(--base-color-3);
  display: none;
}

.checkbox_checked .checkbox__icon-bg {
  fill: var(--base-color-2);
}

.checkbox_checked .checkbox__icon-check-mark {
  display: inline-block;
}

.checkbox__text {
  color: var(--base-color-3);
  width: calc(100% - var(--checkbox-size)  - var(--checkbox-offset));
}

.checkbox__text a {
  color: var(--base-color-2);
  cursor: pointer;
  text-decoration: underline;
}

.input_width_m, .checkbox_width_m {
  width: var(--base-form-item-width);
}

.float-button {
  bottom: calc(var(--base-offset) * 2 - 5px);
  max-width: var(--base-max-width);
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: auto;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
}

.float-button_custom_main-page {
  bottom: calc(var(--base-offset) * 2 - 17px);
}

.button:not([disabled]), .button_disabled {
  cursor: pointer;
}

.button:active {
  opacity: var(--base-active-btn-opacity);
}

.button[disabled], .button_disabled {
  opacity: .5;
}

.button_block_m {
  width: var(--base-form-item-width);
  font-size: var(--base-font-size-second);
  font-weight: var(--base-font-weight);
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
}

.button_block_s {
  width: var(--base-form-item-width-small);
  font-size: var(--base-font-size-second);
  font-weight: var(--base-font-weight);
  border: none;
  border-radius: 8px;
  padding: 13px;
}

.button_center {
  margin: auto;
  display: block;
}

.button_orange {
  background: var(--base-color-2);
  color: var(--base-color-3);
}

.button_blue {
  background: var(--base-color-1);
  color: var(--base-color-3);
}

.button_blue-link {
  font-size: calc(var(--base-font-size-second)  - 4px);
  font-weight: var(--base-font-weight-semibold);
  color: var(--base-color-1);
  background: none;
}

.qrCode {
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  display: flex;
}

.qrCode__code {
  background-color: #fff;
  border: 10px solid #fff;
  border-radius: 8px;
  width: 220px;
  height: 220px;
}

.qrCode__text {
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
}

.page {
  max-width: var(--base-max-width);
  margin: auto;
  position: relative;
}

.top-panel {
  padding: 10px var(--base-offset);
  background: var(--base-color-3);
  z-index: 1;
  justify-content: space-between;
  min-height: 54px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.top-panel_full-screen-style {
  background: none;
}

.top-panel_hidden {
  display: none;
}

.top-panel_selected {
  max-width: var(--base-max-width);
  height: 54px;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
}

.top-panel__title-center {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  padding: 0 30px;
  display: inline-flex;
}

.top-panel__title-center-right {
  top: 0;
  bottom: 0;
  right: var(--base-offset);
  align-items: center;
  display: inline-flex;
  position: absolute;
}

.top-panel__title-center-left {
  top: 0;
  bottom: 0;
  left: var(--base-offset);
  align-items: center;
  display: inline-flex;
  position: absolute;
}

.top-panel__left, .top-panel__right {
  align-items: center;
  display: inline-flex;
}

.top-panel__button-menu {
  cursor: pointer;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.top-panel__button-menu:active {
  opacity: var(--base-active-btn-opacity);
}

.top-panel__button-menu-text {
  color: var(--base-color-4);
}

.top-panel__selected-text {
  color: var(--base-color-4);
  font-size: var(--base-font-size);
}

.top-panel__menu-text {
  color: var(--base-color-4);
  font-size: calc(var(--base-font-size)  - 3px);
}

.top-panel__menu-subtext {
  font-size: calc(var(--base-font-size)  - 6px);
  color: var(--base-color-5);
  font-weight: var(--base-font-weight-semibold);
  position: absolute;
  top: 38px;
}

.top-panel__title-steps {
  color: var(--base-color-4);
  font-size: calc(var(--base-font-size)  - 2px);
}

.top-panel__btn-clear {
  font-size: calc(var(--base-font-size)  + 2px);
  color: var(--base-color-1);
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 0;
}

.top-panel__btn-clear:active {
  opacity: var(--base-active-btn-opacity);
}

.top-panel__btn-close {
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
}

.top-panel__btn-close:active {
  opacity: var(--base-active-btn-opacity);
}

.top-panel__btn-back {
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
}

.top-panel__btn-back:active {
  opacity: var(--base-active-btn-opacity);
}

.menu-top-panel {
  align-items: center;
  gap: 16px;
  display: inline-flex;
}

.menu-top-panel__button {
  cursor: pointer;
  color: var(--base-color-1);
}

.menu-top-panel__button:active {
  opacity: var(--base-active-btn-opacity);
}

.add-selfie {
  max-width: var(--base-max-width);
  pointer-events: none;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.add-selfie__btn {
  cursor: pointer;
  bottom: calc(var(--base-offset)  - 19px);
  right: calc(var(--base-offset)  - 10px);
  pointer-events: all;
  transform-origin: center;
  position: absolute;
}

.add-selfie__btn > .add-selfie__icon {
  animation: .5s infinite alternate beat;
}

.add-selfie__btn:active {
  opacity: var(--base-active-btn-opacity);
}

.add-selfie__input {
  display: none;
}

.empty-content {
  padding: 20px var(--base-offset) 30px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.empty-content__icon {
  margin-top: 110px;
}

.empty-content__text {
  font-size: 32px;
  font-weight: var(--base-font-weight-bold);
  color: var(--base-color-1);
  text-align: center;
  margin-top: 40px;
}

.empty-content__subtext {
  color: var(--base-color-5);
  text-align: center;
  margin-top: 20px;
}

.menu {
  width: 100%;
  max-width: var(--base-max-width);
  z-index: 1;
  background: rgba(9, 15, 38, .5);
  position: fixed;
  top: 0;
  bottom: 0;
}

.menu_hidden {
  display: none;
}

.menu__inner {
  background: var(--base-color-1);
  width: 280px;
  height: 100%;
}

.menu__logo-icon {
  width: 100px;
  max-height: 35px;
}

.menu__logo-icon_hidden {
  display: none;
}

.menu__header {
  padding: 0 var(--base-offset);
  border: 1px solid rgba(255, 255, 255, .2);
  justify-content: space-between;
  align-items: center;
  height: 54px;
  display: flex;
}

.menu__btn-close {
  cursor: pointer;
}

.menu__btn-close:active {
  opacity: var(--base-active-btn-opacity);
}

.menu__list {
  flex-direction: column;
  gap: 16px;
  padding: 34px 0;
  display: flex;
}

.menu__item {
  padding: 10px calc(var(--base-offset)  + 8px);
  cursor: pointer;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  display: inline-flex;
}

.menu__item_hidden {
  display: none;
}

.menu__item:active {
  opacity: var(--base-active-btn-opacity);
}

.menu__item-icon {
  width: 20px;
  height: 20px;
}

.menu__item-text {
  color: var(--base-color-3);
}

.gallery {
  --border-offset: .9px;
  flex-wrap: wrap;
  gap: 1px;
  display: flex;
}

.gallery.gallery_row_1 .gallery__item {
  width: 100%;
}

.gallery.gallery_row_2 .gallery__item {
  width: calc(100% / 2 - var(--border-offset));
}

.gallery.gallery_row_3 .gallery__item {
  width: calc(100% / 3 - var(--border-offset));
}

.gallery__item {
  width: calc(100% / 3 - var(--border-offset));
  aspect-ratio: 1;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.gallery__item-img {
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery__item-watermark {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery__item-btn-download, .gallery__item-btn-share {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.gallery__item-btn-download_hidden, .gallery__item-btn-share_hidden {
  display: none;
}

.gallery__item-checkbox {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
}

.gallery__item-checkbox_hidden, .gallery__item-checkbox-img-checked, .gallery__item-checkbox-img-unchecked {
  display: none;
}

.gallery__item-checkbox-img-unchecked {
  filter: drop-shadow(2px 1px 1px #000);
}

.gallery__item-view, .gallery__item-icon-type {
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: none;
  position: absolute;
  top: 4px;
  left: 4px;
}

.gallery__item-view {
  filter: drop-shadow(2px 1px 1px #000);
}

.gallery__item_active-view .gallery__item-view, .gallery__item_active-icon-type .gallery__item-icon-type, .gallery__item_active-select .gallery__item-checkbox-img-unchecked, .gallery__item_active-select.gallery__item_checked .gallery__item-checkbox-img-checked {
  display: block;
}

.gallery__item_active-select.gallery__item_checked .gallery__item-checkbox-img-unchecked {
  display: none;
}

.gallery__item-multi-select-item {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
}

.gallery__item_active-multi-select-item .gallery__item-multi-select-item {
  display: block;
}

.download-btn, .share-btn {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 5px;
  display: flex;
}

.download-btn:active, .share-btn:active {
  opacity: var(--base-active-btn-opacity);
}

.download-btn__text, .share-btn__text {
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 500;
  overflow: hidden;
}

.download-icon {
  --download-btn-size: 7px;
  width: var(--download-btn-size);
  height: var(--download-btn-size);
  margin: 1px 0;
}

.share-icon {
  --share-btn-size: 10px;
  width: var(--share-btn-size);
  height: var(--share-btn-size);
  margin-bottom: 1px;
}

.action-panel {
  max-width: var(--base-max-width);
  background: var(--base-color-1);
  pointer-events: all;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 84px;
  margin: auto;
  display: none;
  position: fixed;
  bottom: 0;
  box-shadow: 0 -4px 8px rgba(0, 20, 96, .2);
}

.action-panel_show {
  display: flex;
}

.action-button {
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: inline-flex;
}

.action-button_hidden {
  display: none;
}

.action-button:not([disabled]) {
  cursor: pointer;
}

.action-button:active {
  opacity: var(--base-active-btn-opacity);
}

.action-button[disabled], .action-button_disabled {
  opacity: .5;
}

.action-button__text {
  font-size: var(--base-font-size);
  color: var(--base-color-3);
  padding-top: 10px;
}

.modal-page {
  background: var(--base-color-3);
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-page__inner {
  max-width: var(--base-max-width);
  width: 100%;
  margin: auto;
}

.display-qr {
  height: 100vh;
  min-height: 435px;
  padding: 20px var(--base-offset);
  background: #f7f7fa;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.display-qr__message {
  color: var(--base-color-4);
  text-align: center;
}

.display-qr__qr {
  margin-top: 52px;
}

.qr-code__wrapper {
  --inside-offset: 13px;
  padding: var(--inside-offset);
  width: calc(200px + var(--inside-offset) * 2);
  height: calc(200px + var(--inside-offset) * 2);
  background: #fff;
}

.qr-code__code {
  color: var(--base-color-4);
  text-align: center;
  margin-top: 20px;
}

.html-content {
  padding: 0 var(--base-offset);
  white-space: break-spaces;
  display: none;
}

.html-content_show {
  display: block;
}

.html-content h1, .html-content h2, .html-content h3, .html-content h4, .html-content h5, .html-content h6, .html-content b {
  color: var(--base-color-4);
}

.html-content p, .html-content ul, .html-content ol {
  color: var(--base-color-5);
}

.combos {
  padding: var(--base-offset);
  gap: var(--base-offset);
  flex-direction: column;
  display: flex;
}

.combos__item {
  cursor: pointer;
}

.combos__item:active {
  opacity: var(--base-active-btn-opacity);
}

.form-for-coupon {
  --form-font-size: var(--base-font-size);
  --form-radius: 8px;
  --form-height: 40px;
  display: flex;
}

.form-for-coupon__input {
  height: var(--form-height);
  font-size: var(--form-font-size);
  text-align: left;
  border-top-left-radius: var(--form-radius);
  border-bottom-left-radius: var(--form-radius);
  border-style: solid none solid solid;
  border-right-width: medium;
  border-right-color: currentColor;
  border-color: var(--base-color-1);
  width: 179px;
  padding: 0 10px;
}

.form-for-coupon__btn {
  height: var(--form-height);
  background-color: var(--base-color-1);
  color: #fff;
  font-size: var(--form-font-size);
  cursor: pointer;
  border: none;
  border-right: 1px solid #fff;
  padding: 0 10px;
}

.form-for-coupon__btn:active {
  opacity: var(--base-active-btn-opacity);
}

.form-for-coupon__btn_last {
  border-top-right-radius: var(--form-radius);
  border-bottom-right-radius: var(--form-radius);
}

.summary {
  padding: 15px var(--base-offset);
  max-width: var(--base-max-width);
  background: var(--base-color-3);
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.summary__info {
  flex-direction: column;
  gap: 5px;
  padding-bottom: 15px;
  display: flex;
}

.summary__info-item {
  justify-content: space-between;
  display: flex;
}

.summary__item-name {
  font-size: calc(var(--base-font-size)  - 4px);
  color: var(--base-color-5);
}

.summary__item-value {
  font-weight: var(--base-font-weight-bold);
  color: var(--base-color-4);
}

.summary__item-value_color_second {
  color: var(--base-color-6);
}

.summary__info-hr {
  background: var(--base-color-5);
  opacity: .2;
  width: 100%;
  height: 1px;
}

.summary__promo-block {
  justify-content: center;
  padding-bottom: 5px;
  display: flex;
}

.summary__buttons {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  display: flex;
}

.combo-cart {
  --cart-offset: var(--base-offset);
  --img-size: 80px;
}

.cart-view {
  padding: var(--cart-offset);
  gap: var(--cart-offset);
  background-color: #f7f7fa;
  display: flex;
  position: relative;
}

.cart-view:not(:first-of-type):before, .cart-resort-fee:not(:first-child):before {
  content: "";
  height: 1px;
  top: 0;
  left: var(--cart-offset);
  right: var(--cart-offset);
  background-color: var(--base-color-5);
  opacity: .2;
  position: absolute;
}

.cart-view__image {
  width: var(--img-size);
  height: var(--img-size);
  object-fit: cover;
  align-self: center;
}

.cart-view__content {
  flex-direction: column;
  justify-content: center;
  display: inline-flex;
  position: relative;
}

.cart-view__text {
  color: var(--base-color-4);
  font-size: calc(var(--base-font-size)  - 2px);
  text-align: left;
}

.cart-view__change-btn {
  position: absolute;
  bottom: 0;
}

.change-image-btn {
  background: none;
  border: 0;
  align-items: center;
  gap: 6px;
  padding: 0;
  display: inline-flex;
}

.change-image-btn__img {
  --size: 12px;
  width: var(--size);
  height: var(--size);
  margin-left: -1px;
}

.change-image-btn__text {
  color: var(--base-color-1);
  white-space: nowrap;
  font-size: calc(var(--base-font-size)  - 6px);
}

.cart-resort-fee {
  color: var(--base-color-4);
  padding: 10px var(--cart-offset);
  font-size: calc(var(--base-font-size)  - 2px);
  background-color: #f7f7fa;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.combo-header {
  padding: 8px var(--cart-offset);
  background-color: var(--base-color-3);
  border-bottom: 1px solid var(--base-color-1);
  align-items: center;
  gap: 8px;
  display: flex;
}

.combo-header__name {
  font-weight: var(--base-font-weight-bold);
  color: var(--base-color-5);
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.combo-header__price {
  gap: 2px;
  display: inline-flex;
}

.combo-header__action-btns {
  justify-content: center;
  margin-left: auto;
  padding-left: 5px;
  display: inline-flex;
}

.product-price {
  background: var(--base-color-6);
  color: var(--base-color-3);
  line-height: 1;
  font-size: calc(var(--base-font-size)  - 4px);
  border-radius: 50px;
  padding: 4px 8px;
  display: inline-block;
  position: relative;
}

.product-price_type_discount {
  background: var(--base-color-7);
}

.product-price_type_discount:before, .product-price_type_discount:after {
  --offset-from-edges: 8px;
  --cross-degree: 18deg;
  --line-height: 1px;
  content: "";
  height: var(--line-height);
  margin-top: calc(var(--line-height) / -2);
  top: 50%;
  left: var(--offset-from-edges);
  right: var(--offset-from-edges);
  background: #fff;
  position: absolute;
}

.product-price_type_discount:before {
  transform: rotate(calc(var(--cross-degree) * -1));
}

.product-price_type_discount:after {
  transform: rotate(var(--cross-degree));
}

.product-price_size_l.product-price_type_discount:before, .product-price_size_l.product-price_type_discount:after {
  --offset-from-edges: 12px;
}

.product-price_size_l {
  font-weight: var(--base-font-weight-bold);
  font-size: calc(var(--base-font-size)  - 2px);
  padding: 5px 12px;
}

.combo-buttons {
  gap: 10px;
  display: flex;
}

.combo-buttons__btn {
  cursor: pointer;
  background: none;
  border: 0;
  width: 24px;
  height: 24px;
  padding: 0;
}

.combo-buttons__btn img {
  width: 100%;
  height: 100%;
}

.addons-separator {
  background-color: #fff;
  height: 24px;
}

.addons-list-view {
  --addon-offset: var(--base-offset);
  --img-size: 80px;
}

.addon-view {
  padding: var(--addon-offset);
  gap: var(--addon-offset);
  background-color: #f7f7fa;
  display: flex;
  position: relative;
}

.addon-view_bg_second {
  background-color: var(--base-color-3);
}

.addon-view_clickable {
  cursor: pointer;
}

.addon-view:not(:first-of-type):before {
  content: "";
  height: 1px;
  top: 0;
  left: var(--addon-offset);
  right: var(--addon-offset);
  background-color: rgba(119, 136, 153, .2);
  position: absolute;
}

.addon-view__image {
  width: var(--img-size);
  height: var(--img-size);
  object-fit: cover;
  align-self: center;
}

.addon-view__content {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  display: inline-flex;
}

.addon-view__buttons {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.addon-view__text {
  font-size: calc(var(--base-font-size)  - 2px);
  color: var(--base-color-4);
  text-align: left;
  line-height: 1;
}

.addon-view__price {
  gap: 2px;
  margin-bottom: auto;
  display: inline-flex;
}

.offset-m {
  margin-top: 40px;
}

.offset-s {
  margin-top: 20px;
}

.modal-body {
  text-align: center;
}

.file-upload {
  display: none;
}

.btn-circle.btn-camera {
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  font-size: 100px;
  display: inline-flex;
}

.screenOverlay {
  opacity: .7;
  z-index: 200000;
  background: #4a86bb;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.screenOverlayCont {
  opacity: .1;
  z-index: 200000;
  background: #000;
  top: 0;
  left: 0;
}

#cssload-cupcake {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 50%;
  position: relative;
}

.cssload-letter {
  color: #00deff;
  font-size: 82px;
}

.cssload-box {
  display: flex;
}

.cssload-cupcakeCircle, .cssload-cupcakeCore, .cssload-cupcakeInner {
  border-radius: 50%;
}

.cssload-cupcake, .cssload-cupcakeCircle, .cssload-cupcakeCore, .cssload-cupcakeInner, .cssload-letter {
  flex: none;
}

.cssload-cupcakeCircle, .cssload-letter {
  align-self: center;
}

.cssload-cupcakeCircle {
  background-color: #1e2425;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
}

.cssload-cupcakeInner {
  background-color: #fff;
  justify-content: center;
  align-self: center;
  width: 50%;
  height: 50%;
  animation-name: cssload-cupcakeAnimate;
  animation-duration: .575s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.cssload-cupcakeCore {
  background-color: #0b7bda;
  align-self: center;
  width: 25%;
  height: 25%;
  animation-name: coreAnimate;
  animation-duration: 1.15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes cssload-cupcakeAnimate {
  to {
    width: 90%;
    height: 90%;
  }
}

@keyframes coreAnimate {
  to {
    width: 90%;
    height: 90%;
  }
}

.uploaded-image-cont {
  max-width: 250px;
  max-height: 400px;
}

.file-uploader {
  display: none;
}

.item-select-counter {
  --size: 34px;
  --font-size: 24px;
  width: var(--size);
  background-color: var(--base-color-3);
  -webkit-user-select: none;
  user-select: none;
  font-size: var(--font-size);
  border-radius: 50px;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  display: flex;
}

.item-select-counter_hidden {
  display: none;
}

.item-select-counter__amount {
  background-color: var(--base-color-1);
  color: var(--base-color-3);
  text-align: center;
  height: var(--size);
  width: var(--size);
  box-shadow: 0 0 0 1px var(--base-color-1), 0 0 10px -2px #000;
  line-height: 1;
  font-size: calc(var(--font-size)  - 2px);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  display: inline-flex;
}

.item-select-counter__plus, .item-select-counter__minus {
  color: var(--base-color-1);
  height: var(--size);
  width: var(--size);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.waiting-notice {
  --bg-color: #34bf49;
  border: 1px solid var(--bg-color);
  z-index: 1;
  background: #d5f4da;
  align-items: center;
  gap: 15px;
  padding: 5px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.waiting-notice_center_pad {
  max-width: var(--base-max-width);
  border-radius: 16px;
  margin: auto;
}

.waiting-notice__img {
  --img-size: 50px;
  width: var(--img-size);
  height: var(--img-size);
}

.waiting-notice__text {
  color: var(--bg-color);
  text-align: left;
  font-size: 15px;
}

.full-screen-view {
  --panel-height: 54px;
  --bottom-panel-height: 84px;
  z-index: 1;
  background: #000;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.full-screen-view_show {
  flex-direction: column;
  display: flex;
}

.full-screen-view__list {
  width: 100%;
  height: calc(100% - (var(--panel-height)  + var(--bottom-panel-height)));
  justify-content: center;
  align-items: center;
  display: flex;
}

.full-screen-view__nav {
  --height: 72px;
  --width: 36px;
  z-index: 1;
  top: calc(50% - (var(--panel-height)));
  pointer-events: none;
  justify-content: space-between;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.full-screen-view__nav-btn {
  height: var(--height);
  width: var(--width);
  cursor: pointer;
  pointer-events: all;
  justify-content: center;
  align-items: center;
  display: flex;
}

.full-screen-view__item {
  height: inherit;
  opacity: 0;
  z-index: 0;
  width: 100%;
  display: flex;
  position: absolute;
}

.full-screen-view__item.full-screen-view__item_current {
  opacity: 1;
  z-index: 1;
}

.full-screen-view__content {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
}

.full-screen-view__content_type_360 {
  pointer-events: all;
}

.full-screen-view__watermark {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.full-screen-view__buttons {
  pointer-events: none;
  z-index: 1;
  justify-content: center;
  align-items: center;
  gap: 35px;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 16px;
}

.full-screen-view__button {
  color: #fff;
  pointer-events: all;
  background: none;
  border: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 84px;
  padding: 0;
  display: flex;
}

.full-screen-view__button_disabled {
  display: none;
}

.pinch-zoom-container {
  width: 100%;
  height: 100% !important;
}

.full-screen-view__top-panel {
  min-height: var(--panel-height);
}

.full-screen-view__bottom-panel {
  min-height: var(--bottom-panel-height);
}

.full-screen-view__video-btn_play, .full-screen-view__video-btn_pause {
  z-index: 1;
  opacity: .8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.full-screen-view__video-btn_play {
  background: url("play-video-button.0a4f0d72.svg") center no-repeat;
}

.full-screen-view__video-btn_pause {
  background: url("pause-video-button.86e8b150.svg") center no-repeat;
  transition: opacity 1s ease-in-out;
}

.full-screen-view__video-btn_hidden {
  opacity: 0;
}

.full-screen-view__video-btn_display-off {
  display: none;
}

.shooting-content {
  text-align: center;
  padding: 0 20px;
}

.shooting-img-helper {
  object-fit: contain;
  width: 100%;
  max-height: 500px;
}

.shooting-text {
  font-size: 18px;
}

.btn-circle.btn-xl {
  border-radius: 75px;
  width: 150px;
  height: 150px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
}

.btn-circle {
  text-align: center;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.42857;
}

.cDownLabel {
  color: #80a0d4;
  font-size: 60px;
}

.scanned-img {
  max-width: 100%;
}

@keyframes beat {
  to {
    transform: scale(.8);
  }
}

.ugc-tooltip {
  display: none;
}

.ugc-tooltip__arrow {
  opacity: .8;
  border: 10px solid rgba(0, 0, 0, 0);
  border-bottom-color: #faa51e;
  margin: -6px 28px 0 14px;
  position: fixed;
  transform: translateX(-50%);
}

.ugc-tooltip__text {
  overflow-wrap: break-word;
  text-align: center;
  opacity: .9;
  color: #fff;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, .25));
  background: #faa51e;
  border-radius: 12px;
  inline-size: 276px;
  margin: 13px 28px 0 -127px;
  padding: 10px;
  font-size: 13px;
  position: absolute;
}

.faceReco-tooltip {
  display: none;
}

.faceReco-tooltip__arrow {
  opacity: .9;
  border: 10px solid rgba(0, 0, 0, 0);
  border-top-color: #faa51e;
  margin: -21px 0 0 45px;
  position: fixed;
  transform: translateX(-50%);
}

.faceReco-tooltip__text {
  overflow-wrap: break-word;
  text-align: center;
  opacity: .9;
  color: #fff;
  filter: drop-shadow(2px -1px 1px rgba(0, 0, 0, .25));
  background: #faa51e;
  border-radius: 12px;
  inline-size: 276px;
  margin: -99px 0 21px -186px;
  padding: 10px;
  font-size: 13px;
}

.banner-position {
  --banner-offset: 1px;
  display: none;
}

.banner-position_show {
  display: block;
}

.banner-position_top {
  padding-bottom: var(--banner-offset);
}

.banner-position_bottom {
  padding-top: var(--banner-offset);
}

.banner {
  display: flex;
}

.banner_link {
  display: inherit;
}

.banner__img {
  width: 100%;
}

.uploadMassage__Text {
  word-wrap: break-word;
}

.multi-accounts {
  background-color: #eff0f5;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px;
  display: flex;
  overflow-x: auto;
}

.multi-accounts_hidden {
  display: none;
}

.multi-accounts__item {
  background-color: var(--base-color-1);
  opacity: .8;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  width: 130px;
  height: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(51, 68, 85, .25);
}

.multi-accounts__item_active {
  opacity: 1;
  transform: scale(1.1);
}

.multi-accounts__logo {
  object-fit: contain;
  width: 100%;
  height: calc(100% - 12px);
  padding: 8px;
}

.multi-accounts__register-date {
  color: #fff;
  background-color: rgba(67, 109, 181, .8);
  justify-content: center;
  align-items: center;
  height: 12px;
  font-size: 8px;
  display: flex;
}

.multi-accounts__register-date_hidden {
  display: none;
}

.multi-accounts__expired-date {
  color: #fff;
  background-color: rgba(210, 17, 17, .8);
  justify-content: center;
  align-items: center;
  height: 12px;
  font-size: 8px;
  display: flex;
}

.multi-accounts__expired-date_hidden, .qr_disabled .qr-btn {
  display: none;
}

/*# sourceMappingURL=a-shoot.45ff03dd.css.map */
