.toastify {
	position: fixed;
	max-width: calc(50% - 20px);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 12px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	background: #222328;
	box-shadow: 
		0px 0px 50px 0px #00000070,
		0px -4px 35px 0px #00000030;
	border-radius: 12px;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	cursor: pointer;
	z-index: 1000;
}

.toastify.on {
	opacity: 1;
}

.toast-close {
	padding: 0 5px;
	color: #fff;
	font-family: inherit;
	font-size: 1em;
	background: transparent;
	border: 0;
	opacity: 0.75;
	transition: opacity 150ms ease;
	cursor: pointer;
}

.toast-close:hover {
	opacity: 1;
}

.toastify-right {
	right: 15px;
}

.toastify-left {
	left: 15px;
}

.toastify-top {
	top: -150px;
}

.toastify-bottom {
	bottom: -150px;
}

.toastify-rounded {
	border-radius: 25px;
}

.toastify-center {
	left: 0;
	right: 0;
	max-width: fit-content;
	max-width: -moz-fit-content;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 360px) {
	.toastify-left,
	.toastify-right {
		left: 0;
		right: 0;
		max-width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
}
