div.site-wish-list
{
    float: left;
    width: 100%;
}

	div.site-wish-list div.bar-wrap
	{
		margin-bottom: 40px;
	}

		ul.wish-list
		{
			float: left;
			width: 100%;
			list-style-type: none;
			margin-top: 25px;
		}
		
			ul.wish-list li
			{
				display: table;
				float: left;
				width: 100%;
				padding: 15px;
				background: #fff;
				border-top: 2px solid var(--color-main);
				box-sizing: border-box;
				margin-bottom: 25px;
				box-shadow: 0 5px 10px rgba(0,0,0,.05);
			}

				div.wish-cell
				{
					display: table-cell;
					vertical-align: top;
				}
				
				div.wish-cell.img
				{
					width: 40px;
					padding-right: 10px;
				}
				
					a.wish-img
					{
						background-position: center;
						background-repeat: no-repeat;
						background-size: cover;
						background-color: #fff;
						float: left;
						width: 40px;
						height: 40px;
					}
					
					a.wish-link
					{
						color: #000;
						font-weight: 700;
						text-transform: uppercase;
					}
					
					span.wish-desc
					{
						display: block;
						font-size: 13px;
						margin-top: 5px;
					}
