.dark-theme .rare-square-deck{
	color: #fff;
	display: flex;
	border: 1px #fff;
	opacity: 0.8;
	padding: 10px;
	border-radius: 12px;
	flex-wrap: wrap;
}
.dark-theme #rare-square-deck h2{
	color: #fff;
	margin-bottom: 10px;
	text-shadow: 0px 0px 4px #000;
	font-size: 1.8rem;
}
h3{
	font-size: 1.2rem;
	text-transform: none;
}
.card{
	display: flex;
	flex-wrap: wrap;
	font-size: 1rem;
	align-self: start;
	justify-content: center;
	position: relative;
	min-height: 60px;
	min-width: 60px;
	margin: 10px;
	cursor: pointer;
}
.card .left-number{
	position: absolute;
	left: 3px;
	top: 20px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 2px;
}

.card .right-number{
	position: absolute;
	right: 3px;
	top: 20px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 2px;
}

.card .top-number{
	position: absolute;
	left: 25px;
	top: 3px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 2px;
}

.card .bottom-number{
	position: absolute;
	left: 25px;
	top: 40px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 2px;
}

.card .name{
	width: 100%;
	text-align: center;
	display: none;
}

.card img{
	width: auto;
	height: auto;
	margin: 0 auto;
	align-self: center;
	margin-bottom: 25px;
}
.owned{
	position: absolute;
	left: 85%;
	font-size: 0.8rem;
	top: 3px;
	opacity: 0.65;
}

.card.shadow{
	opacity: 0.4;
	cursor: initial;
}

.card.card-in-deck{
	/*border: 2px solid #fff;*/
	background: #fff;
	/*box-shadow: 0 0 20px #fff;*/
}

.card:not(.shadow):hover{
	/*border: 2px solid #fff;*/
	background: #fff;
	box-shadow: 0 0 20px #fff;
}

.card.card-in-deck:hover{
	/*border: 2px solid #fff;*/
	box-shadow: none;
}
