/* ---------------------------------------------------------------- */
/* *** COOKIE.CSS *** */
/* ---------------------------------------------------------------- */

.frame
{
	margin-top:		20px;
	border:			1px solid white;
	border-radius:	10px;
	width:			800px;
	padding:		20px;
	box-sizing:		border-box;
}

.button
{
	border:			1px solid white;
	padding:		10px;
	border-radius:	10px;
	font-size:		18px;
	width:			250px;
	cursor:			pointer;
}

/* If the screen size is 1000px wide or less, ... */

@media only screen and (max-width:800px)
{
	.frame
	{
	 width:			100%;
	}
}
