#mlt-toast {
	all: initial;
	position: fixed;
	bottom: 24px;
	z-index: 99999;
	width: 340px;
	max-width: calc(100vw - 32px);
	display: block;
	background: #ffffff;
	border: 1px solid #bbbbbb;
	border-radius: 5px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	padding: 24px;
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

#mlt-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

#mlt-toast.mlt-toast--bottom-right {
	right: 24px;
}

#mlt-toast.mlt-toast--bottom-left {
	left: 24px;
}

#mlt-toast, #mlt-toast * {
	box-sizing: border-box;
}

#mlt-toast .mlt-toast__close {
	all: unset;
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 12px;
	right: 14px;
	width: 20px;
	height: 20px;
	line-height: 18px;
	text-align: center;
	color: #999999;
	font-size: 20px;
	font-family: Georgia, serif;
	cursor: pointer;
}

#mlt-toast .mlt-toast__close:hover {
	color: #d3001b;
}

#mlt-toast .mlt-toast__title {
	all: unset;
	display: block;
	box-sizing: border-box;
	margin: 0 30px 8px 0;
	font-size: 16px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	line-height: 1.4;
	color: #d3001b;
}

#mlt-toast .mlt-toast__description {
	all: unset;
	display: block;
	box-sizing: border-box;
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 400;
	font-family: "Montserrat", sans-serif;
	color: #000000;
}

#mlt-toast .mlt-toast__form {
	all: unset;
	display: block;
	box-sizing: border-box;
}

#mlt-toast .mlt-toast__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

#mlt-toast .mlt-toast__input {
	all: unset;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	padding: 8px 16px;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	color: #000000;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	margin-bottom: 10px;
}

#mlt-toast .mlt-toast__input:focus {
	border-color: #d3001b;
}

#mlt-toast .mlt-toast__submit {
	all: unset;
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	padding: 10px 20px;
	background: #d3001b;
	color: #ffffff;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 500;
	font-family: "Rubik", "Montserrat", sans-serif;
	cursor: pointer;
}

#mlt-toast .mlt-toast__submit:hover {
	background: #b00017;
}

#mlt-toast .mlt-toast__submit:disabled {
	opacity: 0.6;
	cursor: default;
}

#mlt-toast .mlt-toast__message {
	all: unset;
	display: block;
	box-sizing: border-box;
	margin: 10px 0 0;
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	min-height: 1em;
}

#mlt-toast .mlt-toast__message.is-error {
	color: #b3261e;
}

#mlt-toast .mlt-toast__message.is-success {
	color: #2e7d32;
}

@media (max-width: 480px) {
	#mlt-toast {
		width: calc(100vw - 24px);
		right: 12px;
		left: 12px;
		bottom: 12px;
	}
}
