.product-main-photo {
    flex: 0 0 880px;
}

.product-photos {
	display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    flex: 0 0 880px;

}

.product-main-photo img{
	border-radius: 10px;
}

.product-gallery-items-inner{
	height: auto;
	overflow: auto;
	display: flex;
	column-gap: 25px;
	flex-wrap: wrap;
	margin: 20px 0;
}


.products-tab-content{
	margin:50px 0;
}

.product-photos .product-gallery {
    flex: 0 0 100%;
    position: relative;
}

.product-photos .product-gallery .product-gallery-item.active a{
	border: 2px solid #222;
}

.product-gallery-item img {
    width: 160px;
    border-radius: 10px;
}

.product-details {
    flex: 0 0 450px;
}

.product-short-description {
    background: #fbf3e1;
    padding: 25px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 20px;
    margin: 30px 0;
    letter-spacing: -.2PX;
    width: auto;
}

.product-attributes ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* margin-bottom: 5px; */
    border-bottom: 1px solid #f4f4f4;
    padding: 10px 0;
}

.product-attributes ul li:last-child {
border-bottom: none;
}

.product-description ul{
	padding:0;
	margin: 25px 0;
}


.product-description ul li{
	position: relative;
	padding-left: 34px;
	margin-bottom: 15px;
	list-style: none;
}

.product-description ul li:before{
	content: "";
	width: 22px;
	height: 4px;
	background:#f8b425;
	position: absolute;
	left: 0;
	top: 12px;
}

.product article.product-description {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 300;
}

@media(max-width: 1500px){
    .product-photos {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    flex: 0 0 680px;
        }

        .product-main-photo {
    flex: 0 0 680px;
        }

        .product-gallery {
    display: block;
        }
        .product-gallery-item img {
    width: 137px;
    border-radius: 6px;
        }
}