#custom-help-widget,
#custom-help-widget * {
  box-sizing: border-box;
}

#custom-help-widget {
  font-family: inherit;
  position: fixed;
  z-index: 999999;
}

.chw-help-btn {
  position: fixed;
  left: 12px;
  bottom: 15px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  z-index: 999999;
  min-height: auto;
  height: auto;
  font-family: inherit;
}

.chw-help-btn:hover {
  background: #ef6f00;
}

.chw-panel {
  position: fixed;
  left: 22px;
  bottom: 65px;
  width: 390px;
  max-width: calc(100vw - 28px);
  max-height: calc(100vh - 95px);
  background: #f5f7f8;
  border-radius: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  box-shadow: 0 8px 35px rgba(0,0,0,.28);
  display: none;
  z-index: 999999;
  font-family: inherit;
}

.chw-panel.chw-open {
  display: block;
}

.chw-header {
  background: linear-gradient(135deg, #ff6f00, #ff8a1c);
  color: #fff;
  padding: 44px 18px 70px;
  position: relative;
}

.chw-title {
  color: #fff !important;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}

.chw-close,
.chw-back {
  border: none;
  color: #fff;
  background: rgba(0,0,0,.28);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  min-height: auto;
  height: auto;
}

.chw-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 6px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.chw-back {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 1.2;
  display: none;
}

.chw-card {
  background: #fff;
  border-radius: 8px;
  margin: -52px 16px 14px;
  padding: 14px 16px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.chw-card h3,
.chw-article h3,
.chw-contact-view h3 {
  font-family: inherit;
  color: #123044;
  font-weight: 800;
}

.chw-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.chw-search-wrap {
  display: flex;
  align-items: stretch;
  height: 38px;
  min-height: 38px;
  border: 1px solid #d7dde3;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.chw-search {
  flex: 1;
  width: 100%;
  max-width: 100%;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  border: 0 !important;
  padding: 6px 12px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

.chw-search-icon {
  width: 40px;
  height: 38px;
  background: #5d6b78;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chw-small-title {
  font-size: 12px;
  color: #6f7d88;
  margin: 6px 0 8px;
}

.chw-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.chw-question {
  width: 100%;
  border: 0;
  background: #f1f3f5;
  color: #183247;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  min-height: auto;
  height: auto;
}

.chw-question:hover {
  background: #e9edf1;
}

.chw-contact-box {
  background: #fff;
  border-radius: 8px;
  margin: 14px 16px 18px;
  padding: 15px 18px;
  color: #123044;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chw-article,
.chw-contact-view {
  background: #fff;
  border-radius: 8px;
  margin: -52px 16px 18px;
  padding: 22px 24px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: none;
  overflow-x: hidden;
  max-width: 100%;
}

.chw-article h3,
.chw-contact-view h3 {
  font-size: 21px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.chw-article p,
.chw-article li,
.chw-contact-view p {
  color: #183247;
  font-size: 15px;
  line-height: 1.7;
  font-family: inherit;
}

.chw-article a,
.chw-contact-view a {
  color: #ff6f00;
  font-weight: 800;
  text-decoration: underline;
}

.chw-feedback {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e3e7ea;
}

.chw-feedback-title {
  font-weight: 800;
  color: #123044;
  margin-bottom: 10px;
}

.chw-feedback-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chw-feedback-buttons button {
  border: none;
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  min-height: auto;
  height: auto;
}

.chw-helpful {
  background: #13a05f;
  color: #fff;
}

.chw-not-helpful {
  background: #ff7a00;
  color: #fff;
}

.chw-thanks {
  display: none;
  background: #eefaf4;
  color: #137246;
  padding: 10px;
  border-radius: 6px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
}

.chw-form-wrap {
  margin-top: 14px;
  overflow: hidden;
  max-width: 100%;
}

.chw-contact-iframe {
  width: 100%;
  min-height: 950px;
  border: 0;
  display: block;
  background: #fff;
  overflow: hidden;
}

@media (max-width: 480px) {
  .chw-panel {
    top: 70px;
    left: 14px;
    right: 14px;
    bottom: 64px;
    width: auto;
    height: auto;
    max-height: calc(100vh - 135px);
    border-radius: 10px;
  }

  .chw-header {
    padding: 44px 18px 70px;
  }

  .chw-title {
    font-size: 22px;
    white-space: nowrap;
  }

  .chw-card,
  .chw-article,
  .chw-contact-view {
    margin-left: 16px;
    margin-right: 16px;
  }

  .chw-article,
  .chw-contact-view {
    padding: 20px;
  }

  .chw-help-btn {
    left: 12px;
    bottom: 15px;
    padding: 6px 9px;
    font-size: 12px;
    border-radius: 14px;
  }

  .chw-contact-iframe {
    min-height: 1050px;
  }
}