.response {
	position: fixed;
	display: none;
	bottom: 24px;
	padding: 14px 20px;
	background-color: #26272b;
	border-radius: 12px;
	box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
	z-index: 5000;
	max-width: calc(100% - 32px);
}

	.response-inner {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.response .response-icon {
		flex-shrink: 0;
		font-size: 22px !important;
		line-height: 1 !important;
		display: flex !important;
		align-items: center;
	}

	.response p {
		margin: 0;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.4;
		color: #ffffff;
		max-width: 380px;
	}

	.response.success .response-icon { color: #4caf82; }
	.response.warning .response-icon { color: #ffc94d; }
	.response.error .response-icon   { color: #f4685f; }



@media (max-width: 640px) {
	.response {
		left: 16px;
		right: 16px;
	}
	.response p {
		max-width: calc(100% - 34px);
	}
}

@media (min-width: 641px) {
	.response {
		left: 50.0%;
		-webkit-transform: translateX(-50.0%);
		-moz-transform: translateX(-50.0%);
		-ms-transform: translateX(-50.0%);
		-o-transform: translateX(-50.0%);
		transform: translateX(-50.0%);
	}
}
