div.product-wrap
{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

	div.product-img-wrap
	{
		position: relative;
		width: 640px;
	}
	
		a.product-img
		{
			display: block;
			width: 100%;
			border-radius: 20px;
			overflow: hidden;
		}
		
			a.product-img img
			{
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
				
		div.product-photos
		{
			position: absolute;
			float: left;
			width: 100%;
			bottom: 0px;
			padding: 20px;
			box-sizing: border-box;
			overflow: hidden;
		}
		
			div.product-photo
			{
				position: relative;
				height: 100px;
				border: 1px solid #660000;
				border-radius: 15px;
				background-size: cover;
				background-position: center;
			}
			
				a.product-photo-link
				{
					float: left;
					width: 100%;
					height: 100%;
				}
				
				div.product-photo:hover div.settings_menu
				{
					display: block;
				}
				
	div.product-info
	{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 430px;
	}
	
		div.product-info-block
		{
			width: 100%;
		}
	
			div.product-info-line
			{
				float: left;
				width: 100%;
				margin-bottom: 20px;
			}
			
			div.product-info-line:last-child
			{
				margin: 0px;
			}
			
				div.product-features-list
				{
					float: left;
					width: 100%;
				}
			
					div.product-features-group
					{
						float: left;
						width: 100%;
						margin-bottom: 10px;
					}
					
					div.product-features-group:last-child
					{
						margin: 0px;
					}
					
						span.product-features-group-title
						{
							display: block;
							font-size: 16px;
							line-height: 20px;
							color: #7b7b7b;
						}
						
						div.product-features-items
						{
							float: left;
							width: 100%;
							margin-top: 10px;
						}
						
							div.product-features-item
							{
								display: flex;
								float: left;
								align-items: center;
								margin: 0px 5px 5px 0px;
								border: 1px solid #ddd;
								border-radius: 40px;
								padding: 0px 10px;
							}
							
								span.product-features-img
								{
									width: 40px;
									height: 40px;
									margin-right: 5px;
									background-position: center;
									background-repeat: no-repeat;
									background-size: contain;
									border-radius: 10px;
								}
								
								span.product-features-name
								{
									font-size: 14px;
									color: #7b7b7b;
								}
			
						span.product-components-title
						{
							display: block;
							font-size: 16px;
							line-height: 20px;
							color: #7b7b7b;
						}
						
						div.product-components
						{
							float: left;
							width: 100%;
							margin-top: 10px;
						}
						
							a.product-component
							{
								display: flex;
								float: left;
								align-items: center;
								margin: 0px 5px 5px 0px;
								border: 1px solid #ddd;
								border-radius: 40px;
								padding-right: 10px;
							}
							
								span.product-component-img
								{
									width: 36px;
									height: 36px;
									margin: 2px;
									background-position: center;
									background-repeat: no-repeat;
									background-size: contain;
									border-radius: 30px;
								}
								
								span.product-component-name
								{
									margin-left: 5px;
									font-size: 14px;
									color: #7b7b7b;
								}
			
				span.product-action-countdown
				{
					font-size: 20px;
					font-weight: 700;
					color: #ff3b3b;
				}
				
					span.cart-btn-page
					{
						display: flex;
						justify-content: center;
						align-items: center;
						color: #fff;
						background: #ed2224;
						width: 215px;
						padding: 20px;
						border-radius: 30px;
						cursor: pointer;
						transition: 0.2s;
						-o-transition: 0.2s;
						-webkit-transition: 0.2s;
					}
					
					.cart-btn-page:hover
					{
						background: #df1214;
					}
					
						.cart-btn-page i
						{
							font-size: 20px;
							margin-right: 5px;
						}
						
						.cart-btn-page span
						{
							font-size: 16px;
						}
					
	div.similar-products
	{
		float: left;
		width: 100%;
		margin-top: 80px;
	}
	
	div.viewed-products
	{
		float: left;
		width: 100%;
		margin-top: 80px;
	}