#was-this-helpful {
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --title-size: 1.75rem;
  --font-size: 1rem;
  font-size: var(--font-size);
  background: var(--bg-2);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.05);
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: none;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  box-sizing: border-box;
}

#wthf-title {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: var(--title-size) !important;
  color: var(--headings-color) !important;
  font-weight: bold;
  font-family: 'PT Sans Narrow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#wthf-yes-no{
  display: flex;
  gap: 0 1rem;
  margin-top: 0;
}

#wthf-yes-no span {
  padding: 0.85rem 1rem;
  font-size: var(--font-size);
  font-weight: bold;
  background-color: transparent;
  border-radius: 4px;
  line-height: 1;
  border: 1px solid currentColor !important;
  cursor: pointer;
  transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
  font-family: var(--font-family);
  box-shadow: none;
  padding: 0.75rem 1rem 0.75rem calc(1rem - 5px);
  height: inherit;
  display: flex;
  gap: 5px;
}

#wthf-yes-no span:first-child {
  color: #009e7d;
  margin: 0
}

#wthf-yes-no span:last-child {
  color: #E24A4A;
  margin: 0
}

#wthf-yes-no span:first-child:hover{
    color: #fff;
    background-color: #009e7d;
    border-color: #009e7d !important;
    box-shadow: none
}

#wthf-yes-no span:last-child:hover{
  color: #fff;
  background-color: #E24A4A;
  border-color: #E24A4A !important;
  box-shadow: none
}

#was-this-helpful.wthf-disabled:after {
  white-space: pre-wrap;
  line-height: 26px;
  left: 0;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
}

#was-this-helpful.wthf-disabled::first-line{
  font-weight: bold;
}

@media screen and (max-width: 744px) {
  #was-this-helpful > * {
    flex: 1 1 100%;
  }

  #wthf-yes-no {
    justify-content: center;
    text-align: center;
    flex-direction: row;
    margin-top: 1rem;
  }

  #wthf-yes-no span:first-child, #wthf-yes-no span:last-child{
    width: auto !important;
  }
  
}