.notification {
	display: none;
}
.show_notification {
	background-color: #ebeaea;
	display: block;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 100%;
	scrollbar-width: thin;
	width: 410px;
	max-height: 400px;
	z-index: 500;
}
.show_notification:empty { display: none; }

.toast {
	display: block;
	box-sizing: border-box;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.5);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px 25px;
	overflow-wrap: break-word;
	word-break: break-word;
	transition: .55s opacity, .55s visibility;
}

.toast__header {
	position: relative;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 6px;
}
.toast__header::before {
	display: block;
	position: absolute;
	left: -20px;
	top: 0;
	background: url("/img/icons/markOutline.png") center no-repeat;
	content: '';
	width: 16px;
	height: 16px;
}
.toast__body {
	font-size: 10px;
}
.toast__footer {
	font-size: 10px;
}
.toast__data {
	text-align: end;
}
.toast_show {
	display: block;
}
.toast__close {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
.toasts {
	position: fixed;
	top: 81px;
	right: -27px;
	width: 450px;
}
.block__toast {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	padding-top: 70px;
	background-color: #01266421;
	max-width: 500px;
	margin: auto;
}
.toast_textarea {
	max-width: 400px;
	width: 100%;
	height: 100px;
	background-color: #deb887eb;
	margin-bottom: 10px;
}
.toast__url {
	margin-bottom: -13px;
}
.toast__footer {
	margin-top: 10px;
}

.show_notification::-webkit-scrollbar-track {border-radius: 4px;}
.show_notification::-webkit-scrollbar {width: 5px;}
.show_notification::-webkit-scrollbar-thumb {background: #CACACA;}
.show_notification:hover::-webkit-scrollbar-thumb {background: #6a7d9b;}