.option-list {
			border: 1px solid green;
			text-align: center;
			margin: 0;
			padding: 0;
			width: 200px;
			height: 100px;}
.option-list > ul {
			margin: 0;
			padding: 0;
			}
			/*Main price selection tabs*/
.option-list > ul > li {
			color: black;
			border: 1px solid grey;
			border-radius: 2px;
			width: 150px;
			display: inline-block;
			padding-left: 25px;
			padding-right: 25px;
			padding-top: 5px;
			padding-bottom: 5px;
			font-size: 12px;
			cursor: pointer;
			z-index: 1;}
.option-list > ul > li:hover {
			background-color: grey;
}
ul.price-options {
			position: absolute;
			width: 650px;
			margin: 0;
			left: 0.5px;
			border: 1px solid blue;
			background-color: white;
			padding-left: 5px;
			padding-right: 5px;
			padding-top: 5px;
			padding-bottom: 5px;
			opacity: 1;}
			/*Submenu appearing when mouse hovers. I could also simplify this later too.*/
.cart-track-button:hover .price-options {
			opacity:1;}