:root {
    --base-color-1: rgba(67, 109, 181, 1);
    --base-color-2: rgba(253, 162, 26, 1);
    --base-color-3: rgba(255, 255, 255, 1);
    --base-color-4: rgba(51, 68, 85, 1);
    --base-color-5: rgba(119, 136, 153, 1);
    --base-color-6: rgba(62, 209, 82, 1);
    --base-color-7: rgba(241, 12, 12, 1);
    --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: 0.8;
    --base-max-width: 832px;
}

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

html {
    height: 100%;
}

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

.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-family: 'Montserrat', sans-serif !important;
    font-style: normal;
    font-weight: var(--base-font-weight);
    font-size: var(--base-font-size);
}

body {
    margin: 0 0;
}

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

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input {
    background-color: var(--base-color-3);
    border-radius: 8px;
    font-weight: var(--base-font-weight);
    font-size: var(--base-font-size);
    color: var(--base-color-4);
    padding: 13px 16px;
    border: none;
}

.input_size_m {
    width: var(--base-form-item-width);
}

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

.checkbox {
    display: inline-flex;
    align-items: center;
}

.checkbox__icon {
    margin-right: 10px;
    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);
}

.checkbox__text a {
    color: var(--base-color-2);
}

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

.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: 0.5;
}

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

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

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

.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 {
    background: transparent;
    font-size: calc(var(--base-font-size-second) - 4px);
    font-weight: var(--base-font-weight-semibold);
    color: var(--base-color-1);
}

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

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

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

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

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

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

.top-panel_hidden {
    display: none;
}

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

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

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

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

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

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

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

.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 {
    position: absolute;
    top: 38px;
    font-size: calc(var(--base-font-size) - 6px);
    color: var(--base-color-5);
    font-weight: var(--base-font-weight-semibold);
}

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

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

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

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

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

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

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

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

.menu-top-panel__button {
    cursor: pointer;

}

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

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

.add-selfie__btn {
    cursor: pointer;
    position: absolute;
    bottom: calc(var(--base-offset) - 19px);
    right: calc(var(--base-offset) - 10px);
    pointer-events: all;
    transform-origin: center;
    }
    
    .add-selfie__btn>.add-selfie__icon {
    animation: beat .5s infinite alternate;
}

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

.add-selfie__input {
    display: none;
}

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

.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 {
    margin-top: 20px;
    color: var(--base-color-5);
    text-align: center;
}

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

.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 {
    display: flex;
    padding: 0 var(--base-offset);
    height: 54px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__btn-close {
    cursor: pointer;
}

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

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

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

.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: 0.9px;
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}

.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));
    position: relative;
    aspect-ratio: 1/1;
    /*-webkit-touch-callout: none;*/
    user-select: none;
}

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

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

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

.gallery__item-small-action-panel_hidden,
.gallery__item-btn-share_hidden{
    display: none;
}

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

.gallery__item-checkbox_hidden {
    display: none;
}

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

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

.gallery__item_active-view .gallery__item-view,
.gallery__item_active-icon-type .gallery__item-icon-type {
    display: block;
}

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

.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;
}

.small-action-panel {
    background-color: white;
    padding: 8px 12px;
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto 8px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

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

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

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

.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;
}

.small-action-panel .small-action-panel__icon {
    width: 16px;
    height: 16px;
    margin: 0;
    filter: brightness(0);
}

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

.action-panel_show {
    display: flex;
}

.action-panel .action-button__text {
    color: black;
}

.action-panel .action-button__img {
    filter: brightness(0);
}

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

.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: 0.5;
}

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

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

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

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

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

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

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

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

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

.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 {
    display: flex;
    flex-direction: column;
    padding: var(--base-offset);
    gap: var(--base-offset);
}

.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);
    width: 179px;
    text-align: left;
    border-top-left-radius: var(--form-radius);
    border-bottom-left-radius: var(--form-radius);
    border-style: solid;
    border-right: none;
    border-color: var(--base-color-1);
    padding: 0 10px;
}

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

.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);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: var(--base-max-width);
    background: var(--base-color-3);
}

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

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

.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 {
    height: 1px;
    width: 100%;
    background: var(--base-color-5);
    opacity: 0.2;
}

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

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

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

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

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

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

.cart-view__content {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    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: transparent;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.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 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--base-color-4);
    position: relative;
    padding: 10px var(--cart-offset);
    background-color: #F7F7FA;
    font-size: calc(var(--base-font-size) - 2px);
}

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

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

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

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

.product-price {
    background: var(--base-color-6);
    border-radius: 50px;
    line-height: 1;
    color: var(--base-color-3);
    display: inline-block;
    /* size m */
    font-size: calc(var(--base-font-size) - 4px);
    padding: 4px 8px;
    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);
    position: absolute;
    background: #fff;
    top: 50%;
    margin-top: calc(var(--line-height) / -2);
    left: var(--offset-from-edges);
    right: var(--offset-from-edges);
}

.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);
    padding: 5px 12px;
    font-size: calc(var(--base-font-size) - 2px);
}

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

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

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

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

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

.addon-view {
    padding: var(--addon-offset);
    display: flex;
    gap: var(--addon-offset);
    background-color: #F7F7FA;
    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;
    position: absolute;
    top: 0;
    left: var(--addon-offset);
    right: var(--addon-offset);
    background-color: rgba(119, 136, 153, 0.2);
}

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

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

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

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


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

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

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

.file-upload {
    display: none;
}

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

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


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


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

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

.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 {
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 82px;
    background-color: #1e2425
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.file-uploader {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-screen-view__btn-img {
    filter: brightness(0) invert(1);
}

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

.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 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
}

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

.full-screen-view__video-btn_pause {
    background: url(img/pause-video-button.svg) no-repeat center center;
    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 {
    padding: 0 20px;
    text-align: center;
}

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

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

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

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

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

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

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


/* Tooltips */
.ugc-tooltip {
    display: none;
}

.ugc-tooltip__arrow {
    position: fixed;
    margin: 8px 28px 0 30px;
    transform: translateX(-50%);
    border: 10px solid transparent;
    opacity: 0.8;
    border-bottom: 10px solid #faa51e;
}

.ugc-tooltip__text {
    inline-size: 276px;
    overflow-wrap: break-word;
    text-align: center;
    opacity: .8;
    color: #111;
    filter: drop-shadow(2px 2px 1px #00000040);
    background: #faa51e;
    border-radius: 12px;
    margin: 27px 28px 0 -144px;
    padding: 10px;
    font-size: 13px;
    position: absolute;
}

.faceReco-tooltip {
    display: none;
    
}

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

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


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

.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%;
}

/*# sourceMappingURL=main.css.map*/