.link_kupiapp {
  color: var(--dark-color) !important;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.feedback-widget {
  width: 100%;
}

.feedback-widget__state {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  padding: 20px 24px;
  color: var(--dark-color);
  background: #f3f8ff;
  border: 1px solid #d7e6fb;
  border-radius: 24px;
}

.feedback-widget__state-copy {
  min-width: 0;
}

.feedback-widget__state-title,
.feedback-widget__state-description {
  margin: 0;
}

.feedback-widget__state-title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}

.feedback-widget__state-description {
  margin-top: 4px;
  color: #6b737d;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.43;
}

.feedback-widget__spinner {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid #b7d6fb;
  border-top-color: var(--blue-color);
  border-radius: 50%;
  animation: feedback-widget-spin 850ms linear infinite;
}

.feedback-widget__source-link,
.feedback-widget__retry {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-left: auto;
  padding: 10px 0;
  color: var(--blue-color) !important;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.feedback-widget__source-link:hover {
  color: #0c65cc !important;
  text-decoration: underline;
}

.feedback-widget__source-link:focus-visible,
.feedback-widget__retry:focus-visible {
  outline: 3px solid rgb(29 129 248 / 35%);
  outline-offset: 3px;
}

.feedback-widget__skeleton {
  display: grid;
  gap: 24px;
}

.feedback-widget__skeleton-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 32px 40px;
  background: var(--white-color);
  border-radius: 40px;
}

.feedback-widget__skeleton-avatar,
.feedback-widget__skeleton-line {
  display: block;
  background: linear-gradient(90deg, #edf1f6 25%, #f7f9fc 50%, #edf1f6 75%);
  background-size: 200% 100%;
  animation: feedback-widget-skeleton 1.4s ease-in-out infinite;
}

.feedback-widget__skeleton-avatar {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.feedback-widget__skeleton-line {
  width: 100%;
  height: 12px;
  margin-top: 10px;
  border-radius: 100px;
}

.feedback-widget__skeleton-line--title {
  width: min(260px, 56%);
  height: 18px;
  margin-top: 0;
}

.feedback-widget__skeleton-line--short {
  width: min(130px, 35%);
  margin-top: 0;
}

.feedback-widget__skeleton-line--wide {
  width: 78%;
}

.feedback-widget__state--error {
  align-items: flex-start;
  background: #fffaf0;
  border-color: #f4dfa7;
}

.feedback-widget__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.feedback-widget__retry {
  cursor: pointer;
  background: transparent;
  border: 0;
}

.feedback-widget__noscript {
  margin: 0;
  padding: 20px 24px;
  color: var(--dark-color);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #f3f8ff;
  border: 1px solid #d7e6fb;
  border-radius: 24px;
}

@keyframes feedback-widget-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes feedback-widget-skeleton {
  to {
    background-position: -200% 0;
  }
}

@media screen and (max-width: 700px) {
  .feedback-widget__state,
  .feedback-widget__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .feedback-widget__state {
    gap: 12px;
    padding: 16px;
  }

  .feedback-widget__source-link,
  .feedback-widget__actions {
    margin-left: 0;
  }

  .feedback-widget__actions {
    gap: 4px;
  }

  .feedback-widget__skeleton {
    gap: 16px;
  }

  .feedback-widget__skeleton-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 24px 20px;
    border-radius: 24px;
  }

  .feedback-widget__skeleton-avatar {
    width: 44px;
    height: 44px;
  }

  .feedback-widget__skeleton-card--secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-widget__spinner,
  .feedback-widget__skeleton-avatar,
  .feedback-widget__skeleton-line {
    animation: none;
  }
}

.link_kupiapp:hover {
  color: #5788c1 !important;
}

.avatar_kupiapp {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50% !important;
  outline: 1px solid rgb(0 0 0 / 10%);
  outline-offset: -1px;
}

.container_kupiapp {
  position: relative;
  display: block;
  margin: 0 0 24px;
  padding: 32px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--white-color);
  border: 1px solid rgb(9 34 64 / 8%);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgb(9 34 64 / 5%), 0 7px 18px rgb(9 34 64 / 4%);
}

.container_kupiapp::after {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 0;
  display: block;
  width: 43px;
  height: 38px;
  content: "";
  background: url("/wp-content/uploads/blockquote-after.svg") no-repeat center /
    cover;
  opacity: 0.38;
  pointer-events: none;
}

.user_kupiapp {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
  margin-bottom: 16px;
}

.row_kupiapp {
  order: 1;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0;
  margin-left: 0 !important;
}

.col_name_kupiapp {
  display: flex !important;
  justify-content: flex-start !important;
  line-height: 18px !important;
}

.col_date_kupiapp {
  justify-content: flex-start !important;
  margin-top: 4px !important;
  color: rgb(119 126 140) !important;
  font-family: "Manrope", sans-serif;
  font-size: 13px !important;
  font-variant-numeric: tabular-nums;
  line-height: 18px !important;
}

.comment_kupiapp {
  position: relative;
  z-index: 1;
  max-width: none;
  color: var(--dark-color) !important;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.button_kupiapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  margin: 0;
  padding: 16px 32px;
  color: var(--white-color) !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--blue-color);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgb(9 34 64 / 9%), 0 5px 12px rgb(29 129 248 / 20%);
  text-decoration: none !important;
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.button_kupiapp::after {
  margin-left: 10px;
  content: "→";
  font-size: 18px;
  font-weight: 400;
  line-height: 0;
  transition: transform 150ms ease;
}

.button_kupiapp:active {
  transform: scale(0.98);
}

.button_kupiapp:focus-visible {
  outline: 3px solid rgb(29 129 248 / 42%);
  outline-offset: 3px;
}

.center_kupiapp {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  margin-top: 32px !important;
  margin-bottom: 8px !important;
}

ul.pagination_kupiapp {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.pagination_kupiapp li {
  display: inline !important;
}

ul.pagination_kupiapp li a {
  float: left !important;
  padding: 8px 16px !important;
  color: #5181b8 !important;
  font-size: 18px !important;
  text-decoration: none !important;
  transition: background-color 0.3s;
}

ul.pagination_kupiapp li a.active {
  color: #5181b8 !important;
  background-color: #eee !important;
}

@media screen and (max-width: 560px) {
  .comment_kupiapp {
    font-size: 15px;
    line-height: 1.47;
  }

  .container_kupiapp {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .link_kupiapp {
    font-size: 16px;
  }

  .container_kupiapp::after {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 32px;
  }

  .avatar_kupiapp {
    width: 48px;
    height: 48px;
  }

  .button_kupiapp {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .link_kupiapp:hover {
    text-decoration: underline;
  }

  .button_kupiapp:hover {
    color: var(--white-color) !important;
    background: #0c65cc;
    box-shadow: 0 2px 4px rgb(9 34 64 / 12%), 0 8px 16px rgb(29 129 248 / 25%);
    transform: translateY(-1px);
  }

  .button_kupiapp:hover::after {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button_kupiapp,
  .button_kupiapp::after {
    transition: none;
  }
}
