.attention-block {
	padding: 30px;
	margin-bottom: 0px;
	border-radius: 4px;
	/* background-color: #eee; */
	border: 1px solid #ccc;
	/* font-size: 14px; */
	display: flex;
	column-gap: 30px;
	align-items: center;
}
@media (max-width: 768px){
	.attention-block {
		padding: 15px;
		flex-direction: column;
		row-gap: 15px;
	}
}

.attention-block-icon {
	display: block;
	width: 70px;
	height: 40px;
	flex-shrink: 0;
	padding-right: 30px;
	border-right: 1px solid #dcdcdc;
}
@media (max-width: 768px){
	.attention-block-icon {
		padding-right: 0;
		border: none;
	}
}


.attention-block-title {
	display: block;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
}
.attention-block-text {
	display: block;
	/* font-weight: 400;
	font-size: 15px; */
}

.attention-block-info {
	/* background-color: #e1eafa; */
	border-color: #8AA9DD;
}

.attention-block-warning {
	/* background-color: #fff8db; */
	border: 1px solid #ddb44e;
	border-radius: 5px;
	background: #ddb44e1a;
	color: #ddb44e;
}

.attention-block-danger {
	border: 1px solid #fc9888;
	border-radius: 5px;
	background: rgba(252, 152, 136, 0.1);
	color: #fc9888;
}

.attention-block-success {
	/* background-color: #eaffe5; */
	border: 1px solid rgb(61, 205, 81);
	border-radius: 5px;
	background: #3dcd511a;
	color: rgb(61, 205, 81);
}