#was-this-helpful {
  padding: 1.2em;
  border-radius: 8px 8px 8px 8px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: center;
  justify-content: space-between;
  --display: flex;
  --flex-direction: row;
  --container-widget-width: calc(
    (1 - var(--container-widget-flex-grow)) * 100%
  );
  --container-widget-height: 100%;
  --container-widget-flex-grow: 1;
  --container-widget-align-self: stretch;
  --justify-content: space-between;
  --align-items: center;
  --background-transition: 0.3s;
  border-style: solid;
  --border-style: solid;
  border-width: 1px 1px 1px 1px;
  --border-block-start-width: 1px;
  --border-inline-end-width: 1px;
  --border-block-end-width: 1px;
  --border-inline-start-width: 1px;
  border-color: var(--greyscale-200);
  --border-color: var(--greyscale-200);
  --border-radius: 8px 8px 8px 8px;
  --margin-block-start: 0px;
  --margin-block-end: 0px;
  --margin-inline-start: 0px;
  --margin-inline-end: 0px;
  --padding-block-start: 24px;
  --padding-block-end: 24px;
  --padding-inline-start: 24px;
  --padding-inline-end: 24px;
}

#was-this-helpful * {
  /* -webkit-transition: background-color 200ms, box-shadow 200ms; */
  /* transition: background-color 200ms, box-shadow 200ms; */
  /* color: var(--greyscale-900); */
  /* font-family: "Prompt", Sans-serif;
	font-weight: 400; */
}

#wthf-title,
#wthf-yes-no {
  /* width: -webkit-fill-available; */
}

#wthf-title {
  padding-right: 2em;
}

#wthf-yes-no > span {
  font-family: 'Prompt', Sans-serif;
  font-weight: 500;
  fill: var(--primary-blue-500);
  color: var(--primary-blue-500);
  background-color: #ffffff;
  border-style: solid;
  border-width: 1.8px 1.8px 1.8px 1.8px;
  border-color: var(--primary-blue-500);
  border-radius: 8px 8px 8px 8px;
  padding: 6px 16px 6px 16px;
  text-decoration: none;
  cursor: pointer;
}

#wthf-yes-no > span:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.3);
}

#wthf-yes-no > span:active {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
}

#wthf-yes-no > span:first-child {
  margin-right: 0.4em;
}

#wthf-yes-no > span:last-child {
  margin-left: 0.4em;
}

#was-this-helpful.wthf-disabled {
  pointer-events: none;
  position: relative;
}

#was-this-helpful.wthf-disabled * {
  opacity: 0;
}

#was-this-helpful.wthf-disabled:after {
  content: attr(data-thank-text);
  display: block;
  position: absolute;
}

#was-this-helpful .wthf-feedback-div {
  display: none;
  justify-content: space-between;
  width: -webkit-fill-available;
  text-align: left;
}

#was-this-helpful .wthf-feedback-div .wthf-feedback-url a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#was-this-helpful .wthf-feedback-div .wthf-feedback-url * {
  font-size: initial;
  cursor: pointer;
}

/* Tablet */
@media only screen and (max-width: 767px) {
  #was-this-helpful {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
  }

  #wthf-title {
    font-family: Prompt;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.002em;
  }
}

.wthf-feedback-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#wthf-yes-no {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

@media (min-width: 480px) {
  #wthf-yes-no {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .wthf-feedback-div {
    flex-direction: row;
    align-items: center;
  }
}
