div.notif, div.notif *{
	/*font-family: inherit;*/
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	margin-bottom: 0;

}

div.notif{
	display: flex;
	position: fixed;
	top: -100px;
	left: 0;
	/*padding: 10px 60px;*/
	width: 100vw;
	/*min-height: 64px;*/
	min-height: 48px;
	line-height: 1.42857;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	align-items: center; 
	-webkit-align-items: center;
	-moz-align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	/*font-size: .9rem;*/
	font-size: 1.4rem;
	color: white;
	/*background-color: #0076A0;*/
	background-color: rgba(17,19,24,0.9);
	/*box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);*/
	box-shadow: 0px 3px 5px 3px gray;
	-webkit-box-shadow: 0px 3px 5px 3px gray;
	-moz-box-shadow: 0px 3px 5px 3px gray;
	z-index: 999999;
}

div.notif .button{
	display: block;
	margin: 0 30px;
	padding: 10px 20px;
	font-size: inherit;
	font-family: inherit;
	background: none;
	color: white;
	border: 1px solid white;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	cursor: pointer;
}
div.notif .button:hover{
	color: black;
	background-color: white;
	border-color: white;
}
div.notif .close{
	display: flex;
	position: absolute;
	top: 50%;
	right: 40px;
	width: 30px;
	height: 30px;
	font-size: 1.5rem;
	border-radius: 360px;
	color: inherit;
	border: 1px solid white;
	background-color: transparent;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
div.notif .close:hover{
	color: black;
	background-color: white;
}
/* .notif .close span{
	position: absolute;
	top: calc(50% - 3px);
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	height: 30px;
	line-height: 30px;
	transition: all 0s;
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-o-transition: all 0s;
} */
.notif .close span{
	display: block;
	height: 100%;
    font-size: 1.5rem;
	line-height: calc(1.5rem - 3px);
	text-align: center;
    max-height: calc(1.5rem - 3px);
	transition: all 0s;
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-o-transition: all 0s;
}