/** Shopify CDN: Minification failed

Line 24:12 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
Line 24:49 Expected ":"
Line 80:8 Expected identifier but found whitespace
Line 80:10 Unexpected "{"
Line 80:19 Expected ":"

**/

.review-section h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 40px;
}
.review-slider {
  width: 100%;
  overflow: hidden;
}
.review-track {
  gap: 15px;
  animation: scroll {{ section.settings.speed }}s linear infinite;
}
.review-text {
    font-style: italic;
    margin: 0;
    max-width: 250px;
    text-wrap: auto;
}
.review-text  em {
    font-weight: 400;
}
.review-lefts p{
  font-size:14px;
}
.review-card {
    min-width: 384px;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}
.review-card img {
    border-radius: 50%;
    margin-bottom: 0;
    width: 100%;
    object-fit: cover;
}
.review-images {
    width: 60px;
    height: 60px;
    display: flex;
}

.image-review-contents {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #0000001a;
    padding-bottom: 20px;
}
.stars {
  display: flex;
  margin: 10px 0;
}
.star-icon {
  width: 16px;
  height: 16px;
}
.star-icon svg {
  width: 16px;
  height: 16px;
}
.name {
  font-size:14px;
}
.verified {
  font-size: 14px;
  color: {{ section.settings.accent_color }};
}
.bottom-review-contents {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}
.review-text > * {
    font-size: 16px !important;
    font-weight: 700;
}
.review-slider {
    position: relative;
}
.review-slider:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 100%;
    background: #f7f9f8;
    left: 0;
    top: 0;
    box-shadow: 4px 0px 50px 50px #f7f9f8;
}
.review-slider:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    background: #f7f9f8;
    right: 0;
    z-index: 5;
    top: 0;
    box-shadow: 4px 0px 50px 50px #f7f9f8;
}
@media screen and (max-width: 750px){

.review-section h2 {
    margin-bottom: 30px;
    font-size:24px;
}
}