html {
	background: #333;
	font-family: Arial;
	font-weight: bold;
}

.frame {
	background: linear-gradient(to bottom, #262626 1%, #121212 40%);
	border: 2px solid #A3A3A1;
	border-radius: 5px;
	box-shadow: 0 0 10px 1px #000;
	/* display: inline-block; */
	margin: 20px;
	padding: 10px;
	/* width: 250px; */
}

.cell {
	display: table-cell;
	vertical-align: middle;
}

.loot-box {
	background: #010100;
	border-radius: 5px;
	border-style: solid;
	border-width: 2px;
	height: 50px;
	width: 50px;
}

.loot-box img {
	display: block;
}

.loot-summary {
	padding: 0 0 0 10px;
	position: relative;
}

.loot-summary span {
	display: block;
	font-size: 13px;
	/* position: absolute; */
}

.loot-summary span:first-child {
	color: #F2D03A;
	top: 5px;
}

.loot-summary span:last-child {
	bottom: 5px;
}




.frame.blue .loot-box {
	border-color: #0162C1;
	box-shadow: inset 0 0 3px 0 #0162C1;
}

.frame.blue .loot-summary span:last-child {
	color: #0162C1;
}


.frame.green .loot-box {	
	border-color: #19F201;
	box-shadow: inset 0 0 3px 0 #19F201;
}

.frame.green .loot-summary span:last-child {
	color: #19F201;
}


.frame.purple .loot-box {	
	border-color: #A335EE;
	box-shadow: inset 0 0 3px 0 #A335EE;
}

.frame.purple .loot-summary span:last-child {
	color: #A335EE;
}


.frame.orange .loot-box {	
	border-color: #E2700D;
	box-shadow: inset 0 0 3px 0 #E2700D;
}

.frame.orange .loot-summary span:last-child {
	color: #E2700D;
}


.frame.gold {
	background: linear-gradient(to bottom, #391B08 1%, #0C0501 40%);
	border-color: #CEA200;
}

.frame.gold .loot-box {
	background: #320908;
	border-color: #CEA200;
	box-shadow: inset 0 0 30px 0 #000;
}

.frame.gold .loot-summary span:last-child {
	color: #CEA200;
}