.notification-cont {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 280px;
	z-index: 30;
	padding: 10px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: right;
	gap: 10px;
	pointer-events: none;
}

.notification {
	background: #434343;
	color: white;
	padding: 10px 20px;
	padding-right: 11px;
	padding-bottom: 12px;
	font-family: "inter-bold";
	border-radius: 10px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
	pointer-events: initial;
	animation: 150ms notification__appear forwards ease-out;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	min-height: 40px;
	position: relative;
	overflow: hidden;
}

.notification-text span {
	font-family: "inter-light";
	color: #EEEEEE;
}

.notification-loading-bar {
	position: absolute;
	bottom: 0;
	height: 5px;
	width: 100%;
	background: #00d5ea;
	left: 0;
}

.notification-icon {
	width: 20px;
	height: 20px;
	background: red;
}

.notification-close-btn {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	display: block;
	cursor: pointer;
	margin-top: 1px;
	position: relative;
	transform: translate(20%, -20%);
}

.notification-close-btn:before, .notification-close-btn:after {
	content: '';
	display: block;
	position: absolute;
	width: 2.5px;
	height: 16px;
	background-color: #848484;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 2px;
}

.notification-close-btn:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.notification-disappear {
	animation: 250ms notification__disappear forwards ease-in;
}

@keyframes notification__appear {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes notification__disappear {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(50%);
	}
}