.help-wrap {
  position: fixed;
  z-index: 9;
  right: 50px;
  bottom: 50px;
}
.help-wrap .help-contents {
  display: none;
  opacity: 0;
  position: relative;
  top: 20px;
  width: 300px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, .05) 0px 0px 0px 1px, rgba(0, 0, 0, .15) 0px 5px 30px 0px, rgba(0, 0, 0, .05) 0px 3px 3px 0px;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  transition: all .3s ease;
}
.help-wrap .help-tab-group {
  background: #f9fafa;  
}
.help-wrap .help-tab-group-ask {
  display: none;  
}
.help-wrap .help-tab-group-ask .help-scroll-area {
  padding-bottom: 35px;  
}

.help-wrap .help-scroll-area {
  height: 400px;
  max-height: 90vh;
  overflow: auto;  
  background: #f9fafa;
}
.help-wrap .help-tabs {
  position: sticky;
  top: 0;
  padding: 10px;
  text-align: center;
  background: #ff4040;
}
.help-wrap .help-tabs button {
  color: #fff;
  border-color: transparent;
  background: transparent;
  border-radius: 30px;
  padding: 5px 20px; 
  cursor: pointer;
  transition: all .3s ease;
}
.help-wrap .help-tabs button.active {
  background: #c62723;
}

.help-wrap .help-tab-group .tab-title {
  text-align: center;
  background: #ff4040;
  color: #fff;
  font-size: 1.25em;
  padding: 5px 10px 45px;
  margin-top: -5px;
}
.help-wrap .help-articles,
.help-wrap .help-articles-loading {
  margin-top: -40px;    
}
.help-wrap .help-articles article,
.help-wrap .help-articles-loading article {
  position: relative;
  padding: 10px;
  margin: 5px 10px;
  box-shadow: rgba(197, 206, 214, .7) 0px 0px 0px 1px, rgb(183 194 204) 0px 1px 0px 0px, rgba(0, 0, 0, .1) 0px 1px 3px;
  background: #fff;
  border-radius: 4px;
}
.help-wrap .help-article-title {
  margin: 5px 0;
}
.help-wrap .help-articles article p,
.help-wrap .help-articles-loading article p {
  font-size: .8em;
}

.help-wrap .help-articles-loading {
  display: none;
}
.help-wrap .help-articles-loading .help-article-title {
  width: 40%;
  height: 10px;
  background: rgb(223,223,223);
  margin: 10px 0 20px;
  background: rgb(223,223,223);
  background: linear-gradient(120deg, rgba(245,245,245,1) 0%, rgba(223,223,223,1) 25%, rgba(244,244,244,1) 50%, rgba(223,223,223,1) 75%, rgba(245,245,245,1) 100%);
  background-size: 200%;
  animation: hb_article_lines 1.6s linear infinite;
}

.help-wrap .help-articles-loading .help-article-description {
  height: 10px;
  background: gainsboro;
  margin-bottom: 5px;
  background: rgb(223,223,223);
  background: linear-gradient(120deg, rgba(245,245,245,1) 0%, rgba(223,223,223,1) 25%, rgba(244,244,244,1) 50%, rgba(223,223,223,1) 75%, rgba(245,245,245,1) 100%);
  background-size: 200%;
  animation: hb_article_lines 2s linear infinite;
}

.help-wrap .help-articles-loading .help-article-description:nth-of-type(2) {
  width: 85%;
}
.help-wrap .help-articles-loading .help-article-description:nth-of-type(3) {
  width: 100%;
}
.help-wrap .help-articles-loading .help-article-description:nth-of-type(4) {
  width: 90%;
}
.help-wrap .help-articles-loading .help-article-description:nth-of-type(5) {
  width: 70%;
}

@keyframes hb_article_lines { 
  0% {
    background-position: 200% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.help-wrap  .help-toggle {
  float: right;
}
.help-wrap .help-toggle button {
  padding: 10px 20px;
  border: none;
  background: #d93d3b;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}
.help-wrap .help-toggle button:hover {
  background: #a8241d; 
}
.help-wrap .help-toggle button:focus,
.help-wrap .help-toggle button:active {
  background: #a8241d;   
}

.help-wrap .help-search {
  position: sticky;
  bottom: 0;
}
.help-wrap .help-search .help-search-form input {
  width: 100%;
  padding: 10px 35px 10px 10px;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
  box-sizing: border-box;
}
.help-wrap .help-search .help-search-form button {
  position: absolute;
  right: 0;
  padding: 10px 12px;
  border: none;
}

.help-wrap .help-no-results {
  margin: 60px 5px 10px;
  line-height: 1em;
  text-align: center;
}
.help-wrap .help-no-results button {
  border: none;
  background: transparent;
  color: #d93d3b;
  font-size: 1em;
}
.help-wrap .help-no-results button:hover {
  text-decoration: underline;
}

.help-wrap .help-article-single {
  display: none;
  width: 100%;
  position: absolute;
  top: 20px;
  z-index: 1;
  opacity: 0;
}

.help-wrap .help-article-single-contents {
  height: 465px;
  padding: 50px 10px 10px;
  margin: 10px;
  overflow: auto;
  font-size: .9em;
  border-radius: 3px;
  background: #fff;
  box-shadow: rgba(197, 206, 214, .7) 0px 0px 0px 1px, rgb(183 194 204) 0px 1px 0px 0px, rgba(0, 0, 0, .1) 0px 1px 3px;
}

.help-wrap .help-article-single-contents h1 {
  font-size: 2.5em;
}
.help-wrap .help-article-single-contents h2 {
  font-size: 2em;
}
.help-wrap .help-article-single-contents h3 {
  font-size: 1.75em;
}
.help-wrap .help-article-single-contents h4 {
  font-size: 1.5em;
}
.help-wrap .help-article-single-contents h5 {
  font-size: 1.25em;
}
.help-wrap .help-article-single-contents h6 {
  font-size: 1em;
}

.help-wrap .help-article-single-contents > * {
  word-break: break-word;
  hyphens: auto;
}

.help-wrap button.help-article-single-close {
  position: absolute;
  right: 30px;
  top: 20px;
  padding: 5px 10px;
  background: #fff;
}
.help-wrap button.help-article-single-close:focus,
.help-wrap button.help-article-single-close:hover {
  color: #c36;
  background: #fcf1f0;
}

/*.help-wrap .gform_wrapper {
  padding: 10px;
}*/

.help-wrap .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row {
  width: 100%;
  margin: 0;
}

.help-wrap .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child)  {
  margin-bottom: 10px;
}