@charset "UTF-8";
/* CSS Document */

.notification-area {
	position:fixed;
	display:block;
	right:-330px;
	top: 100px;
	max-width: 260px;
	height:auto;
	max-height:calc(100% - 100px);
	margin:0;
	padding: 0 30px 0 0;
	overflow:hidden;
	z-index: 999999;
	}
	
.notification-area li {
	position:relative;
	display:block;
	background-color: #fff;
	width:200px;
	height:auto;
	margin:20px;
	padding:20px 40px 20px 20px;
	overflow:hidden;
	color:#000;
	font-size:12px;
	line-height:17px;
	cursor:pointer;
	
	border-radius: 7px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
	
	transition:all 0.3s ease-in-out;
    }	
	
.notification-area .btn_close {
	position:absolute;
	display:block;
	right:0;
	top:0;
	width:10px;
	height:10px;
	margin:10px 10px 0 0;
	}

.notification-area .btn_close img {
	position:relative;
	display:block;
	width:100%;
	height:auto;
	margin:0;
	}
