/**
 * My Project tab CSS
 *
 * Note: Panel height controlled by '#project-content .content-cols' max-height.
 */

#my-project {
	position: absolute;
	margin: 0 auto;
	width: 960px;
	background-color: #FFF;
	z-index: 999;
	color: #000;	
}

#project-inner {
	margin: auto;
}

#project-content {
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	display: none;
	color: #000000;
	background-color: #FFFFFF;
	padding: 0 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}


/* columns */
#project-content .col {
	width: 185px;
	margin: 10px 10px 0px 10px;
	vertical-align: top;
	padding-right: 10px;
	float: left;
}

/* content columns */
#project-content .content-cols {
	clear: both;
	height: 230px;
	overflow: auto;
	margin-top: 5px;
}

#project-content .content-cols .col {
	min-height: 245px;
	border-right: solid #ccccce 1px;
}

#project-content .content-cols .col:last-child {
	border-right: none;
}

#project-content .content-cols p {
	margin-bottom: 15px
}


/* intro column */
#project-content .col-intro {
	width: 240px;
}

#project-content .col-intro form {
	margin-top: 20px;
}

/* general */

.project-item {
	display: inline-block;
	position: relative;
	border: solid #efeff1 2px;
	text-decoration: none;

	/* IE7 */
	*display: inline;
	*zoom: 1;
}

.project-item:hover {
	border: solid white 2px;
}


#project-email {
	width: 145px;
	color: black;
	font-weight: bold;
	text-align: left;
	font-size: 11px;
	float:left;
	top:0
}

/* placeholder */
#project-email::-webkit-input-placeholder { color: #58595b; }
#project-email:-moz-placeholder { color: #58595b; }
#project-email::-moz-placeholder { color: #58595b; }
#project-email:-ms-input-placeholder { color: #58595b; }


#project-email-button {
	width: 75px;
	border: solid #d19b1d 1px;
	font-weight: bold;
	font-size: 10px;
	position: relative;
	top: 0;
	left: -3px;
	
	background-color: #fac328 !important;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fac328), to(#d19b1d));/* Chrome, Safari 4+ */
	background-image: -webkit-linear-gradient(top, #fac328, #d19b1d); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:    -moz-linear-gradient(top, #fac328, #d19b1d); /* Firefox 3.6-15 */
	background-image:      -o-linear-gradient(top, #fac328, #d19b1d); /* Opera 11.10-12.00 */
	background-image:         linear-gradient(to bottom, #fac328, #d19b1d); /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fac328', EndColorStr='#d19b1d');
}

#project-email-button:hover {
	background: #d19b1d;
}

/* inspiration column */

.inspiration-image {
	width: 82px;
	height: 115px;
	margin: 2px;
}


/* colours column */

.col-colours .project-item .colour-swatch {
	width: 80px;
	height: 80px;
	margin: 2px;
}

/* products column */
.col-products .project-item {
	width: 200px;
	height: 90px;
	margin-bottom: 15px;
}

.col-products .project-item .product-image {
	display: inline-block;
	/* IE7 */
	*display: inline;
	*zoom: 1;

	vertical-align: top;
	width: 60px;
	height: 65px;
	margin-right: 15px;
}

.col-products .project-item .product-litres {
	display: inline-block;
	/* IE7 */
	*display: inline;
	*zoom: 1;

	vertical-align: top;
	font-size: 22pt;
	padding: 7px;
	margin-top: 8px;
	color: black;
	border: solid black 2px;
}

.col-products .project-item .product-name {
	padding: 6px;
}

.remove-item {
	display: none;
	position: absolute;
	right: 0px;
	padding: 0px 4px 0px 4px;
	text-align: center;
	background-color: #f5c519;
	border: solid #2462b5 1px;
	color: #2462b5;
	font-size: 12px;
	text-decoration: none;

	-moz-border-radius: 20px; /* Firefox */
	-webkit-border-radius: 20px; /* Safari, Chrome */
	border-radius: 20px; /* CSS3 */
}

.project-item:hover .remove-item {
	display: block;
}

.remove-item:hover {
	background-color: #e7aa12;
}

/* no items */
.no-items {
	display: none;
	margin-top: 10px;
}




/* bottom bar and tab */
#project-bar {
	height: 30px;
	border-top: solid #fac328 10px;
}

#project-bar #project-tab {
	background: url("images/myprojecttab.png") no-repeat scroll center center transparent;
    direction: ltr;
    display: block;
    height: 20px;
    margin-left: 50px;
    text-align: center;
    text-indent: -10000px;
    width: 120px;
}

/* add to my project buttton */
.add-to-my-project-link {
	position: absolute;
	width: 100px;
	height: 30px;
	z-index: 1;
	margin: -113px 0 0 562px; 
	border: solid #e2e2e3 1px;
	background: #f0f0f0 url(images/my-project-button.png) no-repeat center center;
	text-decoration: none;
}


.add-to-my-project-link.added {
	color: rgb(121,163,62);
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	background-image: none;
}


/* add to project button for colors */
.swatches div .add-to-my-project-link {
	display: none;
	margin: 20px 0px 0px 30px;
}

.swatches div:hover .add-to-my-project-link {
	display: inline-block;
	/* IE7 */
	*display: inline;
	*zoom: 1;
}


/* for product */
#add_product_container {
	width: 960px;
	margin: auto;
	clear: both;
	height: 100px;
}


/* add to project button for inspiration */
#inspiration_cards .add-to-my-project-link {
	display: none;
	margin: 20px 0px 0px 200px;
}

#inspiration_cards .image1:hover .add-to-my-project-link,
#inspiration_cards .image2:hover .add-to-my-project-link {
	display: inline-block;
	/* IE7 */
	*display: inline;
	*zoom: 1;
}


