.TagWrapper{
	display:flex;
}

.SoldOut{
	background-color:gray;
	padding:0.4em;
	border-radius:4px;
	color:white;
	margin:0.5em 0.5em 0.5em 0;
	font-size:3em; 
}


.InStock{
	background-color:DarkTurquoise;
	padding:0.5em;
	border-radius:4px;
	color:white;
	margin:0.5em 0.5em 0.5em 0;
	font-size:3em; 
	color:black;
	user-select:none;
	cursor:pointer;
}	

.Order{
	
}

.Contact{
	background-color:Gold;
	padding:0.5em;
	border-radius:4px;
	color:white;
	margin:0.5em 0.5em 0.5em 0;
	font-size:3em; 
	color:black; 
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.Contact{
		font-size:2.5em;
	}
	.InStock{
		font-size:2.5em;
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	
}