@charset "utf-8";

.cookieBox{
	position: fixed;
	right:-100%;
	bottom:0;
	top:auto;
	left:auto;
	z-index: 500;
	width: 100%;
	max-width: 350px;
	padding: 15px;
	background: black;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	font-family: Arial;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	font-family: Adobe Garamond LT Bold;
}
.cookieBox .cookie{
	padding: 15px;
	border: 1px dashed #ccc;
}
.cookieBox .cookie .cookie-cut{
	margin-bottom: 15px;
	line-height: 20px;
}
.cookieBox .cookie .cookie-btn{
	cursor: pointer;
	display: inline-block;
	border-bottom: 1px solid rgba(255,255,255,0.8);
}
.cookieBox .cookie .cookie-btn:hover{
	color: rgba(255,255,255,1);
	border-bottom: 1px solid rgba(255,255,255,1);
}
