html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* -------------------fonts---------------------------------- */
@font-face {
    font-family: 'Product Sans';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/ProductSans-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Product Sans';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/ProductSans-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Product Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/ProductSans-Medium.woff') format('woff');
}
/* ----------------------------------------------------- */
body{
    font-family: 'Product Sans';
    color: rgba(0, 0, 0, .87);
    font-size: 16px;

}
.wrapper{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0px 30px;
}
.flex-grow{
    flex-grow: 1;
}
/* -----------------header------------------------------- */
.header {
    margin: 10px 0;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__icon img{
width: 20px;
}
.header__title {
    color: rgb(95, 99, 104);
    font-size: 22px;
    font-weight: 500;
   
}
/* ---------------------------------------- */
.main{
    margin-top: 48px;
}
.preview {
}
.preview__inner {
    display: flex;
}
.preview__img img{
    border-radius: 20%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    margin: 7px 24px 0 0;
    width: 72px;
}
.preview__description {
}
.preview__title {
    font-size: 24px;
    color: #202124;
    font-weight: 500;
    line-height: 1.2;
}
.preview__text {
    margin-top: 5px;
    color: #0B57CF;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}
.preview__games {
    padding-top: 5px;
    font-size: 12px;
    color: #5f6368;
}
/* -------------------------------------- */
.rating {
    margin: 16px 0 24px -24px;
}
.rating__inner {
    display: flex;
    align-items: center;
   padding: 0 24px;
   height: 64px;

}
.rating__item {
    padding: 0 24px;
    width: 45%;
    text-align: center;
    position: relative;
}
.rating__item::before{
    position: absolute;
    display: block;
   content: ''; 
   right: 0;
   top: 25%;
   border-right: 1px solid #ccc;
   width: 2px;
   height: 20px;
}
.number-star{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.rating__img{
    width: 20px;
}
.rating__age{
    display: inline-block;
    padding: 3px 6px;
    font-size: 12px;
    color: #5C8D5E;
    border-radius: 50%;
    border: 1px solid #5C8D5E;
}
.number-star::after{
   display: block;
   content:''; 
   background: url(../img/star.png) no-repeat center;
   background-size: cover;
   width: 15px;
   height: 15px;
}
.rating__number {
    font-weight: 500;
}
.rating__text {
    padding-top: 10px;
    font-size: 12px;
    color: #5f6368;
}
.main__button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    font-size: 15px;
    color: #fff;
    background: #0B57CF;
    width: 100%;
    text-decoration: none;
    border-radius: 8px;
}
/* ------------------------------------ */
.screen {
    margin-top: 80px;
    overflow-x: auto;
    width: 100%;
}
.screen__inner {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}
.screen__item {
    padding: 10px 0; 

}
.screen__item img{
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    border-radius: 8px;
    height: 204px;
    min-width: 92px;
}
/* -------------------------------------- */
.description {
    margin-top: 35px;
}
.description__inner {
    display: flex;
    justify-content: space-between;
}
.description__title {
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
}
.description__icon img{
    width: 25px;
    transform: rotate(180deg);
}
.description__text {
    font-size: 14px;
    color: #5f6368;
}
.description__box {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    width: 100%;
}
.description__border {
    border: 1px solid #5f6368;
    padding: 7px;
    color: #5f6368;
    border-radius: 16px;
    white-space: nowrap;
}
/* ---------------------------------- */
.details {
    margin-top: 30px;
}
.details__box {
    border: 1px solid #5f6368;
    border-radius: 8px;
    padding: 0 20px 20px 20px;
}
.details__item {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.details__item img{
    width: 20px;
    margin-right: 20px;
}
.details__title {
    font-size: 14px;
    color: #5f6368;
}
/* -------------------reviews------------------------------- */
.reviews{
margin-bottom: 15px;
}
.reviews__inner{
    display: flex;
    gap: 15px;
    padding-top: 10px;
}
.reviews__number{
    font-size: 56px;
    color:#202124;
    padding-bottom: 5px;
}
.reviews__rating img{
    width: 16px;
}
.reviews__many{
    font-size: 12px;
    color: #5f6368;
}
.reviews__item {
}
.reviews__line {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 3px 0;
}
.reviews__line-number {
}
.reviews__line-line {
    background-color: rgb(232, 234, 237);
    height: 10px;
    width: 100%;
    border-radius: 50px;
}
.reviews__line-full--1 {
    height: 10px;
    width: 80%;
    border-radius: 50px;
    background: #0B57CF;
}
.reviews__line-full--2 {
    height: 10px;
    width: 16%;
    border-radius: 50px;
    background: #0B57CF;
}
.reviews__line-full--3 {
    height: 10px;
    width: 4%;
    border-radius: 50px;
    background: #0B57CF;
}
/* ------------------------------------------ */
.persone {
    padding: 36px 0;
}
.persone-header {
}
.persone-header__inner {
    display: flex;
    justify-content: space-between;
  
}
.persone-header__author {
    display: flex;
    gap: 16px;
    align-items: center;
}
.persone-header__img img{
    width: 32px;
    border-radius: 50%;
}
.persone-header__name {
    font-size: 14px;
    color: #202124;
}
.persone-header__dots img{
    width: 24px;
}
.persone-date {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.persone-date__img img{
    width: 15px;
}
.persone-date__date {
    font-size: 12px;
    color: #5f6368;
}
.persone__text {
    margin-top: 8px;
    font-size: 14px;
    color: #5f6368;
}
.persone__useful {
    margin-top: 16px;
    color: #5f6368;
    font-size: 12px;
}