.customer-effort-wrapper {
  position: fixed;
  top: auto;
  left: auto;
  right: -480px;
  bottom: 40px;
  width: 480px;
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 200ms ease-out;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper {
    width: 360px;
    max-height: calc(100% - 32px);
    right: -360px;
  }
}
.customer-effort-wrapper.open {
  transform: translateX(-480px);
}
.customer-effort-wrapper.open .customer-effort {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper.open {
    transform: translateX(-360px);
  }
}
.customer-effort-wrapper img {
  vertical-align: unset;
}
.customer-effort-wrapper .customer-effort-minified {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 40px;
  background: #ffcb03;
  padding: 12px 8px;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.customer-effort-wrapper .customer-effort {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 480px;
  padding: 20px 24px 24px 24px;
  background: #fff;
  border: 0;
  border-radius: 4px;
  z-index: 999999;
}
.customer-effort-wrapper .customer-effort svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper .customer-effort {
    width: calc(100% - 16px * 2);
    max-height: calc(100% - 16px * 2);
    padding: 12px 16px 16px 16px;
  }
}
.customer-effort-wrapper .customer-effort .customer-effort-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  width: 100%;
  padding: 0 32px 0 0;
}
.customer-effort-wrapper .customer-effort .customer-effort-header.thank-you {
  display: none;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper .customer-effort .customer-effort-header {
    font-size: 16px;
  }
}
.customer-effort-wrapper .customer-effort .customer-effort-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper .customer-effort .customer-effort-body {
    gap: 16px;
  }
}
.customer-effort-wrapper .customer-effort .customer-effort-body .form-group {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .form-group + .form-group {
  margin-top: 16px;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .radio input[type=radio] {
  display: none;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .radio input[type=radio] + label {
  padding: 0;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .radio input[type=radio] + label img {
  cursor: pointer;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .radio input[type=radio] + label:before {
  display: none;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .radio.not-chosen {
  opacity: 0.25;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .suggestion {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.customer-effort-wrapper .customer-effort .customer-effort-body .btn#submit-customer-effort {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
}
.customer-effort-wrapper .customer-effort .customer-effort-close-button {
  position: absolute;
  top: 22px;
  right: 16px;
  cursor: pointer;
  z-index: 999999;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper .customer-effort .customer-effort-close-button {
    top: 12px;
    right: 8px;
  }
}
.customer-effort-wrapper.order {
  position: relative;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  transition: none;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1;
}
.customer-effort-wrapper.order .customer-effort {
  width: 100%;
  max-width: unset;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper.order .customer-effort {
    width: 100%;
    max-height: unset;
    padding: 0;
  }
}
.customer-effort-wrapper.order .customer-effort .customer-effort-header {
  font-size: 24px;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .customer-effort-wrapper.order .customer-effort .customer-effort-header {
    font-size: 20px;
  }
}
.customer-effort-wrapper.order .customer-effort .btn#submit-customer-effort {
  width: auto;
}
.customer-effort-wrapper.order .customer-effort .customer-effort-close-button {
  display: none;
}

/*# sourceMappingURL=customer-effort.css.map */