@media only screen and (min-width: 1024px) {
	.mob__btns {
		margin-top: 20px
	}

	#upload-form-container .tips {
		width: 100%;
		max-width: 750px;
		margin: 20px auto 0
	}

	.ppdp__cont {
		width: 100%;
		max-width: 750px;
		margin: 0 auto
	}
}

.city-name {
	font-weight: 700;
	font-style: italic;
	display: inline-block;
	transition: opacity .2s ease
}

#upload-form-container .tips {
	border: 1px solid #00C223;
	border-radius: 5px;
	background: #f5fff5;
	padding: 10px
}

div#social-proof-box {
	line-height: 20px
}

.mobile__preview {
	display: none
}

.ppdp__cont {
	display: flex;
	gap: 20px;
	align-items: center;
	border: 1px solid #C4C4C4;
	border-radius: 5px;
	background: #f8f6f3;
	padding: 10px
}

.pdp_cont p {
	margin: 0
}

.product-image img {
	width: 100%;
	max-width: 100px;
	border-radius: 5px
}

.social-proof-box {
	line-height: 130%
}

.mob__btns1 {
	padding: 20px 10px;
	display: none
}

.mob__btns .step-3-icon,
.mob__btns1 .step-1-icon {
	display: none
}

@media screen and (max-width: 767px) {
	..generated-images-progress .generated-image {
		gap: 0px
	}

	#personalise-title {
		margin-top: 50px;
		padding-bottom: 20px
	}

	.upload-step-3-iner {
		background: linear-gradient(to bottom, #f8f6f3 300px, #fff 52px)
	}

	.upload-step-3-iner .personalise-text {
		font-size: 24px
	}

	.mob__btns1 {
		display: block
	}

	.mobile__preview {
		display: block !important
	}

	.image-upload__inner .preview-bg {
		display: none
	}

	.mobile__preview {
		background: #0b1f44;
		color: #fff;
		line-height: 1.3em
	}

	.upload-step-1__message .message-text {
		text-align: center
	}

	.image-upload__inner #upload-form-container {
		margin-top: 0
	}

	.image-upload__inner .image-upload__preview {
		top: calc(100% - 22vh)
	}

	.mobile__review_inner {
		display: flex;
		justify-content: space-between;
		padding: 10px;
		align-items: center
	}

	.mobile__review_inner p {
		margin: 0
	}

	.mobile__review_inner .left__text {
		text-align: left;
		max-width: 140px
	}

	.upload-step-3 .mobile__preview .mobile__review_inner div {
		text-align: center
	}

	.mobile__review_inner .right__text {
		text-align: right;
		max-width: 140px
	}

	.mob__btn {
		display: block !important;
		margin-bottom: 20px !important
	}

	#upload-form-container .tips__subtitle {
		max-width: 600px;
		display: none
	}

	.desktop_btn {
		display: none !important
	}

	#personalisation-form {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 20px !important;
		max-width: 100% !important;
		padding: 0 !important
	}

	.number-input-container {
		width: 100% !important
	}

	#personalisation-form .name-input-container {
		grid-column: 1 / 3
	}

	#personalisation-form .options-selection {
		grid-column: 1 / 2;
		width: 250px
	}

	#personalisation-form .number-input-container {
		grid-column: 2 / 3
	}
}

:root {
	--purple: #392f5a;
	--grey: #b3b3b3;
	--green: #39b54a;
	--red: rgb(237, 28, 36)
}

.btn {
	background: rgb(var(--accent-color));
	color: #fff;
	border-radius: var(--buttons-radius);
	padding: 10px 15px;
	font-family: Questrial, sans-serif
}

.loader-wrapper {
	height: 100px;
	width: 100px;
	position: relative
}

.loader-circle {
	width: 100%;
	height: 100%
}

.loader-star-small {
	height: 25%;
	width: auto;
	position: absolute;
	bottom: 20%;
	right: 23%;
	animation: stars-rotate 3s infinite
}

.loader-star-medium {
	height: 28%;
	width: auto;
	position: absolute;
	top: 18%;
	right: 30%;
	animation: stars-rotate 3s infinite ease-in-out;
	animation-delay: .5s
}

.loader-star-large {
	height: 35%;
	width: auto;
	position: absolute;
	bottom: 25%;
	left: 20%;
	animation: stars-rotate 3s infinite ease-in-out;
	animation-delay: 1s
}

@keyframes stars-rotate {
	0% {
		transform: rotate(0)
	}

	50% {
		transform: rotate(-90deg) scale(0)
	}

	to {
		transform: rotate(-180deg) scale(1)
	}
}

.btn[disabled] {
	background: var(--grey)
}

.back-button {
	align-items: center;
	background: rgb(var(--accent-color));
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	height: 39px;
	justify-content: center;
	left: 10%;
	position: absolute;
	right: auto;
	top: 144px;
	width: 39px;
	z-index: 1
}

.back-button.back-button-step-1 {
	left: 5%
}

.back-button svg {
	height: 16px
}

.back-button[disabled] {
	display: none
}

.step-progress {
	width: 400px;
	padding: 6px;
	background: #f0f0f0;
	border-radius: 6px;
	box-shadow: #00000040 0 1px 2px inset, #ffffff14 0 1px;
	height: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px auto
}

.step-progress[hidden] {
	display: none
}

.step-progress-item {
	width: 0;
	transition: width .3s ease-in-out
}

.step-progress-item.active {
	background: rgb(var(--accent-color));
	border-radius: 4px;
	flex-grow: 0;
	flex-shrink: 1;
	height: 100%;
	width: 49%
}

.image-upload {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative
}

.image-upload__inner {
	width: 100%;
	background: #fff
}

.upload-step {
	display: none;
	min-height: 100vh
}

.upload-step.active {
	display: flex
}

.upload-step:not(.upload-step-1).active {
	flex-direction: column
}

.upload-step-1 {
	justify-content: space-between
}

.upload-step-1__message {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 15px 0
}

.upload-step-1__message .message-text {
	font-size: 14px;
	line-height: 120%
}

.upload-step-1__message svg {
	flex-shrink: 0
}

.upload-step-2 {
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 20px 0
}

.upload-step-3 {
	max-width: 600px;
	margin: 0 auto
}

.upload-step-3-iner {
	padding: 0 20px
}

.upload-step-3 img,
.modal-content img {
	pointer-events: none;
	user-drag: none;
	-webkit-user-drag: none
}

.image-upload__left {
	width: 20%;
	position: relative;
	background: rgb(var(--accent-color))
}

.preview-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0
}

.image-upload__preview {
	min-width: 100px;
	min-height: 100px;
	width: 35vh;
	height: 35vh;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% - 20vh);
	overflow: hidden;
	cursor: pointer
}

.image-preview {
	background-color: #fff;
	border-radius: 50%;
	height: 200px;
	width: 200px;
	margin: 0 auto
}

.image-upload__preview img,
.image-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.image-upload__right {
	flex-grow: 1;
	position: relative
}

.main-title {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 58px
}

.main-title--mobile {
	display: none
}

#upload-form-container {
	display: flex;
	flex-direction: column;
	padding: 0 15px;
	max-width: 100%
}

.image-upload__drop-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 0 auto 40px;
	max-height: 260px;
	min-height: 140px;
	height: 21vh;
	max-width: 600px;
	width: 100%;
	border: 2px dashed rgba(0, 0, 0, .2);
	border-radius: 30px;
	padding-top: 18px;
	padding-bottom: 18px
}

.image-upload__drop-area {
	display: flex;
	align-items: center;
	justify-content: center
}

.image-upload__button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgb(var(--accent-color));
	color: #fff;
	border: none;
	border-radius: var(--buttons-radius);
	padding: 10px 20px;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	height: 48px;
	border-radius: 12px
}

.image-upload__button svg {
	width: 18px;
	height: 18px
}

#image-input {
	display: none
}

.next-button {
	justify-content: center;
	margin: 0 auto;
	height: 50px;
	min-width: 120px;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	width: fit-content;
	font-weight: 700
}

#next-step-1 {
	height: 70px;
	font-size: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	font-weight: 400;
	min-width: 300px
}

#next-step-1-toggle {
	font-size: 25px
}

#next-step-1 svg {
	height: 28px;
	width: 28px
}

.upload-atc {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 20px;
	padding: 16px 0;
	height: 60px
}

.upload-sticky-atc-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 16px;
	box-shadow: 0 -2px 10px #0000001a;
	z-index: 1000
}

.sticky-atc-btn {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	padding: 16px 0
}

.hidden {
	display: none
}

.tips {
	margin-bottom: 20px;
	margin-top: 20px
}

.tips__title,
.tips__subtitle {
	margin: 0 auto 20px;
	text-align: center
}

.tips__title {
	font-size: 40px
}

.tips__subtitle {
	font-size: 16px;
	line-height: 120%;
	margin-top: 10px
}

.tips__container {
	display: grid;
	grid-template-columns: 146px 146px 146px 146px;
	gap: 28px;
	margin: 10px;
	margin-inline-start: 25px;
	justify-content: center
}

.tip-item {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.tip-item-image-container {
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--grey);
	aspect-ratio: 1 /1;
	position: relative
}

.tip-item-image-container img {
	position: absolute;
	border-radius: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.tip-item--correct .tip-item-image-container {
	border: 4px solid var(--green)
}

.tips-icon {
	position: absolute;
	border-radius: 50%;
	bottom: 5%;
	right: 10px;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center
}

.correct-icon {
	background: #51890a
}

.incorrect-icon {
	background: var(--red);
	border: 2px solid white;
	padding: 2px
}

.incorrect-icon svg {
	height: 10px;
	width: 10px
}

.tip-item__text {
	margin: 0;
	text-align: center;
	font-weight: 700;
	color: var(--grey);
	line-height: 120%;
	font-size: 20px
}

.tip-item--correct .tip-item__text {
	color: var(--green)
}

.tip-item--incorrect .tip-item-image-container img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

.personalise-text {
	text-align: center;
	font-size: 28px
}

@media screen and (max-width: 1320px) {
	.tips__container {
		gap: 0;
		grid-template-columns: repeat(4, 80px)
	}

	.tip-item {
		max-width: 80px
	}

	.tip-item__text {
		font-size: 12px;
		max-width: 70px;
		margin: 0 auto;
		letter-spacing: .5
	}

	.tip-item--incorrect:nth-of-type(2) {
		transform: translate(28px);
		z-index: 3
	}

	.tip-item--incorrect:nth-of-type(3) {
		transform: translate(15px);
		z-index: 2
	}

	.tip-item--incorrect:nth-of-type(4) {
		z-index: 1
	}

	.tip-item-image-container,
	.tip-item--correct .tip-item-image-container {
		width: 88px;
		height: 88px
	}

	.tips-icon {
		bottom: 0;
		right: 5px
	}
}

.image-editor {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px
}

.image-editor__text {
	margin: 0;
	font-size: 14px
}

.image-upload__inner div:empty:not(.image-loader) {
	display: block
}

#editable-image {
	max-width: 100%;
	object-fit: cover;
	transition: all .3s ease
}

.image-controls {
	bottom: 0;
	left: 50%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transform: translateX(-50%);
	transform: translate(-50%);
	width: 100%;
	padding: 20px 15px;
	background: #0006
}

.image-controls button {
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center
}

.image-container {
	position: relative;
	max-width: 650px;
	width: 50%;
	height: calc(-373px + 100vh);
	padding: 40px 10px 80px;
	background: #000;
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc
}

.image-container__inner {
	position: relative;
	height: 100%;
	width: 100%
}

.rotation-container {
	position: relative
}

.rotation-control {
	position: relative;
	width: 300px;
	height: 40px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	border-radius: 5px;
	overflow: hidden
}

.rotation-slider {
	position: relative;
	width: 100%;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden
}

.tick-marks {
	position: absolute;
	width: 300%;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: transform .1s linear;
	cursor: grab
}

.tick-marks div.center-tick {
	height: 20px;
	background: red
}

.tick-marks div {
	width: 2px;
	height: 15px;
	background: #fff;
	opacity: .6
}

.slider-handle {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	width: 2px;
	height: 20px;
	background: #0ff;
	border-radius: 5px;
	cursor: grab
}

#rotation-value {
	color: #0ff;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	font-size: 11px;
	top: -6px
}

.product-variants {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 600px;
	width: 100%;
	margin: 30px auto
}

.upload-variant-option {
	padding: 1.75rem;
	cursor: pointer;
	border-radius: 4px;
	background: rgba(var(--accent-color), .02);
	border: 1px solid rgba(var(--accent-color), .3);
	position: relative
}

.upload-variant-option.selected,
.upload-variant-option:hover {
	background: rgba(var(--accent-color), .1);
	border: 1px solid rgb(var(--accent-color))
}

.upload-variant-option__inner {
	font-family: Questrial, sans-serif
}

.upload-variant-option__inner .quantity-break__label-text,
.upload-variant-option__inner .quantity-break__price {
	font-size: 16px;
	font-weight: 700
}

#upload-form-container.drag-over .image-upload__drop-area {
	border: 2px dashed rgb(var(--accent-color));
	background-color: rgba(var(--accent-color), .08)
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

input[type=number] {
	-moz-appearance: textfield
}

.personalisation-input {
	border-radius: 4px;
	border: 1.3px solid #e3e3e3;
	height: 50px;
	padding: 6px;
	position: relative;
	transition: .3s
}

.number-input-container:has(input:focus) {
	border: 1.3px solid rgb(var(--accent-color))
}

.options-selection {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	flex-shrink: 0
}

#personalisation-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	max-width: 300px;
	margin: 0 auto 20px;
	padding: 0 20px
}

.personalisation-input label {
	position: absolute;
	font-size: 11px;
	top: -10px;
	left: 10px;
	background: #fff;
	padding: 0 4px;
	line-height: 100%
}

.personalisation-input {
	text-align: center;
	flex-grow: 1
}

.number-input-container {
	width: 70px
}

.personalisation-options {
	display: flex;
	gap: 4px;
	align-items: center;
	width: 100%
}

#custom-number,
#name {
	display: block;
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	box-shadow: none;
	background: transparent;
	text-align: center;
	font-size: 18px
}

#custom-number:focus {
	outline: none;
	box-shadow: none
}

.step-2-form-btn {
	border-radius: 4px;
	padding: 6px 10px;
	height: 100%;
	min-width: fit-content;
	transition: .3s;
	flex-grow: 1;
	font-size: 18px
}

.step-2-form-btn.selected {
	background: rgb(var(--accent-color));
	color: #fff
}

.page-label {
	display: block;
	font-size: 14px;
	color: #666
}

.generated-image {
	width: 100%;
	min-height: 300px;
	aspect-ratio: 1 / 1;
	height: auto;
	background: #fff;
	position: relative;
	outline: 2px solid transparent;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 6px 8px 10px #0006;
	transition: box-shadow .3s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10px
}

.book-spine-highlight {
	position: absolute;
	top: 0;
	left: 2px;
	height: 100%;
	width: 10px;
	background: linear-gradient(90deg, #ffffffb3 40%, #fff0 60%);
	filter: blur(2.5px);
	z-index: 2
}

.book-spine-shadow {
	position: absolute;
	top: 0;
	left: 16px;
	height: 100%;
	width: 3px;
	background: linear-gradient(90deg, #0000001a, #0000);
	z-index: 1
}

.book-spine-shadow-strong {
	position: absolute;
	top: 0;
	left: 20px;
	height: 100%;
	width: 2px;
	background: linear-gradient(90deg, #00000047, #0000);
	filter: blur(2.5px);
	z-index: 1
}

.generated-image:hover {
	box-shadow: 0 6px 15px #0003
}

.generated-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px
}

.generated-images {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 30px
}

.generated-image.selected {
	border: 2px solid white;
	outline: 2px solid rgb(var(--accent-color));
	box-shadow: 0 6px 15px #0000004d
}

.generated-image-magnifier {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 10px #00000026;
	position: absolute;
	right: 5%;
	bottom: 5%
}

.generated-image-magnifier svg {
	height: 20px;
	width: 20px
}

.generated-images-modal,
.preview-generated-images-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 10000;
	background: #0003;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%
}

.modal-content {
	background: #fff;
	height: 100%;
	width: fit-content;
	padding: 40px;
	border-radius: 12px;
	margin: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	max-width: 100%;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgb(var(--accent-color));
	color: #fff;
	cursor: pointer
}

.modal-content img {
	height: 100%;
	width: 100%;
	object-fit: cover
}

@media screen and (max-width: 640px) {
	#personalise-title {
		margin-left: 40px;
		margin-right: 40px;
		text-align: center
	}

	.generated-images-modal {
		padding: 10px
	}

	.modal-content {
		padding: 20px;
		height: fit-content
	}
}

.progress-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 150px;
	height: 150px
}

.blurred-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff80;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 1
}

.progress-loader-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.progress-circle {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 8px solid #f3f3f3;
	border-top: 8px solid rgb(var(--accent-color));
	animation: rotate 2s linear infinite
}

@keyframes rotate {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.circle-loader {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 76px;
	height: 76px;
	border-radius: 50%
}

.image-placeholder {
	font-size: 26px;
	font-weight: 500;
	width: 55%;
	margin-bottom: 0;
	margin-top: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2
}

.image-placeholder-caption {
	margin-top: 0
}

.progress-bar {
	position: absolute;
	bottom: 20px;
	left: 2.5%;
	right: 2.5%;
	width: 95%;
	height: 40px;
	background: #f8f6f3;
	z-index: 2;
	border-radius: 1000px;
	border: 1px solid #ADADAD
}

.progress-text {
	font-weight: 500
}

.progress-fill {
	width: 0%;
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	background: #ffeda3;
	border-radius: 1000px
}

@keyframes progressAnimation {
	0% {
		width: 0%
	}

	to {
		width: 100%
	}
}

.transparent-area {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff6;
	pointer-events: none
}

@media screen and (max-width: 1550px) {
	.image-upload__preview {
		width: 30vh;
		height: 30vh;
		left: calc(100% - 15vh)
	}

	.tips__subtitle {
		max-width: 600px
	}

	.main-title {
		font-size: 52px
	}
}

@media screen and (max-width: 1024px) {
	.upload-step-1 {
		flex-direction: column
	}

	.upload-step-1:has(#upload-form-container.hidden) .image-upload__left {
		display: none
	}

	#next-step-1 {
		width: 100%;
		font-size: 36px;
		height: 62px
	}

	.image-upload__button {
		height: 48px;
		border-radius: 30px
	}

	.image-container {
		min-width: 450px;
		min-height: 400px;
		max-width: 70%;
		max-height: 100%;
		width: auto;
		height: auto
	}

	.image-upload__right {
		margin-top: 40px;
		display: flex;
		justify-content: center
	}

	.image-upload__left {
		width: 100%;
		height: 10vh;
		position: relative
	}

	.image-upload__preview {
		min-width: 136px;
		min-height: 136px;
		width: 22vh;
		height: 22vh;
		left: 50%;
		transform: translate(-50%);
		top: calc(100% - 15vh)
	}

	.main-title--mobile {
		display: block;
		color: #f8f6f3;
		text-align: center;
		font-size: 28px;
		margin-top: 0;
		padding: 10px;
		background: #f8f6f3
	}

	.main-title {
		display: none
	}

	#upload-form-container {
		margin-top: 60px
	}

	.image-upload__drop-area {
		border: none;
		gap: 0;
		height: fit-content;
		padding-bottom: 0;
		min-height: fit-content
	}

	.upload-form-text {
		display: none
	}

	#next-button-1 {
		width: 80%
	}

	.back-button {
		left: 3%
	}

	.back-button.back-button-step-1 {
		top: 0
	}
}

@media screen and (max-width: 660px) {
	.image-container {
		max-width: 100%;
		min-width: 310px
	}

	.rotation-control {
		width: 200px
	}

	.tick-marks {
		width: 450%
	}

	.progress-circle {
		width: 60px;
		height: 60px
	}
}

@media screen and (max-width: 570px) {
	.image-placeholder {
		width: 75%
	}

	.tips__title {
		font-size: 21px
	}

	.back-button {
		top: 210px
	}

	.step-progress {
		width: 95%
	}

	.generated-images {
		gap: 15px
	}

	generated-image {
		min-height: 300px
	}

	.preview-generated-images-section .back-button {
		top: 60px
	}
}

.upload-variant-option-btn {
	padding: 1.75rem;
	cursor: pointer;
	border-radius: 12px;
	background: transparent;
	border: 2px solid rgb(var(--accent-color));
	color: rgb(var(--accent-color))
}

.upload-variant-option-btn:disabled {
	opacity: .5;
	cursor: not-allowed
}

.sticky-variant-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.upload-variant-option-btn {
	justify-content: center
}

.sticky-variant-buttons .upload-variant-option-btn {
	max-width: 560px;
	width: 100%;
	margin: 0 auto
}

.upload-variant-option-btn:last-of-type {
	background: rgb(var(--accent-color));
	color: #fff
}

.upload-variant-option-btn:last-of-type .quantity-break__price {
	color: #fff
}

.preview-generated-images {
	max-width: 600px;
	margin: 30px auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px
}

.preview-generated-images .generated-image {
	width: 100%;
	border-radius: 6px
}

.preview-generated-images .generated-image img {
	border-radius: 6px
}

.preview-generated-images-product-variants {
	position: sticky;
	bottom: 0;
	z-index: 100;
	background: #fff;
	padding: 12px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 2px 8px #00000012
}

.preview-generated-images-product-variants button {
	max-width: 560px;
	width: 100%;
	margin: 0 auto
}

.variant-text-block {
	margin-top: 1rem;
	text-align: center;
	font-size: 16px;
	color: #666;
	padding: 0 1rem
}

.variant-text-block p {
	margin: 0
}

.image-upload__preview-loader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffffb3;
	z-index: 2;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: opacity .2s
}

.image-upload__preview-loader-overlay.hidden {
	display: none
}

.image-upload__preview-loader-overlay-inner {
	display: flex;
	align-items: center;
	justify-content: center
}

.image-upload__preview-spinner {
	width: 36px;
	height: 36px;
	border: 4px solid rgb(var(--accent-color));
	border-top: 4px solid #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.image-upload__preview {
	position: relative
}

.success-popup {
	display: none;
	width: 250px;
	min-height: 100px;
	bottom: 10px;
	right: 10px;
	color: #0a1f44;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	z-index: 10010;
	font-size: 16px;
	box-shadow: 0 4px 24px #0000002e;
	transition: opacity .3s;
	opacity: 1;
	border-left: 6px solid #0a1f44;
	box-sizing: border-box;
	position: fixed
}

.success-popup-message {
	display: block;
	padding-right: 20px
}

.success-popup-close-btn {
	position: absolute;
	top: 8px;
	right: 10px;
	background: none;
	border: none;
	color: #0a1f44;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	z-index: 1;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s
}

.success-popup-close-btn:hover,
.success-popup-close-btn:focus {
	background: #f0f0f0;
	outline: none
}

.request-changes-modal {
	display: none;
	position: fixed;
	z-index: 10001;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #0003;
	justify-content: center;
	align-items: center
}

.request-changes-modal-content {
	width: 100%;
	height: fit-content;
	max-width: 90vw;
	position: relative;
	top: unset;
	transform: none;
	background: #fff;
	border-radius: 12px;
	padding: 24px 24px 18px;
	box-shadow: 0 4px 24px #0000001a
}

.request-changes-title {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 600
}

.request-changes-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px
}

.red-bg {
	background: #ffeaea9d !important;
	border: 1.5px solid #e74c3c !important;
	transition: background .2s, border .2s
}

.request-changes-textarea {
	width: 100%;
	resize: vertical;
	border-radius: 6px;
	border: 1.3px solid #e3e3e3;
	padding: 8px 8px 20px;
	font-size: 16px;
	font-family: inherit;
	min-height: 70px;
	box-sizing: border-box;
	box-shadow: none;
	position: relative
}

.char-counter {
	position: absolute;
	left: 8px;
	bottom: 10px;
	font-size: 13px;
	color: #0a1f44a8;
	pointer-events: none;
	width: calc(100% - 10px);
	background: #fff
}

.request-changes-textarea:focus {
	outline: none;
	border: 1.3px solid rgb(var(--accent-color));
	box-shadow: none
}

.request-changes-close-btn {
	color: #0a1f44;
	background: none;
	border: none;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	z-index: 1;
	border-radius: 50%
}

.cancel-request-changes {
	border: 1px solid #0a1f44;
	color: #0a1f44;
	background: #fff
}

.request-changes-approve-buttons {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 16px;
	box-shadow: 0 -2px 10px #0000001a;
	z-index: 1000;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	justify-content: end
}

.request-changes-btn {
	text-decoration: underline;
	background: none;
	border: none;
	color: var(--purple);
	font-family: Questrial, sans-serif;
	font-size: 16px;
	cursor: pointer;
	margin-left: 10px
}

.request-changes-btn:disabled {
	opacity: .5;
	cursor: not-allowed
}

@media screen and (min-width: 660px) {
	.request-changes-modal-content {
		width: 600px
	}

	.request-changes-title {
		font-size: 20px
	}

	.success-popup {
		width: 300px
	}
}

.success-popup.error {
	border-left: 6px solid #e74c3c;
	margin-top: 16px
}

.testimonials-wrapper {
	margin-bottom: 24px;
	padding: 12px 0 4px
}

.testimonial-swiper {
	width: 100%
}

.testimonial-slide {
	height: auto
}

.testimonial-card__inner {
	background: #f8f6f3;
	border-radius: 10px;
	border: 1px solid #C4C4C4;
	padding: 16px 20px;
	box-shadow: 0 2px 4px #00000008
}

.testimonial-card__header {
	display: flex;
	gap: 12px;
	margin-bottom: 8px
}

.testimonial-card__avatar img {
	width: 50px !important;
	height: 50px !important;
	object-fit: cover;
	object-position: center center
}

.testimonial-card__heading {
	display: flex;
	flex-direction: column
}

.testimonial-card__heading-inner .testimonial-card__stars {
	color: #f5b400;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 0
}

.testimonial-card__heading-inner {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 10px
}

.testimonial-card__meta {
	font-size: 14px;
	line-height: 1.4
}

.testimonial-card__name {
	font-weight: 600;
	color: #1f2933
}

.testimonial-card__subtitle {
	color: #6b7280;
	margin-left: 4px
}

.testimonial-card__text {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: #374151
}

.testimonial-swiper .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #0f172a40;
	opacity: 1
}

.testimonial-swiper .swiper-pagination-bullet-active {
	width: 16px;
	border-radius: 999px;
	background: rgb(var(--accent-color, 10, 31, 68))
}

.testimonial-swiper .swiper-slide {
	padding-bottom: 8px
}

.testimonial-card .testimonial-card__avatar {
	flex-basis: 50px !important;
	width: 50px !important;
	height: 50px !important;
	margin-right: 1rem;
	border-radius: 50%;
	overflow: hidden;
	min-width: max-content
}

/*# sourceMappingURL=/cdn/shop/t/110/assets/image-upload.css.map?v=34256823845929284211769507719 */
.generation-loader__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 150px;
	height: 150px;
	margin: auto;
}


@media screen and (max-width: 767px) and (orientation: landscape) {
	.image-upload__inner #upload-form-container {
		margin-top: 60px;
	}
}