.reviews__total-count{
	width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
}
.reviews__total-count.reviews__box{
	background-color: #FFFCE6;
	justify-content: space-between;
	padding:20px 30px;
	border-radius: 12px;
	margin-top:20px;
}
.reviews__box-wrapper{
	display:flex;
	align-items: center;
	gap:10px;
}
.reviews__box-wrapper .reviews__box-title{
	font-weight: 400;
    font-size: 14px;
    line-height: 25.6px;
}
.reviews__box-wrapper .reviews__box-title{
	font-weight: 400;
	font-size: 14px;
	line-height: 25.6px;
	letter-spacing: 0%;
	color:#4F5A5A;
}
.reviews__box-wrapper .reviews__rating{
	font-weight: 400;
	font-size: 14px;
	line-height: 25.6px;
	letter-spacing: 0%;
	color:#4F5A5A;
}
.reviews__stars{
	display: flex;
}
.reviews__stars .star--on{
	display:flex;
	width:17px;
	height:17px;
	justify-content: center;
	align-items: center;
}
.reviews__stars .star--on svg{
	width:15px;
	height: 15px;
}
.reviews__stars .star--on .half-star{
	width:17px;
	height: 17px;
}
.reviews__stars-count{
	font-weight: 400;
	font-size: 14px;
	line-height: 25.6px;
	letter-spacing: 0%;
	text-decoration: underline;
	cursor: pointer;
	color:#00536C;
}
.reviews__stars-count:hover{
	text-decoration: none;
}

.reviews__content-side{
	display: flex;
    transform: scale(1);
    overflow: hidden;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    transition: background-color .4s, transform 0s;
    text-align: left;
}
.reviews__content-side.hidden{
	background-color: transparent;
    transform: scale(0);
    transition: background-color .4s, transform 0s .4s;
}
.reviews__content-container{
	position: fixed;
    left: auto;
    right: 0;
    transform: translateX(0);
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
    min-height: 200px;
    width: 450px;
    max-width: 100%;
    transition: .3s;
    padding: 20px 10px 20px 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    margin-top: 0;
	padding-top:40px;
}
.reviews__content-side.hidden .reviews__content-container{
	overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
}
.reviews__content-inner{
	display:grid;
	width:100%;
	height:100;
	overflow-y:scroll;
	padding-right:20px;
}
.reviews__close-panel{
	position:absolute;
	background-image: url(../images/close.svg);
    width: 18px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 22px;
	cursor: pointer;
}
.reviews__close-panel:hover{
	opacity:0.7;
}
.review__item{
	width: 100%;
    display: flex;
	flex-direction: column;
	gap:0px;
	padding:20px 0;
	border-bottom:1px solid #d2d2d2;
}

.review__item-image{
	width:100%;
	height:auto;
}

.review__item-image img{
	width:100%;
	height:auto;
}

.review__item-header{
	display:flex;
	flex-direction: row;
	gap:12px;
	width:100%;

}
.review__item-header img{
	width:32px;
	height:32px;
	border-radius: 50%;
	object-fit: cover;
}
.review__item-header-right{
	display:flex;
	flex-direction: column;
	gap:5px;
}
.review__item .review__item-header-right h3{
	margin:0;
	color: #1f1f1f;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
}
.review__item-header-right .review__item-source{
	display: flex;
    flex-direction: row;
    gap: 5px;
    font-size: 12px;
    margin: 0;
    line-height: 12px;
	color:#5e5e5e;
}
.review__item-header-right .review__item-source img{
	width:12px;
	height:12px;
}
.review__item-header-right .review__item-source a{
	color:#5e5e5e;
	text-decoration: none;
}
.review__item-rating{
	display:flex;
	flex-direction: row;
	gap:5px;
	font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #5e5e5e;
    margin-bottom: 8px;
    white-space: nowrap;
}
.review__item-content{
	font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4d5156;
    overflow-wrap: break-word;
}
.review__item-content-short,
.review__item-content-full{
	margin-bottom: 8px;
	display: inline;
}
.review__item .review__item-content-toggle{
	background: none;
	border: none;
	color: #00536C;
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	margin-left: 4px;
	text-decoration: underline;
	font-weight: 400;
	display: inline;
}
.review__item .review__item-content-toggle:hover{
	text-decoration: none;
}
