.notification-push {
	position: relative;
	margin: 0 0.5rem;
	padding: 0;
	width: 31px;
	height: 31px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.notification-push img {
	color: #464646;
	height: auto;
	font-size: 36px;
}

.notification-push .notif-number {
	margin-bottom: 0;

	position: absolute;
	text-align: center;

	top: 12.5px;
	left: 50%;
	transform: translate(2px,-5px);
	color: #fff;
	background-color: #de053f;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	align-items: center;

	font-size: 0.813rem;
}

.notification-push .block-notification {
	display: none;

	position: fixed;
	top: 155px;
	left: 0;
	z-index: 1001;

	width: 100vw;
	height: auto;

	background: #FFF;
	padding: 0.75rem;
	row-gap: 2rem;
	cursor: initial;

	box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px, rgba(0, 0, 0, 0.07) 0 2px 2px, rgba(0, 0, 0, 0.07) 0 4px 4px, rgba(0, 0, 0, 0.07) 0 8px 8px, rgba(0, 0, 0, 0.07) 0 16px 16px;
}

.notification-push .notification-tile {
	min-height: 70px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	column-gap: 0.5rem;
}

.notification-push .notification-tile .notification-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.notification-push .notification-tile .notification-image-container .notification-image {
	width: 70px;
	height: 70px;
	background: darkgrey;
}

.notification-push .notification-tile .notification-texte-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	text-align: left;
}

.notification-push .notification-tile .notification-texte-container p {
	margin-bottom: 0;
}

/* Sert à enlever le "padding" naturel au dessus du texte */
.notification-push .notification-tile .notification-texte-container p::before,
.notification-push .notification-tile .notification-texte-container p::after {
	display: table;
	content: "";
	margin-bottom: calc(-0.5lh + 0.34em);
}

.notification-push .notification-tile .notification-texte-container .notification-title {
	font-weight: bold;
	margin: 0;
}

.notification-push .notification-tile .notification-texte-container .notification-link {
	color: #696969;
	text-decoration: underline;
	font-weight: normal;
}

.notification-push .notification-tile .notification-texte-container .clicked, .notification-push .notification-tile .notification-texte-container .clicked p {
	color: #a6a5a5;
}

.notification-push .notification-tile .notification-new-container .notification-new {
	display: block;
	width: 7px;
	height: 7px;
	background: #de053f;
	border-radius: 2px;
}

.notification-push .no-notification-tile {
	min-height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.notification-push .no-notification-tile .no-notification-text {
	color: lightgrey;
	text-align: center;
}

@media (min-width: 576px) {
	.notification-push .block-notification {
		transform: translateX(-25%);
		position: absolute;
		top: 55px;
		max-width: 368px;
	}
}