/*--------------------------------------------------------------
# Help Section
--------------------------------------------------------------*/
#help {
  padding: 60px 0 60px 0;
}

#help .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

#help .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#help .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}

@media (max-width: 991px) {
  #help .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  #help .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  #help .nav-tabs a {
    padding: 8px 30px;
  }
}

#help .nav-tabs a.active {
  background-color: #f82249;
  color: #fff;
}

#help .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #help .sub-heading {
    width: 75%;
  }
}

#help .tab-pane {
  transition: ease-in-out 0.2s;
}

#help .help-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#help .help-item:hover {
  background-color: #fff;
}

#help .help-item a {
  color: #0e1b4d;
}

#help .help-item a:hover {
  color: #f82249;
}

#help .help-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#help .help-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

#help .help-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#help .help-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#help .help-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}

#help .help-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}

#help .help-item .goto {
  font-size: 12px;
}

pre {
	background-color: #f8f8f8;
	border: 1px solid #cccccc;
	border-radius: 3px;
	overflow-x: auto;
	white-space: pre-wrap;
	overflow-wrap: break-word;
}

pre:not(.hljs) {
	padding: 23px;
	line-height: 19px;
}

blockquote {
	background: rgba(127, 127, 127, 0.1);
	border-color: rgba(0, 122, 204, 0.5);
}

.emoji {
	height: 1.4em;
}

code {
	font-size: 14px;
	line-height: 19px;
}

/* for inline code */
:not(pre):not(.hljs) > code {
	color: #C9AE75; /* Change the old color so it seems less like an error */
	font-size: inherit;
}

/*
.hljs-copy-button
{
  background-color: red;
}
*/