/**
 * Payzito Feedback Factory facelift
 * Scoped with .ff-main only — sidebar modules keep template design.
 */

.ff-main {
  --ff-accent: var(--maincolor, #0345bf);
  --ff-accent-soft: color-mix(in srgb, var(--ff-accent) 12%, transparent);
  --ff-surface: #ffffff;
  --ff-surface-muted: #f5f7fb;
  --ff-border: #e6ebf2;
  --ff-text: #1d2a3a;
  --ff-muted: #6b7a90;
  --ff-vote: #1f9d63;
  --ff-radius: 14px;
  --ff-shadow: 0 8px 20px rgba(29, 42, 58, 0.05);
  font-family: iranyekan, Vazirmatn, Tahoma, sans-serif;
  color: var(--ff-text);
  position: relative;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  padding-inline-end: 0.35rem;
}

.ff-main::before {
  content: none;
}

.ff-main h1 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem) !important;
  line-height: 1.35 !important;
  font-weight: 800;
  margin: 0 0 1.25rem;
  color: var(--ff-text);
}

.ff-main h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ff-muted);
  margin: 0.75rem 0 1rem;
}

.ff-main form.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: var(--ff-surface);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
  overflow: visible;
  position: relative;
  z-index: 5;
}

.ff-main form.filters input,
.ff-main form.filters select {
  display: inline-block;
  width: auto;
  min-height: 42px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--ff-border);
  background: var(--ff-surface-muted);
  padding: 0.45rem 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ff-main form.filters input:focus,
.ff-main form.filters select:focus {
  outline: none;
  border-color: var(--ff-accent);
  box-shadow: 0 0 0 3px var(--ff-accent-soft);
}

.ff-main form.filters .ff-select {
  position: relative;
  display: inline-block;
  min-width: 180px;
  vertical-align: middle;
}

.ff-main form.filters .ff-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ff-main form.filters .ff-select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--ff-border);
  border-radius: 10px;
  background: var(--ff-surface-muted);
  color: var(--ff-text);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ff-main form.filters .ff-select-trigger:hover,
.ff-main form.filters .ff-select.is-open .ff-select-trigger {
  border-color: var(--ff-accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--ff-accent-soft);
}

.ff-main form.filters .ff-select-label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-main form.filters .ff-select-caret {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-inline-end: 2px solid var(--ff-muted);
  border-bottom: 2px solid var(--ff-muted);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.ff-main form.filters .ff-select.is-open .ff-select-caret {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.ff-main form.filters .ff-select-menu {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 0.35rem);
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ff-accent) 28%, var(--ff-border));
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(29, 42, 58, 0.12);
}

.ff-main form.filters .ff-select-menu[hidden] {
  display: none !important;
}

.ff-main form.filters .ff-select-option {
  display: block;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--ff-text);
  font-size: 0.92rem;
  line-height: 1.45;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.ff-main form.filters .ff-select-option:hover,
.ff-main form.filters .ff-select-option.is-active {
  background: var(--ff-accent-soft);
  color: var(--ff-accent);
}

.ff-main form.filters .ff-select-option.is-selected {
  background: var(--ff-accent);
  color: #fff;
  font-weight: 700;
}

.ff-main.payzitofeedback-view-list #filter_search {
  width: 100%;
  max-width: min(100%, 320px);
  flex: 1 1 220px;
}

.ff-main div.list-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-start;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.15rem 0.85rem;
  border-bottom: 1px solid var(--ff-border);
  text-align: start;
}

.ff-main div.list-sort a {
  font-weight: 700;
  color: var(--ff-muted);
  margin: 0;
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.ff-main div.list-sort a:hover,
.ff-main div.list-sort a:focus {
  color: var(--ff-accent);
}

.ff-main div.list-sort a span.fa {
  color: var(--ff-accent);
}

.ff-main ul.feedback-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.ff-main ul.feedback-list li.feedback {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem 1.15rem;
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: var(--ff-surface);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ff-main ul.feedback-list li.feedback:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--ff-accent) 35%, var(--ff-border));
  box-shadow: 0 14px 34px rgba(29, 42, 58, 0.09);
}

.ff-main ul.feedback-list li + li {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ff-main .feedback div.votes-box,
.ff-main .feedback div.votes-box.pull-left {
  width: 88px;
  float: none !important;
  text-align: center;
}

.ff-main .feedback div.content {
  margin: 0 !important;
  min-width: 0;
}

.ff-main .feedback div.title {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.ff-main .feedback div.title a,
.ff-main .feedback div.title h1 {
  color: var(--ff-accent);
  text-decoration: none;
}

.ff-main .feedback div.title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ff-main .feedback div.description {
  margin: 0.35rem 0 0.9rem;
  color: #405066;
  line-height: 1.85;
  font-size: 0.95rem;
}

.ff-main .feedback div.votes-box div.votes-wrapper {
  background: #8fa0b5;
  color: #fff;
  margin-bottom: 0.55rem;
  padding: 0.7rem 0.4rem;
  text-align: center;
  border-radius: 12px;
}

.ff-main .feedback div.votes-box div.votes-wrapper.votes-up {
  background: linear-gradient(160deg, #2bb673, var(--ff-vote));
}

.ff-main .feedback div.votes-box div.votes-wrapper p {
  font-weight: 800;
  font-size: 1.2rem;
  text-shadow: none;
  margin: 0;
  color: #fff;
}

.ff-main .feedback div.votes-box a.button-vote,
.ff-main .feedback div.votes-box a.button-vote.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 36px;
  line-height: 1.2;
  padding: 0.35rem 0.5rem;
  border: 0 !important;
  border-radius: 10px;
  background: var(--ff-accent) !important;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  box-shadow: none !important;
  transition: filter 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

/* Disable template white wipe hover on vote buttons */
.ff-main .feedback div.votes-box a.button-vote::after,
.ff-main .feedback div.votes-box a.button-vote.btn::after,
.ff-main .feedback div.votes-box a.button-vote.btn-primary::after {
  content: none !important;
  display: none !important;
  transform: none !important;
  background: transparent !important;
}

.ff-main .feedback div.votes-box a.button-vote:hover,
.ff-main .feedback div.votes-box a.button-vote.btn:hover,
.ff-main .feedback div.votes-box a.button-vote.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  background: var(--ff-accent) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.ff-main .feedback div.votes-box a.login-to-vote,
.ff-main .feedback div.votes-box span.already-voted,
.ff-main .feedback div.votes-box div.voted {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--ff-muted);
  padding: 0.2rem 0.15rem;
}

.ff-main .feedback div.details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 0;
  color: var(--ff-muted);
  font-size: 0.82rem;
}

.ff-main .feedback div.details > * {
  margin: 0 !important;
  float: none !important;
}

.ff-main span.label.status,
.ff-main .label.badge.status {
  display: inline-flex;
  align-items: center;
  float: none !important;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f08a24;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.ff-main span.categ a {
  color: var(--ff-muted);
}

.ff-main span.categ a:hover {
  color: var(--ff-accent);
}

.ff-main .ff-back-bar {
  margin: 0 0 1rem;
}

.ff-main .ff-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--ff-border);
  border-radius: 999px;
  background: var(--ff-surface);
  color: var(--ff-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(29, 42, 58, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.ff-main .ff-back-link:hover {
  color: var(--ff-accent);
  border-color: color-mix(in srgb, var(--ff-accent) 35%, var(--ff-border));
  background: var(--ff-accent-soft);
  text-decoration: none;
}

.ff-main .ff-back-link .fa {
  font-size: 0.85rem;
}

.ff-main.payzitofeedback-view-feedback > .feedback {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem;
  background: var(--ff-surface);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
}

.ff-main.payzitofeedback-view-feedback .feedback .title h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem) !important;
}

.ff-main.payzitofeedback-view-submit form {
  background: var(--ff-surface);
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
  padding: 1.25rem;
}

.ff-main.payzitofeedback-view-submit .row-fluid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1rem;
}

.ff-main.payzitofeedback-view-submit .row-fluid:nth-of-type(2) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ff-main.payzitofeedback-view-submit .span6,
.ff-main.payzitofeedback-view-submit .span12 {
  width: 100%;
  float: none;
  margin: 0;
}

.ff-main.payzitofeedback-view-submit .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ff-main.payzitofeedback-view-submit .actions .btn-primary {
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  border: 0;
  border-radius: 10px;
  background: var(--ff-accent);
  font-weight: 700;
}

.ff-main > .comments {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.ff-main div.add-comment,
.ff-main div.list-comments {
  margin-top: 0;
  padding: 1.35rem 1.4rem 1.5rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--ff-border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(29, 42, 58, 0.06);
}

.ff-main div.add-comment h3,
.ff-main div.list-comments h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--ff-border);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ff-text);
}

.ff-main div.add-comment h3::before,
.ff-main div.list-comments h3::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ff-accent);
  box-shadow: 0 0 0 4px var(--ff-accent-soft);
}

.ff-main .ff-comment-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.ff-main .ff-comment-form-fields .control-group:last-child,
.ff-main .ff-comment-form-fields .form-group:last-child,
.ff-main .ff-comment-form-fields .control-group:has(textarea),
.ff-main .ff-comment-form-fields .form-group:has(textarea) {
  grid-column: 1 / -1;
}

.ff-main .ff-comment-form .control-label,
.ff-main .ff-comment-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ff-text);
}

.ff-main .ff-comment-form .form-control,
.ff-main .ff-comment-form input[type="text"],
.ff-main .ff-comment-form input[type="email"],
.ff-main .ff-comment-form textarea,
.ff-main div.add-comment textarea,
.ff-main div.add-comment input[type="text"],
.ff-main div.add-comment input[type="email"] {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 46px;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ff-border) !important;
  border-radius: 12px !important;
  background: var(--ff-surface-muted) !important;
  color: var(--ff-text);
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ff-main .ff-comment-form textarea,
.ff-main div.add-comment textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.ff-main .ff-comment-form .form-control:focus,
.ff-main .ff-comment-form input:focus,
.ff-main .ff-comment-form textarea:focus,
.ff-main div.add-comment textarea:focus,
.ff-main div.add-comment input:focus {
  outline: none !important;
  border-color: var(--ff-accent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px var(--ff-accent-soft) !important;
}

.ff-main .ff-comment-form .form-text,
.ff-main .ff-comment-form .help-block,
.ff-main .ff-comment-form .form-control-feedback,
.ff-main .ff-comment-form .description,
.ff-main .ff-comment-form [id$="-desc"],
.ff-main div.add-comment .form-text,
.ff-main div.add-comment .help-block,
.ff-main div.add-comment .description,
.ff-main div.add-comment [id$="-desc"] {
  display: none !important;
}

.ff-main .ff-comment-form-actions {
  margin-top: 1rem;
}

.ff-main .ff-comment-submit,
.ff-main div.add-comment .actions .btn-primary,
.ff-main .ff-comment-form .btn-primary {
  min-height: 44px !important;
  height: auto !important;
  line-height: 1.2 !important;
  padding: 0.65rem 1.35rem !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--ff-accent) !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--ff-accent) 28%, transparent) !important;
}

.ff-main .ff-comment-submit::after,
.ff-main div.add-comment .actions .btn-primary::after,
.ff-main .ff-comment-form .btn-primary::after {
  content: none !important;
  display: none !important;
}

.ff-main .ff-comment-submit:hover,
.ff-main div.add-comment .actions .btn-primary:hover,
.ff-main .ff-comment-form .btn-primary:hover {
  filter: brightness(1.05);
  color: #fff !important;
  background: var(--ff-accent) !important;
}

.ff-main .ff-comments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.ff-main .ff-comment {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  margin: 0;
  padding: 0.95rem;
  background: #fff;
  border: 1px solid var(--ff-border);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ff-main .ff-comment:hover {
  border-color: color-mix(in srgb, var(--ff-accent) 30%, var(--ff-border));
  box-shadow: 0 10px 24px rgba(29, 42, 58, 0.07);
  transform: translateY(-1px);
}

.ff-main .ff-comment-avatar img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #eef1f8, #dde4f2);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--ff-border), 0 6px 14px rgba(29, 42, 58, 0.1);
}

.ff-main .ff-comment-body {
  min-width: 0;
}

.ff-main .ff-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
  margin-bottom: 0.45rem;
}

.ff-main .ff-comment-author {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--ff-accent-soft);
  color: var(--ff-accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.ff-main .ff-comment-date {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ff-muted);
  font-size: 0.78rem;
}

.ff-main .ff-comment-text {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.9;
}

.ff-main .ff-comment-text p {
  margin: 0 0 0.4rem;
}

.ff-main .ff-comment-text p:last-child {
  margin-bottom: 0;
}

.ff-main .ff-comment-actions {
  margin-top: 0.65rem;
}

.ff-main .ff-comment-reply-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ff-accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0;
  cursor: pointer;
}

.ff-main .ff-comment-reply-toggle:hover {
  text-decoration: underline;
}

.ff-main .ff-staff-reply-form {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--ff-accent) 22%, var(--ff-border));
  border-radius: 12px;
  background: color-mix(in srgb, var(--ff-accent) 4%, #fff);
}

.ff-main .ff-staff-reply-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.ff-main .ff-staff-reply-textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border: 1px solid var(--ff-border);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  line-height: 1.7;
  background: #fff;
}

.ff-main .ff-staff-reply-textarea:focus {
  outline: none;
  border-color: var(--ff-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ff-accent) 18%, transparent);
}

.ff-main .ff-staff-reply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.ff-main .ff-staff-reply-cancel {
  background: #fff;
  border: 1px solid var(--ff-border);
  color: #475569;
}

.ff-main .ff-comment-staff-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ff-accent) 16%, #fff);
  border: 1px solid color-mix(in srgb, var(--ff-accent) 35%, transparent);
  color: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.ff-main .ff-comment.is-staff {
  border-color: color-mix(in srgb, var(--ff-accent) 28%, var(--ff-border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--ff-accent) 5%, #fff), #fff);
}

.ff-main .ff-comment-replies {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid color-mix(in srgb, var(--ff-accent) 22%, var(--ff-border));
}

.ff-main .ff-comment.is-reply {
  background: #fbfcfe;
}

.ff-main .ff-comments-empty {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: var(--ff-muted);
  background: var(--ff-surface-muted);
  border-radius: 12px;
}

.ff-main .pagination,
.ff-main .ff-comments-pagination {
  margin-top: 1.25rem;
}

@media (max-width: 767.98px) {
  .ff-main ul.feedback-list li.feedback,
  .ff-main.payzitofeedback-view-feedback > .feedback {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 1rem;
    gap: 0.85rem;
  }

  .ff-main .feedback div.votes-box,
  .ff-main .feedback div.votes-box.pull-left {
    width: 72px;
  }

  .ff-main.payzitofeedback-view-list #filter_search {
    max-width: 100%;
  }

  .ff-main.payzitofeedback-view-submit .row-fluid:nth-of-type(2) {
    grid-template-columns: 1fr;
  }

  .ff-main .ff-comment-form-fields {
    grid-template-columns: 1fr;
  }

  .ff-main .ff-comment {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.8rem;
  }

  .ff-main .ff-comment-avatar img {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ff-main ul.feedback-list li.feedback,
  .ff-main .feedback div.votes-box a.button-vote {
    transition: none;
  }

  .ff-main ul.feedback-list li.feedback:hover {
    transform: none;
  }
}
