

.product-reviews-list {
	padding-top: 50px;
	text-align: center;
}

.product-reviews-list a:hover {
	text-decoration: underline;
}

.product-reviews-list .statistics {
	display: flex;
	flex-direction:column;
    margin-bottom: 50px;
	border-bottom: 1px solid #e6e6e6;
    padding-bottom: 50px;
}

.product-reviews-list .statistics .quotes,
.product-reviews-list .statistics .recommendations {
	display:none;
}

.product-reviews-list .statistics .quotes .title {
	font-weight: 700;
    font-size: 27px;
    line-height: 110%;
    margin-bottom: 10px;
}

.product-reviews-list .statistics .quotes .text {
	font-weight: 400;
    font-size: 14px;
}

.product-reviews-list .statistics .recommendations .number{
	font-weight: 700;
    font-size: 35px;
}

.product-reviews-list .statistics .recommendations .descr{
	font-weight: 400;
    font-size: 14px;
}

.product-reviews-list .statistics .average-rating .board {
	border: 3px solid #ff6000;
    padding-top: 20px;
    padding-right: 45px;
    padding-bottom: 10px;
    padding-left: 45px;
}

.product-reviews-list .statistics .average-rating .board .title {
    font-weight: 500;
    font-size: 16px;
	line-height: 110%;
}

.product-reviews-list .statistics .average-rating .board .main-number{
	font-weight: 700;
    font-size: 80px;
    line-height: 120%;
}

.product-reviews-list .statistics .average-rating .board .second-number{
    font-weight: 500;
    font-size: 18px;
    color: #9a9a9a;
}

.product-reviews-list .pagination {
	margin-bottom: 45px;
}

.product-reviews-list .pagination .left-arrow,.right-arrow {
    border-radius: 40px;
    border: 1px solid #8c8c8c;
    background-color: white;
    color: #8c8c8c;
    width: 40px;
    font-size: 21px;
    margin-left: 5px;
    margin-right: 5px;
    height: 40px;
}

.product-review {
	font-size: 15px;
    text-align: left;
	margin-bottom: 50px;
	border-bottom: 1px solid #e6e6e6;
}

.check:after {
    font-weight: 700;
    content: "✓";
    display: inline-block;
    margin-right: 5px;
}

.product-review .member {
	margin-bottom: 20px;
}

.product-review .member .member-name {
	font-weight:500;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
}

.product-review .member time {
	font-weight:400;
	color:#B6B4B3;
}

.product-review .member p {
	font-weight:400;
}

.product-review .review .ratings {
	margin-bottom: 20px;
	flex: none;
	min-width: 180px;
}

.product-review .review h5 {
	margin-top: 0;
	margin-bottom: 15px;
	font-weight:700;
	line-height:130%;
	font-size:19px;
}

.product-review .review .text {
	margin-bottom: 25px;
}

.product-review .review .recommended {
	margin-top: 20px;
}

.product-review .review .comment {
	margin-top: 19px;
    color: #949494;
    font-style: italic;
}

.product-review .ratings .summary .scale {
	margin-left:-3px;
}

.product-review .ratings .summary .scale svg {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	transform: translate(0, -0.125em);
}

.ratings .scale, .ratings .point {
	display: inline-block;
}

.ratings .point {
    padding: 2px;
    white-space: nowrap;
}

header .header-container {
	flex-direction: row;
	justify-content: center;
	max-width: 1024px;
	padding: 0;
	width: 95vw;
	margin:auto;
}

header h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 13px;
    color: #3c3c3c;
}



@media only screen and (min-width:601px) {
	
	.product-reviews-list .statistics {
		flex-direction:row;
		justify-content: space-around;
	}
	
	.product-reviews-list .statistics .quotes,
	.product-reviews-list .statistics .recommendations {
		display: flex;
		width: 23%;
		flex-direction: column;
		justify-content: center;
	}
	
}


@media only screen and (min-width:1001px) {

	.product-review {
		display: flex;
		justify-content: space-between;
	}
	
	.product-review .member {
		width: 20%;
	}
	
	.product-review .review {
		width: 75%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	
	.product-review .review .text {
		width: 70%;
	}

}






