/* CSS Document */

*{
	box-sizing: border-box;
	font-family: sans-serif;
	line-height: 1.4;
}

article{
	width: 825px;
	margin: 0 auto;
	margin-top: 40px;
	border: 4px solid black;
	position: relative;
}

.adTop{
	display: block;
	height: 40px;
	text-align: center;
	text-transform: uppercase;
	background-color:#F4F4F4;
	margin: 0;
}

.image{
	float: left;
	height: 200px;
}

.itemInfo{
	margin-left: 10px;
	display: inline-block;
	width: 300px;
	
}

.productDetails{
	margin-top: 10px;
	display: inline-block;
	float: right;
	width: 300px;
}

h2{
	margin: 0;
	display: inline;
}

.shipping{
	margin-top: 5px;
	text-transform: uppercase;
	font-weight: bolder;
	color:#777;
	font-size: 14px;
}

ul{
	padding: 0;
	margin-left: 20px
}

h3 {
	display: inline;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bolder;
	margin-left: 5px
}

a{
	color: black;
}

.moreInfo:link, .moreInfo:visited{
	color: #000;
	cursor: grab;
}

.moreInfo:hover, .moreInfo:active{
	color: #000;
	text-decoration: none;
	cursor: grab;
}

.moreInfo{
	display: block;
	margin-bottom: 20px;
}

/*.moreInfo:active{
	text-decoration: none;
	cursor: grab;
}
*/

button{
	color: #FFF;
	background-color: #000;
	border: none;
	height: 40px;
	width: 100%;
	border-top: solid #000 4px;
}

button:hover {
	background-color: #FFF;
	color: #000;
	cursor: pointer;
}

li{
	list-style: square;
	margin-bottom: 10px;
}

article::before{
	content: "SALE";
	background-color: #FF0004;
	padding: 5px 15px;
	color: #fff;
	font-size: 12px;
	position: absolute;
	top:-17px;
	left: -34px;
	letter-spacing: 2px;
	font-weight: bold;
}

.black{
	background-color: #000;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}

.blue{
	background-color: #27439C;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}

.red{
	background-color: #D01013;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}


.yellow{
	background-color: #BCA21D;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}

.green{
	background-color: #2FC036;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}

.brown{
	background-color: #723E11;
	height: 20px;
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}

.item-price{
	display: flex;
	align-items: center;
	justify-content: space-between;
}