.contact-help-faq-popover {
  width: 480px;
  height: 400px;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  box-shadow: 0px 0px 20px 1px #A8A8A8;
}

.contact-help-faq-popover__header {
  padding: 15px 20px;
  background-color: #323232;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-sizing: border-box;
}

.contact-help-faq-popover__header-button-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.contact-help-faq-popover__header .open-in-new-page-btn {
  min-width: unset;
}

.contact-help-faq-popover__header .open-in-new-page-btn svg {
  padding-right: 0;
}

.contact-help-faq-popover__header .icon-only {
  background-color: transparent;
}

.contact-help-faq-popover__header .icon-fill {
  fill: #fff;
}

.contact-help-faq-popover .close-btn svg {
  width: 15px;
  height: 15px;
}

.contact-help-faq-popover .back-btn {
  margin-right: 15px;
}

.contact-help-faq-popover__header h3 {
  color: #fff;
  margin: 0;
  flex: 1;
}

.contact-help-faq-popover .content-area {
  overflow: auto;
  height: calc(100% - 70px); /* 70px is the height of the header */
}

.contact-help-faq-popover .faq-list h3 {
  padding: 20px 0 0 20px;
}

.contact-help-faq-popover .contact {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
}

.contact-help-faq-popover .contact h3 {
  padding: 20px 0 0 20px;
}
.contact-help-faq-popover .contact a {
  display: block;
  padding: 0 0 20px 20px;
}

.contact-help-faq-popover .faq-answer {
  display: none;
}

.contact-help-faq-popover li a {
  font-size: 1.1rem;
  padding: 20px;
  display: block;
  text-decoration: none;
}
.contact-help-faq-popover li a:hover {
  background-color: #e6e6e6;
}

.contact-help-faq-popover .faq-answer-content {
  padding: 20px;
}

.contact-help-faq-popover .faq-answer-content pre {
  color: #EC2024;
  display: inline;
  padding: 0 5px;
}

.contact-help-faq-popover[data-view=list] .back-btn {
  display: none;
}
.contact-help-faq-popover[data-view=answer] .back-btn {
  display: block;
}

@media (max-width: 600px) {
  .contact-help-faq-popover {
    width: 90%;
    left: 5%;
    right: 5%;
  }
}
