/* Variables */

:root {
	color-scheme: dark;
	--background: light-dark(white, black);
	--light-background: light-dark(#CCCCCC, #333333);
	--lighter-background: light-dark(#C7C7C7, #393939);
	--color: light-dark(black, #D4C19D);
}

/* Elements */

* {
	transition: all 1s
}

body {
	background: radial-gradient(var(--light-background), var(--background));
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	overflow: hidden;
}

input, textarea {
	font-family: Arial, Helvetica, sans-serif;
	background-color: var(--background);
	color: var(--color);
	border: 0;;
	border-radius: 10px;
	padding: 10px;
	width: 100%;
}

textarea {
	height: 16px
}

input:focus, textarea:focus {
	border: 0;
	outline: 0
}

button {
	border-radius: 30px;
	background-color: var(--background);
	border: 0;
	color: var(--color);
}

button:active {
	background-color: grey;
	transition: all 0s
}

::-webkit-scrollbar {
	width: 10px;
}
  
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 30px;
}

::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

button:hover {
	cursor: pointer
}

iframe {
	height: 100%;
	border-radius: 10px;
	border: 0
}

/* General Class */

.textbutton {
	width: 100%;
	padding: 10px;
	border-radius: 10px
}

.line {
	width: 100%;
	border: 1px solid var(--background);
}

.heading {
	font-size: 50px;
	padding: 20px;
	align-self: center;
}

.main {
	display: flex;
	gap: 10px;
	height: 100vh;
	align-items: center;
	justify-content: center;
}

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

.row {
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	height: 90%;
	width: 100%;
	min-width: 0px;
	margin: 40px;
	display: flex;
	flex-direction: column;
}

.textbox {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow-y: auto;
	padding: 5px;
	color: var(--color);
	background-color: var(--light-background);
	border-radius: 10px;
	margin-top: 10px;
	height: 100%;
	min-height: 0px;
	width: 100%;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.textbox.compress {
	background-color: #444;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.inputContainer {
	display: flex;
	border-radius: 10px;
	padding: 5px;
	gap: 10px;
	background-color: var(--lighter-background);
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
	margin-top: 10px;
	margin-bottom: 10px;
	width: 100%;
}

.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.modalCenter {
	background-color: var(--lighter-background);
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
}

.close {
	align-self: flex-end; 
	height: 0px;
	position: relative;
	top: -30px;
	right: -30px
}

.outlined {
	border: 2px solid var(--color);
}

/* Hexagons */

.centerHex {
	justify-self: center;
	position: relative;
}

.hexColumn {
	display: flex;
	flex-direction: column;
}

.hexRow {
	display: flex;
	justify-content: space-evenly
}

.centerRow {
	display: flex;
	align-items: center;
	gap: 50px;
}

.hex {
	height: 150px
}

.hex.background {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 10px;
}

.hex.shadow {
	position: absolute;
	z-index: -2;
	width: 160px;
	height: 160px;
	left: -15px;
	top: 10px;
}

.icon {
	width: 60px;
	cursor: pointer;
	position: absolute;
	z-index: 1;
	left: 36px;
	top: 40px;
}

.icon.disabled {
	opacity: 20%;
}

.sudden {
	transition: none
}

.soundwave {
	width: 100px;
	height: 100px;
	position: absolute;
	left: 38px;
	top: 50px
}

.logoContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 0px;
	position: relative;
	top: 150px;
	gap: 25px;
	right: 12px;
}

.logo {
	height: 150px;
}

.logoText {
	color: #ffbd24;
	font-size: 38px;
	font-family: monospace;
}

.error {
	height: 0px;
	position: relative;
	bottom: 190px;
}

/* Chat */

.listItem {
	width: 70%;
	padding: 10px;
	margin: 10px;
	border-radius: 20px;
	border: 0;
	background-color: var(--background);
	color: var(--color);
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
	align-self: center;
}

.toggle {
	background-color: inherit;
	margin: 10px;
	padding: 5px;
	border-radius: 10px;
	filter: brightness(0.7);
	align-self: center;
	width: fit-content;
}

.toggle:hover {
	filter: brightness(0.5);
	cursor: pointer;
}

.user-text {
	align-self: flex-end;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: var(--background);
	padding: 10px;
	margin: 10px;
	white-space: pre-wrap;
	word-break: break-word;
}

.hivebox-text {
	padding: 10px;
	margin: 10px;
	word-break: break-word;
}

.submit {
	font-family: monospace;
	width: 35px;
	font-size: 28px;
}

.hiding {
	width: 0;
}

.hidden {
	display: none;
}

/* Stripe */

.price {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--color);
	background-color: var(--background);
	border-radius: 10px;
	gap: 10px;
	padding: 10px;
	flex: 1 1 0px;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
	text-align: center;
	height: 300px;
	cursor: pointer;
}

.price:active {
	background-color: grey;
	transition: all 0s;
}

.largerfont {
	font-size: 20px;
	font-weight: 700;
}

.embeddedCheckout {
	width: 1000px
}

/* Recaptcha */

.recaptcha {
	color: #888;
	font-size: 12px;
	text-align: center;
}

.grecaptcha-badge {
	visibility: hidden;
}