.procent_line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.procent_line .procent_line-info {
  width: 185px;
}

.procent_line .procent_line-info h4 {
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  line-height: 16px;
  color: var(--color-text-main);
}

.procent_line .procent_line-info .info {
  display: flex;
}

.procent_line .procent_line-info .info .score {
  width: 67px;
  height: 50px;
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: 48px;
  line-height: 104%;
  color: var(--color-text-main);
  margin-right: var(--spacing-xs);
}

.procent_line .procent_line-info .info .block_stars {
  width: 118px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.procent_line .procent_line-info .info .block_stars .stars {
  width: 100%;
}

.procent_line .procent_line-info .info .block_stars .star-rating {
  margin-bottom: 9px;
}

.procent_line .procent_line-info .info .block_stars .stars_title {
  width: 100%;
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  line-height: 124%;
  color: var(--color-text-main);
}

.procent_line .procent_svg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.procent_line .procent_svg .svg_title {
  margin-top: var(--spacing-xs);
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: var(--color-text-main);
}

.procent_line .procent_svg .svg svg path:nth-child(2) {
  fill: var(--color-border-gray);
}

.procent_line .procent_svg .svg svg path:nth-child(3) {
  fill: var(--color-success);
}

.procent_line .procent_svg .svg svg path:nth-child(4) {
  fill: var(--color-text-main);
}

.app {
  position: relative;
}

.app.is-loading .app-layout-head,
.app.is-loading .app-layout-button {
  opacity: 0;
}

.app-layout {
  display: flex;
  flex-direction: column;
  max-height: 1000px;
  padding: var(--spacing-xs) var(--spacing-xs);
  row-gap: 16px;
}

.app-layout-head,
.app-layout-button {
  flex: 1 0 auto;
}

.button_all_reviews {
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  line-height: 100%;
  letter-spacing: 0.01em;
}

.app-layout-scroller {
  flex: 0 1 auto;
  overflow-y: auto;
}

.app-layout-scroller+.app-layout-button {
  position: relative;
}

.app-layout-scroller+.app-layout-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100px;
  background: linear-gradient(0deg, var(--color-white) 25%, transparent 100%);
  pointer-events: none;
}

.app-layout-scroller::-webkit-scrollbar {
  width: 8px;
  background: inherit;
}

.app-layout-scroller::-webkit-scrollbar-track {
  background: none;
}

.app-layout-scroller::-webkit-scrollbar-track-piece {
  background: none;
}

.app-layout-scroller::-webkit-scrollbar-thumb {
  border-radius: 5px;
  width: 8px;
}

.a-link,
.a-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.a-link svg,
.a-button svg {
  fill: currentColor;
  margin-right: var(--spacing-xs);
}

.a-link:hover {
  color: var(--color-accent);
}

.a-link[disabled] {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
  cursor: default;
}

.a-button {
  height: 40px;
  line-height: 38px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-text-main);
  background-color: rgba(var(--color-main-rgb), 0.05);
}

.a-button.a-button--accent {
  color: var(--color-white);
  border: none;
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.button_posts {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  gap: 10px;
  background: var(--color-base-light);
  width: 100%;
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}

.star-rating {
  position: relative;
  display: flex;
  max-width: 75px;
  fill: orange;
}

.star-rating-progress {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--color-white);
  mix-blend-mode: color;
}

.input-rating {
  display: flex;
  justify-content: center;
}

.input-rating-item {
  display: flex;
  flex-grow: 1;
  align-items: center;
  flex-direction: column;
  max-width: 80px;
  text-align: center;
  cursor: pointer;
}

.input-rating-item svg {
  width: 24px;
  fill: var(--color-border-alt);
}

.input-rating-item.is-active svg {
  fill: orange;
}

.input-rating-item::after {
  content: attr(title);
  display: block;
  color: var(--color-text-muted);
  font-size: 12px;
  margin-top: var(--spacing-xs);
}

@media (max-width: 400px) {
  .input-rating-item::after {
    font-size: 12px;
  }
}

.field-group {
  display: flex;
  column-gap: var(--spacing-xs);
}

.field-group+.field-group {
  margin-top: var(--spacing-xs);
}

.field-preview {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.field-caption {
  color: var(--color-text-muted);
  font-size: 12px;
  margin-bottom: var(--spacing-xs);
}

.field-input {
  display: block;
  width: 100%;
  height: 40px;
  color: var(--color-text-main);
  font-size: var(--fs-sm);
  padding: var(--spacing-xs) 12px;
  border-radius: 4px;
  border: 1px solid var(--color-bg-button);
  background-color: var(--color-white);
  appearance: none;
  outline: none;
}

.field-input:focus {
  border-color: var(--color-primary);
}

textarea.field-input {
  height: auto;
  resize: vertical;
}

.field-input[disabled] {
  border-color: var(--color-border-alt);
  background-color: var(--color-bg-gray);
  cursor: default;
}

.summary {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-bg-button);
  background-color: var(--color-white);
}

.summary-column {
  min-width: 75px;
}

.summary-rating {
  flex-grow: 1;
  font-size: 58px;
  font-weight: var(--fw-bold);
  line-height: 0.75;
  text-align: center;
}

.summary .star-rating {
  margin-bottom: 12px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  padding: 0;
  margin: 0;
}

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 100px;
  list-style: none;
}

.gallery-item::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  background-color: var(--color-bg-button);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.list-item {
  position: relative;
}

.list-item+.list-item,
.list-item>.list-item-list {
  margin-top: 16px;
}

.list-item-list {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}

.list-item-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-bg-button);
}

.list-item-list>.card+.card {
  margin-top: var(--spacing-xs);
}

.card {
  position: relative;
  font-size: var(--fs-sm);
  line-height: 1.4;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding-bottom: 12px;
}

.card-head,
.card-body,
.card-foot {
  padding: 12px 16px;
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  line-height: 124%;
  color: var(--color-text-main);
}

.card-body+.card-body {
  padding-top: 0;
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  line-height: 124%;
  color: var(--color-text-main);
}

.card-head {
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.card-head-main {
  align-self: stretch;
  font-weight: var(--fw-bold);
}

.card-head-main .star-rating {
  margin-top: 2px;
}

.card-head-date {
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: right;
  margin-left: auto;
}

.card-foot {
  display: flex;
  align-items: center;
  padding-top: 0;
}

.card-foot-reply,
.card-foot-votes {
  display: flex;
  cursor: pointer;
}

.card-foot-votes {
  gap: 12px;
  margin-left: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--spacing-xs) var(--spacing-xs);
  background-color: var(--color-white);
  z-index: 1;
}

.overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.overlay-head {
  display: flex;
  align-items: center;
  padding: 16px;
  border-top: 1px solid var(--color-bg-button);
  border-bottom: 1px solid var(--color-bg-button);
}

.overlay-head-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
}

.overlay-head-close {
  margin-left: auto;
}

.overlay-head-close svg {
  display: flex;
  width: 24px;
  height: 24px;
  fill: var(--color-text-muted);
  cursor: pointer;
}

.overlay-head-close:hover svg {
  fill: var(--color-text-main);
}

.overlay-body {
  padding: 16px;
  overflow: auto;
}

.form {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.form-field+.form-field {
  margin-top: 16px;
}

.form-button+.form-button {
  margin-top: 12px;
}

.form-button {
  width: 100%;
}

.form-foot {
  margin-top: 24px;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.list-move,
.list-enter-active,
.list-leave-active {
  transition: all 1s;
}

.list-enter,
.list-leave-to {
  opacity: 0;
  transform: translateY(-30px);
}

.post_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.post_header .post_header-title {
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  line-height: 16px;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-xs);
}

.post_header-date {
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 100%;
  color: var(--color-text-muted);
  margin-bottom: 9px;
  text-align: end;
}

.post_header-status {
  font-style: normal;
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 100%;
  color: var(--color-success);
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: end;
}

.post_header-status svg {
  margin-right: 5px;
  margin-top: -3px;
}

.title-line {
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}