.notif{
	width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.33);/*transparent;*/
	z-index: 1050;
}

.notif > div{
	width: 450px;
    /*height: 100px;*/
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-color: grey;
	color: white;
    background-color: rgb(210, 65, 65);
	padding-left: 10px;
	padding-right: 10px;
}

.notif > div > div{
	height: 30px;
}

.notif > div > div > i{
	float: right;
    font-size: 20px;
    margin-right: 20px;
    margin-top: 4px;
}

.notif > div > div > i:hover{
	color: black;
	cursor: pointer;
}

.notif > div > hr{
	margin: 3px;
}

.notif > div > p{
	font-size: 18px;
    margin-top: 3px;
    margin-bottom: 5px;
}

.notif > div > span{
	font-size: 16px;
}