
 .user-menu a.user-compare label
	{
	font-weight: bold;
	}


/*-------- EMPTY WHISHLIST --------*/

 .empty-list
	{
	text-align: center;
	}

 .empty-list h4
	{
	margin: 30px 0;
	font-size: 18px;
	font-weight: normal;
	color: #555555;
	text-align: center;
	}

 .empty-list img
	{
	width: 30%;
	}


/*-------- COMPARE TITLE --------*/

 .compare-title
	{
	margin: 10px 0;
	}

 .compare-title .a
	{
	margin-left: 7px;
	color: #0077ff;
	text-decoration: underline;
	cursor: pointer;
	}
 .compare-title .a:hover
	{
	text-decoration: none;
	}

 .compare-diff
	{
	display: none;
	}


/*-------- COMPARE TABLE --------*/

 #compare-table
	{
	margin-top: 5px;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	}

 #compare-table td
	{
	min-width: 100px;
	padding: 10px 10px;
	border: 1px solid #dddddd;
	text-align: center;
	}
 #compare-table tr:hover td
	{
	background-color: #f6f6f7;
	}

 #compare-table td:first-child 
	{
	width: 170px;
	background-color: #f6f6f7;
	font-size: 13px;
	font-weight: bold;
	color: #404040;
	text-align: left;
	}

 #compare-table label[for]
	{
	cursor: pointer;
	}

 #compare-table .td-photo
	{
	padding: 5px;
	}
 #compare-table .td-photo div
	{
	position: relative;
	}
 #compare-table .td-photo img
	{
	width: 100%;
	max-width: 120px;
	}
 #compare-table .td-photo .delete-btn
	{
	position: absolute;
	top: 0px;
	right: 0px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: none;
	border: none;
	background: url("images/delete.png") 0 0 no-repeat;
	background-size: 100% auto;
	cursor: pointer;
	outline: none;
	}
 #compare-table .td-photo .delete-btn:hover
	{
	opacity: 0.6;
	}

 #compare-table .td-name a
	{
	font-weight: bold;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
	}
 #compare-table .td-name a:hover
	{
	text-decoration: underline;
	}
 #compare-table .td-name .subtitle
	{
	margin-top: 2px;
	color: #505050;
	}

 #compare-table .price
	{
	font-weight: bold;
	}
 #compare-table .old-price
	{
	margin-right: 5px;
	font-size: 16px;
	text-decoration: line-through;
	}
 #compare-table .old-price + .price
	{
	color: #ff5050;
	}

 #compare-table .rating
	{
	width: 100%;
	max-width: 85px;
	}

 #compare-table .yes
	{
	position: relative;
	display: inline-block;
	line-height: 20px;
	padding-left: 15px;
	color: #000000;
	}
 #compare-table .yes:before
	{
	content: '';
	position: absolute;
	top: 6px;
	left: 0px;
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #00aa00;
	border-radius: 50%;
	}

 #compare-table .no
	{
	color: #999999;
	}

 #compare-table .to-cart
	{
	display: inline-block;
	border: 2px solid #000000;
	cursor: pointer;
	}
 #compare-table .to-cart span
	{
	display: inline-block;
	padding: 9px 18px 9px 36px;
	background: url("images/cart.png") 8px center no-repeat;
	font-size: 13px;
	color: #000000;
	font-weight: 400;
	white-space: nowrap;
	border: 1px solid transparent;
	transition: border 0.3s ease;
	}
 #compare-table .to-cart:hover span
	{
	border-color: #000000;
	}

 #compare-table td:nth-child(n+7)
	{
	display: none;
	}

 #compare-all-window td:nth-child(n+7)
	{
	display: table-cell;
	}

 #compare-all-window td:first-child
	{
	width: 110px;
	}


/*-------- COMPARE ALL WINDOW --------*/

 #compare-all-window-bg
	{
	display: none;
	position: fixed;
	top:0; left:0; right:0; bottom:0;
	background-color: RGBA(200,200,200, 0.85);
	overflow-y: scroll;
 	-webkit-overflow-scrolling: touch;
    	zoom: 1;
	z-index: 500;

	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in;
	-moz-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
	}

 #compare-all-window
	{
	position: relative;
	margin: 40px 20px;
	padding: 25px 20px;
	box-sizing: border-box;
	background-color: #ffffff;
	font-family: Arial, Tahoma;

	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;

	-webkit-transform: translate(0, -800px);
	-moz-transform: translate(0, -800px);
	-o-transform: translate(0, -800px);
	transform: translate(0, -800px);
	}

 #compare-all-window.show
	{
	-webkit-transform: translate(0, 0px);
	-moz-transform: translate(0, 0px);
	-o-transform: translate(0, 0px);
	transform: translate(0, 0px);
	}

 #compare-all-window .close-btn
	{
	position: absolute;
	top: 2px;
	right: 2px;
	width: 26px;
	height: 26px;
	background: url('images/close.png') center center no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	z-index: 600;
	}
 #compare-all-window .close-btn:hover
	{
	opacity: 0.7;
	}

 #compare-window-content
	{
	overflow-x: auto;
	}


/*-------- MOBILE --------*/

@media (max-width: 900px)
 {
 .compare-title
	{
	display: none;
	}

 .compare-diff
	{
	display: block;
	}

 #table-wrapper
	{
	overflow-x: scroll;
	-webkit-touch-action: pan-x;
	-moz-touch-action: pan-x;
	}

 #compare-table td
	{
	font-size: 13px;
	}
 #compare-table td:first-child 
	{
	display: none;
	}
 #compare-table td:nth-child(n+7)
	{
	display: table-cell;
	}

 #compare-table .old-price
	{
	font-size: 13px;
	}

 #compare-table .to-cart span
	{
	padding: 6px 8px;
	background-image: none;
	*font-size: 11px;
	}
 }


/*-------- MOBILE 2 --------*/
/*
@media (min-width: 480px) and (max-width: 1000px)
 {
 #compare-table td:first-child 
	{
	display: none;
	}
 }


@media (min-width: 480px) and (max-width: 800px)
 {
 #compare-table .to-cart
	{
	padding: 6px 8px;
	background-image: none;
	font-size: 11px;
	}
 }

@media (max-width: 480px) 
 {
 .compare-title
	{
	display: none;
	}

 #compare-table tr
	{
	display: block;
	margin: 15px 0;
	border-top: 1px solid #ddd;
	}

 #compare-table .tr-name
	{
	display: none; 
	}

 #compare-table td
	{
	display: block !important;
	width: auto !important;
	padding: 0;
	font-size: 13px !important;
	text-align: left;
	border-top: none;
	}

 #compare-table td:before
	{
	display: inline-block;
	content: attr(data-name)": ";
	width: 40%;
	margin-right: 10px;
	padding: 7px 10px;
	font-weight: bold;
	border-right: 1px solid #ddd;
	}

 #compare-table td:first-child 
	{
	padding: 7px 10px;
	}
 #compare-table td:first-child:before
	{
	display: none;
	}

 #compare-table .price
	{
	font-weight: normal;
	}
 #compare-table .old-price
	{
	font-size: 13px;
	}

 #compare-table .td-photo:before
	{
	display: none;
	}
 #compare-table .td-photo:after
	{
	display: inline-block;
	vertical-align: top;
	content: attr(data-name);
	padding: 7px 10px;
	font-weight: bold;
	}

 #compare-table form
	{
	display: inline-block;
	margin: 7px 0;
	}
 }

@media (max-width: 360px) 
 {
 #compare-table .td-photo img
	{
	max-width: 90px;
	}
 }
*/