@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 2px #e5c07d;
  }
  to {
    text-shadow: 0 0 12px #e5c07d;
  }
}
@media (min-width: 900px) {
    .HomeReviewsContainer {
        grid-template-columns: repeat(4, 1fr);
    }
    .HomeReviewsBlock2 {
        grid-column: 2/5;
        grid-template-columns: repeat(3, 1fr);
    }
}
.HomeReviewsTitle {
    display: flex;
    margin-bottom: 10px;
    color: var(--text-default);
    font-family: 'Unbounded';
    height: 47px;
    justify-content: space-between;
    align-items: center;
}
.HomeReviewsTitle > div {
    display: flex;
    gap: 15px;
    align-items: center;
}
.HomeReviewsContainer {
    display: grid;
    gap: 10px;
}
.HomeReviewsBlock1 {
    display: grid;
    background-color: var(--card);
    border-radius: 10px;
    padding: 15px;
    align-content: space-between;
    background-image: url("/storage/cache/img/good.png");
    background-size: 90%;
    background-position: 20px 30px;
    background-repeat: no-repeat;
    min-height: 200px;
}
.HomeReviewsBlock2 {
    display: grid;
    gap: 10px;
    position: relative;
}
.HomeReviewsReview {
    position: relative;
    background-color: var(--card);
    border-radius: 10px;
    padding: 0px 14px 14px 14px;
}
.HomeReviewsScore {
    display: flex;
    font-family: var(--font-family-1);
    gap: 15px;
    text-transform: uppercase;
    align-items: center;
    margin-right: auto;
    margin-left: auto;

}
.sum {
    font-size: 20px;
}
.HomeReviewsScore > h1, .HomeReviewsScore > div > h3, .HomeReviewsScore > div > h6 {
    margin-bottom: 0;
}
.HomeReviewsScore > h1 {
    color: var(--primary);
    border-radius: 16px;
    text-align: center;
    width: 100px;
    font-weight: 800;
    font-family: 'Unbounded';
    margin: 0 !important;
}
.HomeReviewsScore > div > h3 {
    font-size: 20px;
}

.HomeReviewsStar {
    width: 100px;
    margin-left: 2px;
    text-align: center;
    letter-spacing: 5px;
    color: var(--text-default);
    font-family: 'Unbounded';
    font-size: 40px;
}
.HomeReviewsStar span {
    opacity: .1;
}
.HomeReviewsStar > a.gold {
    color: #e5c07d;
    -webkit-animation: glow 4s cubic-bezier(0,0.22,0.3,1) infinite alternate;
    -moz-animation: glow 4s cubic-bezier(0,0.22,0.3,1) infinite alternate;
     animation: glow 4s cubic-bezier(0,0.22,0.3,1) infinite alternate
}
.HomeReviewsReview a {
    font-size: 60px;
}
.HomeReviewsReview a.gold {
    color: transparent;
    background: linear-gradient(0deg,rgba(244, 202, 128, 0) 20%, rgba(244, 202, 128, 1) 70%);
    background-clip: text;
}
.HomeReviewsReview a.empty {
    color: transparent;
    background: linear-gradient(0deg,rgba(38, 38, 38, 0) 20%, rgba(38, 38, 38, 1) 70%);;
    background-clip: text;
}
.HomeReviewsButton {
    display: flex;
    cursor: pointer;
    color: var(--text-custom);
    font-weight: 500;
    background-color: var(--button);
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 6px;
    transition: .5s;
}
.HomeReviewsButton:hover {
    filter: brightness(115%);
}
.HomeReviewsAllInfo {
    align-items: center;
}
.HomeReviewsAllInfo > a > img {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    object-fit: cover;
}
.HomeReviewsAllInfo h4 {
    text-align: center;
    margin-bottom: 0;
}
.HomeReviewsAllInfo h4 a{
    color: var(--text-default);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-1);
}
.HomeReviewsAllText {
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    margin: 15px 0px;
    padding: 6px 8px 6px 8px;
    white-space: pre-line;
    height: 55px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 10px;
    border-radius: 6px;
    text-align: center;
    background: transparent;
    line-height: 1;
}
.HomeReviewsAllTime {
    color: var(--light);
    position: absolute;
    font-size: 10px;
    opacity: .1;
    left: 15%;
    bottom: 8px;
    transform: translate(-50%, 0px);
}
#next_reviews, #start_reviews {
    cursor: pointer;
    display: flex;
    height: 20px;
    width: 20px;
    font-weight: 500;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    color: var(--text-custom);
    border-radius: 25px;
    transition: .5s;
}
#next_reviews:hover, #start_reviews:hover svg {
    fill: var(--primary);
}
#next_reviews:hover, #next_reviews:hover svg {
    fill: var(--primary);
}
#next_reviews svg, #start_reviews svg {
    fill: var(--text-custom);
    height: 15px;
}
.HomeReviewsTitle > div > a {
    color: var(--text-default);
}
.HomeReviewsAllLike {
    display: flex;
    gap: 5px;
    position: absolute;
    font-size: 10px;
    right: 20px;
    bottom: 5px;
    cursor: pointer;
    align-items: center;
    transition: .5s;
    color: var(--light);
}
.HomeReviewsAllLike svg {
    width: 10px;
    fill: var(--light);
    transition: .5s;
}
.HomeReviewsAllLike:hover {
    color: var(--error);
} 
.HomeReviewsAllLike:hover svg {
    fill: var(--error);
}
.HomeReviewsAllLike.like_red, .HomeReviewsAllLike.like_red svg {
    color: var(--error);
    fill: var(--error);
}
.HomeReviewsAllLike.like_red:hover {
    color: var(--text-default);
} 
.HomeReviewsAllLike.like_red:hover svg {
    fill: var(--text-default);
}
.reviewstars {
    width: max-content;
    display: flex;
    margin-right: auto;
    margin-left: auto;
}
.reviewpfp {
    width: 100%;
    display: flex;
    margin-top: -40px;
}
.reviewpfp img{
	width: 40px;
	height: 40px;
	border-radius: 50px;
	object-fit: cover;
    margin-right: auto;
    margin-left: auto;
}
