/* PAGES ************************/

#apparel {
	width: 1000px;
	margin: 0 auto;
}

#widget {
	width: 624px;
	text-align: center;
	margin: 0 auto;
	margin-top: 50px;
}

#sorry {
	width: 420px;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}

/* PRODUCT APPAREL ************************/

.product {
	width: 1000px;
	height: 500px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	margin-bottom: 30px;
}

.product_images {
	width: 600px;
	height: 463px;
	float: left;
	background-color: blue;
}

.product_details {
	width: 320px;
	height: 423px;
	float: right;
	border: 2px solid #fff;
	padding: 20px;
}

.product_title {
	margin-bottom: 10px;
	line-height: 34px;
	text-align: left;
}

.product_byline {
	margin-bottom: 3px;
	font: bold 14px 'Asap', sans-serif;
	letter-spacing: 2px;
}

.product_divider {
	margin-bottom: 15px;
}

.product_description {
	margin-bottom: 30px;
}

.item_thumb {
	float: left;
}

.item_price {
	position: absolute;
	font-family: 'Asap', sans-serif;
}

/* SELECT DROPDOWN ************************/

select {
	width: 150px;
	height: 40px;
	padding: 5px;  
	margin-bottom: 35px;
	background: url('../images/arrow_down.png') no-repeat #000;
	background-position: 120px 15px;   
	text-align: center;
	font: bold 14px 'Asap', sans-serif;
	color: #fff;
	line-height: 1;
	border: 2px solid #fff;
	border-radius: 0;
}

input[type=number] {
	width: 60px;
	height: 20px;
	background: #000;
	padding: 10px;
	color: #fff;
    display: inline;
	border: 2px solid #fff;
	font: bold 14px 'Asap', sans-serif;
	line-height: 1;
	border-radius: 0;
}

input[type=number]::-webkit-inner-spin-button { 
    -webkit-appearance: none;
    cursor: pointer;
    display: inline;
    color: #fff;
    text-align: center;
    position: relative;
}    

input[type=number]:hover::-webkit-inner-spin-button { 
    background: url('../images/input_arrows.png') no-repeat;  
    width: 14px;
    height: 14px;
	margin-top: auto;
	margin-bottom: auto;
    position: relative;
}

.input_label {
	font: bold 14px 'Asap', sans-serif;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	margin-right: 15px;
}

/* ADD TO CART BUTTON ************************/

.btn_add_item {
	width: 320px;
	height: 40px;
	margin-top: 115px;
	font: bold 14px 'Asap', sans-serif;
	letter-spacing: 1px;
	color: #000;
	background: #fff;
	border: 0;
}
 
.btn_add_item:hover {
	color: #fff;
	background: #000;
}

/* PRODUCT PREORDER GAME ************************/

.outline {
	width: 580px;
	height: 305px;
	border: 2px solid #fff;
	padding: 20px;
}

/* PRODUCT NAVIGATION ************************/

.product_nav {
	width: auto;
	height: 100px;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-right: auto;
	display: block;
	margin-left: auto;
	font: bold 18px 'Asap', sans-serif;
	line-height: 100px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.left {
	float: left;
}

.right{
	float: right;
}

/* IMG SLIDER ************************/

.slider {
	float: left;
}

.slider input{
	display: none;
}

.slider_images {
	width: 600px;
	height: 463px;
	border: 2px solid #fff;
	margin: auto;
	position: relative;
	overflow: hidden;
}

.slider_nav {
	width: 108px;
	margin: 0 auto;
	margin-top: 20px;
}

/* RADIO BUTTONS ************************/

.radio {
	width: 10px;
	height: 10px;
	overflow: hidden;
	margin: 10px 10px 0 0;
	padding: 0;
	text-align: center;
	font-family: 'Lato';
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	font-weight: 900;
	cursor: pointer;
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-block;
	transition: background-color .4s;
}

.radio:hover {
	background-color: #fff;
}

input:checked ~ .radio {
	color: #fff;
	background-color: #fff;
	opacity: 1;
}

#one, #two, #three, #four {
	opacity: 0;
	-webkit-transform: translate(0,0px);
	transition-property: -webkit-transform, opacity;
	transition-duration: .75s;
	position: absolute;
}

#img_01:checked ~ .slider_images #one,
#img_02:checked ~ .slider_images #two,
#img_03:checked ~ .slider_images #three,
#img_04:checked ~ .slider_images #four {
	opacity: 1;
	-webkit-transform: translate(0,0);
}

#img_01:checked ~ .slider_nav label #dot_01.radio,
#img_02:checked ~ .slider_nav label #dot_02.radio,
#img_03:checked ~ .slider_nav label #dot_03.radio,
#img_04:checked ~ .slider_nav label #dot_04.radio {
	color: #fff;
	background-color: #fff;
}