.game_holder_holder {
	height: 95%;

}

.game_holder {
	display: flex;
	align-items: stretch;
	background-color: #eee;
	height: 100%;
}
#game {
	height: 100%;
	flex-grow: 1;
	width: 100%;
}
.game_inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	height: 100%;
}
#game .title {
	height: 10%;
	font-size: 18px;
	font-weight: bold;
	padding: 6px 0 15px 0;
	text-align: center;
	text-transform: uppercase;
}

.maindiv {
	height: 70%;
	overflow-y: scroll;
	padding-bottom: 30px;
}

.card_holder {

	bottom: 0px; left: 0;
	width: 100%;
	max-width: 700px;
	background: #999; color: #000;
	height: 20%;

	overflow: hidden;
	transition: height 0.2s;


}


.card_outer {
	background: none;
	height: 100%;
	width: 18%;
	display: inline-block;
	transition:  0.4s;
	border: 0px solid rgba(0,255,0,0);
}
.card_holder.opened .card_outer {
	height: 50%;
	width: 28%;
	display: inline-block;
}
.card {
	width: 100%;
	padding-bottom: 165%;
	border: 1px solid rgba(0,0,0,0.7);
	border-radius: 6%;
	background-size: 100% 100%;
	transition:  0.4s;
}

