
#custom-help {
  margin-top: 1rem;
}
#custom-help[data-show="content"] [data-type="content"]{
  display: block;
}
#custom-help[data-show="content"] [data-type="form"]{
  display: none;
}
#custom-help[data-show="form"] [data-type="content"]{
  display: none;
}
#custom-help[data-show="form"] [data-type="form"]{
  display: block;
}
#custom-help-header {
  display: flex;
  margin-bottom: 2rem;
}
#custom-help-header > figure {
  display: block;
  margin: 0;
}
#custom-help-header > figure > img {
  display: block;
}
#custom-help-header > div {
  width: 100%;
  background-image: url('../images/header-background.png');
  text-align: right;
}
#custom-help-header > div a {
  color: #fff;
  line-height: 35px;
  margin-right: 1rem;
}
#custom-help-form {
  position: relative;
}
#custom-help-form[data-loading="true"] {
  opacity: .5;
}
#custom-help-form .custom-help-form-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#custom-help-form[data-loading="false"] .custom-help-form-loading {
  display: none;
}
#custom-help-form .custom-help-form-loading span {
  border: .25rem solid rgb(0 175 164);
  border-left-color: transparent;
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  animation: custom-help-form-loading 1s linear infinite;
}
@keyframes custom-help-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#custom-help-form .custom-help-form-field {
  margin-bottom: 1rem;
}
#custom-help-form .custom-help-form-field textarea,
#custom-help-form .custom-help-form-field input {
  display: block;
}
#custom-help-form .custom-help-form-field textarea {
  width: 100%;
  height: 20rem;
}
#custom-help-form .custom-help-form-buttons a {
  display: inline-block;
  background-color: #00afa4;
  border: 1px solid rgba(0, 0, 0, .25);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: .25rem;
  margin-right: .5rem;
}
#custom-help-content {}
#custom-help-content .custom-help-content-error {
  text-align: center;
}
#custom-help-content .custom-help-content-error > * {
  display: block;
}
#custom-help-content-last-edition {
  margin-top: 1rem;
  font-size: .75rem;
  opacity: .5;
  font-style: italic;
}
#custom-help-content-last-edition[data-hidden="true"] {
  display: none;
}
#custom-help-content-last-edition > span {
  font-weight: bold;
}
