<!-- CSS -->

#whole page {
width: "100%";
padding: 5px;
display: flex;
flex-wrap: wrap;
background: #ffffff;
font-size:100%;
flex-direction: column;
}

#iteminfo {
	flex: 100%
	
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}

#iteminfo a:link {
		color: #0000ff;
		text-decoration: underline;
	}
	
	#iteminfo a:visited {
		color: #0000ff;
		text-decoration: underline;
	}
	
	#iteminfo a:hover {
		text-decoration: underline;
	}

#headertext {
	font-family: Arial, Helvetica, sans-serif;
	color: #d01f29;
	font-weight: bold;
	flex: 100%;
}

#shipping-returns {
	display: flex;
	flex-direction: row;
}

#shipping {
	flex: 50%;
	padding-right: 5px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}

#returns {
	flex: 50%;
	padding-left: 5px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}

#returns a:link {
		color: #0000ff;
		text-decoration: underline;
	}
	
	#returns a:visited {
		color: #0000ff;
		text-decoration: underline;
	}
	
	#returns a:hover {
		text-decoration: underline;
	}

#thankyoulogo {
	flex: 100%;
	padding-bottom: 17px;
	text-align: center;
}

#storelinks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #0e0e0e;
}
	#storelinks a:link {
		color: #ffffff;
		text-decoration: none;
	}
	
	#storelinks a:visited {
		color: #ffffff;
		text-decoration: none;
	}
	
	#storelinks a:hover {
		text-decoration: underline;
	}
	
#storelink-1, #storelink-7 {
	flex: 6.5%;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}

#storelink-2, #storelink-3, #storelink-4, #storelink-5, #storelink-6 {
	flex: 17.4%;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}

@media (max-width: 750px) {
	#storelinks {
		font-size: 2vw;
	}
}

@media (max-width: 640px) {
	#shipping-returns {
	flex-direction: column;
}
}

@media (max-width: 425px) {
	#storelinks{
	  font-size: 100%;
  }
  
	#storelink-1, #storelink-7{
		flex:0%;
		background: #ffffff;
	}
  
	#storelink-2, #storelink-3, #storelink-4, #storelink-5, #storelink-6{
    flex: 100%;
	padding: 2px;
	border-bottom: 2px solid white;
	background: #0e0e0e;
  }
  
  #storelink-6{
    flex: 100%;
	padding: 2px;
	background: #0e0e0e;
  }
  
  }
	


