.gg-arrow-left {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 22px;
}

.gg-arrow-left::after,
.gg-arrow-left::before {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	left: 3px;
}

.gg-arrow-left::after {
	width: 8px;
	height: 8px;
	border-bottom: 2px solid;
	border-left: 2px solid;
	transform: rotate(45deg);
	bottom: 7px;
}

.gg-arrow-left::before {
	width: 16px;
	height: 2px;
	bottom: 10px;
	background: currentColor;
}

.gg-arrow-right {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 22px;
}

.gg-arrow-right::after,
.gg-arrow-right::before {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	right: 3px;
}

.gg-arrow-right::after {
	width: 8px;
	height: 8px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
	bottom: 7px;
}

.gg-arrow-right::before {
	width: 16px;
	height: 2px;
	bottom: 10px;
	background: currentColor;
}

.gg-close {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 22px;
	border: 2px solid transparent;
	border-radius: 40px;
}

.gg-close::after,
.gg-close::before {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	width: 16px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 5px;
	top: 8px;
	left: 1px;
}

.gg-close::after {
	transform: rotate(-45deg);
}

.gg-spinner {
	transform: scale(var(--ggs, 1));
}

.gg-spinner,
.gg-spinner::after,
.gg-spinner::before {
	box-sizing: border-box;
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.gg-spinner::after,
.gg-spinner::before {
	content: "";
	position: absolute;
	border-radius: 100px;
}

.gg-spinner::before {
	animation: spinner 1s cubic-bezier(0.6, 0, 0.4, 1) infinite;
	border: 3px solid transparent;
	border-top-color: currentColor;
}

.gg-spinner::after {
	border: 3px solid;
	opacity: 0.2;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}

.gg-check {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 22px;
	height: 22px;
	border: 2px solid transparent;
	border-radius: 100px;
}

.gg-check::after {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	left: 3px;
	top: -1px;
	width: 6px;
	height: 10px;
	border-width: 0 2px 2px 0;
	border-style: solid;
	transform-origin: bottom left;
	transform: rotate(45deg);
}

.gg-shopping-cart {
	display: block;
	box-sizing: border-box;
	position: relative;
	transform: scale(var(--ggs, 1));
	width: 20px;
	height: 21px;
	background: linear-gradient(to left, currentColor 12px, transparent 0)
			no-repeat -1px 6px/18px 2px,
		linear-gradient(to left, currentColor 12px, transparent 0) no-repeat 6px
			14px/11px 2px,
		linear-gradient(to left, currentColor 12px, transparent 0) no-repeat 0
			2px/4px 2px,
		radial-gradient(circle, currentColor 60%, transparent 40%) no-repeat
			12px 17px/4px 4px,
		radial-gradient(circle, currentColor 60%, transparent 40%) no-repeat 6px
			17px/4px 4px;
}

.gg-shopping-cart::after,
.gg-shopping-cart::before {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
	width: 2px;
	height: 14px;
	background: currentColor;
	top: 2px;
	left: 4px;
	transform: skew(12deg);
}

.gg-shopping-cart::after {
	height: 10px;
	top: 6px;
	left: 16px;
	transform: skew(-12deg);
}

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

.d-flex {
	display: flex;
}

.d-none {
	display: none !important;
}

.notyf__message {
	font-size: 16px;
	font-family: "EB Garamond", serif;
	font-weight: 600;
}

#aipp * {
	font-family: "EB Garamond", serif;
	font-optical-sizing: auto;
}

#aipp {
	--primary-color: #312e1ee6;
	--primary-hover: #312e1e;
	--sw-progress-color: var(--primary-color);
	--sw-toolbar-btn-background-color: var(--primary-color);
	--light-color: #fff;
	background-color: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 4px;
	overflow: hidden;
}

#aipp .aipp-tooltip {
	height: 20px;
	width: 20px;
	background-color: rgb(49 46 30 / 50%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	position: relative;
	display: inline-flex;
	margin-left: 6px;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 17px;
	font-family: serif;
	font-weight: 600;
	user-select: none;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

#aipp .aipp-tooltip:hover {
	background-color: var(--primary-hover);
}

#aipp .tab-content,
#aipp .toolbar {
	padding: 40px;
}

#aipp .toolbar {
	padding-top: 0;
}

#aipp .tab-pane {
	padding: 0;
}

#aipp .aipp-heading {
	margin: 60px 0 50px;
}

#aipp .aipp-heading span {
	display: flex;
	position: absolute;
	top: 30px;
	left: 30px;
	font-size: 15px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-weight: 600;
	background: transparent;
	padding: 4px 14px 6px 10px;
	border-radius: 4px;
	color: #666;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-heading span i {
	transform: scale(0.8);
	position: relative;
	top: 1px;
}

#aipp .aipp-heading span:hover {
	background-color: rgb(49 47 33 / 25%);
	color: #111;
}

#aipp .aipp-heading span[data-smartwizard="next"] {
	left: unset;
	right: 30px;
}

#aipp .aipp-heading h2 {
	font-size: 42px;
	font-weight: 800;
	margin: 0;
	padding: 0;
	margin-bottom: 0;
}

#aipp .aipp-heading p {
	font-size: 20x;
	margin: 0;
	padding: 0;
	font-weight: 500;
}

#aipp .aipp-panels-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--light-color);
	border: 2px solid var(--primary-color);
	border-radius: 4px;
	padding: 5px;
	gap: 4px;
}

#aipp .aipp-panels-nav li {
	font-size: 18px;
	padding: 10px;
	border-radius: 2px;
	width: 50%;
	text-align: center;
	cursor: pointer;
	background-color: transparent;
	color: var(--primary-color);
	font-weight: 600;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-panels-nav li.active {
	background: var(--primary-color);
	color: var(--light-color);
}

#aipp .aipp-upload.insert {
	gap: 20px;
}

#aipp .aipp-upload form {
	position: relative;
	border: 2px dashed var(--primary-color);
	border-radius: 4px;
	margin-top: 20px;
	text-align: center;
	padding: 100px;
	height: 480px;
	width: 100%;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-upload.insert form {
	width: 35%;
}

#aipp .aipp-upload-preview {
	position: relative;
	height: 480px;
	width: 0;
	margin-top: 20px;
}

#aipp .aipp-upload.insert .aipp-upload-preview {
	width: 65%;
}

#aipp .aipp-upload-preview img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

#aipp .aipp-upload-preview span {
	position: absolute;
	display: flex;
	align-items: center;
	right: 20px;
	top: 20px;
	background-color: #cc1818;
	color: #fff;
	font-size: 13px;
	border-radius: 4px;
	padding: 2px 9px 5px 4px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-upload-preview span:hover {
	background-color: #710202;
}

#aipp .aipp-upload-preview span i {
	transform: scale(0.8);
	position: relative;
	top: 1px;
}

#aipp .aipp-upload form input {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	opacity: 0;
}

#aipp .aipp-upload form label img {
	width: 180px;
}

#aipp .aipp-upload form label h3 {
	margin: 0;
	font-size: 28px;
	margin-bottom: 6px;
	font-weight: 500;
}

#aipp .aipp-upload form label p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

#aipp .sw-btn {
	font-size: 17px;
	padding: 6px 30px 9px !important;
	margin: 0;
	margin-left: 6px;
}

#aipp .aipp-generate {
	position: relative;
}

#aipp .aipp-generate textarea {
	position: relative;
	border: 2px dashed var(--primary-color);
	border-radius: 4px;
	margin-top: 20px;
	padding: 20px;
	height: 480px;
	width: 100%;
	text-align: left;
	font-size: 18px;
	resize: none;
}

#aipp .aipp-generate .aipp-counter {
	position: absolute;
	right: 10px;
	bottom: 6px;
	font-size: 15px;
	font-weight: 600;
}

#aipp .aipp-submit {
	margin-top: 40px;
}

#aipp .aipp-submit button {
	position: relative;
	overflow: hidden;
	padding: 16px;
	display: block;
	width: 100%;
	background-color: var(--primary-hover);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	font-size: 18px;
	color: var(--light-color);
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-submit button:disabled {
	opacity: 0.6;
	cursor: auto;
}

#aipp .aipp-submit button:hover {
	background-color: var(--primary-color);
}

#aipp .aipp-submit button span {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	color: #fff;
	background-color: var(--primary-hover);
}

#aipp .aipp-submit button.request {
	color: transparent;
}

#aipp .aipp-styles {
	width: 50%;
}

#aipp .aipp-styles-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#aipp .aipp-styles-list li {
	font-size: 17px;
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	padding: 6px 10px;
	color: #111;
	font-weight: 500;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-styles-list li.active {
	background-color: var(--primary-hover);
	color: var(--light-color);
}

#aipp .aipp-section-label {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	color: #111;
}

#aipp .aipp-expert,
#aipp .aipp-email {
	margin-top: 40px;
}

#aipp .aipp-field {
	display: flex;
	align-items: center;
	gap: 6px;
}

#aipp input[type="checkbox"] {
	accent-color: var(--primary-hover);
	height: 20px;
	width: 18px;
	margin: 0;
	padding: 0;
}

#aipp input[type="email"] {
	width: 90%;
	padding: 12px;
	font-size: 16px;
	color: #111;
}

#aipp label {
	font-size: 18px;
	font-weight: 400;
	color: #111;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	justify-content: center;
	height: 100%;
}

#aipp .aipp-upload form label {
	align-items: center;
}

#aipp .aipp-styles-preview {
	width: 50%;
	/* height: 100%; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 420px;
	padding: 20px;
	margin-top: 20px;
}

#aipp .aipp-styles-preview img {
	width: 80%;
	border-radius: 8px;
	transform: rotate(-2deg);
	/* margin-top: 40px; */
	height: 100%;
	object-fit: cover;
}

#aipp .aipp-styles-preview small {
	font-size: 16px;
	font-weight: 500;
	color: #111;
	margin-top: 6px;
}

#aipp .aipp-products {
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
}

#aipp .aipp-product {
	width: calc(100% / 4 - 15px);
	border: 1.4px solid rgb(49 46 30 / 40%);
	border-radius: 4px;
	overflow: hidden;
}

#aipp .aipp-product img {
	width: 100%;
	height: auto;
	object-fit: contain;
	padding: 10px 10px;
}

#aipp .aipp-product-meta {
	height: 100%;
	padding: 20px;
	background-color: rgb(49 47 33 / 15%);
}

#aipp .aipp-product h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: #111;
	margin-bottom: 6px;
}

#aipp .aipp-product small {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: #111;
	margin-bottom: 10px;
}

#aipp .aipp-product select {
	margin-top: 10px;
	padding: 10px;
	width: 100%;
	font-size: 14px;
	border-radius: 4px;
	border: 1.4px solid rgb(49 47 33 / 50%);
}

#aipp .aipp-product button {
	background-color: rgb(49 47 33 / 25%);
	border: 1.4px solid rgb(49 47 33 / 25%);
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	font-size: 15px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

#aipp .aipp-product button:hover {
	background-color: rgb(49 47 33 / 75%);
	border: 1.4px solid rgb(49 47 33 / 75%);
	color: #fff;
}

#aipp .aipp-ai-variations {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

#aipp .aipp-ai-variations li {
	position: relative;
	cursor: pointer;
	display: flex;
	border: 2px solid transparent;
	border-radius: 4px;
	width: calc(100% / 3 - 14px);
	overflow: hidden;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

#aipp .aipp-ai-variations li.placeholder {
	height: 248px;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#aipp .aipp-ai-variations li.active {
	border-color: var(--primary-hover);
}

#aipp .aipp-ai-variations li img {
	width: 100%;
	height: 100%;
	min-height: 244px;
	object-fit: cover;
}
#aipp .aipp-ai-variations li span {
	position: absolute;
	background: green;
	display: inline-flex;
	font-size: 13px;
	color: #fff;
	padding: 4px;
	border-radius: 4px;
	font-weight: 600;
	left: 4px;
	top: 4px;
}

#aipp .aipp-btn {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#aipp .aipp-btn i {
	transform: scale(0.8);
	position: relative;
	top: -1px;
}

#aipp .aipp-btn span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #fff;
	background-color: var(--primary-color);
}

#aipp .aipp-btn span.remove {
	background-color: #cc1818;
}

@media (max-width: 991.98px) {
	#aipp .aipp-upload.insert form {
		padding: 40px;
	}

	#aipp .aipp-ai-variations li {
		width: calc(100% / 2 - 14px);
	}

	#aipp .aipp-product {
		width: calc(100% / 2 - 10px);
	}
}

@media (max-width: 767.98px) {
	#aipp .tab-content,
	#aipp .toolbar {
		padding: 40px 20px;
	}

	#aipp .aipp-panels-nav li {
		display: flex;
		align-items: center;
	}

	#aipp .aipp-upload form {
		padding: 40px;
	}

	#aipp .aipp-upload.insert form {
		display: none;
	}

	#aipp .aipp-styles-preview {
		padding: 0;
		height: 220px;
		margin-bottom: 40px;
	}

	#aipp #step-2 .aipp-container {
		flex-direction: column-reverse;
	}

	#aipp .aipp-upload.insert .aipp-upload-preview,
	#aipp .aipp-styles-preview,
	#aipp .aipp-styles,
	#aipp input[type="email"],
	#aipp .aipp-ai-variations li,
	#aipp .aipp-product {
		width: 100%;
	}
}


#aipp .aipp-product button,
#aipp .aipp-submit button.request,
.aipp-btn, #aipp .aipp-submit button{ min-height: 42.5px; }


/*LB Add - Ladebalken & Schreibmaschinentext*/
#aipp-progressbar {
  margin: 10px 0;
  padding: 4px;
  font-size: 14px;
  color: #333;
}

.aipp-progress {
  width: 100%;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 12px;
  margin-bottom: 4px;
}

.aipp-progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #81c784);
  transition: width 1s linear;
}

.aipp-progress-text {
  text-align: right;
  font-size: 12px;
  color: #555;
}

.hidden { display: none; }

/* LB Add - Schreibmaschinen Teaser*/

.aipp-typer {
  margin: 8px 0 4px;
  min-height: 24px; /* damit nix springt */
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.4;
}
.aipp-typer .cursor {
  display: inline-block;
  width: 8px;
  height: 1.2em;
  margin-left: 4px;
  background: currentColor;
  opacity: 0.7;
  animation: aipp-cursor 0.9s steps(2) infinite;
  vertical-align: -2px;
}
@keyframes aipp-cursor {
  0%, 49%  { opacity: 0.7; }
  50%,100% { opacity: 0.1; }
}
.hidden { display: none; }
