html, body {
  font-size: 16px;
  line-height: 1.375em;
  font-weight: 400;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

nav {
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
  webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
  background: linear-gradient(141deg, #3199FF 0%, #187aed 80%);
  border: 0;
  position: relative;
  z-index: 200;
}

.navbar-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

@media (max-width: 991px) {
  .navbar-row {
    display: block;
    height: auto;
    padding-top: 1rem;
  }
}

.navbar-brand {
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 2rem;
}

.navbar-brand img {
  padding-right: 4px;
}

.navbar-brand:after {
  content: '/ \a0 HELP';
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.search-wrapper {
  width: 100%;
  max-width: 600px;
  padding-left: 2rem;
}

.search-wrapper .input-group {
  display: flex;
}

@media screen and (max-width: 991px) {
  .search-wrapper {
    max-width: none;
    padding: 0.5rem 0 1rem 0;
    margin-top: 3.5rem;
  }
  .search-wrapper .input-group {
    margin-left: 0;
  }
}

.search-wrapper .search {
  border-radius: 5px;
  height: 50px;
  position: relative;
  width: 100%;
  font-size: 16px;
  padding-left: 4.375rem;
  padding-right: 1rem;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  color: white;
  transition: all 0.35s ease;
}

.search-wrapper .search:active,
.search-wrapper .search:focus {

}

.search-wrapper .search-icon {
  position: absolute;
  z-index: 2;
  display: block;
  margin-left: 2rem;
  top: 14px;
  text-align: center;
  color: white;
  font-size: 16px;
}


.search-wrapper .search::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

.search-wrapper .search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

.search-wrapper .search::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
}

#search_results_wrapper {
  position: absolute;
  width: 100%;
  background: #f4f7fb;
  opacity: 0;
  visibility: hidden;
  padding-bottom: 4rem;
  z-index: 100;
  transition: all 0.35s ease;
  transform: translateY(-2rem);
}

#search_results_wrapper.search_results_wrapper_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

#search_results_wrapper .search_results_wrapper_inner {
  max-width: 800px;
}

#search_results_wrapper .header {
  padding-left: 2rem;
  padding-right: 2rem;
}

#search_results_wrapper .results-card {
  background-color: white;
  border-radius: 5px;
}

@media (max-width: 768px) {
  #search_results_wrapper .results-card {
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

#search_results_wrapper h1 {
  margin-top: 0;
}

#search_results_wrapper ul {
  list-style: none;
  padding: 0;
}

#search_results_wrapper li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#search_results_wrapper li a {
  color: rgba(0, 0, 0, 0.54);
  display: block;
  font-size: 1rem;
  padding: 1.5rem 2rem;
}

#search_results_wrapper li a:hover {
  color: #187aed;
}

#search_results_wrapper li a:focus {
  color: #187aed;
  background-color: #fafafa;
}

#search_results_wrapper li p {
  margin: 0;
  line-height: 1.5rem;
}

@media (max-width: 768px){
  #search_results_wrapper li p{
    margin-top: 0.5rem;
  }
}

#search_results_wrapper li .topic_label {
  font-size: 0.8rem;
  color: #187aed;
  border: 1px solid #187aed;
  border-radius: 1rem;
  padding: 0.1rem 0.7rem;
  text-transform: uppercase;
}

#search_results_wrapper #results {
  min-height: 10px;
}

#search_results_wrapper #no-results {
  display: none;
  padding: 4rem 1rem;
  text-align: center;
}

#search_results_wrapper #no-results h2 {
  font-size: 3rem;
  margin-top: 0px;
  ;
  margin-bottom: 3rem;
  color: rgba(0, 0, 0, 0.36);
  font-weight: 700;
}

#search_results_wrapper #no-results p {
  color: rgba(0, 0, 0, 0.54);
}

#search_results_wrapper #no-results p button {
  font-size: 0.8rem;
  color: white;
  background-color: #187aed;
  border-radius: 1rem;
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
  margin: 0px 0.25rem;
  border: none;
  -webkit-box-shadow: 0px 2px 12px rgba(24, 122, 237, 0.4);
  box-shadow: 0px 2px 12px rgba(24, 122, 237, 0.4);
  transition: all 0.35s ease;
}

#search_results_wrapper #no-results p button:hover, #search_results_wrapper #no-results p button:focus {
  -webkit-box-shadow: 0px 7px 17px rgba(24, 122, 237, 0.6);
  box-shadow: 0px 4px 14px rgba(24, 122, 237, 0.4);
  transform: translateY(-2px);
}

.help_center {
  padding-top: 4rem;
}

.help_center .text-header {
  max-width: 1100px;
  padding: 4rem;
  padding-bottom: 12rem;
  border-radius: 5px;
  background: linear-gradient(141deg, #3199FF 0%, #187aed 80%);
}

@media (max-width: 1100px){
    .help_center .text-header {
      border-radius: 0px;
      margin-top: -4rem;
    }
}

@media (max-width: 991px) {
  .help_center {
    padding-top: 2rem;
  }
  .help_center .text-header {
    margin-top: -4rem;
    border-radius: 0;
    margin-bottom: 4rem;
    padding-bottom: 7rem;
  }
}

.help_center.help_home {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.help_center .text-header h1, .help_center .text-header span {
  color: white;
}

.help_center .text-header:after {
  background-color: white;
}

.help_center h1 {
  color: #187aed;
}

.topic-cards-wrapper {
  max-width: 968px;
  opacity: 0;
  -webkit-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate(0px, 50px);
  transition: opacity 750ms, transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.topic-cards-wrapper-show {
  opacity: 1;
  transform: translateX(0px) translateY(0px) translateZ(0px);
}

.help_center .topic-card {
  border-radius: 5px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2rem;
  margin-left: -8px;
  margin-right: -8px;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
}

.help_center .topic-card:hover {

}

.help_center .topic-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.help_center .topic-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help_center .topic-card ul li {
  margin-bottom: 1rem;
}

.help_center .topic-card a {
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  display: block;
}

.help_center .topic-card a:hover, .help_center .topic-card a:active, .help_center .topic-card a:focus {
  color: #187aed;
}

.help_center .topic-card a:after {
  font-family: "Material Icons";
  content: "arrow_forward";
  opacity: 0;
  font-weight: 700;
  transition: all 0.35s ease;
  position: absolute;
  color: #187aed;
  font-style: normal;
}

.help_center .topic-card a:hover:after, .help_center .topic-card a:focus:after, .help_center .topic-card a:active:after {
  margin-left: 5px;
  opacity: 1;
}

.help_center .topic-card .view_all {
  color: #187aed;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
}

.help_center .topic-card .view_all {
  color: #187aed;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  margin-right: 1rem;
  text-align: right;
}

.help_center .topic-card .view_all:after {
  opacity: 1;
  margin-left: 0.3rem;
}

.help_center .topic-card .view_all:hover:after, .help_center .topic-card .view_all:focus:after, .help_center .topic-card .view_all:active:after {
  opacity: 1;
  margin-left: 0.5rem;
}

.help_center .row>[class*='col-'] {
  margin-bottom: 2rem;
}

.help_center a.back {
  color: #187aed;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  display: block;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  z-index: 5;
  /* element is under second column on mobile - raise to make clickable */
}

.help_center a.back:before {
  font-family: "Material Icons";
  content: "arrow_back";
  transition: all 0.35s ease;
  color: #187aed;
  font-style: normal;
  position: absolute;
  left: 0px;
}

.help_center a.back:hover:before, .help_center a.back:focus:before, .help_center a.back:active:before {
  left: -8px;
}

.nav-tabs>li {
  margin-bottom: 0;
}

.nav-tabs>li:not(:last-child):after {
  content: ' ';
  position: relative;
  height: 1px;
  width: calc(100% + 2px);
  left: -2px;
  background-color: rgba(0, 0, 0, 0.12);
  position: absolute;
  display: block;
  clear: both;
}

.nav-tabs>li:not(:first-child) {
  margin-top: 1px;
}

.nav-tabs>li>a {
  display: block;
  padding: 1.25rem 1.25rem;
  border: none;
  margin-right: 0;
}

.nav-tabs>li>a:hover, .nav-tabs>li>a:focus, .nav-tabs>li>a:active {
  border: none;
}

.nav-item {
  width: 100%;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.nav-item:hover:not(.active), .nav-item:focus:not(.active) {
  background: #fefefe;
}

.nav-tabs>li>a {
  color: rgba(0, 0, 0, 0.87);
  text-transform: capitalize;
}

.nav-tabs>li>a:hover, .nav-tabs>li>a:focus, .nav-tabs>li>a:active {
  color: #187aed;
}

.nav-item.active {
  border-left-color: #187aed;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus {
  color: #187aed;
  border: none !important;
  background: none;
  border-radius: 0px;
}

.nav-tabs-category {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}

.nav-tabs-category .dropdown-toggle {
  border: none;
  width: 100%;
  border-radius: 2px;
  background: white;
  text-align: left;
  padding: 0;
  transition: all 0.35s ease;
}

.nav-tabs-category .dropdown-toggle h1 {
  padding: 1.25rem;
  display: block;
  text-transform: capitalize;
  color: #187aed;
  margin: 0;
  font-size: 1.5rem;
}

.nav-tabs-category .dropdown-toggle h1:after {
  font-family: "Material Icons";
  content: "arrow_drop_down";
  transition: all 0.35s ease;
  text-transform: none;
  position: relative;
  float: right;
  font-size: 1.5rem;
  color: #187aed;
  font-style: normal;
}

.nav-tabs-category .dropdown-toggle:active,
.nav-tabs-category .dropdown-toggle:focus {

}

.nav-tabs-category .dropdown-toggle:active h1,
.nav-tabs-category .dropdown-toggle:focus h1{

}

.nav-tabs-category .dropdown-toggle:active h1:after,
.nav-tabs-category .dropdown-toggle:focus h1:after{
    transform: rotate(180deg);
}

.nav-tabs-category .dropdown-menu {
  border: none;
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, .07);
}

.nav-tabs-category .dropdown.open .dropdown-menu {

}

.nav-tabs-category .dropdown-menu>li>a {
  line-height: 3rem;
  font-size: 1rem;
  white-space: normal;
  text-transform: capitalize;
}

.nav-tabs-category .dropdown-menu>li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}


.tab-content {}

.tab-content h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #187aed;
}

.questions-list {
  border-radius: 2px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.questions-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.questions-list ul li {
  width: 100%;
}

.questions-list ul li a {
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  display: block;
  padding: 1.25rem 1.25rem;
  padding-right: 4.25rem;
}

.questions-list ul li:not(:last-child):after {
  content: ' ';
  position: relative;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.12);
  display: block;
  clear: both;
}

.questions-list ul li a:after {
  font-family: "Material Icons";
  content: "arrow_forward";
  transition: all 0.35s ease;
  position: relative;
  float: right;
  color: #187aed;
  font-style: normal;
  margin-right: -2.75rem;
}

.questions-list ul li a:hover, .questions-list ul li a:focus {
  color: #187aed;
}

.questions-list ul li a:hover:after, .questions-list ul li a:focus:after {
  margin-right: -3rem;
}

.question {
  border-radius: 5px;
  background: white;
  transition: all 0.35s ease;
}

.question-inner {
  padding: 2rem 2rem 2rem 2rem;
}

.question-inner h3 {
  line-height: 2rem;
}

.question-view {
  max-width: 750px;
}

.related-questions {
  padding: 2rem 2rem 0 2rem;
}

@media (max-width: 991px) {
  .related-questions {
    padding: 2rem 1rem 0 1rem;
  }
}

.related-questions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-questions h4 {
  color: rgba(0, 0, 0, 0.54);
  font-weight: 600;
}

.related-questions a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block;
  color: rgba(0, 0, 0, 0.54);
  font-style: italic;
}

.related-questions a:hover {
  color: #187aed;
}

.tab-pane {
  padding-top: 4rem;
}

.tab-pane .back {
  position: absolute;
  top: 0;
}

@media (max-width: 991px) {
  .topic-view .tab-content .tab-pane{
    padding-top: 0px;
    margin-top: -1rem;
  }
  .question-view .tab-content {
    margin-top: -6rem;
  }
}

.tab-pane .title {
  position: absolute;
  top: 0;
  margin-top: 0;
  text-transform: capitalize;
}

.help_element_contact {
  margin-top: 2rem;
  margin-bottom: 4rem;
  width: 100%;
}

.help_element_contact_inner {
  padding: 3rem 1rem 0 1rem;
  color: rgba(0, 0, 0, 0.36);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.help_element_contact p {
  display: inline-block;
  font-weight: 300;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.help_element_contact a {
  display: inline-block;
  margin-left: 1rem;
  margin-bottom: 1rem;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.36);
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.help_element_contact a:hover, .help_element_contact a:focus {
  border-color: #187aed;
  color: #187aed;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-material .material-icons {
  vertical-align: text-bottom;
  margin-right: -4px;
}

.question-helpful {
  padding-top: 1.5rem;
  color: rgba(0, 0, 0, 0.36);
  position: relative;
  background: #fafafa;
  padding: 2rem;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (max-width: 767px) {
  .question-helpful {
    text-align: center;
  }
}

.question-helpful-init p {
  padding-bottom: 0.5rem;
  margin: 0;
  display: inline-block;
}

.question-helpful-init button {
  margin: 0;
  display: inline;
}

.btn-question-helpful {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.36);
}

.btn-question-helpful .material-icons {
  transition: all 0.35s ease;
  transition-delay: 0;
}

.btn-question-helpful.thumb_down:hover .material-icons {
  transform: translateY(3px);
  color: #187aed;
}

.btn-question-helpful.thumb_up:hover .material-icons {
  transform: translateY(-3px);
  color: #187aed;
}

.btn-question-helpful .hide {
  opacity: 0;
}

.question-helpful-init {
  transition: all 0.35s ease;

  /* Put above Thank you Message to keep it clickable */
  z-index: 10;
  position: relative;
}

.btn-question-helpful-result {
  font-style: italic;
  color: #187aed;
  opacity: 0;
  position: absolute;
  top: 40%;
  transition: all 0.35s ease;
  transition-delay: 0.2s;
  transform: translateY(-4px);
}

.btn-question-helpful-result.no-animation{
    transition: all 0s;
}

@media (max-width: 767px) {
  .btn-question-helpful-result {
    width: 100%;
    left: 0;
  }
}

.btn-question-helpful-result-show {
  opacity: 1;
  transform: translateY(0px);
}

.question-helpful .text-updated {
  color: rgba(0, 0, 0, 0.36);
  font-style: italic;
  font-size: 0.9rem;
  position: absolute;
  top: 40%;
  right: 2rem;
}

.opacity_0 {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  cursor: default;
}

.decoration{
  position: absolute;
  z-index: 20;
}

.decoration_fade_in_after_500ms{
  opacity: 0;
  animation: fadein 1s 0.5s forwards;
}

@keyframes note-bubble-enter-anim {
    from {
      transform: scale(0) rotate(45deg);
      opacity: 0;
    }
    to {
      opacity: 1;
      transform: scale(100%) rotate(0deg);
     }
}

@-webkit-keyframes note-bubble-enter-anim {
    from {
      transform: scale(0) rotate(45deg);
      opacity: 0;
    }
    to {
      opacity: 1;
      transform: scale(100%) rotate(0deg);
     }
}

.note-bubble{
  background-color: #3199FF;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  padding: 1.2rem;
  opacity: 0;
  -webkit-animation: note-bubble-enter-anim 1s forwards;
  animation: note-bubble-enter-anim 1s forwards;
}

.note-bubble img{
  height: 100%;
  width: auto;
  transform: rotate(15deg);
}

@media (max-width: 1200px) {
  .note-bubble{
    display: none;
  }
}
