button {
	background: 0 0;
	border: none;
	cursor: pointer
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

body {
	line-height: 1
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

:root {
	--primary-dark: #000;
	--primary-color-rgb: 18, 226, 176;
	--primary-color: rgba(var(--primary-color-rgb), 1);
	--primary-color-tint: rgba(var(--primary-color-rgb), 0.12);
	--selection-color-rgb: 255, 255, 0;
	--selection-color: rgba(var(--selection-color-rgb));
	--disabled-color: rgba(0, 0, 0, 0.16);
	--line-color: #000;
	--faint-line-color: rgba(0, 0, 0, 0.24);
	--line-width: 1px;
	--base-font-size: 20px;
	--margin: 24px;
	--error-red: red;
	--sans-serif-font: "Inter", Arial, sans-serif;
	--monospace-font: "Roboto Mono", monospace;
	--max-content-width: 600px;
	--min-content-width: 375px;
	--under-canvas-z-index: 2147483647;
	--canvas-z-index: 2147483622;
	--above-canvas-z-index: 2147483627;
	--above-above-canvas-z-index: 2147483632;
	--overlay-z-index: 2147483637;
	--above-overlay-z-index: 2147483642;
	--max-z-index: 2147483647;
	--reference-width: 100vw
}

html {
	font-size: var(--max-content-width);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: var(--sans-serif-font);
	zoom: .99999999;
	height: 100%
}

@media screen and (max-width:600px) {
	html {
		font-size: var(--reference-width)
	}
}

body {
	font-family: var(--sans-serif-font);
	font-size: var(--base-font-size);
	height: -moz-fit-content;
	height: fit-content;
	-webkit-transition: background .1s ease-in-out;
	transition: background .1s ease-in-out
}

body,
html {
	overflow-x: hidden
}

body,
html {
	min-width: 100%;
	min-height: 100vh;
	-ms-scroll-chaining: none;
	overscroll-behavior: none
}

input[type=email]:not(.mmm-x-input-text),
input[type=password]:not(.mmm-x-input-text),
input[type=text]:not(.mmm-x-input-text) {
	border-radius: 0;
	background: rgba(0, 0, 0, .02);
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, .16);
	font-family: Roboto Mono, Courier New, monospace;
	outline: none;
	font-size: 16px;
	padding: 8px
}

button {
	font-family: var(--sans-serif-font)
}

@media screen and (max-width:600px) {
	:root {
		--margin: 20px
	}
	.hide-on-mobile {
		display: none!important
	}
}

@media screen and (min-width:601px) {
	:root {
		--margin: 20px
	}
	.hide-on-desktop {
		display: none!important
	}
}

#next {
	width: 100%;
	height: 100%
}

.page-view {
	min-height: 100vh;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	overflow: hidden;
	z-index: var(--canvas-z-index)
}

.page-view,
.page-view main {
	position: relative;
	width: 100%;
	touch-action: manipulation
}

.page-view main {
	max-width: var(--max-content-width);
	-webkit-transition: border-color .1s ease-in-out;
	transition: border-color .1s ease-in-out
}

.page-view main.page-length-decreasing {
	--height-decreased-animation-duration: 250ms;
	-webkit-transition: height var(--height-decreased-animation-duration) ease-in-out;
	transition: height var(--height-decreased-animation-duration) ease-in-out
}

.page-view main h1 {
	text-indent: 9999px
}

.page-view .message {
	font-family: var(--sans-serif-font);
	font-size: .14rem;
	text-transform: uppercase;
	white-space: pre-line;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: .1rem;
	color: rgba(0, 0, 0, .08)
}

.thing-view {
	display: block;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .1s, -webkit-box-shadow .1s;
	transition: opacity .1s, -webkit-box-shadow .1s;
	transition: opacity .1s, box-shadow .1s;
	transition: opacity .1s, box-shadow .1s, -webkit-box-shadow .1s;
	outline: none;
	touch-action: manipulation;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	text-size-adjust: none
}

.thing-view>div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	outline: none
}

.thing-view.hyperlinked a.link-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: var(--above-canvas-z-index);
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap
}

.thing-view.hyperlinked>div {
	-webkit-transition: -webkit-transform .15s ease-in-out;
	transition: -webkit-transform .15s ease-in-out;
	transition: transform .15s ease-in-out;
	transition: transform .15s ease-in-out, -webkit-transform .15s ease-in-out
}

.thing-view.hyperlinked:hover>div {
	-webkit-transform: scale(1.03);
	transform: scale(1.03)
}

.thing-view .youtube-thing,
.thing-view .youtube-thing>div {
	height: 100%!important;
	width: 100%!important
}

.thing-view .youtube-play-button {
	width: 68px
}

.thing-view .youtube-play-button .ytp-large-play-button-bg {
	fill: #212121;
	fill-opacity: .8
}

.thing-view .youtube-play-button .ytp-large-play-button-bg,
.thing-view .youtube-thing:hover .youtube-play-button .ytp-large-play-button-bg {
	-webkit-transition: fill .1s cubic-bezier(.4, 0, 1, 1), fill-opacity .1s cubic-bezier(.4, 0, 1, 1);
	transition: fill .1s cubic-bezier(.4, 0, 1, 1), fill-opacity .1s cubic-bezier(.4, 0, 1, 1)
}

.thing-view .youtube-thing:hover .youtube-play-button .ytp-large-play-button-bg {
	fill: red;
	fill-opacity: 1
}

.thing-view .gif-thing img,
.thing-view .image-thing img {
	width: 100%;
	height: 100%
}

.thing-view .text-thing {
	white-space: pre-wrap;
	line-height: 1.25;
	width: 100.5%
}

.thing-view .shape-thing svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0
}

.thing-view .button-thing {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: calc(1rem * 4/375);
	font-weight: 600;
	-webkit-box-shadow: 0 4px 8px rgb(0 0 0/8%);
	box-shadow: 0 4px 8px rgb(0 0 0/8%)
}

.thing-view .button-thing.light-bg {
	color: #000
}

.thing-view .button-thing.dark-bg {
	text-shadow: 1px 1px 2px rgb(0 0 0/24%);
	color: #fff
}

.thing-view .button-thing.square span {
	display: none
}

.thing-view .button-thing span {
	line-height: .1rem;
	margin-left: 40px;
	outline: none;
	max-width: 80%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap
}

.thing-view .button-thing.instagram-bg {
	background: -webkit-linear-gradient(45deg, #fda948 13%, #f66748 21%, #ec3653 64%, #c13a9c 84%);
	background: linear-gradient(45deg, #fda948 13%, #f66748 21%, #ec3653 64%, #c13a9c 84%)
}

.thing-view .button-thing i {
	width: .085333333rem;
	height: .085333333rem;
	font-size: .0512rem;
	display: flex;
	align-items: center;
	position: absolute;
	left: .0275rem;
	justify-content: center
}

.thing-view .button-thing svg.svg-inline--fa {
	width: .052rem;
	height: .052rem;
	display: flex;
	align-items: center;
	position: absolute;
	left: .044rem;
	justify-content: center
}

.hide-powered-by-attribution #powered-by-attribution {
	display: none!important
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Add dots under the hoverable text */
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

#powered-by-attribution {
	text-transform: lowercase;
	position: fixed;
	bottom: var(--margin);
	left: var(--margin);
	z-index: var(--max-z-index)
}

#powered-by-attribution a {
	text-indent: -9999px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: var(--above-above-canvas-z-index)
}

#powered-by-attribution span {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
	width: 148px;
	left: 0;
	font-weight: 700;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	opacity: 0;
	pointer-events: none
}

#powered-by-attribution:hover span {
	opacity: 1;
	-webkit-transform: translateY(-50%) translateX(68px);
	transform: translateY(-50%) translateX(68px)
}

#icon-logo {
	--first-phase: 0.25s;
	--delay: 0.1s;
	--second-phase: 0.25s;
	--third-phase: 0.25s;
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	border-color: transparent;
	opacity: 1!important;
	-webkit-transition: .15s ease-in-out;
	transition: .15s ease-in-out
}

#icon-logo:hover svg {
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

@media screen and (max-width:600px) {
	.builder-app #powered-by-attribution {
		display: none
	}
}