@import url(https://fonts.googleapis.com/css2?family=Inter&display=swap);

:root {
	--toastify-color-light: #fff;
	--toastify-color-dark: #121212;
	--toastify-color-info: #3498db;
	--toastify-color-success: #07bc0c;
	--toastify-color-warning: #f1c40f;
	--toastify-color-error: #e74c3c;
	--toastify-color-transparent: hsla(0, 0%, 100%, .7);
	--toastify-icon-color-info: var(--toastify-color-info);
	--toastify-icon-color-success: var(--toastify-color-success);
	--toastify-icon-color-warning: var(--toastify-color-warning);
	--toastify-icon-color-error: var(--toastify-color-error);
	--toastify-toast-width: 320px;
	--toastify-toast-background: #fff;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-font-family: sans-serif;
	--toastify-z-index: 9999;
	--toastify-text-color-light: #757575;
	--toastify-text-color-dark: #fff;
	--toastify-text-color-info: #fff;
	--toastify-text-color-success: #fff;
	--toastify-text-color-warning: #fff;
	--toastify-text-color-error: #fff;
	--toastify-spinner-color: #616161;
	--toastify-spinner-color-empty-area: #e0e0e0;
	--toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	--toastify-color-progress-dark: #bb86fc;
	--toastify-color-progress-info: var(--toastify-color-info);
	--toastify-color-progress-success: var(--toastify-color-success);
	--toastify-color-progress-warning: var(--toastify-color-warning);
	--toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
	box-sizing: border-box;
	color: #fff;
	padding: 4px;
	position: fixed;
	-webkit-transform: translate3d(0, 0, 9999 px);
	-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
	width: 320px;
	width: var(--toastify-toast-width);
	z-index: 9999;
	z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
	left: 1em;
	top: 1em
}

.Toastify__toast-container--top-center {
	left: 50%;
	top: 1em;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
	right: 1em;
	top: 1em
}

.Toastify__toast-container--bottom-left {
	bottom: 1em;
	left: 1em
}

.Toastify__toast-container--bottom-center {
	bottom: 1em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
	bottom: 1em;
	right: 1em
}

@media only screen and (max-width:480px) {
	.Toastify__toast-container {
		left: 0;
		margin: 0;
		padding: 0;
		width: 100vw
	}

	.Toastify__toast-container--top-center,
	.Toastify__toast-container--top-left,
	.Toastify__toast-container--top-right {
		top: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	.Toastify__toast-container--bottom-center,
	.Toastify__toast-container--bottom-left,
	.Toastify__toast-container--bottom-right {
		bottom: 0;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	.Toastify__toast-container--rtl {
		left: auto;
		right: 0
	}
}

.Toastify__toast {
	border-radius: 4px;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
	box-sizing: border-box;
	cursor: default;
	direction: ltr;
	display: flex;
	font-family: sans-serif;
	font-family: var(--toastify-font-family);
	justify-content: space-between;
	margin-bottom: 1rem;
	max-height: 800px;
	max-height: var(--toastify-toast-max-height);
	min-height: 64px;
	min-height: var(--toastify-toast-min-height);
	overflow: hidden;
	padding: 8px;
	position: relative;
	z-index: 0
}

.Toastify__toast--rtl {
	direction: rtl
}

.Toastify__toast--close-on-click {
	cursor: pointer
}

.Toastify__toast-body {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	margin: auto 0;
	padding: 6px
}

.Toastify__toast-body>div:last-child {
	flex: 1 1;
	word-break: break-word
}

.Toastify__toast-icon {
	-webkit-margin-end: 10px;
	display: flex;
	flex-shrink: 0;
	margin-inline-end: 10px;
	width: 20px
}

.Toastify--animate {
	-webkit-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.Toastify--animate-icon {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

@media only screen and (max-width:480px) {
	.Toastify__toast {
		border-radius: 0;
		margin-bottom: 0
	}
}

.Toastify__toast-theme--dark {
	background: #121212;
	background: var(--toastify-color-dark);
	color: #fff;
	color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
	background: #fff;
	background: var(--toastify-color-light);
	color: #757575;
	color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
	background: #3498db;
	background: var(--toastify-color-info);
	color: #fff;
	color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
	background: #07bc0c;
	background: var(--toastify-color-success);
	color: #fff;
	color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
	background: #f1c40f;
	background: var(--toastify-color-warning);
	color: #fff;
	color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
	background: #e74c3c;
	background: var(--toastify-color-error);
	color: #fff;
	color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
	background: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
	background: #bb86fc;
	background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
	background: #3498db;
	background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
	background: #07bc0c;
	background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
	background: #f1c40f;
	background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
	background: #e74c3c;
	background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
	background: hsla(0, 0%, 100%, .7);
	background: var(--toastify-color-transparent)
}

.Toastify__close-button {
	align-self: flex-start;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	opacity: .7;
	outline: none;
	padding: 0;
	transition: .3s ease
}

.Toastify__close-button--light {
	color: #000;
	opacity: .3
}

.Toastify__close-button>svg {
	fill: currentColor;
	height: 16px;
	width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
	opacity: 1
}

@-webkit-keyframes Toastify__trackProgress {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	to {
		-webkit-transform: scaleX(0);
		transform: scaleX(0)
	}
}

@keyframes Toastify__trackProgress {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	to {
		-webkit-transform: scaleX(0);
		transform: scaleX(0)
	}
}

.Toastify__progress-bar {
	bottom: 0;
	height: 5px;
	left: 0;
	opacity: .7;
	position: absolute;
	-webkit-transform-origin: left;
	transform-origin: left;
	width: 100%;
	z-index: 9999;
	z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
	-webkit-animation: Toastify__trackProgress linear 1 forwards;
	animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s
}

.Toastify__progress-bar--rtl {
	left: auto;
	right: 0;
	-webkit-transform-origin: right;
	transform-origin: right
}

.Toastify__spinner {
	-webkit-animation: Toastify__spin .65s linear infinite;
	animation: Toastify__spin .65s linear infinite;
	border: 2px solid #e0e0e0;
	border-color: var(--toastify-spinner-color-empty-area);
	border-radius: 100%;
	border-right-color: #616161;
	border-right-color: var(--toastify-spinner-color);
	box-sizing: border-box;
	height: 20px;
	width: 20px
}

@-webkit-keyframes Toastify__bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes Toastify__bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes Toastify__bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes Toastify__bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@-webkit-keyframes Toastify__bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes Toastify__bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes Toastify__bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes Toastify__bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@-webkit-keyframes Toastify__bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes Toastify__bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes Toastify__bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes Toastify__bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@-webkit-keyframes Toastify__bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes Toastify__bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes Toastify__bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes Toastify__bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
	-webkit-animation-name: Toastify__bounceInLeft;
	animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
	-webkit-animation-name: Toastify__bounceInRight;
	animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
	-webkit-animation-name: Toastify__bounceInDown;
	animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
	-webkit-animation-name: Toastify__bounceInUp;
	animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
	-webkit-animation-name: Toastify__bounceOutLeft;
	animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
	-webkit-animation-name: Toastify__bounceOutRight;
	animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
	-webkit-animation-name: Toastify__bounceOutUp;
	animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
	-webkit-animation-name: Toastify__bounceOutDown;
	animation-name: Toastify__bounceOutDown
}

@-webkit-keyframes Toastify__zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

@keyframes Toastify__zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

@-webkit-keyframes Toastify__zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

@keyframes Toastify__zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

.Toastify__zoom-enter {
	-webkit-animation-name: Toastify__zoomIn;
	animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
	-webkit-animation-name: Toastify__zoomOut;
	animation-name: Toastify__zoomOut
}

@-webkit-keyframes Toastify__flipIn {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes Toastify__flipIn {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg)
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@-webkit-keyframes Toastify__flipOut {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg)
	}
}

@keyframes Toastify__flipOut {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg)
	}
}

.Toastify__flip-enter {
	-webkit-animation-name: Toastify__flipIn;
	animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
	-webkit-animation-name: Toastify__flipOut;
	animation-name: Toastify__flipOut
}

@-webkit-keyframes Toastify__slideInRight {
	0% {
		-webkit-transform: translate3d(110%, 0, 0);
		transform: translate3d(110%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes Toastify__slideInRight {
	0% {
		-webkit-transform: translate3d(110%, 0, 0);
		transform: translate3d(110%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes Toastify__slideInLeft {
	0% {
		-webkit-transform: translate3d(-110%, 0, 0);
		transform: translate3d(-110%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes Toastify__slideInLeft {
	0% {
		-webkit-transform: translate3d(-110%, 0, 0);
		transform: translate3d(-110%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes Toastify__slideInUp {
	0% {
		-webkit-transform: translate3d(0, 110%, 0);
		transform: translate3d(0, 110%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes Toastify__slideInUp {
	0% {
		-webkit-transform: translate3d(0, 110%, 0);
		transform: translate3d(0, 110%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes Toastify__slideInDown {
	0% {
		-webkit-transform: translate3d(0, -110%, 0);
		transform: translate3d(0, -110%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes Toastify__slideInDown {
	0% {
		-webkit-transform: translate3d(0, -110%, 0);
		transform: translate3d(0, -110%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes Toastify__slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(110%, 0, 0);
		transform: translate3d(110%, 0, 0);
		visibility: hidden
	}
}

@keyframes Toastify__slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(110%, 0, 0);
		transform: translate3d(110%, 0, 0);
		visibility: hidden
	}
}

@-webkit-keyframes Toastify__slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(-110%, 0, 0);
		transform: translate3d(-110%, 0, 0);
		visibility: hidden
	}
}

@keyframes Toastify__slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(-110%, 0, 0);
		transform: translate3d(-110%, 0, 0);
		visibility: hidden
	}
}

@-webkit-keyframes Toastify__slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(0, 500px, 0);
		transform: translate3d(0, 500px, 0);
		visibility: hidden
	}
}

@keyframes Toastify__slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(0, 500px, 0);
		transform: translate3d(0, 500px, 0);
		visibility: hidden
	}
}

@-webkit-keyframes Toastify__slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(0, -500px, 0);
		transform: translate3d(0, -500px, 0);
		visibility: hidden
	}
}

@keyframes Toastify__slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		-webkit-transform: translate3d(0, -500px, 0);
		transform: translate3d(0, -500px, 0);
		visibility: hidden
	}
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
	-webkit-animation-name: Toastify__slideInLeft;
	animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
	-webkit-animation-name: Toastify__slideInRight;
	animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
	-webkit-animation-name: Toastify__slideInDown;
	animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
	-webkit-animation-name: Toastify__slideInUp;
	animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
	-webkit-animation-name: Toastify__slideOutLeft;
	animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
	-webkit-animation-name: Toastify__slideOutRight;
	animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
	-webkit-animation-name: Toastify__slideOutUp;
	animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
	-webkit-animation-name: Toastify__slideOutDown;
	animation-name: Toastify__slideOutDown
}

@-webkit-keyframes Toastify__spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes Toastify__spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}


/*
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
*/
*,
:after,
:before {
	border: 0 solid #e5e7eb;
	box-sizing: border-box
}

:after,
:before {
	--tw-content: ""
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	line-height: 1.5;
	tab-size: 4
}

body {
	line-height: inherit;
	margin: 0
}

hr {
	border-top-width: 1px;
	color: inherit;
	height: 0
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit
}

a {
	color: inherit;
	text-decoration: inherit
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
pre,
samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: initial
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

table {
	border-collapse: collapse;
	border-color: inherit;
	text-indent: 0
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button;
	background-color: initial;
	background-image: none
}

:-moz-focusring {
	outline: auto
}

:-moz-ui-invalid {
	box-shadow: none
}

progress {
	vertical-align: initial
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
	margin: 0
}

fieldset {
	margin: 0
}

fieldset,
legend {
	padding: 0
}

menu,
ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0
}

textarea {
	resize: vertical
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #9ca3af
}

input::placeholder,
textarea::placeholder {
	color: #9ca3af
}

[role=button],
button {
	cursor: pointer
}

:disabled {
	cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle
}

img,
video {
	height: auto;
	max-width: 100%
}

[hidden] {
	display: none
}

[multiple],
[type=date],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
select,
textarea {
	--tw-shadow: 0 0 #0000;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	border-color: #6b7280;
	border-radius: 0;
	border-width: 1px;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: .5rem .75rem
}

[multiple]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
select:focus,
textarea:focus {
	--tw-ring-inset: var(--tw-empty,
			/*!*/
			/*!*/
		);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	border-color: #2563eb;
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
	outline: 2px solid transparent;
	outline-offset: 2px
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #6b7280;
	opacity: 1
}

input::placeholder,
textarea::placeholder {
	color: #6b7280;
	opacity: 1
}

::-webkit-datetime-edit-fields-wrapper {
	padding: 0
}

::-webkit-date-and-time-value {
	min-height: 1.5em
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-meridiem-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-year-field {
	padding-bottom: 0;
	padding-top: 0
}

select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
	background-position: right .5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact
}

[multiple] {
	background-image: none;
	background-position: 0 0;
	background-repeat: repeat;
	background-size: initial;
	padding-right: .75rem;
	-webkit-print-color-adjust: inherit;
	print-color-adjust: inherit
}

[type=checkbox],
[type=radio] {
	--tw-shadow: 0 0 #0000;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-origin: border-box;
	border-color: #6b7280;
	border-width: 1px;
	color: #2563eb;
	display: inline-block;
	flex-shrink: 0;
	height: 1rem;
	padding: 0;
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact;
	-webkit-user-select: none;
	user-select: none;
	vertical-align: middle;
	width: 1rem
}

[type=checkbox] {
	border-radius: 0
}

[type=radio] {
	border-radius: 100%
}

[type=checkbox]:focus,
[type=radio]:focus {
	--tw-ring-inset: var(--tw-empty,
			/*!*/
			/*!*/
		);
	--tw-ring-offset-width: 2px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
	outline: 2px solid transparent;
	outline-offset: 2px
}

[type=checkbox]:checked,
[type=radio]:checked {
	background-color: currentColor;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-color: transparent
}

[type=checkbox]:checked {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")
}

[type=radio]:checked {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")
}

[type=checkbox]:checked:focus,
[type=checkbox]:checked:hover,
[type=radio]:checked:focus,
[type=radio]:checked:hover {
	background-color: currentColor;
	border-color: transparent
}

[type=checkbox]:indeterminate {
	background-color: currentColor;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-color: transparent
}

[type=checkbox]:indeterminate:focus,
[type=checkbox]:indeterminate:hover {
	background-color: currentColor;
	border-color: transparent
}

[type=file] {
	background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
	background: initial;
	border-color: inherit;
	border-radius: 0;
	border-width: 0;
	font-size: inherit;
	line-height: inherit;
	padding: 0
}

[type=file]:focus {
	outline: 1px solid ButtonText;
	outline: 1px auto -webkit-focus-ring-color
}

*,
:after,
:before {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia:
}

::-webkit-backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia:
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia:
}

html {
	display: flex;
	height: 100vh;
	padding: 0
}

body {
	background-color: rgb(199 95 44/var(--tw-bg-opacity));
	flex-grow: 1;
	height: 100%;
	padding: 0
}

.dark body,
body {
	--tw-bg-opacity: 1
}

.dark body {
	background-color: rgb(23 23 23/var(--tw-bg-opacity))
}

.view {
	height: 100vh
}

button {
	--tw-border-opacity: 1;
	--tw-bg-opacity: 1;
	--tw-text-opacity: 1;
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	background-color: rgb(120 113 108/var(--tw-bg-opacity));
	border-color: rgb(120 113 108/var(--tw-border-opacity));
	border-radius: .5rem;
	border-width: 1px;
	box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	color: rgb(255 255 255/var(--tw-text-opacity));
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.25rem;
	padding: .625rem 1.25rem;
	text-align: center;
	transition-duration: .15s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

button:hover {
	--tw-border-opacity: 1;
	--tw-bg-opacity: 1;
	background-color: rgb(68 64 60/var(--tw-bg-opacity));
	border-color: rgb(68 64 60/var(--tw-border-opacity))
}

button:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(231 229 228/var(--tw-ring-opacity));
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

button:disabled {
	background-color: rgb(214 211 209/var(--tw-bg-opacity));
	border-color: rgb(214 211 209/var(--tw-border-opacity));
	cursor: not-allowed
}

.dark button:disabled,
button:disabled {
	--tw-border-opacity: 1;
	--tw-bg-opacity: 1
}

.dark button:disabled {
	--tw-text-opacity: 1;
	background-color: rgb(38 38 38/var(--tw-bg-opacity));
	border-color: rgb(64 64 64/var(--tw-border-opacity));
	color: rgb(64 64 64/var(--tw-text-opacity))
}

input[type=text] {
	--tw-border-opacity: 1;
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	border-color: rgb(209 213 219/var(--tw-border-opacity));
	border-radius: .375rem;
	box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	display: block;
	width: 100%
}

input[type=text]:focus {
	--tw-border-opacity: 1;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	--tw-ring-color: rgb(231 229 228/var(--tw-ring-opacity));
	--tw-ring-opacity: 0.5;
	border-color: rgb(168 162 158/var(--tw-border-opacity));
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

input[type=text]:disabled {
	--tw-bg-opacity: 1;
	--tw-text-opacity: 1;
	background-color: rgb(249 250 251/var(--tw-bg-opacity));
	color: rgb(107 114 128/var(--tw-text-opacity));
	cursor: not-allowed
}

.dark input[type=text] {
	--tw-border-opacity: 1;
	--tw-bg-opacity: 1;
	--tw-text-opacity: 1;
	background-color: rgb(64 64 64/var(--tw-bg-opacity));
	border-color: rgb(82 82 82/var(--tw-border-opacity));
	color: rgb(255 255 255/var(--tw-text-opacity))
}

.dark input[type=text]::-webkit-input-placeholder {
	--tw-placeholder-opacity: 1;
	color: rgb(115 115 115/var(--tw-placeholder-opacity))
}

.dark input[type=text]::placeholder {
	--tw-placeholder-opacity: 1;
	color: rgb(115 115 115/var(--tw-placeholder-opacity))
}

.dark input[type=text]:focus {
	--tw-border-opacity: 1;
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(82 82 82/var(--tw-ring-opacity));
	border-color: rgb(64 64 64/var(--tw-border-opacity))
}

.max-h-50vh {
	max-height: 50vh
}

.static {
	position: static
}

.fixed {
	position: fixed
}

.relative {
	position: relative
}

.inset-0 {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0
}

.top-4 {
	top: 1rem
}

.right-4 {
	right: 1rem
}

.z-50 {
	z-index: 50
}

.z-40 {
	z-index: 40
}

.m-10 {
	margin: 2.5rem
}

.mx-auto {
	margin-left: auto;
	margin-right: auto
}

.-ml-4 {
	margin-left: -1rem
}

.mr-2 {
	margin-right: .5rem
}

.mt-5 {
	margin-top: 1.25rem
}

.mb-2 {
	margin-bottom: .5rem
}

.mb-4 {
	margin-bottom: 1rem
}

.mt-2 {
	margin-top: .5rem
}

.flex {
	display: flex
}

.h-full {
	height: 100%
}

.h-px {
	height: 1px
}

.h-1 {
	height: .25rem
}

.h-2 {
	height: .5rem
}

.h-4 {
	height: 1rem
}

.w-full {
	width: 100%
}

.flex-grow {
	flex-grow: 1
}

.flex-row {
	flex-direction: row
}

.flex-col {
	flex-direction: column
}

.items-end {
	align-items: flex-end
}

.items-center {
	align-items: center
}

.justify-center {
	justify-content: center
}

.gap-2 {
	gap: .5rem
}

.divide-y>:not([hidden])~:not([hidden]) {
	--tw-divide-y-reverse: 0;
	border-bottom-width: calc(1px*var(--tw-divide-y-reverse));
	border-top-width: calc(1px*(1 - var(--tw-divide-y-reverse)))
}

.divide-neutral-200>:not([hidden])~:not([hidden]) {
	--tw-divide-opacity: 1;
	border-color: rgb(229 229 229/var(--tw-divide-opacity))
}

.overflow-auto {
	overflow: auto
}

.overflow-hidden {
	overflow: hidden
}

.overflow-y-auto {
	overflow-y: auto
}

.rounded-lg {
	border-radius: .5rem
}

.rounded-full {
	border-radius: 9999px
}

.border-hidden {
	border-style: hidden
}

.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-secondary-200 {
	--tw-bg-opacity: 1;
	background-color: rgb(226 232 240/var(--tw-bg-opacity))
}

.bg-neutral-800 {
	--tw-bg-opacity: 1;
	background-color: rgb(38 38 38/var(--tw-bg-opacity))
}

.p-0 {
	padding: 0
}

.p-4 {
	padding: 1rem
}

.p-6 {
	padding: 1.5rem
}

.p-1 {
	padding: .25rem
}

.p-3 {
	padding: .75rem
}

.pl-6 {
	padding-left: 1.5rem
}

.pr-6 {
	padding-right: 1.5rem
}

.pt-6 {
	padding-top: 1.5rem
}

.pb-20 {
	padding-bottom: 5rem
}

.text-center {
	text-align: center
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem
}

.text-sm {
	font-size: .875rem;
	line-height: 1.25rem
}

.text-9xl {
	font-size: 8rem;
	line-height: 1
}

.font-medium {
	font-weight: 500
}

.font-bold {
	font-weight: 700
}

.text-neutral-500 {
	--tw-text-opacity: 1;
	color: rgb(115 115 115/var(--tw-text-opacity))
}

.text-neutral-900 {
	--tw-text-opacity: 1;
	color: rgb(23 23 23/var(--tw-text-opacity))
}

.text-neutral-300 {
	--tw-text-opacity: 1;
	color: rgb(212 212 212/var(--tw-text-opacity))
}

.text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255/var(--tw-text-opacity))
}

.shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color)
}

.shadow-none,
.shadow-xl {
	box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-none {
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000
}

.filter {
	-webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
	transition-duration: .15s;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.transition-all {
	transition-duration: .15s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.hover\:bg-neutral-200:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(229 229 229/var(--tw-bg-opacity))
}

.hover\:bg-neutral-100:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(245 245 245/var(--tw-bg-opacity))
}

.dark .dark\:divide-neutral-600>:not([hidden])~:not([hidden]) {
	--tw-divide-opacity: 1;
	border-color: rgb(82 82 82/var(--tw-divide-opacity))
}

.dark .dark\:bg-neutral-900 {
	--tw-bg-opacity: 1;
	background-color: rgb(23 23 23/var(--tw-bg-opacity))
}

.dark .dark\:bg-neutral-800 {
	--tw-bg-opacity: 1;
	background-color: rgb(38 38 38/var(--tw-bg-opacity))
}

.dark .dark\:bg-neutral-400 {
	--tw-bg-opacity: 1;
	background-color: rgb(163 163 163/var(--tw-bg-opacity))
}

.dark .dark\:text-neutral-100 {
	--tw-text-opacity: 1;
	color: rgb(245 245 245/var(--tw-text-opacity))
}

.dark .dark\:text-neutral-300 {
	--tw-text-opacity: 1;
	color: rgb(212 212 212/var(--tw-text-opacity))
}

.dark .dark\:hover\:bg-neutral-800:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(38 38 38/var(--tw-bg-opacity))
}

@media (min-width:640px) {
	.sm\:w-full {
		width: 100%
	}

	.sm\:max-w-xl {
		max-width: 36rem
	}
}

@media (min-width:768px) {
	.md\:absolute {
		position: absolute
	}

	.md\:ml-0 {
		margin-left: 0
	}

	.md\:h-auto {
		height: auto
	}

	.md\:flex-grow-0 {
		flex-grow: 0
	}

	.md\:flex-row-reverse {
		flex-direction: row-reverse
	}

	.md\:p-4 {
		padding: 1rem
	}

	.md\:p-3 {
		padding: .75rem
	}

	.md\:pb-4 {
		padding-bottom: 1rem
	}

	.md\:max-h-50vh {
		max-height: 50vh
	}
}

@media (min-width:1280px) {
	.xl\:w-1\/2 {
		width: 50%
	}
}

.spinner {
	display: inline-block;
	height: 80px;
	position: relative;
	width: 80px
}

.spinner div {
	-webkit-animation: lds-roller 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
	animation: lds-roller 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
	-webkit-transform-origin: 40px 40px;
	transform-origin: 40px 40px
}

.spinner div:after {
	--tw-bg-opacity: 1;
	background-color: rgb(0 0 0/var(--tw-bg-opacity))
}

.dark .spinner div:after {
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.spinner div:after {
	border-radius: 50%;
	content: " ";
	display: block;
	height: 7px;
	margin: -4px 0 0 -4px;
	position: absolute;
	width: 7px
}

.spinner div:first-child {
	-webkit-animation-delay: -36ms;
	animation-delay: -36ms
}

.spinner div:first-child:after {
	left: 63px;
	top: 63px
}

.spinner div:nth-child(2) {
	-webkit-animation-delay: -72ms;
	animation-delay: -72ms
}

.spinner div:nth-child(2):after {
	left: 56px;
	top: 68px
}

.spinner div:nth-child(3) {
	-webkit-animation-delay: -.108s;
	animation-delay: -.108s
}

.spinner div:nth-child(3):after {
	left: 48px;
	top: 71px
}

.spinner div:nth-child(4) {
	-webkit-animation-delay: -.144s;
	animation-delay: -.144s
}

.spinner div:nth-child(4):after {
	left: 40px;
	top: 72px
}

.spinner div:nth-child(5) {
	-webkit-animation-delay: -.18s;
	animation-delay: -.18s
}

.spinner div:nth-child(5):after {
	left: 32px;
	top: 71px
}

.spinner div:nth-child(6) {
	-webkit-animation-delay: -.216s;
	animation-delay: -.216s
}

.spinner div:nth-child(6):after {
	left: 24px;
	top: 68px
}

.spinner div:nth-child(7) {
	-webkit-animation-delay: -.252s;
	animation-delay: -.252s
}

.spinner div:nth-child(7):after {
	left: 17px;
	top: 63px
}

.spinner div:nth-child(8) {
	-webkit-animation-delay: -.288s;
	animation-delay: -.288s
}

.spinner div:nth-child(8):after {
	left: 12px;
	top: 56px
}

@-webkit-keyframes lds-roller {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes lds-roller {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

.spinner-dialog {
	--tw-bg-opacity: 1;
	align-items: center;
	background-color: rgb(255 255 255/var(--tw-bg-opacity));
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	height: 100vh;
	justify-content: center;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 50
}

.dark .spinner-dialog {
	--tw-bg-opacity: 1;
	background-color: rgb(23 23 23/var(--tw-bg-opacity))
}

.spinner-title {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.75rem;
	text-align: center
}

.dark .spinner-title {
	--tw-text-opacity: 1;
	color: rgb(255 255 255/var(--tw-text-opacity))
}

.spinner-description {
	text-align: center;
	width: 33.333333%
}

.dark .spinner-description {
	--tw-text-opacity: 1;
	color: rgb(255 255 255/var(--tw-text-opacity))
}

.banner {
	--tw-bg-opacity: 1;
	background-color: rgb(199 95 44/var(--tw-bg-opacity));
	display: flex;
	height: 2.5rem;
	justify-content: center;
	width: 100%
}

@media (min-width:768px) {
	.banner {
		border-radius: .25rem;
		height: auto;
		margin: 1.25rem;
		padding: .5rem;
		width: 8.333333%
	}
}

.banner img {
	height: 100%;
	width: auto
}

#interactive canvas {
	display: none
}

.example-enter {
	opacity: 0
}

.example-enter-active {
	opacity: 100%;
	transition: opacity .5s
}

.example-exit {
	opacity: 100%
}

.example-exit-active {
	opacity: 0;
	transition: opacity .5s
}

/* 
IMPORTANTE:
Modificar SOLO las variables dentro de :root.
No cambiar selectores ni borrar líneas.
*/

/* =========================================
   CONFIGURACIÓN VISUAL – PRECIO / STOCK
   (editable por el usuario)
   ========================================= */

:root {
  /* ---------- PRECIO ---------- */
  --price-font-size: clamp(2.5rem, 6vw, 4.5rem);
  --price-line-height: 1.3;
  --price-font-weight: 700;

  /* ---------- STOCK ---------- */
  --stock-font-size: clamp(1.5rem, 3vw, 2.5rem);
  --stock-line-height: 1.3;
  --stock-font-weight: 600;

  /* Alineación común */
  --price-align: center;
}

/* =========================================
   BLOQUE TÉCNICO (NO TOCAR)
   ========================================= */

/* ===== PRECIO ===== */
/* En esta app: nth-of-type(2) corresponde a PRECIO */
.flex.p-1:nth-of-type(2) > p {
  font-size: var(--price-font-size) !important;
  line-height: var(--price-line-height) !important;
  font-weight: var(--price-font-weight) !important;
}

/* ===== STOCK ===== */
/* En esta app: nth-of-type(1) corresponde a STOCK */
.flex.p-1:nth-of-type(1) > p {
  font-size: var(--stock-font-size) !important;
  line-height: var(--stock-line-height) !important;
  font-weight: var(--stock-font-weight) !important;
}

/* Centrado del bloque */
.flex.p-1 {
  justify-content: var(--price-align) !important;
  align-items: center !important;
}

/* =========================================
   VISIBILIDAD STOCK
   ========================================= */

/* 
MOSTRAR STOCK:
Comentar este bloque para mostrar
la etiqueta "Stock" y su valor.
*/

.flex.p-1:nth-of-type(1) {
  display: none !important;
}





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