.substrate-container {
  display: inline-block;
  width: 54px;
  background-image: url('../images/items/notcrafted_background.png');
  background-repeat: no-repeat;
  background-position: center; 
  min-height:54px;
  min-width:54px;
  width:80px;
  text-align: center;
  margin-bottom:15px;
  z-index:1;

}

.product-container {
    position: relative;
    text-align: center;
    color: white;
	background-image: url('../images/items/crafted_background.png');
	background-repeat: no-repeat;
	background-position: center; 
	min-height:54px;
	min-width:54px;
	width:100px;
	padding: 10px;
	z-index:1;
}


.product-image {
    position: relative;
	left: 50%;
	top: 17px;
    transform: translate(-50%, -50%);
	color: black;
	z-index: 2;

} 
 .substrate-image {
    position: relative;
	left:51%;
	top:31px;
    transform: translate(-50%, -50%);
	color:black;
	z-index:2;
} 

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 1px;
    position: absolute;
    z-index: 10;
    bottom: 75%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
	border: 2px solid black;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}