/* -*- coding: utf-8 -*- */

.ekomi-content {
  display: block;
  padding-bottom: 30px;
  padding-top: 60px;
}

.ekomi-content .overall-review-container {
  align-items: center;
  display: flex;
  justify-content: space-around;
}

.ekomi-content .overall-review-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding-top: 20px;
}

.overall-review-content .ekomi-review-seal {
  height: 70px;
}

.ekomi-content .overall-review {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  padding-left: 70px;
}

.ekomi-content .overall-review > * {
  display: inline-block;
}

.ekomi-content .rating-stars {
  --rating: 5.0;
  --percent: calc( var(--rating) / 5.0 * 100% );
  display: inline-block;
  font-family: Times;
  font-size: 20px;
  line-height: 1;
}

.ekomi-content .rating-stars::before {
  background: linear-gradient(90deg, #55cc33 var(--percent), #bababa var(--percent));
  content: '★★★★★';
  letter-spacing: 1px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ekomi-review-slider {
  display: block;
}

.ekomi-review-slider .right-button {
  background-blend-mode: color-burn;
  background-color: #8d878775;
  background-image: url("../images/stre-right.png");
  background-position: 20px 12px;
  background-repeat: no-repeat;
  background-size: 32% 55%;
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 50px;
  width: 50px;
  z-index: 9;
}

.ekomi-review-slider .left-button {
  background-blend-mode: color-burn;
  background-color: #8d878775;
  background-image: url("../images/stre-left.png");
  background-position: 16px 12px;
  background-repeat: no-repeat;
  background-size: 32% 55%;
  border-radius: 50%;
  bottom: 60px;
  cursor: pointer;
  height: 50px;
  left: 50px;
  position: absolute;
  width: 50px;
  z-index: 9;
}

.ekomi-review-slider .viewport {
  overflow: hidden;
  position: relative;
}

.ekomi-review-slider .slides {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.ekomi-review {
  border: 1px solid #d9dde1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  justify-content: space-between;
  padding: 20px;
  min-width: 100%;
}

.ekomi-review .ekomi-review-head {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.ekomi-review .ekomi-review-date {
  color: #777777;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
