
.test-alert {
	display:block;
	position:fixed;
	left:0;right:0;
	bottom:0;
	margin:auto;
	width:86%;
	padding:32px;
	background:#000;
	background:rgba(0,0,0,0.95);
	color:#fff;
	text-align:center;
	box-sizing:border-box;
	border-radius:3px;
	box-sizing:border-box;
	border:1px solid #fff;
	font-size:14px;
	line-height: 1.7;
	z-index:1000;
}
.test-alert__close {
	display:block;
	position:absolute;
	top:0px;right:0px;
	background:rgba(255,255,255,0.1);
	background:url(ic_close_white_32dp.png) no-repeat 50% 50%;
	width:36px;height:36px;
	box-sizing:border-box;
	cursor:pointer;
}

.test-grid {
	-js-display: flex;
    display: -webkit-flex;
	display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	flex-shrink:0;
	position:relative;
	box-sizing:border-box;
	margin: 0 auto;
	width: 300px;
}
.test-grid__cell {
    position:relative;
    display:inline-block;
    vertical-align:top;
    box-sizing:border-box;
	flex-shrink:0;
	width: 100px;
	/*border:1px solid #000;*/
	background:#fcc;
}